/* =========================================================
   GLOBAL / RESET
========================================================= */

.site-info {
  display: none !important;
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

body,
h1, h2, h3, h4, h5, h6,
p, a, span, div,
button, input, textarea,
.site-header, .site-footer,
.main-navigation {
  font-family: 'Montserrat', sans-serif !important;
  color: white;
}

.site-title a,
.main-title a {
  color: white;
  font-weight: 300;
}

.site-title a:hover,
.main-title a:hover {
  color: white;
  font-weight: 400;
}

/* =========================================================
   NAVIGATION — DESKTOP
========================================================= */

.main-navigation {
  position: absolute;
  right: 1%;
  left: auto;
  width: auto;
  display: flex;
  justify-content: flex-end;
  background: transparent !important;
}

.site-header,
.inside-header,
.main-navigation,
.site-header::before {
  background: transparent !important;
}

/* =========================================================
   NAVIGATION — TABLET / MOBILE
========================================================= */

@media (max-width: 1050px) {

  #site-navigation a,
  nav.main-navigation a,
  nav.main-navigation li a {
    color: white !important;
  }

  .main-navigation {
    display: flex;
    justify-content: flex-end;
  }

}

@media (max-width: 1000px) {

  .main-navigation {
    position: relative !important;
    width: 100% !important;
    right: auto !important;
    left: auto !important;
  }

  .inside-header {
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    right: 1px;
    top: 30%;
    transform: translateY(-85%);
  }

  .menu-toggle .mobile-menu {
    display: none;
  }

  .main-navigation.toggled {
    background: #002d15;
    padding: 11px 0;
    animation: navSlide .28s ease forwards;
  }

  .main-navigation.toggled ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .main-navigation.toggled a {
    color: white !important;
    font-size: 13px;
    letter-spacing: .15em;
    font-weight: 300;
    text-transform: uppercase;
    opacity: .9;
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-navigation.toggled a:hover {
    opacity: 1;
    transform: translateY(-2px);
  }

}

@keyframes navSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   GENERATEPRESS LAYOUT OVERRIDES
========================================================= */

.separate-containers .inside-article,
.one-container .site-content {
  padding: 0;
}

/* =========================================================
   HERO SPLIT LAYOUT
========================================================= */

.gp-hero-split {
  display: flex;
  min-height: 100vh;
  margin-top: -150px;
}

.gp-hero-left {
  flex: 1.1;
  background: #00411F;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 160px 10% 120px;
  position: relative;
}

.gp-hero-right {
  flex: 0.9;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 90px 60px;
  overflow: hidden;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  max-width: 700px;
}

.gp-hero-content h1 {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-left: -5px;
}

.gp-hero-content p,
.hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 550px;
  opacity: .85;
}

.gp-eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  opacity: .55;
  font-weight: 300;
}

.brand-highlight {
  font-weight: 600;
  letter-spacing: .3em;
  opacity: .95;
  font-size: 13px;
}

/* =========================================================
   HERO BUTTON
========================================================= */

.gp-hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  transition: background .5s ease, transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .4s ease;
}

.gp-hero-btn:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.45);
}

/* =========================================================
   HERO VIDEO
========================================================= */

.gp-hero-right video {
  max-height: 85vh;
  width: auto;
  border-radius: 24px;
  display: block;
}

/* =========================================================
   HERO DETAILS / MICRO ELEMENTS
========================================================= */

.gp-divider {
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 26px 0;
  transform-origin: left center;
}

.hero-edition {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .6;
}

.hero-edition-highlight {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  opacity: 1;
  color: white;
  display: block;
  margin-bottom: 6px;
}

.hero-edition-line {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .2em;
  opacity: .75;
  color: white;
  display: block;
  margin-bottom: 4px;
}

.hero-social {
  display: none;
}

/* =========================================================
   ANIMATION SYSTEM — SUBTLE / LUXURY
========================================================= */

.gp-hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.gp-hero-content > *:nth-child(1) { animation-delay: .3s; }
.gp-hero-content > *:nth-child(2) { animation-delay: .55s; }
.gp-hero-content > *:nth-child(3) { animation-delay: .75s; }
.gp-hero-content > *:nth-child(4) { animation-delay: .95s; }
.gp-hero-content > *:nth-child(5) { animation-delay: 1.1s; }
.gp-hero-content > *:nth-child(6) { animation-delay: 1.25s; }
.gp-hero-content > *:nth-child(7) { animation-delay: 1.35s; }

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gp-divider {
  opacity: 0;
  animation: dividerDraw 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: .75s;
}

@keyframes dividerDraw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.gp-hero-right {
  opacity: 0;
  animation: panelFade 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: .4s;
}

@keyframes panelFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gp-hero-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.09);
}

/* =========================================================
   HERO — MOBILE
========================================================= */

@media (max-width: 1050px) {

  .floating-tag {
    display: none !important;
  }

  .gp-hero-split {
    flex-direction: column;
    margin-top: -110px;
    min-height: auto;
    padding-bottom: 20px;
  }

  .gp-hero-left {
    width: 100%;
    padding: 100px 28px 40px;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .gp-hero-left::after {
    display: none;
  }

  .gp-hero-content {
    text-align: center;
    max-width: 520px;
  }

  .gp-hero-right {
    width: 100%;
    padding: 0 28px 70px;
    display: flex;
    justify-content: center;
  }

  .gp-hero-right video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    border-radius: 18px;
  }

  .gp-hero-content h1 {
    font-size: clamp(34px, 8vw, 44px);
    line-height: 1.15;
    letter-spacing: -.02em;
  }

  .gp-hero-content p,
  .hero-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
    opacity: .85;
  }

  .gp-divider {
    width: 50px;
    margin: 22px auto;
    transform-origin: center center;
  }

  .gp-hero-btn {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    text-align: center;
    padding: 13px 28px;
    font-size: 10px;
    letter-spacing: .14em;
  }
  

  .hero-edition {
    margin-top: 28px;
    margin-left: -16px;
    margin-right: -16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 8px;
    width: calc(100% + 32px);
    box-sizing: border-box;
  }

  .hero-edition-highlight {
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero-edition-line {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: .75;
    line-height: 1.6;
  }

}

@media (max-width: 1050px) {

  .gp-hero-split {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .how-section {
    margin-top: 0;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 700px) {

  .hero-title {
    font-size: clamp(34px, 8vw, 40px);
    line-height: 1.15;
    text-align: center;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .hero-break {
    display: none;
  }

}

/* ======================================================
   HOW SECTION — PREMIUM LIGHT EDITORIAL
====================================================== */


/* ======================================================
   SECTION BASE
====================================================== */

.how-section{
  position:relative;
  padding:180px 10%;
  background:linear-gradient(to bottom,#f7faf8,#f1f6f3);
  overflow:hidden;
}


/* ======================================================
   SUBTLE BACKGROUND ACCENT
====================================================== */

.how-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,65,31,.05),
    transparent 45%
  );
  pointer-events:none;
}


/* ======================================================
   LAYOUT
====================================================== */

.how-inner{
  display:flex;
  gap:120px;
}

.how-left{
  max-width:600px;
  margin-left:-80px;
}

.how-right{
  flex:1;
  position:relative;
	margin-left: 0px;
}


/* ======================================================
   TYPOGRAPHY
====================================================== */

.how-label{
  font-size:11px;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:#00411F;
  opacity:.7;
}

.how-left h2{
  font-size:clamp(46px,4vw,55px);
  font-weight:300;
  line-height:1.08;
  margin:20px 0 30px;
  letter-spacing:-0.02em;
  color:#0f2b24;
}

.how-left h2 span{
  color:#4f5f5a;
  opacity:.55;
}

.how-left p{
  color:#4f5f5a;
  line-height:1.7;
}


/* ======================================================
   TIMELINE STRUCTURE
====================================================== */

.timeline{
  position:relative;
  padding-left:85px;
}

/* Static vertical line */

.timeline-line{
  position:absolute;
  left:30px;
  top:20px;
  height:100%;
  width:2px;
  background:rgba(0,65,31,.12);
  border-radius:2px;
}


/* ======================================================
   TIMELINE PROGRESS ANIMATION
====================================================== */

.timeline-progress{
  position:absolute;
  left:30px;
  top:20px;
  width:2px;
  height:100%;

  transform-origin:top;
  transform:scaleY(0);

  background:linear-gradient(
    to bottom,
    #00411F,
    #1b7a4f
  );

  border-radius:3px;
  will-change:transform;
}

/* Moving highlight indicator */

.timeline-progress::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
  width:8px;
  height:8px;
  background:#00411F;
  border-radius:50%;
  box-shadow:0 0 12px rgba(0,65,31,.35);
}


/* ======================================================
   TIMELINE STEPS
====================================================== */

.timeline-step{
  position:relative;
  margin-bottom:90px;

  opacity:.25;
  transform:translateY(30px);

  transition:
    opacity .7s cubic-bezier(.22,.61,.36,1),
    transform .7s cubic-bezier(.22,.61,.36,1);
}

.timeline-step.active{
  opacity:1;
  transform:translateY(0);
}


/* ======================================================
   DOT MARKERS
====================================================== */

.timeline-dot{
  position:absolute;
  left:-75px;
  top:0;

  width:46px;
  height:46px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
  letter-spacing:.15em;

  color:#00411F;
  background:white;

  border:1px solid rgba(0,65,31,.12);
  border-radius:50%;

  box-shadow:0 6px 16px rgba(0,0,0,.05);
}

/* Active step highlight */

.timeline-step.active .timeline-dot{
  background:#00411F;
  color:white;
  border-color:#00411F;
  box-shadow:0 8px 26px rgba(0,65,31,.25);
}


/* ======================================================
   STEP CONTENT
====================================================== */

.timeline-content h4{
  margin-bottom:10px;
  color:#00411F;
  font-weight:400;
}

.timeline-content p{
  color:#4f5f5a;
  line-height:1.6;
}

/* ======================================================
   TABLET VERSION — BALANCED LAYOUT
====================================================== */

@media (max-width:1200px){

  /* Section padding */

  .how-section{
    padding:150px 6%;
  }

  /* Reduce desktop gap */

  .how-inner{
    gap:70px;
  }

  /* Remove large negative offset */

  .how-left{
    margin-left:0;
    max-width:480px;
  }

  /* Typography scaling */

  .how-left h2{
    font-size:clamp(38px,4vw,44px);
    line-height:1.1;
  }

  .how-left p{
    font-size:15px;
    line-height:1.75;
  }

  /* ==========================
     TIMELINE TABLET ADJUSTMENT
  ========================== */

  .timeline{
    padding-left:70px;
  }

  .timeline-line,
  .timeline-progress{
    left:24px;
  }

  .timeline-step{
    margin-bottom:75px;
  }

  .timeline-dot{
    left:-60px;
    width:40px;
    height:40px;
    font-size:11px;
  }

}
/* ======================================================
   MOBILE VERSION — REFINED
====================================================== */

@media (max-width:900px){

  /* Section padding */

  .how-section{
    padding:120px 28px;
  }

  /* Stack layout */

  .how-inner{
    flex-direction:column;
    gap:70px;
  }

  .how-left{
    max-width:100%;
    margin-left:0;
  }

  /* Typography scaling */

  .how-left h2{
    font-size:clamp(26px,6vw,35px);
    line-height:1.15;
  }

  .how-left p{
    font-size:15px;
    line-height:1.75;
  }

  /* ==========================
     TIMELINE MOBILE LAYOUT
  ========================== */

  .timeline{
    padding-left:60px;
  }

  .timeline-line,
  .timeline-progress{
    left:20px;
  }

  .timeline-step{
    margin-bottom:65px;
  }

  /* Dot markers */

  .timeline-dot{
    left:-50px;
    width:36px;
    height:36px;
    font-size:10px;
    letter-spacing:.12em;
  }

  /* Step text */

  .timeline-content h4{
    font-size:16px;
  }

  .timeline-content p{
    font-size:14px;
    line-height:1.7;
  }

}
/* =========================================
   INVITE STRUCTURE — ARCHITECTURAL BANNER
========================================= */

.invite-structure{
  background:#00411F;
  min-height:34vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 40px;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}


/* inner container */

.invite-structure-inner{
  max-width:720px;
  text-align:center;
  color:#ffffff;
  position:relative;
}


/* thin framing lines */

.invite-structure-topline,
.invite-structure-bottomline{
  width:120px;
  height:1px;
  background:rgba(255,255,255,.35);
  margin:0 auto;
}

.invite-structure-topline{
  margin-bottom:28px;
}

.invite-structure-bottomline{
  margin-top:34px;
}


/* label */

.invite-structure-label{
  font-size:10px;
  letter-spacing:.45em;
  text-transform:uppercase;
  opacity:.6;
  display:block;
}


/* headline */

.invite-structure-inner h3{
  font-size:clamp(30px,2.4vw,36px);
  font-weight:300;
  margin:23px 0 18px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#ffffff !important;
}

/* secondary line tone */

.invite-structure-inner h3 span{
  color:rgba(255,255,255,.65) !important;
  font-weight:300;
}


/* force headline one line desktop */

.invite-headline{
  white-space:nowrap;
}


/* explanation text */

.invite-note{
  font-size:14px;
  line-height:1.6;
  opacity:.75;
  max-width:600px;
  margin:0 auto 34px;
  letter-spacing:.01em;
	margin-top: -25px;
}



/* button */

.invite-structure-btn{
  display:inline-block;
  padding:12px 36px;
  border-radius:40px;
  border:1px solid rgba(255,255,255,.45);
  color:#ffffff;
  text-decoration:none;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  transition:.28s ease;
}

.invite-structure-btn:hover{
  background:#ffffff;
  color:#00411F;
}





/* =========================================
   INVITE STRUCTURE — MOBILE REFINED
========================================= */

@media (max-width:900px){

  .invite-structure{
    min-height:auto;
    padding:70px 28px;
  }

  .invite-structure-inner{
    max-width:100%;
  }

  /* Allow headline wrapping */
  .invite-headline{
    white-space:normal;
  }

  .invite-structure-inner h3{
    font-size:clamp(22px,6vw,28px);
    line-height:1.3;
    margin:18px 0 16px;
  }

  .invite-structure-label{
    font-size:9px;
    letter-spacing:.35em;
  }

  .invite-note{
    font-size:15px;
    line-height:1.7;
    margin-bottom:28px;
  }

  /* framing lines smaller */
  .invite-structure-topline,
  .invite-structure-bottomline{
    width:80px;
  }

  .invite-structure-topline{
    margin-bottom:20px;
  }

  .invite-structure-bottomline{
    margin-top:24px;
  }

  /* Button more tap-friendly */
  .invite-structure-btn{
    width:100%;
    max-width:260px;
    padding:15px 28px;
    font-size:11px;
    letter-spacing:.16em;
  }

}

/* =========================================
GUIDED COMPARISON SECTION
========================================= */

.guided-compare{
  background:white;
  padding:150px 6% 130px;
}


/* =========================================
INTRO
========================================= */

.compare-intro{
  max-width:760px;
  margin:0 auto 90px;
  text-align:center;
}

.compare-intro span{
  font-size:10px;
  letter-spacing:.48em;
  text-transform:uppercase;
  color:#00411F;
  opacity:.65;
  display:block;
  margin-bottom:20px;
}

.compare-intro h2{
  font-size:clamp(34px,2.6vw,42px);
  font-weight:300;
  color:#0f2b24;
  margin-bottom:18px;
  letter-spacing:-.02em;
}

.compare-intro p{
  font-size:15px;
  line-height:1.75;
  color:#4f5f5a;
}


/* =========================================
STAGE WRAPPER
========================================= */

.compare-stage-wrapper{
  position:relative;
  min-height:100vh;
}


/* =========================================
STAGES
========================================= */

.compare-stage{
  position:absolute;
  inset:0;
  display:flex;
  opacity:0;
  transform:translateY(40px);
  pointer-events:none;
  transition:
    opacity .7s cubic-bezier(.22,.61,.36,1),
    transform .7s cubic-bezier(.22,.61,.36,1);
}

.compare-stage.active{
  opacity:1;
  transform:none;
  pointer-events:auto;
}


/* =========================================
SIDES
========================================= */

.compare-side{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:50px 40px;
  position:relative;
}

/* subtle architectural divider */

.compare-side:first-child::after{
  content:"";
  position:absolute;
  right:0;
  top:20%;
  height:60%;
  width:1px;
  background:rgba(0,65,31,.08);
}


/* =========================================
DEVICE FRAME
========================================= */

.device-frame{
  padding:26px;
  border-radius:40px;
  background:linear-gradient(
    180deg,
    #ffffff,
    #fafcfb
  );
  position:relative;
}

/* soft inner edge mask */

.device-frame::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:40px;
  pointer-events:none;
  background:
    radial-gradient(
      ellipse at center,
      transparent 70%,
      rgba(0,0,0,.03)
    );
}


/* =========================================
VIDEO (NO SHADOW — CLEAN BLEND)
========================================= */

.device-frame video{
  width:380px;
  max-width:100%;
  border-radius:28px;
  display:block;
}

.scale-up{
  transform:scale(1.9);
}


/* =========================================
BUTTONS
========================================= */

.vote-btn{
  margin-bottom:55px;
  padding:14px 36px;
  border-radius:40px;
  border:1px solid #00411F;
  background:transparent;
  color:#00411F;

  font-family:'Montserrat',sans-serif;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;

  cursor:pointer;

  transition:
    background .22s ease,
    color .22s ease,
    transform .18s ease,
    box-shadow .22s ease,
    letter-spacing .18s ease;
}

/* subtle luxury hover */

.vote-btn:hover{
  background:#00411F;
  color:white;
  letter-spacing:.14em;
}


/* =========================================
FRAME NOTE — TOP INSIDE DEVICE FRAME
========================================= */

.frame-note.top{
  margin-bottom:18px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#00411F !important;
  opacity:.7;
  text-align:center;
}


/* =========================================
VOTE COMPLETION STATE
========================================= */

.vote-complete{
  opacity:0.45;
  pointer-events:none;
  transition:opacity .4s ease;
}

.vote-btn.voted{
  background:#00411F;
  color:#fff;
  border-color:#00411F;
  letter-spacing:.14em;
  transform:scale(1.05);

  box-shadow:
    0 0 0 6px rgba(0,65,31,.08),
    0 8px 18px rgba(0,0,0,.10);
}


/* =========================================
CONFIRMATION MESSAGE
========================================= */

.vote-confirmation{
  margin-top:80px;
  text-align:center;
  animation:voteFadeIn .8s ease forwards;
  opacity:0;
}

.vote-confirmation .vote-small{
  display:block;
  font-size:10px;
  letter-spacing:.45em;
  text-transform:uppercase;
  color:#00411F;
  margin-bottom:18px;
}

.vote-confirmation h3{
  font-size:22px;
  font-weight:300;
  letter-spacing:-.01em;
  color:#00411F;
  margin:0;
}


/* =========================================
FADE ANIMATION
========================================= */

@keyframes voteFadeIn{

  from{
    opacity:0;
    transform:translateY(12px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}


/* =========================================
THANK YOU BUTTON
========================================= */

.vote-confirm-center{

  display:block;
  margin:0 auto 60px;

  padding:14px 36px;
  border-radius:40px;

  border:1px solid #00411F;
  background:#00411F;
  color:white;

  font-family:'Montserrat',sans-serif;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;

  box-shadow:
    0 0 0 6px rgba(0,65,31,.08),
    0 10px 22px rgba(0,0,0,.12);

  opacity:0;
  pointer-events:none;

  transform:translateY(24px) scale(.96);
  filter:blur(6px);

  transition:
    opacity .9s cubic-bezier(.22,.61,.36,1),
    transform .9s cubic-bezier(.22,.61,.36,1),
    filter .9s cubic-bezier(.22,.61,.36,1);

}

.vote-confirm-center.show{

  opacity:1;

  transform:translateY(0) scale(1);

  filter:blur(0);

}

/* =========================================================
GUIDED COMPARISON — MOBILE SAFE STAGING
========================================================= */

@media (max-width:900px){

  .guided-compare{
    padding:100px 24px 90px;
  }

  .compare-intro{
    margin:0 auto 60px;
  }

  .compare-intro h2{
    font-size:28px;
  }

  .compare-stage-wrapper{
    position:relative;
    min-height:auto;
  }

  .compare-stage{
    position:relative;
    inset:auto;

    display:none;
    flex-direction:column;
    gap:70px;

    opacity:1;
    transform:none;
    pointer-events:auto;
  }

  .compare-stage.active{
    display:flex;
  }

  .compare-side{
    width:100%;
    padding:0;
  }

  .compare-side:first-child::after{
    display:none;
  }

  .device-frame{
    padding:18px;
    border-radius:30px;
  }

  .device-frame video{
    width:100%;
    max-width:320px;
    border-radius:24px;
  }

  .vote-btn{
    margin-top:40px;
    width:100%;
    max-width:260px;
  }

}

@media (max-width:768px){

  .compare-stage-wrapper{
    display:flex;
    flex-direction:column;
  }

  .compare-stage{
    order:1;
  }

  .vote-confirm-center{
    order:2;
    margin:40px auto 0;
  }

}

/* =========================================
FAQ SECTION — FULL WIDTH LUXURY
========================================= */

.faq-section{
  width:100%;
  background: linear-gradient(to bottom,#f7faf8,#f1f6f3);
  padding:140px 0;
}

/* full width container */
.faq-container{
  width:100%;
  max-width:100%;
  padding:0 8%;
  margin:0;
}

/* title */

.faq-title{
  text-align:center;
  font-size:14px;
  letter-spacing:.45em;
  font-weight:400;
  margin-bottom:80px;
  color:#0f2b24 !important;
}


/* =========================================
FAQ TEXT COLOR FIX (FOR GLOBAL WHITE TYPOGRAPHY)
========================================= */

/* questions */

.faq-question,
.faq-question span{
  color:#00411F !important;
}

/* hover state */

.faq-question:hover,
.faq-question:hover span{
  color:#00411F !important;
}

/* answers */

.faq-answer,
.faq-answer p,
.faq-answer strong,
.faq-answer em{
  color:#00411F !important;
}

/* FAQ title */

.faq-title{
  color:#00411F !important;
}

/* plus icon */

.faq-icon{
  color:#00411F !important;
}

.faq-item.active .faq-icon{
  color:#00411F !important;
}

/* =========================================
ITEM
========================================= */

.faq-item{
  border-bottom:1px solid rgba(0,0,0,.12);
}

/* =========================================
QUESTION BUTTON
========================================= */

.faq-question{
  width:100%;
  background:transparent !important;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:34px 0 !important;
  font-size:20px;
  font-weight:300;
  letter-spacing:.02em;
  text-align:left;
  cursor:pointer;

  /* override global white text */
  color:#1a1a1a !important;

  letter-spacing:.01em;

  /* remove WP hover background */
  transition:color .3s ease;
}

/* remove black hover */
.faq-question:hover{
  background:transparent !important;
  color:#00411F !important;
}

/* remove default focus */
.faq-question:focus{
  outline:none;
}

/* =========================================
ICON
========================================= */

.faq-icon{
  font-size:23px;
  font-weight:200;
  opacity:.6;
  transition:.35s ease;
}

.faq-question:hover .faq-icon{
  opacity:1;
}

/* =========================================
ANSWER
========================================= */

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-answer p{
  font-size:16px;
  line-height:1.8;
  color:#4f5f5a !important;
  margin-bottom:18px;
  padding-right:40px;
}

/* =========================================
ACTIVE STATE
========================================= */

.faq-item.active .faq-answer{
  max-height:800px;
  margin-bottom:30px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
  color:#00411F !important;
}

/* =========================================
   FAQ — MOBILE REFINED
========================================= */

@media (max-width:900px){

  .faq-section{
    padding:100px 0;
  }

  .faq-container{
    padding:0 28px;
  }

  .faq-title{
    font-size:12px;
    letter-spacing:.35em;
    margin-bottom:50px;
  }

  /* Question */
  .faq-question{
    padding:22px 0 !important;
    font-size:17px;
    line-height:1.4;
  }

  /* Icon */
  .faq-icon{
    font-size:20px;
  }

  /* Answer */
  .faq-answer p{
    font-size:15px;
    line-height:1.7;
    padding-right:0;
  }

  /* Reduce bottom spacing when open */
  .faq-item.active .faq-answer{
    margin-bottom:20px;
  }

}
/* ============================
STRUCTURED GREEN STRIP CTA
============================ */

.beta-cta{
  background:#00411F;
  padding:70px 6%;
}

/* main layout */

.beta-cta-inner{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* subtle vertical divider */

.beta-line{
  width:1px;
  height:70px;
  background:rgba(255,255,255,.18);
}

/* text styling */

.beta-text span{
  font-size:11px;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  display:block;
  margin-bottom:8px;
}

.beta-text h3{
  font-size:28px;
  font-weight:300;
  color:white;
  margin-bottom:6px;
  letter-spacing:-.01em;
}

.beta-text p{
  font-size:14px;
  color:rgba(255,255,255,.75);
}

/* button */

.beta-btn{
  padding:14px 32px;
  border-radius:40px;
  border:1px solid rgba(255,255,255,.8);
  color:white;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.25s ease;
}

.beta-btn:hover{
  background:white;
  color:#00411F;
}

/* =========================================
MOBILE — CENTERED + TOUCH OPTIMIZED
========================================= */

@media (max-width: 768px){

  .beta-cta{
    padding:60px 24px;
  }

  .beta-cta-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:32px;
  }

  /* remove divider when stacked */
  .beta-line{
    display:none;
  }

  .beta-text h3{
    font-size:22px;
  }

  .beta-text p{
    font-size:14px;
    max-width:420px;
    margin:0 auto;
  }

  /* mobile-native button */
  .beta-btn{
    width:100%;
    max-width:300px;
    padding:15px 0;              /* better thumb height */
    border-radius:50px;          /* softer / more mobile */
    font-size:11px;
    letter-spacing:.18em;
    display:inline-flex;
    justify-content:center;
    align-items:center;
  }

}
/* ===================================================
   AUTHE IT BETA MODAL — REFINED EDITORIAL VERSION
=================================================== */


/* ==========================
MODAL BASE
========================== */

.beta-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}

.beta-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.60);
  backdrop-filter:blur(8px);
}

.beta-modal-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-48%) scale(.94);

  width:min(480px,90%);
  padding:80px 70px;

  background: #00411F;

  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    0 40px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);

  color:white;
  text-align:center;

  opacity:0;

  transition:
    transform .6s cubic-bezier(.22,.61,.36,1),
    opacity .4s ease;
}

.beta-modal.active{
  display:block;
}

.beta-modal.active .beta-modal-content{
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
}

/* ==========================
TYPOGRAPHY — REFINED
========================== */

.beta-modal,
.beta-modal *{
  font-family:'Montserrat',sans-serif !important;
}

.beta-modal-content h3{
  font-weight:200;
  font-size:clamp(28px,2.2vw,34px);
  letter-spacing:-.035em;
  line-height:1.1;
  margin-bottom:14px;
}

.beta-modal-content p{
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.58);
  margin-bottom:58px;
  max-width:320px;
}


/* ==========================
FORM STRUCTURE — CLEANER RHYTHM
========================== */

#betaModal form.fluent_form_3{
  display:flex;
  flex-direction:column;
  gap:42px; /* more vertical breathing */
}

#betaModal form.fluent_form_3 .ff-el-group{
  margin:0 !important;
}

#betaModal form.fluent_form_3 label,
#betaModal form.fluent_form_3 .ff-el-input--label,
#betaModal form.fluent_form_3 .ff-input-group-addon{
  display:none !important;
}


/* ==========================
INPUTS — ARCHITECTURAL
========================== */

#betaModal form.fluent_form_3 .ff-el-form-control{

  background:transparent !important;
  border:none !important;

  padding:14px 0;

  color:white !important;

  font-size:16px;
  font-weight:300;
  letter-spacing:.06em;

  border-radius:0 !important;
  box-shadow:none !important;

  opacity:.75;

  /* Softer underline via gradient instead of border */
  background:
    linear-gradient(
      to bottom,
      transparent calc(100% - 1px),
      rgba(255,255,255,.12) 100%
    ) !important;

  transition:
    opacity .3s ease,
    background .4s cubic-bezier(.22,.61,.36,1);
}

#betaModal form.fluent_form_3 .ff-el-form-control::placeholder{
  color:rgba(255,255,255,.32);
  letter-spacing:.08em;
}

#betaModal form.fluent_form_3 .ff-el-form-control:focus{

  opacity:1;

  background:
    linear-gradient(
      to bottom,
      transparent calc(100% - 1px),
      rgba(255,255,255,.85) 100%
    ) !important;
}


/* ==========================
DROPDOWN — MORE RESTRAINED
========================== */

#betaModal form.fluent_form_3 select{
  appearance:none;
  -webkit-appearance:none;

  background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-opacity='.5' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");

  background-repeat:no-repeat;
  background-position:right 2px center;
  background-size:10px;

  padding-right:20px !important;
  color:rgba(255,255,255,.7) !important;
}


/* ==========================
BUTTON — RESTRAINED GLASS
========================== */

#betaModal form.fluent_form_3 .ff-btn-submit{

  align-self:center;

  margin-top:46px;
  padding:18px 70px;

  border-radius:60px !important;


  background:rgba(255,255,255,.07) !important;

  color:white !important;

  font-size:11px;
  font-weight:350;
  letter-spacing:.23em;
  text-transform:uppercase;

  box-shadow:none !important;

  transition:
    background .4s cubic-bezier(.22,.61,.36,1),
    border-color .4s ease,
    transform .3s ease;
}

#betaModal form.fluent_form_3 .ff-btn-submit:hover{
  background:rgba(255,255,255,.16) !important;
  border-color:rgba(255,255,255,.55) !important;
  transform:translateY(-2px);
}


/* ==========================
CLOSE BUTTON
========================== */

.beta-modal-close{
  position:absolute;
  top:36px;
  right:40px;

  background:none;
  border:none;

  color:rgba(255,255,255,.65);
  font-size:18px;

  cursor:pointer;

  position:absolute;
}

.beta-modal-close::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:1px;
  background:rgba(255,255,255,.3);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s cubic-bezier(.22,.61,.36,1);
}

/* =========================================
   CLOSE BUTTON — FORCE NO BACKGROUND
========================================= */

#betaModal button#closeBetaForm,
#betaModal button#closeBetaForm:hover,
#betaModal button#closeBetaForm:focus,
#betaModal button#closeBetaForm:active {

  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  padding: 0 !important;

  color: rgba(255,255,255,.6);
  font-size: 20px;
  font-weight: 300;

  cursor: pointer;

  transition:
    color .35s cubic-bezier(.22,.61,.36,1),
    transform .35s cubic-bezier(.22,.61,.36,1);
}

/* Elegant hover */
#betaModal button#closeBetaForm:hover {
  color: white;
  transform: rotate(90deg);
}

/* =========================================
   AUTHE IT – FLUENT FORM SAFARI-SAFE SYSTEM
========================================= */

#betaModal form.fluent_form_3 .ff-el-input--content {
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: border-color .3s ease;
}

#betaModal form.fluent_form_3 .ff-el-group:focus-within .ff-el-input--content {
    border-color: rgba(255,255,255,.85);
}

/* =========================================
   BASE INPUT — no border, no background
========================================= */
#betaModal form.fluent_form_3 .ff-el-form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    padding: 14px 0;
    color: white !important;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .06em;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    opacity: .75;
    transition: opacity .3s ease;
    width: 100%;
}

#betaModal form.fluent_form_3 .ff-el-group:focus-within .ff-el-form-control {
    opacity: 1;
}

/* =========================================
   AUTOFILL — just hide the yellow
========================================= */
#betaModal form.fluent_form_3 input:-webkit-autofill,
#betaModal form.fluent_form_3 input:-webkit-autofill:hover,
#betaModal form.fluent_form_3 input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #00411F inset !important;
    box-shadow: 0 0 0px 1000px #00411F inset !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
    caret-color: white !important;
    border: none !important;
    outline: none !important;
    transition: background-color 99999s ease-in-out 0s !important;
}


#fluentform_3_success {
  font-family: 'Montserrat', sans-serif;  /* Same font as modal */
  font-weight: 400;                      /* Lighter weight */
  color: rgba(255, 255, 255, 0.58);      /* Same text color as modal */
  font-size: 15px;                       /* Same font size as the original text */
  text-align: center;                    /* Center the text */
  letter-spacing: -0.03em;               /* Letter spacing for style */
  line-height: 1.5;                      /* Adjust line height */
  margin-top: -20px;                      /* Add some spacing at the top */
  padding: 10px 20px;                    /* Padding for a clean look */
	margin-bottom: -60px;
  background-color: transparent !important; /* No background */
  border: none !important;               /* Remove any borders */
  box-shadow: none !important;           /* Remove any box shadows */
}

/* =========================================================
   MODAL — MOBILE REFINED VERSION
========================================================= */

@media (max-width: 768px){

  /* Modal container */
  .beta-modal-content{
    width:92%;
    padding:60px 28px 50px;
    border-radius:22px;
    top:50%;
    transform:translate(-50%,-50%) scale(.96);
  }

  .beta-modal.active .beta-modal-content{
    transform:translate(-50%,-50%) scale(1);
  }

  /* Typography adjustment */
  .beta-modal-content h3{
    font-size:24px;
    letter-spacing:-.02em;
  }

  .beta-modal-content p{
    font-size:14px;
    margin-bottom:42px;
    max-width:100%;
  }

  /* Form spacing tighter */
  #betaModal form.fluent_form_3{
    gap:30px;
  }

  /* Inputs slightly taller for touch */
  #betaModal form.fluent_form_3 .ff-el-form-control{
    font-size:16px;
    padding:18px 0;
  }

  /* Button — mobile-native */
  #betaModal form.fluent_form_3 .ff-btn-submit{
    width:100%;
    padding:18px 0;
    margin-top:34px;
    border-radius:50px !important;
    letter-spacing:.18em;
  }

  /* Close button repositioned */
  #betaModal button#closeBetaForm{
    top:22px;
    right:22px;
    font-size:18px;
  }

}

/* =========================================================
   ABOUT HERO SPLIT — REFINED ARCHITECTURAL VERSION
========================================================= */

.gp-about-split{
  display:flex;
  min-height:100vh;
  margin-top:-150px;
  font-family:'Montserrat',sans-serif;
  position:relative;
}


/* =========================================================
   ABOUT PAGE NAVIGATION (UNCHANGED)
========================================================= */

body.page-id-167 .main-navigation a,
body.page-id-167 .main-navigation li a{
  color:white !important;
}

body.page-id-167 .main-navigation a:hover{
  opacity:.7;
}


/* =========================================================
   LEFT PHONE PANEL
========================================================= */

.gp-about-left{
  background:#00411F;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:170px 6%;
  position:relative;
}


/* =========================================================
   PHONE — CORRECT CLIPPING VERSION
========================================================= */

.about-phone-wrap{
  width:380px;
  position:relative;
  margin-top:40px;
	margin-left: 80px;

  transform:translateX(70px); /* pushes phone right */

  overflow:hidden;
  background:#00411F;
}

.about-phone-wrap video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;

  border-radius:0;
  transform:none;
}



/* =========================================================
   RIGHT GREEN PANEL — PREMIUM ARCHITECTURAL VERSION
========================================================= */

.gp-about-right{
  flex:1.7;
  background:#00411F;
  color:white;
  display:flex;
  align-items:center;
  padding:200px 14% 200px;
  position:relative;
  overflow:hidden;
}



/* ambient depth + highlight */

.gp-about-right::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}



/* =========================================================
   CONTENT
========================================================= */

.gp-about-content{
  max-width:560px;
  position:relative;
  z-index:3;
}

.gp-eyebrow{
  font-size:13px;
  letter-spacing:.35em;
  text-transform:uppercase;
  opacity:.6;
  margin-bottom:18px;
  margin-left:3px;
}

.gp-about-content h1{
  font-size:clamp(54px,5vw,50px);
  font-weight:200;
  letter-spacing:-0.02em;
  line-height:1.08;
  margin-bottom:22px;
  margin-left:-5px;
}

.about-sub{
  font-size:17px;
  line-height:1.6;
  font-weight:280;
}


.about-line-wrap{
  position:relative;
  margin:36px 0;
}

.about-line{
  width:60vw;
  height:0.5px;
  background:linear-gradient(
    to right,
    rgba(255,255,255,.08),
    rgba(255,255,255,.35),
    rgba(255,255,255,.08)
  );
  position:relative;
  left:-14%;
}


.about-line-wrap::after{
  content:"";
  position:absolute;
  left:0;
  top:-5px;
  width:10px;
  height:8px;
  border:1px solid rgba(255,255,255,.4);
  transform:rotate(45deg);
}

.hero-edition{
  margin-top:34px;
  font-size:11px;
  letter-spacing:.35em;
  text-transform:uppercase;
  opacity:.5;
}

.brand-highlight-aboutus{
  font-weight:400;
  letter-spacing:0.07em;
}


/* floating phone motion */

.about-phone-wrap{
  animation:aboutPhoneFloat 8s ease-in-out infinite;
}

@keyframes aboutPhoneFloat{
  0%,100%{transform:translateX(70px) translateY(0);}
  50%{transform:translateX(70px) translateY(-8px);}
}


/* =========================================================
   HEADER ABOVE HERO
========================================================= */

.site-header{
  position:relative;
  z-index:1000;
}


/* =========================================================
   ABOUT HERO TEXT ANIMATION
========================================================= */

.gp-about-content > *{
  opacity:0;
  transform:translateY(20px);
  animation:heroFade 1s ease forwards;
}

.gp-about-content > *:nth-child(1){ animation-delay:.2s; }
.gp-about-content > *:nth-child(2){ animation-delay:.35s; }
.gp-about-content > *:nth-child(3){ animation-delay:.5s; }
.gp-about-content > *:nth-child(4){ animation-delay:.65s; }
.gp-about-content > *:nth-child(5){ animation-delay:.8s; }

/* =========================================================
   ABOUT — TABLET
========================================================= */

@media (max-width:1200px){

  .gp-about-split{
    min-height:85vh;
    margin-top:-120px;
  }

  .gp-about-left{
    flex:0.45;
    padding:140px 6%;
  }

  .gp-about-right{
    flex:1.55;
    padding:160px 8% 120px;
  }

  .about-phone-wrap{
    width:320px;
    transform:translateX(10px);
  }

  .about-phone-wrap video{
    border-radius:26px;
  }

  .gp-about-content{
    max-width:520px;
  }

  .gp-about-content h1{
    font-size:clamp(40px,4vw,48px);
    line-height:1.12;
  }

  .about-sub{
    font-size:17px;
    line-height:1.7;
    max-width:480px;
  }

}



/* =========================================================
   ABOUT — MOBILE
========================================================= */

@media (max-width:768px){

  .gp-about-split{
    flex-direction:column;
    margin-top:-60px;
    min-height:auto;
  }

  .gp-about-right{
    order:1;
    width:100%;
    padding:120px 28px 60px;
    text-align:center;
  }

  .gp-about-content{
    max-width:420px;
    margin:0 auto;
  }

  .gp-about-content h1{
    font-size:clamp(34px,8vw,40px);
    line-height:1.2;
    margin-bottom:24px;
  }

  .about-sub{
    font-size:16px;
    line-height:1.75;
    max-width:380px;
    margin:0 auto 18px;
  }

  .about-sub br{
    display:block;
    margin-top:10px;
  }

  .about-sub br + br{
    margin-top:16px;
  }

  .gp-about-left{
    order:2;
    width:100%;
    padding:40px 28px 80px;
    justify-content:center;
  }

  .about-phone-wrap{
    width:280px;
    margin:0 auto;
    animation:none;
    transform:none;
  }

  .about-phone-wrap video{
    border-radius:22px;
  }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:500px){

  .about-phone-wrap{
    width:260px;
  }

  .about-phone-wrap video{
    filter:brightness(1.12);
  }

}
/* ============================================
   PREMIUM STICKY STORY SECTION
============================================ */

.about-story-section{
  background:#ffffff;
  position:relative;
  padding:100px 0;
}


/* OUTER FRAME */

.about-story-frame{
  width:88%;
  margin:0 auto;
  display:flex;
  gap:120px;
  position:relative;
}



/* LEFT SIDE */

.about-story-left{
  flex:0.42;
  position:relative;
}

.about-story-anchor{
  position:sticky;
  top:180px;
}


/* RIGHT SIDE */

.about-story-right{
  flex:0.58;
  padding-right:40px;
}

.about-story-right p{
  font-size:20px;
  line-height:1.95;
  color:#1c1c1c;
  margin-bottom:48px;
  max-width:580px;
}


/* TYPOGRAPHY */

.story-eyebrow{
  font-size:11px;
  letter-spacing:.4em;
  text-transform:uppercase;
  color:#00411F;
  opacity:.6;
}

.about-story-anchor h2{
  font-size:clamp(56px,4.5vw,72px);
  font-weight:200;
  letter-spacing:-0.02em;
  line-height:1.05;
  margin:24px 0;
  color:#00411F;
}

.story-sub{
  font-size:22px;
  line-height:1.8;
  opacity:.75;
  max-width:420px;
}



/* subtle vertical divider between columns */

.about-story-frame::after{
  content:"";
  position:absolute;
  left:42%;
  top:0;
  height:100%;
  width:1px;
  background:rgba(0,0,0,.05);
}





/* PROGRESS LINE BASE */

.story-progress-line{
  position:absolute;
  left:42%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(0,0,0,.05);
  overflow:hidden;
}

/* animated colored line */

.story-progress-line span{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:0%;
  background:#00411F;
  transition:height .15s linear;
}

/* ============================================
   ABOUT STORY — SLEEK MOBILE VERSION
============================================ */

@media (max-width:900px){


  .about-story-section{
    padding:100px 24px;
    position:relative;
  }

  /* Kill desktop layout logic */
  .about-story-frame{
    display:block;
    width:100%;
    margin:0 auto;
  }

  /* Remove desktop divider */
  .about-story-frame::after{
    content:none !important;
  }

  .story-progress-line{
    display:none;
  }

  /* Subtle architectural margin line */
  .about-story-section::before{
    content:"";
    position:absolute;
    left:14px;
    top:0;
    width:1px;
    height:100%;
    background:linear-gradient(
      to bottom,
      rgba(0,65,31,0),
      rgba(0,65,31,.06),
      rgba(0,65,31,.1),
      rgba(0,65,31,.06),
      rgba(0,65,31,0)
    );
    pointer-events:none;
  }

  /* Headline block */
  .about-story-left{
    width:100%;
    margin-bottom:60px;
    text-align:left;
  }

  .about-story-anchor{
    position:relative;
    top:auto;
  }

  .story-eyebrow{
    font-size:10px;
    letter-spacing:.28em;
  }

  .about-story-anchor h2{
    font-size:clamp(32px,8vw,40px);
    line-height:1.15;
    margin:18px 0 20px;
  }

  .story-sub{
    font-size:16px;
    line-height:1.7;
    max-width:100%;
  }

  /* Story body */
  .about-story-right{
    width:100%;
    padding:0;
  }

  .about-story-right p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:36px;
    max-width:100%;
  }
	

}
/* ============================================
   FOUNDER PANEL — REFINED LUXURY VERSION
============================================ */

.founder-panel{
  margin-top: -50px;
}

.founder-panel{
  background:#F3F8F5;
  padding:100px 0;
  position:relative;
  overflow:hidden;
}


/* MAIN FRAME */

.panel-inner{
  width:70%;
  margin:0 auto;
  position:relative;
}


/* subtle vertical anchor line */

.panel-inner::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:2px;
  background:linear-gradient(
    to bottom,
    rgba(0,65,31,.05),
    rgba(0,65,31,.35),
    rgba(0,65,31,.05)
  );
}


/* INTRO */

.panel-intro{
  font-size:clamp(17px,1vw,19px);
  line-height:1.85;
  max-width:520px;
  margin-bottom: 60px;
  color:#00411F;
  margin-left:20px;

  letter-spacing:.03em;
  opacity:.75;
  font-style:italic;
}


/* STATEMENTS */

.panel-statements{
  margin-left:70px;
  margin-bottom:120px;
}

.panel-line{
  font-size:clamp(26px,2.4vw,36px);
  font-weight:300;
  line-height:1.25;
  margin-bottom: 32px;
  color:#00411F;

  letter-spacing:-0.01em;

  opacity:0;
  transform:translateY(45px);
  transition:
    opacity .8s cubic-bezier(.16,.8,.3,1),
    transform .8s cubic-bezier(.16,.8,.3,1);
}

.panel-line.reveal{
  opacity:1;
  transform:none;
}


/* CLOSING */

.panel-closing{
  font-size:clamp(18px,1.2vw,21px);
  line-height:1.7;
  max-width:580px;
  color:#00411F;
  margin-left:20px;

  font-weight:300;
  letter-spacing:.02em;
  margin-top: -70px;
}

.emphasis{
  font-weight:500; /* controlled bold, not too heavy */
	color: #00411F;
}


/* ============================================
   FOUNDER PANEL — MOBILE REFINED VERSION
============================================ */

@media (max-width: 900px){

  .founder-panel{
    margin-top:-20px;
    padding:90px 24px;
  }

  /* Full width */
  .panel-inner{
    width:100%;
  }

  /* Remove vertical anchor line */
  .panel-inner::before{
    content:none;
  }

  /* INTRO */
  .panel-intro{
    margin:0 auto 50px;
    max-width:480px;
    font-size:16px;
    line-height:1.8;
    text-align:center;
  }

  /* STATEMENTS */
  .panel-statements{
    margin:0 0 90px;
  }

  .panel-line{
    font-size:clamp(22px,6vw,28px);
    line-height:1.3;
    margin-bottom:28px;
    text-align:center;
  }

  /* CLOSING */
  .panel-closing{
    margin:0 auto;
    margin-top:40px;
    max-width:500px;
    font-size:17px;
    line-height:1.75;
    text-align:center;
  }

}


/* ============================================
   CENTERED PREMIUM LINE ANCHOR SECTION
============================================ */

.cta-anchor{
  background:#00411F;
  padding:72px 0 68px;
}


/* inner */

.cta-anchor-inner{
  width:52%;
  margin:0 auto;
  text-align:center;
}


/* title */

.cta-anchor-title{
  font-size:clamp(30px,2.2vw,36px);
  font-weight:300;
  letter-spacing:-.02em;
  color:#fff;
  margin-bottom:16px;
}


/* answer */

.cta-anchor-answer{
  display:block;
  font-size:12px;
  letter-spacing:.35em;
  text-transform:uppercase;
  opacity:.65;
  margin-bottom:20px;
}


/* subtext */

.cta-anchor-sub{
  font-size:16px;
  line-height:1.7;
  opacity:.85;
  max-width:500px;
  margin:0 auto 34px auto;
  color:#fff;
}


/* button */

.cta-anchor-btn{
  display:inline-block;
  padding:14px 36px;

  border-radius:40px;
  border:1px solid rgba(255,255,255,.25);

  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);

  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  color:white;

  transition:.3s ease;
}

.cta-anchor-btn:hover{
  background:rgba(255,255,255,.15);
  transform:translateY(-2px);
}


/* mobile */

@media(max-width:900px){

  .cta-anchor{
    padding:60px 28px;
  }

  .cta-anchor-inner{
    width:100%;
  }

}

/* =========================================================
   CONTACT PAGE — DARK GREEN LUXURY VERSION
   Page ID: 262
========================================================= */


/* ---------------------------------------------------------
   PAGE BACKGROUND
--------------------------------------------------------- */

body.page-id-262 {
  background: #00411F;
}


/* ---------------------------------------------------------
   HEADER — MATCH PAGE
--------------------------------------------------------- */

body.page-id-262 .site-header {
  background: #00411F !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* Header text */

body.page-id-262 .site-title a,
body.page-id-262 .main-navigation a {
  color: white !important;
}

body.page-id-262 .main-navigation a:hover {
  opacity: .75;
}


/* Remove theme spacing above section */

body.page-id-262 .site-content {
  padding-top: 0 !important;
}


/* ---------------------------------------------------------
   CONTACT SECTION — FULL HEIGHT
--------------------------------------------------------- */

.contact-structured {
  background: #00411F;
  min-height: 90vh;
  padding: 10px 6%;
  display: flex;
  align-items: center;
}


/* ---------------------------------------------------------
   INNER WRAPPER
--------------------------------------------------------- */

.contact-structured-inner {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}


/* ---------------------------------------------------------
   STRUCTURE LINES
--------------------------------------------------------- */

.contact-top-line,
.contact-bottom-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.contact-top-line { margin-bottom: 60px; }
.contact-bottom-line { margin-top: 60px; }


/* ---------------------------------------------------------
   LAYOUT
--------------------------------------------------------- */

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
}


/* ---------------------------------------------------------
   LEFT COLUMN
--------------------------------------------------------- */

.contact-left {
  flex: 1;
  min-width: 300px;
}


.contact-label {
  font-size: 10px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: 24px;
}

.contact-left h2 {
  font-size: clamp(40px,3vw,52px);
  font-weight: 300;
  letter-spacing: -.02em;
  color: white;
  margin-bottom: 24px;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-meta p {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: white;
  opacity: .6;
  margin-bottom: 10px;
}


/* ---------------------------------------------------------
   RIGHT COLUMN
--------------------------------------------------------- */

.contact-right {
  flex: 1;
  min-width: 300px;
}


/* ---------------------------------------------------------
   FORM STYLING
--------------------------------------------------------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field label {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,.65);
}


/* Inputs */

.contact-field input,
.contact-field textarea {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: .2s ease;
  color: white;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,.45);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: white;
}


/* =========================================
   SLEEK DROPDOWN
========================================= */

.contact-field select {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.contact-field {
  position: relative;
}

.contact-field select {
  padding-right: 25px;
}

.contact-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%);
  background-position:
    calc(100% - 12px) 55%,
    calc(100% - 6px) 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-field select:focus {
  border-color: white;
}


/* ---------------------------------------------------------
   BUTTON — GLASS STYLE
--------------------------------------------------------- */

.contact-btn {
  margin-top: 20px;
  align-self: flex-start;
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: .25s ease;
}

.contact-btn:hover {
  background: white;
  color: #00411F;
}



/* =========================================
   FORCE SELECT TEXT WHITE (SELECTED STATE FIX)
========================================= */

.contact-field select{
  color:white !important;
  -webkit-text-fill-color:white !important;
}

.contact-field select:focus{
  color:white !important;
}

.contact-field select option{
  color:white;
  background:#00411F;
}

/* =========================================
   REMOVE CHROME AUTOFILL STYLING ENTIRELY
========================================= */

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-background-clip: text;
  transition: background-color 5000s ease-in-out 0s;
}

/* =========================================
   STABLE LUXURY UNDERLINE SYSTEM
   (Autofill-Proof)
========================================= */

.contact-field {
  position: relative;
}

/* Remove real borders */
.contact-field input,
.contact-field textarea {
  border: none !important;
  background: transparent;
  color: white;
  padding: 8px 0;
  font-size: 16px;
  outline: none;
  width: 100%;
}

/* The visual underline */
.contact-field::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,.35);
  transition: background .25s ease;
}

/* Focus line */
.contact-field:focus-within::after {
  background: white;
}

/* Autofill background control only */
.contact-field input:-webkit-autofill,
.contact-field textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #00411F inset !important;
  -webkit-text-fill-color: white !important;
}

/* Autofill + focus */
.contact-field input:-webkit-autofill:focus,
.contact-field textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #00411F !important;
}

/* Additional Fix: Ensure the textarea turns white during focus */
.contact-field textarea:focus {
  background: white !important;
  color: #00411F !important;
  border-bottom: 1px solid #00411F !important;
}


/* =========================================================
   CONTACT — MOBILE REFINED VERSION
========================================================= */

@media (max-width: 768px){

  /* Section spacing */
  .contact-structured{
    min-height:auto;
    padding:100px 28px 80px;
    align-items:flex-start;
  }

  .contact-structured-inner{
    max-width:100%;
  }

  /* Remove excessive divider spacing */
  .contact-top-line{ margin-bottom:40px; }
  .contact-bottom-line{ margin-top:40px; }

  /* Stack layout */
  .contact-content{
    flex-direction:column;
    gap:60px;
  }

  /* LEFT COLUMN */
  .contact-left{
    width:100%;
  }

  .contact-left h2{
    font-size:clamp(30px,7vw,38px);
    line-height:1.15;
  }

  .contact-intro{
    font-size:15px;
    line-height:1.75;
    margin-bottom:32px;
  }

  .contact-meta p{
    font-size:12px;
    letter-spacing:.18em;
  }

  /* RIGHT COLUMN */
  .contact-right{
    width:100%;
  }

  /* Form spacing */
  .contact-form{
    gap:26px;
  }

  .contact-field label{
    font-size:10px;
    letter-spacing:.3em;
  }

  /* Inputs more touch-friendly */
  .contact-field input,
  .contact-field textarea,
  .contact-field select{
    font-size:16px;
    padding:14px 0;
  }

  /* Button full width for mobile */
  .contact-btn{
    width:100%;
    align-self:stretch;
    text-align:center;
    padding:16px 0;
    font-size:12px;
    letter-spacing:.18em;
  }

/* ---------------------------------------------------------
   BUTTON STYLES (optional to match the contact button)
--------------------------------------------------------- */

.contact-btn {
  margin-top: 20px;
  align-self: flex-start;
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: .25s ease;
}

.contact-btn:hover {
  background: white;
  color: #00411F;
	} }

/* ===================================================
   AUTHE IT — CONTACT SUCCESS MODAL (REFINED)
=================================================== */

.contact-popup{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}

.contact-popup::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(8px);
}

/* MODAL */

.contact-popup-inner{

  position:absolute;
  top:50%;
  left:50%;

  transform:translate(-50%,-48%) scale(.95);

  width:min(440px,90%);
  padding:70px 60px;

  background:#00411F;

  border-radius:24px;
  border:1px solid rgba(255,255,255,.07);

  box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);

  color:white;
  text-align:center;

  opacity:0;

  transition:
    transform .55s cubic-bezier(.22,.61,.36,1),
    opacity .35s ease;
}

.contact-popup.active{
  display:block;
}

.contact-popup.active .contact-popup-inner{
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
}

/* TYPOGRAPHY */

.contact-popup,
.contact-popup *{
  font-family:'Montserrat',sans-serif !important;
}

.contact-popup h3{
  font-weight:200;
  font-size:28px;
  letter-spacing:-.03em;
  margin-bottom:12px;
}

.contact-popup p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.55);
  max-width:280px;
  margin:0 auto 40px;
}

/* BUTTON */

.popup-close{

  padding:16px 56px;

  border-radius:60px;
  border:none;

  background:rgba(255,255,255,.06);

  color:white;

  font-size:10px;
  font-weight:350;
  letter-spacing:.22em;
  text-transform:uppercase;

  cursor:pointer;

  transition:
    background .35s cubic-bezier(.22,.61,.36,1),
    transform .3s ease;
}

.popup-close:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-2px);
}

/* =========================================================
   TERMS & PRIVACY — SHARED UTILITIES
========================================================= */

.terms-group {
  display: none;
}

.terms-group.active {
  display: block;
}

/* =========================================================
   TERMS & PRIVACY — MAIN LAYOUT
========================================================= */

.terms-wrap {
  background: #00411F;
  padding: 80px 8%;
  font-family: Montserrat, sans-serif;
  color: white;
}

.terms-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 100px;
  max-width: 1400px;
  margin: auto;
}

/* =========================================================
   TERMS & PRIVACY — LEFT NAV
========================================================= */

.terms-nav h4 {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 40px;
}

.terms-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-nav li {
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 20px;
  color: white;
  opacity: .6;
  cursor: pointer;
  transition: .25s ease;
  position: relative;
}

.terms-nav li:hover {
  opacity: 1;
}

.terms-nav li.active {
  opacity: 1;
  font-weight: 500;
}

.terms-nav li.active::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 14px;
  background: white;
  border-radius: 2px;
}

/* =========================================================
   TERMS & PRIVACY — CONTENT AREA
========================================================= */

.terms-content {
  color: white;
}

.terms-content h1 {
  font-size: clamp(42px, 3vw, 56px);
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.terms-intro {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 50px;
}

/* =========================================================
   TERMS & PRIVACY — ACCORDION
========================================================= */

details {
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 24px 0;
}

details[open] {
  border-bottom: 1px solid rgba(255,255,255,.35);
}

summary {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  color: white;
  transition: .2s ease;
  position: relative;
  padding-right: 20px;
}

summary:hover {
  opacity: .8;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  transition: .2s ease;
}

details[open] summary {
  margin-bottom: 10px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 20px;
  line-height: 1.9;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  max-width: 820px;
}

details[open] p {
  animation: fadeIn .3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   TERMS & PRIVACY — SUB SECTIONS
========================================================= */

.sub-section {
  margin-top: 18px;
}

.sub-section p {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(255,255,255,.85);
}

/* =========================================================
   TERMS & PRIVACY — HIGHLIGHT BLOCK
========================================================= */

.highlight {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.85;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  max-width: 620px;
}

/* =========================================================
   TERMS & PRIVACY — NOTICE BLOCKS
========================================================= */

.notice-primary,
.notice-secondary,
.notice-legal {
  max-width: 760px;
  margin-top: 32px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
}

.notice-primary {
  margin-top: 42px;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: .045em;
  color: rgba(255,255,255,.92);
  max-width: 720px;
}

.notice-primary::before {
  content: "IMPORTANT";
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .5em;
  color: rgba(255,255,255,.35);
}

.notice-secondary {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-left: 22px;
}

.notice-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
}

.notice-legal {
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
}

/* =========================================================
   TERMS & PRIVACY — EMAIL
========================================================= */

.contact-mail {
  font-weight: 500;
  letter-spacing: .08em;
  color: white;
}

/* =========================================================
   TERMS — SECTION LABEL
========================================================= */

.terms-section-label {
  margin: 50px 0 10px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   TERMS — OVERVIEW SECTION
========================================================= */

#overview details:first-of-type {
  border-bottom: none;
  padding-bottom: 10px;
}

#overview details:nth-of-type(2) {
  border-top: none;
}

.terms-overview summary {
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .7;
}

.overview-intro {
  margin-top: 25px;
  max-width: 760px;
}

.overview-lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  color: white;
  margin-bottom: 18px;
}

.overview-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.85);
}

.overview-notice {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 760px;
}

.overview-notice p {
  font-size: 12.5px;
  letter-spacing: .08em;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

/* =========================================================
   TERMS PAGE (ID 755) — PAGE SPECIFIC
========================================================= */

body.page-id-755 .entry-title {
  display: none !important;
}

body.page-id-755 .main-navigation a {
  color: white !important;
}

body.page-id-755 .main-navigation a:hover {
  opacity: .7;
}

/* =========================================================
   PRIVACY PAGE (ID 3234) — PAGE SPECIFIC
========================================================= */

body.page-id-privacy .main-navigation a,
body.page-id-3234 .main-navigation a {
  color: white !important;
}

body.page-id-privacy .main-navigation a:hover,
body.page-id-3234 .main-navigation a:hover {
  opacity: .7;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-legal a {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  transition: .2s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* =========================================================
   TERMS & PRIVACY — MOBILE
========================================================= */

@media (max-width: 900px) {

  .terms-wrap {
    padding: 60px 22px 120px;
  }

  .terms-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .terms-nav {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .terms-nav h4 {
    margin-bottom: 25px;
    font-size: 10px;
    letter-spacing: .28em;
  }

  .terms-nav ul {
    display: flex;
    gap: 24px;
    min-width: max-content;
  }

  .terms-nav li {
    font-size: 12px;
    letter-spacing: .12em;
    margin: 0;
    white-space: nowrap;
    opacity: .6;
  }

  .terms-nav li.active {
    opacity: 1;
  }

  .terms-content h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.2;
    margin-bottom: 35px;
  }

  details {
    padding: 18px 0;
  }

  summary {
    font-size: 12px;
    letter-spacing: .14em;
  }

  details p {
    font-size: 15px;
    line-height: 1.85;
    margin-top: 18px;
    max-width: 100%;
  }

  .highlight {
    width: 100%;
    padding: 18px;
    font-size: 14px;
  }

}