
:root{
  --bg:#f3f0ea;
  --paper:#fffdf8;
  --ink:#1d1d1b;
  --charcoal:#2f3030;
  --muted:#6d6d68;
  --line:#d9d5cc;
  --yellow:#ffc400;
  --yellow-soft:#fff2b8;
  --soft:#ebe7dd;
  --card:#fffaf1;
  --radius:24px;
  --radius-sm:14px;
  --shadow:0 24px 60px rgba(29,29,27,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
::selection{background:var(--yellow);color:var(--ink)}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(243,240,234,.82);
  backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(29,29,27,.08);
}
.header-inner{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.04em;
}
.brand img{height:42px;width:auto}
.brand span{font-size:18px}
.nav{
  display:flex;
  align-items:center;
  gap:26px;
  color:var(--muted);
  font-size:14px;
  font-weight:650;
}
.nav a:hover{color:var(--ink)}
.header-cta{
  background:var(--ink);
  color:var(--paper);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
}
.header-cta:hover{background:#000}

main{overflow:hidden}
.section{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  padding:98px 0;
}
.hero{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  padding:88px 0 64px;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:56px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:850;
}
.kicker:before{
  content:"";
  width:32px;
  height:4px;
  background:var(--yellow);
  border-radius:999px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(48px, 7.4vw, 106px);
  line-height:.9;
  letter-spacing:-.08em;
  margin:18px 0 24px;
}
.lead{
  font-size:clamp(19px, 2vw, 24px);
  color:#3b3b36;
  max-width:760px;
  letter-spacing:-.02em;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 20px;
  border-radius:999px;
  border:1px solid var(--ink);
  font-weight:850;
  letter-spacing:-.01em;
}
.btn-primary{
  background:var(--yellow);
  color:var(--ink);
  border-color:var(--yellow);
}
.btn-secondary{background:transparent}
.btn:hover{transform:translateY(-1px)}
.hero-panel{
  min-height:540px;
  background:var(--charcoal);
  color:var(--paper);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
  position:relative;
  isolation:isolate;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-panel:before{
  content:"";
  position:absolute;
  inset:auto -80px -90px auto;
  width:280px;height:280px;
  background:var(--yellow);
  border-radius:50%;
  filter:blur(70px);
  opacity:.55;
  z-index:-1;
}
.panel-top{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.mini-card{
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:18px;
  min-height:128px;
  background:rgba(255,255,255,.04);
}
.mini-card strong{
  display:block;
  font-size:28px;
  letter-spacing:-.05em;
}
.mini-card span{color:#cfcfc9;font-size:13px}
.panel-bottom h2{
  color:var(--paper);
  font-size:clamp(31px,4vw,54px);
  line-height:1;
  letter-spacing:-.06em;
  margin-bottom:18px;
}
.panel-bottom p{
  color:#dcd9d0;
  font-size:17px;
  margin-bottom:0;
}

.problem{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap:56px;
  align-items:start;
}
.section-title{
  font-size:clamp(35px, 5vw, 68px);
  letter-spacing:-.07em;
  line-height:.98;
  margin:16px 0 22px;
}
.section-copy{
  color:#474740;
  font-size:18px;
  max-width:720px;
}
.problem-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.problem-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  min-height:190px;
}
.problem-card .num{
  display:inline-grid;
  place-items:center;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--yellow);
  font-weight:900;
  margin-bottom:20px;
}
.problem-card h3{
  font-size:22px;
  letter-spacing:-.04em;
  line-height:1.05;
  margin-bottom:12px;
}
.problem-card p{color:var(--muted);margin:0}

.band{
  background:var(--ink);
  color:var(--paper);
}
.band .section{
  padding:82px 0;
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:56px;
}
.band h2{color:var(--paper)}
.band p{color:#ddd8cf}
.method-steps{
  display:grid;
  gap:12px;
}
.step{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:18px;
  align-items:start;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  padding:20px;
}
.step b{
  width:46px;height:46px;
  border-radius:14px;
  background:var(--yellow);
  color:var(--ink);
  display:grid;
  place-items:center;
  font-weight:950;
}
.step h3{margin-bottom:6px;font-size:20px;letter-spacing:-.03em}
.step p{margin:0;color:#d7d2ca}

.services-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(210px,1fr));
  gap:14px;
  overflow-x:auto;
  padding-bottom:10px;
}
.service-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  min-height:318px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.service-card h3{
  font-size:24px;
  line-height:1;
  letter-spacing:-.045em;
}
.service-card p{color:var(--muted);margin-bottom:22px}
.tag{
  display:inline-flex;
  align-self:flex-start;
  border-radius:999px;
  padding:8px 12px;
  background:var(--soft);
  color:#4f4f48;
  font-size:12px;
  font-weight:850;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
}
.big-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:32px;
  padding:38px;
  min-height:420px;
}
.big-card.yellow{
  background:var(--yellow);
}
.big-card h3{
  font-size:clamp(30px,4vw,48px);
  line-height:.96;
  letter-spacing:-.06em;
}
.big-card p{font-size:17px;color:#494941}
.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.pill{
  background:rgba(29,29,27,.08);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}
.big-card.dark{
  background:var(--charcoal);
  color:var(--paper);
}
.big-card.dark p{color:#ddd8cf}
.big-card.dark .pill{background:rgba(255,255,255,.11);color:var(--paper)}

.experience{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:56px;
}
.timeline{
  border-left:2px solid var(--line);
  display:grid;
  gap:22px;
  padding-left:28px;
}
.timeline-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  position:relative;
}
.timeline-item:before{
  content:"";
  position:absolute;
  left:-37px;top:28px;
  width:16px;height:16px;border-radius:50%;
  background:var(--yellow);
  border:4px solid var(--bg);
}
.timeline-item .date{font-size:13px;color:var(--muted);font-weight:850;text-transform:uppercase;letter-spacing:.08em}
.timeline-item h3{font-size:23px;letter-spacing:-.035em;margin:8px 0}
.timeline-item p{color:var(--muted);margin:0}

.cta{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto 40px;
  padding:58px;
  background:var(--ink);
  color:var(--paper);
  border-radius:34px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:38px;
  align-items:end;
}
.cta h2{
  font-size:clamp(38px,5.5vw,78px);
  line-height:.92;
  letter-spacing:-.075em;
  margin-bottom:20px;
}
.cta p{color:#ddd8cf;font-size:18px;margin:0}
.cta-actions{display:flex;flex-direction:column;gap:12px;align-items:stretch}
.cta .btn{border-color:rgba(255,255,255,.22)}
.cta .btn-secondary{color:var(--paper)}
.cta .btn-primary{color:var(--ink)}

.footer{
  border-top:1px solid var(--line);
}
.footer-inner{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  padding:30px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:var(--muted);
  font-size:14px;
}
.footer-links{display:flex;gap:18px;font-weight:700}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in-view{
  opacity:1;
  transform:none;
}

@media (max-width: 920px){
  .nav{display:none}
  .hero,.problem,.band .section,.split,.experience,.cta{grid-template-columns:1fr}
  .hero{padding-top:56px}
  .hero-panel{min-height:auto}
  .panel-top{grid-template-columns:1fr}
  .problem-grid{grid-template-columns:1fr}
  .section{padding:72px 0}
  .cta{padding:34px}
}
@media (max-width: 560px){
  .header-inner,.section,.hero,.cta,.footer-inner{width:calc(100% - 28px)}
  h1{font-size:52px}
  .services-grid{grid-template-columns:1fr;overflow:visible}
  .service-card{min-height:auto}
  .footer-inner{align-items:flex-start;flex-direction:column}
  .brand span{display:none}
}

.timeline-item-featured{
  border-color:rgba(255,196,0,.55);
  box-shadow:0 18px 50px rgba(29,29,27,.07);
}
.timeline-item-featured:before{
  width:20px;height:20px;left:-39px;
}
.timeline-item p + p{margin-top:12px}
.timeline-item-portfolio{
  background:transparent;
  box-shadow:none;
}
.text-link{
  display:inline-flex;
  margin-top:16px;
  font-weight:900;
  color:var(--ink);
  border-bottom:2px solid var(--yellow);
  padding-bottom:3px;
}
.text-link:hover{border-bottom-color:var(--ink)}

/* --- Production refinements --- */
button{font:inherit}
:focus-visible{
  outline:3px solid var(--yellow);
  outline-offset:4px;
}
.skip-link{
  position:fixed;
  left:16px;
  top:12px;
  z-index:100;
  background:var(--ink);
  color:var(--paper);
  padding:10px 14px;
  border-radius:10px;
  transform:translateY(-180%);
  transition:transform .2s ease;
}
.skip-link:focus{transform:none}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:50%;
  background:var(--paper);
  color:var(--ink);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:currentColor;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-nav{
  display:none;
}

.projects-band{
  background:#e9e5dc;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.projects-intro{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:20px 56px;
  align-items:start;
  margin-bottom:42px;
}
.projects-intro .kicker{grid-column:1/-1}
.projects-intro .section-title{margin:0}
.projects-intro .section-copy{margin:2px 0 0}
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.project-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  min-height:360px;
  display:flex;
  flex-direction:column;
}
.project-card-featured{
  border-color:rgba(255,196,0,.7);
  box-shadow:0 20px 54px rgba(29,29,27,.08);
}
.project-type{
  display:block;
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:850;
  margin-bottom:44px;
}
.project-card h3{
  font-size:clamp(30px,3vw,44px);
  line-height:.98;
  letter-spacing:-.055em;
  margin-bottom:14px;
}
.project-card p{
  color:var(--muted);
  margin-bottom:24px;
}
.project-card .pill-list{margin-top:auto}

.timeline-item-current{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}
.timeline-item-current p{color:#d9d5cc}
.timeline-item-current .date{color:var(--yellow)}
.timeline-item-current:before{background:var(--yellow);border-color:var(--bg)}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
}

@media (max-width: 1080px){
  .nav{gap:18px}
  .nav a{font-size:13px}
  .projects-grid{grid-template-columns:1fr 1fr}
  .project-card-featured{grid-column:1/-1;min-height:auto}
}

@media (max-width: 920px){
  .header-cta{display:none}
  .menu-toggle{display:flex}
  .mobile-nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:rgba(243,240,234,.98);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
    padding:12px 20px 22px;
  }
  .mobile-nav:not([hidden]){display:grid}
  .mobile-nav a{
    padding:14px 0;
    border-bottom:1px solid rgba(29,29,27,.08);
    font-size:17px;
    font-weight:750;
  }
  .mobile-nav .mobile-nav-cta{
    margin-top:12px;
    padding:14px 18px;
    border:0;
    border-radius:999px;
    background:var(--ink);
    color:var(--paper);
    text-align:center;
  }
  body.menu-open{overflow:hidden}
  .projects-intro{grid-template-columns:1fr;gap:12px}
  .projects-intro .kicker{grid-column:auto}
  .projects-grid{grid-template-columns:1fr}
  .project-card-featured{grid-column:auto}
}

@media (max-width: 560px){
  .project-card{min-height:auto;padding:24px}
  .project-type{margin-bottom:30px}
}


/* --- 2024—Actualidad / trayectoria --- */
.timeline-subtitle{
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  color:#f3f0ea!important;
  margin:2px 0 18px!important;
}
.current-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:26px;
}
.current-block{
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.035);
}
.current-block-wide{grid-column:1/-1}
.current-num{
  display:block;
  color:var(--yellow);
  font-size:11px;
  font-weight:900;
  letter-spacing:.09em;
  margin-bottom:18px;
}
.current-block h4{
  margin:0 0 9px;
  font-size:17px;
  letter-spacing:-.025em;
}
.current-block p{
  font-size:14px;
  line-height:1.6;
  color:#d9d5cc;
}
.current-block p + p{margin-top:10px}
.metric-note strong{color:var(--paper);font-weight:800}

@media (max-width: 640px){
  .current-grid{grid-template-columns:1fr}
  .current-block-wide{grid-column:auto}
}

/* --- BrandBase Studio copy/design refinements --- */
.brand span{
  font-size:18px;
  letter-spacing:-.035em;
}
.hero-panel:before{
  display:none;
}
.hero-panel{
  background:#262624;
  box-shadow:none;
  border:1px solid rgba(255,255,255,.08);
}
.mini-card{
  background:#30302d;
  border-color:#45443f;
}
.mini-card span{
  color:#f1eee5;
}
.panel-bottom p{
  color:#f1eee5;
}
.section-copy p{
  margin:0 0 14px;
}
.section-copy p:last-child{margin-bottom:0}
.problem{
  grid-template-columns:.9fr 1.1fr;
}
.problem-card{
  min-height:230px;
  box-shadow:none;
  background:#fffdf8;
}
.problem-card h3{
  font-size:23px;
  line-height:1.06;
}
.problem-card p{
  color:#504f49;
  font-size:16px;
  line-height:1.55;
}
.band{
  background:#20201e;
}
.band .kicker{
  color:#e8e3d8;
}
.band .section-copy{
  color:#f3f0ea;
}
.band .section-copy p{
  color:#f3f0ea;
}
.step{
  background:#2c2c29;
  border-color:#55534d;
  border-radius:18px;
  padding:24px;
}
.step h3{
  color:#fffdf8;
  font-size:24px;
}
.step p{
  color:#f1eee5;
  font-size:17px;
  line-height:1.55;
}
.services-section .section-title{
  max-width:980px;
}
.services-intro{
  margin-top:-6px;
  margin-bottom:34px;
}
.services-grid-pricing{
  grid-template-columns:repeat(3,minmax(0,1fr));
  overflow:visible;
}
.service-card{
  min-height:390px;
  gap:28px;
}
.service-card-featured{
  background:#262624;
  color:var(--paper);
  border-color:#262624;
}
.service-card-featured p,
.service-card-featured li{color:#f1eee5!important}
.service-eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  color:#6d6d68;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:900;
}
.service-card-featured .service-eyebrow{color:var(--yellow)}
.service-card ul{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:grid;
  gap:10px;
}
.service-card li{
  position:relative;
  padding-left:18px;
  color:#55534d;
  font-size:14px;
  line-height:1.45;
}
.service-card li:before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--yellow);
}
.price{
  display:block;
  font-size:22px;
  letter-spacing:-.035em;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.service-card-featured .price{border-color:#55534d;color:var(--yellow)}
.pricing-note{
  margin:20px 0 0;
  color:var(--muted);
  font-size:14px;
}
.big-card.dark p{
  color:#f1eee5;
}
.timeline-item-current{
  background:#fffdf8;
  color:var(--ink);
  border-color:var(--line);
}
.timeline-item-current p{color:var(--muted)}
.timeline-item-current .date{color:var(--muted)}
.timeline-item-current:before{border-color:var(--bg)}
.timeline-item-featured{
  background:#262624;
  color:var(--paper);
  border-color:#262624;
}
.timeline-item-featured p{color:#f1eee5}
.timeline-item-featured .date{color:var(--yellow)}
.timeline-item-featured h3{color:#fffdf8}
.cta{
  background:#262624;
  box-shadow:none;
}
.cta p{color:#f1eee5}
@media (max-width: 1080px){
  .services-grid-pricing{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 720px){
  .services-grid-pricing{grid-template-columns:1fr}
  .service-card{min-height:auto}
}


/* --- V6 corrections based on approved previous structure --- */
.brand-horizontal img{
  height:42px;
  width:auto;
  max-width:230px;
  object-fit:contain;
}
.brand-horizontal span{display:none!important}
.header-cta{cursor:pointer}
.nav{gap:30px}
.hero .lead{
  font-size:clamp(17px,1.45vw,20px);
  max-width:680px;
}
.hero-panel:before{display:none!important}
.hero-panel{
  background:#262624!important;
  border:1px solid #3d3c37!important;
  box-shadow:none!important;
  position:relative;
  overflow:hidden;
}
.hero-panel:after{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:8px;
  background:linear-gradient(90deg,var(--yellow) 0 32%,#c7c2b8 32% 62%,#111 62% 100%);
}
.panel-top{position:relative;z-index:1}
.panel-bottom{position:relative;z-index:1}
.mini-card strong{color:var(--yellow)}
.panel-bottom h2{font-size:clamp(30px,3.5vw,50px)}
.panel-bottom p{font-size:16px;line-height:1.6;color:#f1eee5!important}
.problem-card:nth-child(2),.problem-card:nth-child(3){background:#f8f4eb}
.problem-card h3{max-width:95%}
.band{background:#20201e!important}
.band .section-copy p{color:#f7f2e8!important;line-height:1.62}
.step{grid-template-columns:70px 1fr!important;background:#2c2c29!important;border-color:#55534d!important}
.step b{width:52px!important;height:52px!important;border-radius:16px!important;font-size:16px}
.step h3{color:#fffdf8!important;font-size:24px!important}
.step p{color:#f1eee5!important;font-size:16px!important;line-height:1.58!important}
.big-card.yellow{background:var(--yellow)!important;color:var(--ink)}
.big-card.yellow p{color:#3f3b31!important}
.timeline-item-featured{background:#fffdf8!important;color:var(--ink)!important;border-color:rgba(255,196,0,.72)!important;box-shadow:0 18px 50px rgba(29,29,27,.07)!important}
.timeline-item-featured .date{color:#6d6d68!important}
.timeline-item-featured h3{color:var(--ink)!important}
.timeline-item-featured p{color:var(--muted)!important}
.contact-form{
  display:grid;
  gap:12px;
  margin-bottom:12px;
}
.contact-form label{
  display:grid;
  gap:7px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  color:#f1eee5;
}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:13px 14px;
  background:#fffdf8;
  color:var(--ink);
  font:inherit;
  font-weight:600;
}
.contact-form textarea{resize:vertical;min-height:110px}
.cta-actions{align-items:stretch}
.cta .btn-secondary{background:transparent}
@media (max-width:920px){
  .header-cta{display:inline-flex!important}
  .header-inner{height:auto;min-height:78px;align-items:center;flex-wrap:wrap;padding:10px 0}
  .nav{display:flex!important;order:3;width:100%;overflow-x:auto;padding:6px 0 2px;gap:22px;white-space:nowrap}
  .brand-horizontal img{height:36px;max-width:210px}
}
@media (max-width:560px){
  .header-actions{margin-left:auto}
  .header-cta{padding:10px 14px;font-size:13px}
  .brand-horizontal img{height:32px;max-width:185px}
  .hero .lead{font-size:17px}
}


/* --- V7 contact section balance --- */
.cta{
  align-items:center!important;
  padding-top:64px!important;
  padding-bottom:64px!important;
  min-height:auto!important;
}
.cta-copy{
  align-self:center!important;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:620px;
}
.cta-copy .kicker{margin-bottom:12px}
.cta-copy h2{
  margin-top:0!important;
  margin-bottom:22px!important;
}
.cta-copy p{
  max-width:610px;
  line-height:1.56;
}
.contact-support{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:30px;
}
.contact-support span{
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:10px 13px;
  color:#f8f3ea;
  font-size:13px;
  font-weight:750;
  background:rgba(255,255,255,.035);
}
@media (max-width:920px){
  .contact-support{grid-template-columns:1fr}
}

.hidden-field {
  display: none;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--bg);
}

.thanks-card {
  width: min(720px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(29, 29, 27, 0.08);
}

.thanks-card h1 {
  margin: 12px 0 16px;
  max-width: 620px;
}

.thanks-card p {
  max-width: 560px;
  margin-bottom: 28px;
}
