
:root{
  --black:#0B0B0D;
  --black-2:#111216;
  --graphite:#26272A;
  --ivory:#F3F1ED;
  --ivory-2:#ECE7DF;
  --orange:#E67124;
  --orange-2:#d7641d;
  --copper:#B87333;
  --green:#20c05c;
  --text:#E7E1D8;
  --muted:#A6A097;
  --line:rgba(243,241,237,.14);
  --shell:min(1220px, calc(100vw - 56px));
  --shadow:0 20px 60px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(230,113,36,.06), transparent 30%),
    linear-gradient(180deg, #09090b 0%, #0b0b0d 100%);
  font-family:"Avenir Next","Segoe UI",Arial,sans-serif;
  line-height:1.55;
  overflow-x:hidden;
}
body::selection{background:var(--orange); color:#140d08}
img{display:block; max-width:100%}
a{color:inherit; text-decoration:none}
button,input,textarea,select{font:inherit}
h1,h2,h3,p{margin-top:0}
.shell{width:var(--shell); margin:auto}
.sr-only{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap}
.noise{
  position:fixed; inset:0; pointer-events:none; z-index:9999; opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode:screen;
}
.bg-orbit{
  position:fixed; border-radius:50%; filter:blur(80px); pointer-events:none; z-index:-1;
  background:radial-gradient(circle, rgba(230,113,36,.18), rgba(230,113,36,0));
  animation:floatOrb 16s ease-in-out infinite alternate;
}
.orbit-1{width:420px;height:420px;top:-140px;right:-120px}
.orbit-2{width:360px;height:360px;bottom:8%;left:-120px;opacity:.7; animation-delay:2s}
.bg-line{
  position:fixed; top:0; bottom:0; width:1px; background:linear-gradient(to bottom, transparent, rgba(230,113,36,.28), transparent);
  pointer-events:none; z-index:-1; animation:pulseLine 6s ease-in-out infinite;
}
.line-1{left:8%}
.line-2{right:9%; animation-delay:2.4s}
@keyframes floatOrb{
  from{transform:translate3d(0,0,0) scale(1)}
  to{transform:translate3d(18px, -24px, 0) scale(1.08)}
}
@keyframes pulseLine{
  0%,100%{opacity:.16}
  50%{opacity:.5}
}

.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:linear-gradient(to bottom, rgba(11,11,13,.97), rgba(11,11,13,.80), transparent);
  transition:.3s ease;
}
.site-header.scrolled{
  background:rgba(11,11,13,.90);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(243,241,237,.10);
}
.nav-shell{
  width:var(--shell);
  margin:auto;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{display:flex; align-items:center; gap:14px; min-width:0}
.brand-mark{width:56px; height:56px; object-fit:cover; border-radius:4px; box-shadow:0 10px 24px rgba(0,0,0,.25)}
.brand-copy{display:grid; gap:2px}
.brand-copy strong{font-size:15px; letter-spacing:.22em; font-weight:500}
.brand-copy small{font-size:10px; color:#a8a39b; letter-spacing:.08em}
.main-nav{display:flex; align-items:center; gap:26px; font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.main-nav a{color:#d5d0c8; transition:.24s}
.main-nav a:hover{color:var(--orange)}
.main-nav .nav-cta{
  padding:12px 16px;
  border:1px solid rgba(230,113,36,.58);
  color:var(--orange);
  background:linear-gradient(180deg, rgba(230,113,36,.10), rgba(230,113,36,.02));
}
.menu-toggle{display:none; width:42px; height:42px; background:none; border:0; color:#fff; position:relative}
.menu-toggle span:not(.sr-only){position:absolute; width:24px; height:1.6px; left:9px; background:currentColor; transition:.3s}
.menu-toggle span:first-child{top:15px}
.menu-toggle span:nth-child(2){top:25px}

.eyebrow{
  margin:0;
  color:var(--orange);
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.22em;
  font-weight:700;
}
.dark-eyebrow{color:#bd5a18}
h1{
  font-size:clamp(56px, 7vw, 98px);
  line-height:.94;
  letter-spacing:-.05em;
  font-weight:430;
  margin-bottom:24px;
}
h1 span{color:var(--orange)}
h2{
  font-size:clamp(40px, 5vw, 72px);
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:430;
  margin-bottom:24px;
}
h3{font-weight:540; margin-bottom:6px}
.lead{font-size:19px; color:#d3cdc3}
.lead.dark{color:#4a4844}
.section{padding:120px 0}
.section-ivory{
  background:linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  color:#111216;
}
.section-dark{background:transparent}
.section-orange{
  position:relative;
  background:
    radial-gradient(circle at 75% 15%, rgba(230,113,36,.18), transparent 22%),
    linear-gradient(180deg, #101114 0%, #0b0b0d 100%);
  border-top:1px solid rgba(230,113,36,.22);
  border-bottom:1px solid rgba(230,113,36,.22);
  overflow:hidden;
}
.section-orange::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(230,113,36,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,113,36,.08) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(circle at 50% 40%, black, transparent 82%);
  opacity:.18;
  pointer-events:none;
}
.section-contact{
  background:linear-gradient(180deg, #15161a 0%, #0e0f12 100%);
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border:1px solid transparent;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.shine::before{
  content:"";
  position:absolute;
  top:0; left:-130%;
  width:60%; height:100%;
  transform:skewX(-25deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transition:left .65s ease;
}
.shine:hover::before{left:150%}
.btn-primary{
  background:linear-gradient(180deg, #ec7a2f, #d4611a);
  color:#130d08;
  box-shadow:0 12px 36px rgba(230,113,36,.22);
}
.btn-secondary{
  border-color:rgba(243,241,237,.22);
  color:var(--text);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.btn-secondary:hover{border-color:rgba(243,241,237,.45)}
.btn-wa{
  width:100%;
  background:linear-gradient(180deg, #28d366, #18ad51);
  color:#07130c;
  box-shadow:0 12px 36px rgba(32,192,92,.22);
}

.hero{padding-top:118px; position:relative}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:48px;
  align-items:center;
  min-height:92vh;
}
.hero-copy{padding:48px 0 24px}
.eyebrow-row{display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin-bottom:18px}
.launch-pill{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border:1px solid rgba(230,113,36,.34);
  color:#e9c3a4;
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:rgba(230,113,36,.08);
}
.hero-lead{font-size:clamp(18px,1.6vw,23px); color:#d0c9bf; max-width:720px; margin-bottom:30px}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-bottom:24px}
.hero-notes{display:flex; flex-wrap:wrap; gap:18px 24px; color:#8e8a84; font-size:11px; letter-spacing:.18em; text-transform:uppercase}

.hero-visual{position:relative; min-height:760px}
.hero-photo-card{
  position:relative;
  min-height:760px;
  border:1px solid rgba(243,241,237,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    radial-gradient(circle at 50% 8%, rgba(230,113,36,.12), transparent 30%);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .25s ease;
}
.hero-photo-card:hover .hero-badge{transform:translateY(-2px)}
.hero-watermark{
  position:absolute;
  width:72%;
  max-width:520px;
  right:-2%;
  top:5%;
  opacity:.28;
  mix-blend-mode:screen;
  pointer-events:none;
  animation:slowFloat 8s ease-in-out infinite alternate;
}
.hero-gridlines{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(230,113,36,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,113,36,.06) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(to bottom, black, transparent 80%);
  opacity:.22;
}
.hero-photo-glow{
  position:absolute; inset:auto -10% -12% -10%; height:48%;
  background:radial-gradient(circle at 50% 50%, rgba(230,113,36,.16), rgba(230,113,36,0) 62%);
  animation:pulseGlow 6s ease-in-out infinite;
}
.hero-photo{
  position:relative;
  width:100%; height:100%;
  object-fit:contain;
  object-position:center bottom;
  padding-top:24px;
  z-index:2;
  will-change:transform;
}
.hero-badge{
  position:absolute;
  right:18px; bottom:18px;
  display:grid;
  gap:2px;
  min-width:210px;
  padding:16px 18px;
  border:1px solid rgba(243,241,237,.10);
  background:rgba(11,11,13,.42);
  backdrop-filter:blur(10px);
  z-index:3;
  transition:transform .25s ease;
}
.hero-badge strong{font-size:28px; letter-spacing:.16em; color:var(--orange); font-weight:500}
.hero-badge span{font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:#b8b1a8}
.hero-side-rail{
  position:absolute;
  top:18px; left:18px;
  display:flex; flex-direction:column; gap:10px;
  font-size:9px; letter-spacing:.26em; text-transform:uppercase; color:#a8a39b;
  z-index:3;
}
@keyframes slowFloat{
  from{transform:translateY(0)}
  to{transform:translateY(12px)}
}
@keyframes pulseGlow{
  0%,100%{opacity:.55}
  50%{opacity:.88}
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:-48px;
  position:relative;
  z-index:5;
}
.metric-card{
  position:relative;
  padding:24px 24px 26px;
  min-height:268px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.metric-card::after{
  content:"";
  position:absolute; inset:auto 0 0 0; height:3px;
  background:linear-gradient(90deg, transparent, rgba(230,113,36,.85), transparent);
  opacity:.55;
}
.metric-card.dark{background:linear-gradient(180deg, #111216 0%, #0b0b0d 100%); border:1px solid rgba(243,241,237,.08)}
.metric-card.graphite{background:linear-gradient(180deg, #26272A 0%, #18191c 100%); border:1px solid rgba(243,241,237,.08)}
.metric-card.ivory{background:linear-gradient(180deg, #f7f4ef 0%, #ebe6de 100%); color:#111216; border:1px solid rgba(11,11,13,.07)}
.metric-card.orange{background:linear-gradient(180deg, #ee813a 0%, #d7651d 100%); color:#120d09; border:1px solid rgba(11,11,13,.08)}
.metric-top{display:flex; align-items:center; gap:10px; margin-bottom:22px}
.metric-icon{font-size:13px; color:var(--orange)}
.metric-card.ivory .metric-icon,.metric-card.orange .metric-icon{color:inherit}
.metric-label{font-size:10px; letter-spacing:.18em; text-transform:uppercase; opacity:.76}
.metric-number{display:flex; align-items:flex-end; gap:2px}
.metric-card strong{font-size:clamp(46px,4vw,64px); line-height:1; letter-spacing:-.05em; font-weight:500}
.metric-card .currency{font-size:28px; vertical-align:top; margin-right:4px}
.metric-plus{font-size:26px; margin-left:2px; font-weight:500}
.metric-card h3{font-size:18px; margin:14px 0 8px}
.metric-card p{font-size:13px; color:inherit; opacity:.82; margin:0}

.split{display:grid; gap:6vw; align-items:center}
.split-visual{grid-template-columns:.92fr 1.08fr}
.split-studio{grid-template-columns:1fr 1fr}
.feature-list{margin-top:34px; border-top:1px solid rgba(17,18,22,.12)}
.feature-list article{
  display:grid; grid-template-columns:52px 1fr; gap:16px;
  padding:18px 0; border-bottom:1px solid rgba(17,18,22,.12)
}
.feature-list article span{font-size:11px; letter-spacing:.18em; color:#d4611a; padding-top:5px}
.feature-list article h3{font-size:18px; margin:0 0 4px}
.feature-list article p{margin:0; color:#4e4c47; font-size:14px}
.image-frame{
  position:relative; overflow:hidden; min-height:720px; box-shadow:var(--shadow)
}
.ivory-frame{
  background:
    radial-gradient(circle at 50% 8%, rgba(230,113,36,.14), transparent 24%),
    linear-gradient(180deg, #faf8f4 0%, #f0ebe4 100%);
  border:1px solid rgba(17,18,22,.08)
}
.dark-frame{
  background:
    radial-gradient(circle at 50% 8%, rgba(230,113,36,.18), transparent 28%),
    linear-gradient(180deg, #181a1f 0%, #0e0f12 100%);
  border:1px solid rgba(243,241,237,.10)
}
.full-photo{
  width:100%; height:100%;
  object-fit:contain;
  object-position:center bottom;
  will-change:transform;
}
.studio-photo{padding-top:18px}
.frame-caption{
  position:absolute; left:18px; right:18px; bottom:18px;
  display:flex; justify-content:flex-end
}
.frame-caption span{
  display:inline-flex; min-height:34px; align-items:center; padding:0 14px;
  border:1px solid rgba(243,241,237,.12);
  background:rgba(11,11,13,.5); color:#d0cbc3; font-size:10px;
  letter-spacing:.18em; text-transform:uppercase; backdrop-filter:blur(10px)
}
.frame-noise{
  position:absolute; inset:0; pointer-events:none; opacity:.05;
  background:linear-gradient(0deg, transparent 0%, rgba(0,0,0,.12) 100%);
}
.statement{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:6vw; align-items:start
}
.statement-right p{font-size:18px; color:#c8c2b8; margin-bottom:20px}
.mini-cards{display:grid; gap:12px; margin-top:28px}
.mini-cards article{
  border:1px solid rgba(243,241,237,.1);
  background:rgba(255,255,255,.03);
  padding:16px 18px;
  transition:transform .25s ease, border-color .25s ease;
}
.mini-cards article:hover{transform:translateY(-2px); border-color:rgba(230,113,36,.35)}
.mini-cards strong{
  display:block; color:var(--orange); font-size:12px; letter-spacing:.16em;
  text-transform:uppercase; margin-bottom:6px
}
.mini-cards span{font-size:14px; color:#bab5ae}

.orange-head{text-align:center; max-width:980px}
.orange-intro{max-width:860px; margin:0 auto; font-size:19px; color:#d1cbc1}
.orange-ribbon{
  margin-top:42px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.orange-ribbon span{
  width:58px; height:58px; display:grid; place-items:center;
  border:1px solid rgba(230,113,36,.30);
  color:var(--orange);
  font-size:26px; font-weight:500;
  background:rgba(255,255,255,.03);
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  animation:ribbonFloat 6s ease-in-out infinite alternate;
}
.orange-ribbon span:nth-child(2){animation-delay:.3s}
.orange-ribbon span:nth-child(3){animation-delay:.6s}
.orange-ribbon span:nth-child(4){animation-delay:.9s}
.orange-ribbon span:nth-child(5){animation-delay:1.2s}
.orange-ribbon span:nth-child(6){animation-delay:1.5s}
@keyframes ribbonFloat{
  from{transform:translateY(0)}
  to{transform:translateY(-8px)}
}

.orange-cards{
  width:var(--shell);
  margin:34px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  perspective:1200px;
}
.flip-card{
  min-height:270px;
  perspective:1200px;
}
.flip-card-inner{
  position:relative;
  width:100%; height:100%;
  min-height:270px;
  transform-style:preserve-3d;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.flip-card:hover .flip-card-inner,
.flip-card.is-flipped .flip-card-inner,
.flip-card:focus-within .flip-card-inner{
  transform:rotateY(180deg);
}
.flip-face{
  position:absolute; inset:0;
  backface-visibility:hidden;
  border:1px solid rgba(230,113,36,.26);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  overflow:hidden;
}
.flip-front{
  background:
    radial-gradient(circle at 50% 25%, rgba(230,113,36,.18), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.flip-front::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(230,113,36,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,113,36,.14) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom, black, transparent 90%);
  opacity:.18;
}
.flip-letter{
  position:relative; z-index:1;
  font-size:clamp(64px,7vw,98px);
  line-height:1;
  color:var(--orange);
  font-weight:300;
  margin-bottom:10px;
}
.flip-front h3{
  position:relative; z-index:1;
  font-size:24px;
  margin:0;
  letter-spacing:-.02em;
}
.flip-back{
  background:linear-gradient(180deg, #15161a 0%, #0e0f12 100%);
  transform:rotateY(180deg);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
}
.flip-back strong{
  color:var(--orange);
  font-size:18px;
  margin-bottom:10px;
}
.flip-back p{margin:0; color:#c4bdb4; font-size:14px}
.orange-panel{
  width:var(--shell);
  margin:24px auto 0;
  padding:34px 38px;
  border:1px solid rgba(230,113,36,.24);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.orange-panel h3{font-size:28px; margin-bottom:10px}
.orange-panel p{max-width:760px; color:#c4beb4; margin:0}

.contact-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:5vw;
  align-items:start;
}
.contact-badges{display:flex; flex-wrap:wrap; gap:10px; margin:26px 0 28px}
.contact-badges span{
  display:inline-flex; min-height:34px; align-items:center; padding:0 12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04); color:#d8d2ca; font-size:10px;
  letter-spacing:.18em; text-transform:uppercase
}
.whatsapp-card{
  display:grid; grid-template-columns:58px 1fr; gap:16px; align-items:start;
  padding:22px; border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02))
}
.wa-icon{
  width:58px; height:58px; border-radius:50%;
  display:grid; place-items:center;
  background:linear-gradient(180deg, #28d366, #1ca454);
  color:#061109;
  box-shadow:0 12px 24px rgba(28,164,84,.2)
}
.wa-icon svg{width:28px; height:28px}
.whatsapp-card strong{display:block; font-size:16px; margin-bottom:6px}
.whatsapp-card p{margin:0; color:#c0bbb3}
.form-panel{
  padding:34px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 85% 10%, rgba(230,113,36,.14), transparent 24%),
    linear-gradient(180deg, #111216 0%, #0d0e11 100%);
  box-shadow:var(--shadow);
}
.form-header{margin-bottom:24px}
.form-header h3{font-size:34px; margin-bottom:6px}
.form-header p{margin:0; color:#a8a39b}
.lead-form{display:grid; gap:16px}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.lead-form label{display:grid; gap:8px}
.lead-form span{
  font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:#bcb7af
}
.lead-form input,.lead-form textarea,.lead-form select{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  min-height:52px;
  padding:14px 16px;
  outline:none;
  transition:border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.lead-form textarea{resize:vertical; min-height:150px}
.lead-form input::placeholder,.lead-form textarea::placeholder{color:#8f8a82}
.lead-form input:focus,.lead-form textarea:focus,.lead-form select:focus{
  border-color:rgba(230,113,36,.6);
  background:rgba(255,255,255,.06);
  box-shadow:0 0 0 3px rgba(230,113,36,.10);
}
.full{grid-column:1/-1}
.form-note{margin:12px 0 0; color:#9b968f; font-size:12px}

footer{
  border-top:1px solid rgba(243,241,237,.10);
  background:#0b0b0d;
}
.footer-grid{
  min-height:120px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:24px;
  align-items:center;
  padding:28px 0;
}
.footer-brand{display:flex; align-items:center; gap:12px}
.footer-brand img{width:44px; height:44px; object-fit:cover}
.footer-brand div{display:grid}
.footer-brand strong{font-size:12px; letter-spacing:.22em; color:#ddd7cf}
.footer-brand small{font-size:9px; color:#8f8a82}
.footer-claim{margin:0; color:#a8a39b; font-size:12px}
.footer-credit{display:grid; justify-items:end; gap:6px}
.footer-credit small{font-size:10px; color:#8f8a82}
.footer-credit strong{color:#d6d1c8}

.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease}
.reveal.visible{opacity:1; transform:none}

@media (max-width:1100px){
  :root{--shell:min(100% - 36px, 980px)}
  .hero-grid{grid-template-columns:1fr; gap:10px; min-height:auto}
  .hero-copy{padding:42px 0 10px}
  .hero-visual{min-height:660px}
  .hero-photo-card{min-height:660px}
  .hero-metrics{grid-template-columns:repeat(2,1fr); margin-top:34px}
  .split-visual,.split-studio,.statement,.contact-grid{grid-template-columns:1fr; gap:44px}
  .orange-cards{grid-template-columns:repeat(2,1fr)}
  .orange-panel{flex-direction:column; align-items:flex-start}
  .footer-grid{grid-template-columns:1fr; justify-items:start}
  .footer-credit{justify-items:start}
}
@media (max-width:760px){
  :root{--shell:calc(100vw - 24px)}
  .nav-shell{height:76px}
  .brand-mark{width:44px; height:44px}
  .brand-copy strong{font-size:12px; letter-spacing:.16em}
  .brand-copy small{display:none}
  .menu-toggle{display:block}
  .menu-toggle.active span:first-child{top:20px; transform:rotate(45deg)}
  .menu-toggle.active span:nth-child(2){top:20px; transform:rotate(-45deg)}
  .main-nav{
    position:fixed; inset:0;
    background:rgba(11,11,13,.985);
    display:flex; flex-direction:column;
    justify-content:center; align-items:center;
    transform:translateY(-105%);
    transition:.32s ease;
    font-size:14px; gap:24px;
  }
  .main-nav.open{transform:none}
  .hero{padding-top:84px}
  .hero-copy{padding-top:16px}
  h1{font-size:clamp(46px, 14vw, 74px)}
  h2{font-size:clamp(36px, 11vw, 54px)}
  .hero-visual{min-height:520px}
  .hero-photo-card{min-height:520px}
  .hero-watermark{width:82%; top:8%; right:-6%; opacity:.22}
  .hero-badge{min-width:auto; left:16px; right:16px}
  .hero-metrics{grid-template-columns:1fr; gap:12px}
  .metric-card{min-height:auto}
  .section{padding:86px 0}
  .image-frame{min-height:560px}
  .orange-ribbon span{width:48px; height:48px; font-size:22px}
  .orange-cards{grid-template-columns:1fr; gap:12px}
  .flip-card,.flip-card-inner{min-height:238px}
  .form-panel{padding:24px}
  .form-row{grid-template-columns:1fr}
  .full{grid-column:auto}
}


/* V04 responsive/mobile correction + Orange Consulting signature */
.orange-signature{
  margin-top:18px;
  display:grid;
  grid-template-columns:1px 1fr;
  gap:18px;
  align-items:start;
  padding:20px 22px;
  border:1px solid rgba(230,113,36,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.signature-line{
  width:1px;
  min-height:120px;
  background:linear-gradient(to bottom, rgba(230,113,36,.95), rgba(230,113,36,.35));
}
.signature-copy{
  display:grid;
  gap:6px;
}
.signature-copy strong{
  font-size:18px;
  letter-spacing:.04em;
  color:#f0ece5;
}
.signature-copy p{
  margin:0 0 8px;
  color:#b9b3aa;
  font-size:14px;
}
.signature-copy span{
  display:block;
  color:#d9d3ca;
  font-size:16px;
  line-height:1.25;
}

/* Better responsive photo behavior */
.hero-photo,
.full-photo{
  transition:transform .25s ease;
}

@media (max-width:900px){
  .hero-watermark{
    animation:none;
  }
  .hero-photo,
  .full-photo{
    transform:none !important;
  }
}

@media (max-width:760px){
  .hero-grid{
    gap:18px;
  }
  .hero-copy{
    order:0;
  }
  .hero-visual{
    order:1;
    min-height:unset;
  }
  .hero-photo-card{
    min-height:460px;
    aspect-ratio:4/5;
  }
  .hero-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    padding-top:0;
  }
  .hero-badge{
    bottom:14px;
  }
  .hero-side-rail{
    top:14px;
    left:14px;
  }
  .image-frame{
    min-height:unset;
    aspect-ratio:4/5;
  }
  .full-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    padding-top:0 !important;
  }
  .studio-photo{
    object-position:center top;
    padding-top:0 !important;
  }
  .orange-signature{
    grid-template-columns:1px 1fr;
    padding:18px 16px;
  }
  .signature-line{
    min-height:100px;
  }
  .signature-copy strong{
    font-size:16px;
  }
  .signature-copy span{
    font-size:15px;
  }
}


/* V04.1 — Orange Consulting signature is now truly embedded */
.section-contact .lead.dark{
  color:#c9c3ba;
}
.orange-signature-card{
  margin-top:18px;
  padding:18px 20px 20px;
  border:1px solid rgba(230,113,36,.20);
  background:
    radial-gradient(circle at 20% 20%, rgba(230,113,36,.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.signature-kicker{
  margin:0 0 10px;
  font-size:9px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#9f9990;
}
.orange-signature-image{
  width:min(100%, 520px);
  height:auto;
  object-fit:contain;
}
.footer-grid{
  grid-template-columns:1fr auto minmax(220px, 330px) auto;
}
.footer-signature-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}
.footer-signature-image{
  width:100%;
  max-width:285px;
  height:auto;
  opacity:.92;
}

@media (max-width:1100px){
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-signature-wrap{
    justify-content:flex-start;
  }
  .footer-signature-image{
    max-width:320px;
  }
}
@media (max-width:760px){
  .orange-signature-card{
    padding:16px 14px 18px;
  }
  .orange-signature-image{
    width:100%;
  }
  .footer-signature-image{
    width:min(100%, 300px);
  }
}


/* =========================================================
   V04.2 — precision fixes
   ========================================================= */

/* --- ORANGE FLIP: prevent mirrored/front-face bleed --- */
.flip-card{
  -webkit-perspective:1200px;
  perspective:1200px;
}
.flip-card-inner{
  -webkit-transform-style:preserve-3d;
  transform-style:preserve-3d;
  will-change:transform;
}
.flip-face{
  -webkit-backface-visibility:hidden !important;
  backface-visibility:hidden !important;
  -webkit-transform-style:preserve-3d;
  transform-style:preserve-3d;
  will-change:transform, opacity;
  transition:opacity .18s linear;
}
.flip-front{
  -webkit-transform:rotateY(0deg) translateZ(1px);
  transform:rotateY(0deg) translateZ(1px);
  opacity:1;
}
.flip-back{
  -webkit-transform:rotateY(180deg) translateZ(1px);
  transform:rotateY(180deg) translateZ(1px);
  opacity:0;
}

/* Once flipped, fully hide the original letter/word face.
   This removes the reversed letter that some mobile browsers render through the back face. */
.flip-card:hover .flip-front,
.flip-card.is-flipped .flip-front,
.flip-card:focus-within .flip-front{
  opacity:0;
  pointer-events:none;
}
.flip-card:hover .flip-back,
.flip-card.is-flipped .flip-back,
.flip-card:focus-within .flip-back{
  opacity:1;
}

/* --- FORM SELECT OPTIONS: black text on white dropdown --- */
.lead-form select option{
  color:#111216 !important;
  background:#ffffff !important;
}
.lead-form select optgroup{
  color:#111216 !important;
  background:#ffffff !important;
}

/* --- Footer: unmistakable Orange Consulting signature band --- */
footer{
  background:#08090b;
  border-top:1px solid rgba(230,113,36,.28);
}
.footer-orange-band{
  width:100%;
  background:
    radial-gradient(circle at 76% 50%, rgba(230,113,36,.10), transparent 32%),
    linear-gradient(180deg, #111216 0%, #0b0b0d 100%);
  border-bottom:1px solid rgba(243,241,237,.08);
}
.footer-orange-inner{
  min-height:190px;
  display:grid;
  grid-template-columns:minmax(180px,.75fr) minmax(330px,1.25fr);
  gap:34px;
  align-items:center;
  padding:28px 0;
}
.footer-orange-label{
  display:grid;
  gap:8px;
}
.footer-orange-label span{
  font-size:9px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--orange);
}
.footer-orange-label strong{
  font-size:22px;
  letter-spacing:.04em;
  font-weight:500;
  color:#f0ece5;
}
.footer-orange-signature{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  width:100%;
  max-width:620px;
  height:auto;
  object-fit:contain;
  object-position:left center;
}
.footer-orange-fallback{
  display:none;
}
.footer-bottom-row{
  min-height:104px;
  grid-template-columns:1fr auto auto;
  padding:24px 0 30px;
}

/* retire older footer signature layout rules from V04.1 */
.footer-signature-wrap,
.footer-signature-image{
  display:none !important;
}

@media (max-width:1100px){
  .footer-orange-inner{
    grid-template-columns:1fr;
    gap:18px;
  }
  .footer-orange-signature{
    max-width:580px;
  }
  .footer-bottom-row{
    grid-template-columns:1fr;
    gap:12px;
  }
}

@media (max-width:760px){
  .footer-orange-inner{
    min-height:auto;
    padding:30px 0 24px;
    gap:14px;
  }
  .footer-orange-label strong{
    font-size:19px;
  }
  .footer-orange-signature{
    width:100%;
    max-width:100%;
  }
  .footer-bottom-row{
    padding-top:24px;
  }
}

/* If an image is blocked by an unusual host rule, the HTML still contains
   text fallback that can be manually enabled with this utility class. */
.signature-image-failed .footer-orange-signature{
  display:none !important;
}
.signature-image-failed .footer-orange-fallback{
  display:grid;
  gap:4px;
  color:#e8e2da;
}
.signature-image-failed .footer-orange-fallback strong{
  color:#fff;
  letter-spacing:.04em;
}
.signature-image-failed .footer-orange-fallback span{
  color:#c4beb6;
}
