/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:   #1a2940;
  --blue:   #4a90c4;
  --blue-lt:#6badd6;
  --gold:   #c9a96e;
  --gold-lt:#e4c99a;
  --cream:  #f8f6f2;
  --white:  #ffffff;
  --gray:   #8a9bb0;
  --gray-lt:#e8ecf1;
  --text:   #2d3a4a;
  --nav-h:  72px;
  --ease:   cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--white);overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font-family:inherit}
ul{list-style:none}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position:fixed;top:0;left:0;width:100%;height:var(--nav-h);
  background:rgba(26,41,64,0.97);backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;z-index:1000;
  transition:background 0.3s var(--ease);
}
.nav--scrolled{background:rgba(26,41,64,0.99)}
#readingProgress{
  position:absolute;bottom:0;left:0;height:3px;width:0%;
  background:var(--gold);transition:width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);pointer-events:none;
}
.nav__logo img{height:38px;width:auto;filter:brightness(0) invert(1)}
.nav__links{display:flex;gap:2rem;align-items:center}
.nav__links a {
  font-size:0.82rem;font-weight:500;letter-spacing:0.12em;
  text-transform:uppercase;color:rgba(255,255,255,0.8);
  transition:color 0.2s;position:relative;padding-bottom:2px;
}
.nav__links a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:1px;
  background:var(--gold);transition:width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.active{color:var(--white)}
.nav__links a:hover::after,
.nav__links a.active::after{width:100%}
.nav__cta {
  display:inline-flex!important;align-items:center;justify-content:center;
  background:var(--gold);color:var(--navy)!important;
  padding:0.55rem 1.4rem!important;border-radius:2px;
  font-weight:600!important;letter-spacing:0.08em!important;
  line-height:1!important;padding-bottom:0.55rem!important;
  transition:none!important;
  overflow:hidden;position:relative;z-index:0;
}
.nav__cta::after{display:none!important}
.nav__cta::before{
  content:'';position:absolute;inset:0;
  background:var(--gold-lt);
  transform:translateX(-100%);
  transition:transform 0.35s var(--ease);
  z-index:-1;
}
.nav__cta:hover::before{transform:translateX(0)}
.nav__hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.nav__hamburger span{display:block;width:24px;height:2px;background:var(--white);transition:transform 0.3s var(--ease), opacity 0.3s}
.nav__hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__hamburger.is-open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav__hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav__mobile{
  display:flex;position:fixed;top:var(--nav-h);left:0;width:100%;
  background:var(--cream);flex-direction:column;padding:2rem 5%;
  gap:1.5rem;border-top:2px solid var(--gold);
  transform:translateY(-12px);opacity:0;
  visibility:hidden;pointer-events:none;
  transition:transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s;
  z-index:999;
  box-shadow:0 8px 32px rgba(26,41,64,0.15);
}
.nav__mobile.open{
  transform:translateY(0);opacity:1;
  visibility:visible;pointer-events:all;
}
.nav__mobile a{
  font-size:0.82rem;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--navy);padding-bottom:1rem;
  border-bottom:1px solid rgba(26,41,64,0.1);
  transition:color 0.2s;
}
.nav__mobile a:hover{color:var(--blue)}
.nav__mobile a.nav__cta{
  color:var(--white);background:var(--navy);
  text-align:center;padding:0.85rem 1rem;border-radius:3px;
  border-bottom:none;margin-top:0.5rem;
}
.nav__mobile a.nav__cta:hover{background:var(--blue)}

/* ─── PAGE WRAPPER ───────────────────────────────────── */
.page{min-height:100vh;padding-top:var(--nav-h)}

/* ─── SERVICE TAB CONTENT FADE-IN ───────────────────── */
@keyframes fadeSlideIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.service-detail,
.how-it-works {
  animation: fadeSlideIn 0.6s ease both;
}
.how-it-works { animation-delay: 0.15s; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position:relative;min-height:calc(100vh - var(--nav-h));
  display:flex;align-items:center;justify-content:center;
  background:var(--navy);overflow:hidden;
}
.hero__bg {
  position:absolute;inset:0;
  background:
    linear-gradient(135deg, rgba(26,41,64,0.92) 0%, rgba(26,41,64,0.7) 50%, rgba(74,144,196,0.15) 100%),
    url('../img/hero.webp') center/cover no-repeat;
  transform:scale(1.05);
  animation:heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom{from{transform:scale(1.05)}to{transform:scale(1.12)}}
.hero__grain{
  position:absolute;inset:0;opacity:0.04;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__accent{
  position:absolute;right:-10%;bottom:-10%;width:600px;height:600px;
  border-radius:50%;background:radial-gradient(circle, rgba(74,144,196,0.12) 0%, transparent 70%);
  pointer-events:none;
}
.hero__content{
  position:relative;z-index:1;text-align:center;
  padding:4rem 5%;max-width:800px;
  animation:fadeUp 1s var(--ease) both;
}
@keyframes fadeUp{from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:translateY(0)}}
.hero__eyebrow{
  display:inline-flex;align-items:center;gap:0.75rem;
  font-size:0.72rem;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-bottom:1.5rem;
}
.hero__eyebrow::before,.hero__eyebrow::after{
  content:'';display:block;width:40px;height:1px;background:var(--gold);opacity:0.6;
}
.hero__title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem, 7vw, 5.2rem);font-weight:300;
  color:var(--white);line-height:1.1;letter-spacing:-0.01em;
  margin-bottom:1.5rem;
}
.hero__title em{font-style:italic;color:var(--blue-lt)}
.hero__sub{
  font-size:1.05rem;font-weight:300;color:rgba(255,255,255,0.7);
  line-height:1.7;max-width:560px;margin:0 auto 2.5rem;
}
.hero__actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn {
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:0.85rem 2rem;font-size:0.82rem;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;border-radius:2px;
  transition:color 0.35s var(--ease);
  position:relative;overflow:hidden;z-index:0;
}
.btn::before {
  content:'';position:absolute;inset:0;
  transform:translateX(-100%);
  transition:transform 0.35s var(--ease);
  z-index:-1;
}
.btn:hover::before { transform:translateX(0); }

.btn--gold{background:var(--gold);color:var(--white)}
.btn--gold::before{background:var(--gold-lt)}
.btn--gold:hover{color:var(--navy)}

.btn--outline{border:1px solid rgba(255,255,255,0.4);color:var(--white)}
.btn--outline::before{background:rgba(255,255,255,0.12)}
.btn--outline:hover{border-color:var(--white);color:var(--white)}
.hero__scroll{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:0.5rem;
  color:rgba(255,255,255,0.4);font-size:0.68rem;letter-spacing:0.2em;text-transform:uppercase;
  animation:bounce 2.5s ease-in-out infinite;
}
.hero__scroll-line{width:1px;height:40px;background:linear-gradient(to bottom, rgba(255,255,255,0.4), transparent)}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}

/* ─── SECTION HELPERS ────────────────────────────────── */
section{padding:6rem 5%}
.section-label{
  display:inline-block;font-size:0.7rem;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-bottom:0.75rem;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3rem);font-weight:400;
  color:var(--navy);line-height:1.2;margin-bottom:1rem;
}
.section-title em{font-style:italic;color:var(--blue)}
.section-subtitle{
  font-size:1rem;font-weight:300;color:var(--gray);
  line-height:1.7;max-width:560px;
}
.divider{width:48px;height:2px;background:var(--gold);margin:1.5rem 0}
.divider--center{margin:1rem auto}
.form-info__details{margin-top:2rem}

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar{
  background:var(--cream);padding:2rem 5%;
  display:flex;align-items:center;justify-content:center;
  gap:3rem;flex-wrap:wrap;border-top:1px solid var(--gray-lt);
}
.trust-item{
  display:flex;align-items:center;gap:0.75rem;
  font-size:0.82rem;font-weight:500;color:var(--text);letter-spacing:0.05em;
}
.trust-icon{
  width:36px;height:36px;border-radius:50%;
  background:var(--navy);display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.trust-icon svg{width:16px;height:16px;fill:var(--gold)}

/* ─── SERVICES PREVIEW (HOME) ────────────────────────── */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;
  margin-top:3.5rem;background:var(--gray-lt);
}
.service-card{
  background:var(--white);padding:3rem 2.5rem;position:relative;overflow:hidden;
  cursor:pointer;transition:background 0.3s var(--ease);
  display:flex;flex-direction:column;
}
.service-card::before{
  content:'';position:absolute;bottom:0;left:0;width:100%;height:3px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;
  transition:transform 0.4s var(--ease);
}
.service-card:hover{background:var(--cream)}
.service-card:hover::before{transform:scaleX(1)}
.service-card__img{
  width:100%;height:220px;object-fit:cover;margin-bottom:2rem;
  filter:saturate(0.85);transition:filter 0.3s;
}
.service-card:hover .service-card__img{filter:saturate(1)}
.service-card__num{
  font-family:'Cormorant Garamond',serif;font-size:0.9rem;
  color:var(--gold);letter-spacing:0.2em;margin-bottom:0.75rem;
}
.service-card__title{
  font-family:'Cormorant Garamond',serif;font-size:1.7rem;font-weight:400;
  color:var(--navy);margin-bottom:0.75rem;
}
.service-card__desc{font-size:0.9rem;line-height:1.65;color:var(--gray);flex:1}
.service-card__link{
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  margin-top:1.5rem;font-size:0.75rem;letter-spacing:0.15em;text-transform:uppercase;
  font-weight:600;color:var(--blue);transition:gap 0.2s;
}
.service-card:hover .service-card__link{gap:0.8rem}

/* ─── BENEFITS ───────────────────────────────────────── */
.benefits{background:var(--navy);padding:6rem 5%;position:relative;overflow:hidden}
.benefits::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at center, rgba(74,144,196,0.15) 0%, transparent 70%);
  pointer-events:none;
}
.benefits__inner{
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;max-width:1200px;margin:0 auto;position:relative;z-index:1;
}
.benefits__text .section-title{color:var(--white)}
.benefits__text .section-subtitle{color:rgba(255,255,255,0.6);max-width:440px}
.benefits__text .divider{background:var(--gold)}
.benefits__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
}
.benefit-item{
  padding:1.5rem;border:1px solid rgba(255,255,255,0.08);border-radius:4px;
  background:rgba(255,255,255,0.03);transition:all 0.3s var(--ease);
}
.benefit-item:hover{
  background:rgba(74,144,196,0.08);
  border-color:rgba(74,144,196,0.3);transform:translateY(-3px);
}
.benefit-item__icon{
  width:40px;height:40px;border-radius:50%;background:rgba(74,144,196,0.15);
  display:flex;align-items:center;justify-content:center;margin-bottom:1rem;
}
.benefit-item__icon svg{width:18px;height:18px;fill:var(--blue-lt)}
.benefit-item__title{
  font-size:0.88rem;font-weight:600;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.4rem;
}
.benefit-item__text{font-size:0.82rem;color:rgba(255,255,255,0.5);line-height:1.6}

/* ─── STATS STRIP ────────────────────────────────────── */
.stats{background:var(--blue);padding:3.5rem 5%}
.stats__inner{
  display:flex;justify-content:center;gap:4rem;flex-wrap:nowrap;max-width:1200px;margin:0 auto;
}
.stat{text-align:center}
.stat__num{
  font-family:'Playfair Display',serif;font-size:3rem;font-weight:400;
  color:var(--white);line-height:1;
}
.stat__label{
  font-size:0.72rem;letter-spacing:0.18em;text-transform:uppercase;
  color:rgba(255,255,255,0.75);margin-top:0.35rem;font-weight:500;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials{background:var(--white)}
.testimonials__inner{max-width:1100px;margin:0 auto}
.testimonials__header{text-align:center;margin-bottom:3.5rem}
.testimonials__header .section-subtitle{margin:0 auto}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.review-card{
  background:var(--white);padding:2.5rem;border-radius:4px;
  box-shadow:0 2px 20px rgba(26,41,64,0.06);
  transition:transform 0.3s var(--ease),box-shadow 0.3s var(--ease);
  display:flex;flex-direction:column;
}
.review-card:hover{transform:translateY(-4px);box-shadow:0 8px 32px rgba(26,41,64,0.1)}
.review-stars{display:flex;gap:3px;margin-bottom:1.25rem}
.review-stars svg{width:14px;height:14px;fill:var(--gold)}
.review-quote{
  font-family:'Cormorant Garamond',serif;font-size:1.15rem;
  font-style:italic;color:var(--text);line-height:1.65;margin-bottom:1.5rem;
}
.review-author{display:flex;align-items:center;gap:0.75rem;margin-top:auto;padding-top:1.5rem}
.review-avatar{
  width:44px;height:44px;border-radius:50%;object-fit:cover;
  border:2px solid var(--gray-lt);flex-shrink:0;
}
.review-name{font-size:0.85rem;font-weight:600;color:var(--navy)}
.review-role{font-size:0.75rem;color:var(--gray);margin-top:1px}

/* ─── HOME CTA BAND ──────────────────────────────────── */
.cta-band{
  background:var(--navy);padding:5rem 5%;text-align:center;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at center, rgba(74,144,196,0.15) 0%, transparent 70%);
}
.cta-band__inner{position:relative;z-index:1}
.cta-band__title{
  font-family:'Cormorant Garamond',serif;font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:300;color:var(--white);margin-bottom:1rem;
}
.cta-band__sub{
  font-size:1rem;color:rgba(255,255,255,0.6);margin-bottom:2.5rem;font-weight:300;
}

/* ─── PAGE HERO ──────────────────────────────────────── */
.page-hero{
  background:var(--navy);padding:5rem 5% 4rem;text-align:center;position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at center, rgba(74,144,196,0.15) 0%, transparent 70%);
  pointer-events:none;
}
.page-hero::after{
  content:'';position:absolute;bottom:0;left:0;width:100%;height:1px;
  background:linear-gradient(to right,transparent,var(--gold),transparent);
}
.page-hero .section-label,.page-hero__title,.page-hero__sub{position:relative;z-index:1}
.page-hero .section-label{color:var(--gold-lt)}
.page-hero__title{
  font-family:'Cormorant Garamond',serif;font-size:clamp(2.5rem,5vw,4rem);
  font-weight:300;color:var(--white);margin-bottom:0.75rem;
}
.page-hero__sub{font-size:1rem;color:rgba(255,255,255,0.6);font-weight:300;max-width:640px;margin-left:auto;margin-right:auto}

/* ─── SERVICE TABS ───────────────────────────────────── */
.service-tabs{
  display:flex;gap:0;border-bottom:1px solid var(--gray-lt);
  padding:0 5%;background:var(--white);
  position:sticky;top:var(--nav-h);z-index:100;
  justify-content:center;
}
.service-tab{
  padding:1.25rem 2rem;font-size:0.78rem;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--gray);border-bottom:2px solid transparent;
  margin-bottom:-1px;transition:all 0.25s var(--ease);cursor:pointer;
}
.service-tab:hover{color:var(--navy)}
.service-tab.active{color:var(--blue);border-bottom-color:var(--blue)}
.tab-short{display:none}

/* ─── SERVICE DETAIL ─────────────────────────────────── */
.service-detail{
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start;
  max-width:1200px;margin:0 auto;padding:5rem 5%;
}
.service-detail__gallery{display:grid;gap:1rem}
.service-detail__gallery-main{width:100%;height:340px;object-fit:cover;border-radius:4px}
.service-detail__gallery-row{display:grid;grid-template-columns:1fr;gap:1rem}
.service-detail__gallery-row img{width:100%;height:260px;object-fit:cover;border-radius:4px}
.service-detail__content .divider{margin:1rem 0 1.5rem}
.service-detail__content p{
  font-size:0.95rem;line-height:1.8;color:#4a5568;margin-bottom:1.25rem;
}
.service-highlights{margin:2rem 0}
.service-highlights__title{
  font-size:0.75rem;letter-spacing:0.2em;text-transform:uppercase;
  font-weight:600;color:var(--navy);margin-bottom:1.25rem;
}
.highlight-list{display:flex;flex-direction:column;gap:0.75rem}
.highlight-item{
  display:flex;align-items:flex-start;gap:0.75rem;
  font-size:0.9rem;line-height:1.5;color:var(--text);
}
.highlight-item::before{
  content:'';flex-shrink:0;width:6px;height:6px;border-radius:50%;
  background:var(--gold);margin-top:0.4em;
}
.service-cta-row{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2.5rem}

/* ─── PRICING PAGE ───────────────────────────────────── */
.pricing-intro{
  max-width:900px;margin:0 auto;text-align:center;padding:5rem 5% 3rem;
}
.pricing-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  max-width:1200px;margin:0 auto;padding:0 5% 5rem;
}
.pricing-card{
  border:1px solid var(--gray-lt);border-radius:6px;overflow:hidden;
  display:flex;flex-direction:column;background:var(--white);
  border-top:4px solid var(--gray-lt);
}
.pricing-card--featured{border-color:var(--gold);position:relative}
.pricing-card__badge{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--navy);
  font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;
  font-weight:700;padding:0.3rem 1rem;border-radius:0 0 4px 4px;
}
.pricing-card__header{
  background:var(--cream);padding:2.5rem 2rem 1.5rem;text-align:center;
  border-bottom:1px solid var(--gray-lt);
}
.pricing-card__title{
  font-family:'Cormorant Garamond',serif;font-size:1.6rem;
  font-weight:400;color:var(--navy);margin-bottom:1rem;
}
.pricing-card__price{
  font-family:'Cormorant Garamond',serif;font-size:3.5rem;
  font-weight:300;color:var(--navy);line-height:1;
}
.pricing-card__price span{font-size:1.4rem;vertical-align:super;line-height:1;color:var(--gold)}
.pricing-card__per{font-size:0.75rem;color:var(--gray);margin-top:0.5rem;letter-spacing:0.1em}
.pricing-card__body{padding:2rem;display:flex;flex-direction:column;flex:1}
.pricing-card__feature{
  display:flex;align-items:flex-start;gap:0.75rem;
  padding:0.6rem 0;border-bottom:1px solid var(--gray-lt);
  font-size:0.875rem;line-height:1.5;color:var(--text);
}
.pricing-card__feature:last-of-type{border-bottom:1px solid var(--gray-lt);margin-bottom:1.5rem}
.pricing-card__check{
  width:18px;height:18px;flex-shrink:0;
  background:var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.pricing-card__check svg{width:9px;height:9px;fill:var(--white)}
.pricing-card__cta{display:flex!important;align-items:center;justify-content:center;width:100%;margin-top:auto;margin-bottom:0;padding:1rem 1.5rem;border-radius:3px;letter-spacing:0.12em;font-size:0.82rem;font-weight:700;text-transform:uppercase;line-height:1;box-sizing:border-box}
.btn--navy{background:var(--navy);color:var(--white)}
.btn--navy::before{background:var(--blue)}
.btn--navy:hover{color:var(--white)}

.btn--ghost{background:transparent;color:var(--navy);border:1px solid var(--gold)}
.btn--ghost::before{background:var(--gold)}
.btn--ghost:hover{color:var(--white)}

.btn--blue{background:var(--blue);color:var(--white)}
.btn--blue::before{background:var(--blue-lt)}
.btn--blue:hover{color:var(--white)}
.pricing-note{
  background:var(--cream);padding:4rem 5%;
  border-top:1px solid var(--gray-lt);
}
.pricing-note__title{
  font-family:'Cormorant Garamond',serif;font-size:1.4rem;
  color:var(--navy);margin-bottom:1rem;
}
.pricing-note p{font-size:0.9rem;line-height:1.8;color:#4a5568;margin-bottom:1.25rem}
.pricing-note strong{color:var(--navy)}

/* ─── WHAT'S INCLUDED ────────────────────────────────── */
.whats-included{background:var(--white);padding:5rem 5%}
.whats-included__inner{max-width:1200px;margin:0 auto}
.whats-included__header{text-align:center;margin-bottom:1.25rem;display:flex;flex-direction:column;align-items:center}
.whats-included__grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:0;
  max-width:760px;margin:0 auto;
}
.wi-item{
  display:flex;align-items:center;gap:1rem;
  padding:0.9rem 1.5rem;
}
.wi-item__check{
  flex-shrink:0;width:18px;height:18px;
}
.wi-item__check svg{width:18px;height:18px;fill:var(--gold)}
.wi-item__text{font-size:0.9rem;color:var(--text);line-height:1.5}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-it-works{background:var(--cream);padding:5rem 5%}
.how-it-works__inner{max-width:1200px;margin:0 auto}
.how-it-works__header{text-align:center;margin-bottom:2.5rem;display:flex;flex-direction:column;align-items:center}
.how-it-works__steps{
  display:flex;align-items:flex-start;justify-content:center;gap:0;
}
.hiw-step{
  flex:1;max-width:300px;text-align:center;padding:0 1.5rem;
}
.hiw-step__num{
  font-family:'Cormorant Garamond',serif;font-size:1.25rem;
  letter-spacing:0.25em;color:var(--gold);margin-bottom:1.25rem;font-weight:500;
}
.hiw-step__icon{
  width:56px;height:56px;border-radius:50%;
  background:var(--white);border:1px solid var(--gray-lt);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.25rem;
}
.hiw-step__icon svg{width:22px;height:22px;fill:var(--navy)}
.hiw-step__title{
  font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:400;
  color:var(--navy);margin-bottom:0.75rem;
}
.hiw-step__text{font-size:0.875rem;color:var(--gray);line-height:1.8}
.hiw-step__connector{
  flex-shrink:0;width:60px;height:1px;background:var(--gold);
  opacity:0.4;margin-top:84px;
}

/* ─── SCHEDULE / CONTACT FORMS ───────────────────────── */
.form-section{
  display:grid;grid-template-columns:1fr 1.6fr;gap:5rem;
  max-width:1100px;margin:0 auto;padding:5rem 5%;align-items:start;
}
.form-info__title{
  font-family:'Cormorant Garamond',serif;font-size:2.2rem;
  font-weight:400;color:var(--navy);margin-bottom:1rem;
}
.form-info p{font-size:0.9rem;line-height:1.8;color:#4a5568;margin-bottom:1.5rem}
.contact-detail{
  display:flex;align-items:flex-start;gap:1rem;
  margin-bottom:1.25rem;padding-bottom:1.25rem;
  border-bottom:1px solid var(--gray-lt);
}
.contact-detail:last-child{border-bottom:none}
.contact-icon{
  width:40px;height:40px;border-radius:50%;background:var(--cream);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  border:1px solid var(--gray-lt);
}
.contact-icon svg{width:16px;height:16px;fill:var(--blue)}
.contact-label{font-size:0.7rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--gray);font-weight:600;margin-bottom:2px}
.contact-value{font-size:0.95rem;color:var(--navy);font-weight:500}
.contact-value a{color:var(--blue);transition:color 0.2s}
.contact-value a:hover{color:var(--navy)}
.form-card{
  background:var(--white);border:1px solid var(--gray-lt);border-radius:8px;
  padding:3rem;box-shadow:0 4px 32px rgba(26,41,64,0.07);
}
.form-card__title{
  font-family:'Cormorant Garamond',serif;font-size:1.8rem;
  font-weight:400;color:var(--navy);margin-bottom:0.5rem;
}
.form-card__sub{font-size:0.875rem;color:var(--gray);margin-bottom:2rem;line-height:1.5}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-bottom:1.25rem}
.form-row--full{grid-template-columns:1fr}
.form-group{display:flex;flex-direction:column;gap:0.4rem}
.form-label{
  font-size:0.72rem;letter-spacing:0.12em;text-transform:uppercase;
  font-weight:600;color:var(--navy);
}
.form-input,.form-select,.form-textarea{
  padding:0.75rem 1rem;border:1px solid var(--gray-lt);border-radius:3px;
  font-family:'DM Sans',sans-serif;font-size:0.9rem;color:var(--text);
  background:var(--white);transition:border-color 0.2s,box-shadow 0.2s;outline:none;
  width:100%;
}
.form-input::placeholder,.form-textarea::placeholder{color:rgba(138,155,176,0.55)}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--blue);box-shadow:0 0 0 3px rgba(74,144,196,0.12);
}
.form-textarea{resize:vertical;min-height:120px}
.form-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}
.form-submit{width:100%;padding:1rem;font-size:0.82rem;letter-spacing:0.12em;text-transform:uppercase;font-weight:700;border-radius:3px;background:var(--navy);color:var(--white);transition:all 0.25s var(--ease);margin-top:0.75rem;cursor:pointer;border:none}
.form-submit:hover{background:var(--blue)}
.form-submit:disabled{opacity:0.6;cursor:not-allowed}
.form-error{margin-top:1rem;font-size:0.875rem;color:#c0392b;line-height:1.6}
.form-error a{color:#c0392b;text-decoration:underline}
.form-success{
  display:none;text-align:center;padding:4rem 2.5rem;
  flex-direction:column;align-items:center;justify-content:center;min-height:400px;
}
.form-success__icon{
  width:72px;height:72px;border-radius:50%;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;margin:0 auto 2rem;
}
.form-success__icon svg{width:30px;height:30px;fill:var(--gold)}
.form-success__eyebrow{
  font-size:0.72rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-bottom:1rem;
}
.form-success__title{
  font-family:'Cormorant Garamond',serif;font-size:2.4rem;font-weight:300;
  color:var(--navy);margin-bottom:1rem;line-height:1.2;
}
.form-success__divider{
  width:48px;height:1px;background:var(--gold);margin:0 auto 1.5rem;
}
.form-success p{font-size:0.9rem;color:var(--gray);line-height:1.8;max-width:380px;margin:0 auto}

/* ─── MAP SECTION ────────────────────────────────────── */
.map-section{border-top:1px solid var(--gray-lt)}
.map-section__label{
  text-align:center;padding:2.5rem 5% 1.5rem;
}
.map-section__label p{
  font-size:0.9rem;color:var(--gray);margin-top:0.4rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer{
  background:var(--navy);padding:4rem 5% 2rem;
  border-top:1px solid rgba(201,169,110,0.2);
}
.footer__inner{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:4rem;
  max-width:1200px;margin:0 auto;padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer__brand img{height:34px;filter:brightness(0) invert(1);margin-bottom:1.25rem}
.footer__brand p{font-size:0.875rem;color:rgba(255,255,255,0.5);line-height:1.7;max-width:280px}
.footer__social{display:flex;gap:0.75rem;margin-top:1.5rem}
.footer__social a{
  width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;
  transition:all 0.2s;
}
.footer__social a:hover{border-color:var(--gold);background:rgba(201,169,110,0.1)}
.footer__social svg{width:15px;height:15px;fill:rgba(255,255,255,0.6);transition:fill 0.2s}
.footer__social a:hover svg{fill:var(--gold)}
.footer__col-title{
  font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:1.25rem;
}
.footer__links{display:flex;flex-direction:column;gap:0.6rem}
.footer__links a{
  font-size:0.875rem;color:rgba(255,255,255,0.55);
  transition:color 0.2s;
}
.footer__links a:hover{color:var(--white)}
.footer__contact-item{
  display:flex;align-items:center;gap:0.6rem;margin-bottom:0.6rem;
  font-size:0.875rem;color:rgba(255,255,255,0.55);
}
.footer__contact-item svg{width:14px;height:14px;fill:var(--gold);flex-shrink:0}
.footer__contact-item a{color:rgba(255,255,255,0.55)}
.footer__bottom{
  padding-top:2rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
  max-width:1200px;margin:0 auto;
  font-size:0.75rem;color:rgba(255,255,255,0.5);
}
.footer__bottom a{color:rgba(255,255,255,0.5)}
.footer__bottom a[href*="labcoded"]{text-decoration:underline;text-underline-offset:3px;transition:color 0.2s}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:1024px){
  .benefits__inner{grid-template-columns:1fr;gap:3rem}
  .service-detail{grid-template-columns:1fr;gap:3rem}
  .form-section{grid-template-columns:1fr;gap:3rem}
  .footer__inner{grid-template-columns:1fr 1fr;gap:2.5rem}
  .pricing-cards{grid-template-columns:1fr 1fr}
}

@media(max-width:768px){
  :root{--nav-h:60px}

  .nav{padding:0 4%}
  .nav__links{display:none}
  .nav__hamburger{display:flex}
  .nav__logo img{height:30px}

  .hero{min-height:90vh}
  .hero__content{padding:2rem 5%}
  .hero__eyebrow{font-size:0.65rem}
  .hero__sub{font-size:0.95rem}
  .hero__actions{flex-direction:column;align-items:center;gap:0.75rem}
  .hero__actions .btn{width:100%;max-width:280px;justify-content:center}
  .hero__scroll{display:none}

  .trust-bar{gap:1.25rem;padding:1.75rem 5%;justify-content:flex-start}
  .trust-item{font-size:0.78rem}

  section{padding:4rem 5%}
  .section-title{font-size:clamp(1.7rem,6vw,2.4rem)}

  .services-grid{grid-template-columns:1fr;gap:0;margin-top:1.5rem}
  .service-card{padding:1.75rem 1.5rem}
  .service-card__img{height:200px;margin-bottom:1.25rem}
  .service-card__link{margin-top:1rem}
  .services-section{padding:2.5rem 5%!important}

  .hero__sub{max-width:100%;font-size:0.95rem}
  .hero__eyebrow::before,.hero__eyebrow::after{width:20px}

  .benefits{padding:4rem 5%}
  .benefits__grid{grid-template-columns:1fr;gap:1rem}

  .stats{padding:3rem 5%}
  .stats__inner{
    display:grid;grid-template-columns:1fr 1fr;
    gap:2rem;max-width:100%;
  }
  .stat__num{font-size:2.4rem}

  .testimonials__header{margin-bottom:2rem}
  .reviews-grid{grid-template-columns:1fr}
  .review-card{padding:1.75rem}

  .footer__brand p{max-width:100%}

  .page-hero{padding:3.5rem 5% 3rem}
  .page-hero__title{font-size:clamp(2rem,8vw,3rem)}

  .service-tabs{overflow-x:visible;padding:0;justify-content:stretch}
  .service-tab{flex:1;white-space:normal;text-align:center;padding:0.9rem 0.5rem;font-size:0.7rem;line-height:1.3}
  .tab-full{display:none}
  .tab-short{display:inline}

  .service-detail{padding:3rem 5%}
  .service-detail__gallery-main{height:220px}
  .service-detail__gallery-row{grid-template-columns:1fr 1fr}
  .service-detail__gallery-row img{height:140px}
  .service-cta-row{flex-direction:column}
  .service-cta-row .btn{width:100%;justify-content:center}

  .pricing-intro{padding:3rem 5% 2rem}
  .pricing-cards{grid-template-columns:1fr;padding:0 5% 3rem}
  .pricing-note{padding:2.5rem 5%}

  .form-section{padding:3rem 5%}
  .form-row{grid-template-columns:1fr}
  .form-card{padding:2rem 1.5rem}

  .footer__inner{grid-template-columns:1fr;gap:2rem}
  .footer__bottom{flex-direction:column;text-align:center;gap:0.5rem}

  .cta-band{padding:4rem 5%}

  .whats-included__grid{grid-template-columns:1fr}
  .whats-included{padding:3.5rem 5%}
  .whats-included__header{margin-bottom:1.5rem}

  .how-it-works__steps{flex-direction:column;align-items:center;gap:2.5rem}
  .hiw-step__connector{width:1px;height:30px;margin:0}
  .hiw-step{max-width:100%;padding:0}
}

@media(max-width:480px){
  :root{--nav-h:56px}

  section{padding:3rem 4%}

  /* HERO — stacked layout on mobile */
  .hero{flex-direction:column;align-items:stretch;min-height:auto;padding:0}
  .hero__bg{
    position:relative;height:280px;width:100vw;flex-shrink:0;
    margin-left:calc(-1 * ((100vw - 100%) / 2));
    transform:none;animation:none;
    background:url('../img/hero.webp') center/cover no-repeat;
    border-bottom:1px solid var(--gold);
    mask-image:linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image:linear-gradient(to bottom, black 60%, transparent 100%);
  }
  .hero__grain{display:none}
  .hero__accent{display:none}
  .hero__content{
    background:var(--navy);
    padding:2.5rem 4% 3rem;
    animation:none;
  }
  .hero__eyebrow::before,.hero__eyebrow::after{display:none}

  .stats__inner{grid-template-columns:1fr;gap:1.5rem;text-align:center}

  .trust-bar{display:grid;grid-template-columns:1fr 1fr;gap:1rem;padding:1.5rem 4%}

  .form-card{padding:1.75rem 1.25rem}
  .form-section{padding:2.5rem 4%}

  .pricing-note{padding:3rem 4%}
  .pricing-card__body{padding:1.5rem}

  .footer{padding:3rem 4% 1.5rem}
  .nav{padding:0 4%}
}

/* ─── SERVICE AREA ───────────────────────────────────── */
.service-area {
  background: var(--cream);
  padding: 5rem 5%;
  text-align: center;
}
.service-area__inner {
  max-width: 680px;
  margin: 0 auto;
}
.service-area__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
}
.service-area__title em {
  color: var(--blue);
  font-style: italic;
}
.service-area__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a5568;
  margin-top: 0;
}
@media(max-width: 600px) {
  .service-area { padding: 3.5rem 4%; }
}

/* ─── INDUSTRIES PAGE ────────────────────────────────── */
.industries-intro {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 5% 0;
  text-align: left;
}
.industries-intro__inner p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a5568;
}
.industries-grid-section {
  padding: 4rem 5% 6rem;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,41,64,0.09);
}
.industry-card__img {
  height: 200px;
  margin: -2rem -1.75rem 1.5rem;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.industry-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s var(--ease);
}
.industry-card:hover .industry-card__img img {
  transform: scale(1.04);
}
.industry-card__icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.industry-card__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}
.industry-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.industry-card__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--gray);
  flex: 1;
  margin-bottom: 1.25rem;
}
.industry-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.industry-card:hover .industry-card__link {
  color: var(--navy);
  gap: 0.55rem;
}

@media(max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .industries-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .industries-grid-section { padding: 3rem 4% 4rem; }
}

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal-body {
  padding: 3rem 5% 6rem;
}
.legal-body__inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal-body__inner p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 1.25rem;
}
.legal-body__inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-lt);
}
.legal-body__inner ul {
  margin: 0 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-body__inner ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  list-style: disc;
}
.legal-body__inner a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body__inner a:hover { color: var(--navy); }
@media(max-width: 600px) {
  .legal-body { padding: 2rem 4% 4rem; }
}

/* ─── BLOG INDEX ─────────────────────────────────────── */
.blog-grid {
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
  padding:4rem 5% 6rem;max-width:1280px;margin:0 auto;
}
.blog-card {
  background:var(--white);border:1px solid var(--gray-lt);border-radius:3px;
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform 0.25s var(--ease),box-shadow 0.25s var(--ease);
}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(26,41,64,0.10)}
.blog-card__img {
  height:200px;background:linear-gradient(135deg,var(--navy) 0%,rgba(74,144,196,0.5) 100%);
  display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;
}
.blog-card__img img{width:100%;height:100%;object-fit:cover}
.blog-card__img-placeholder {
  width:48px;height:48px;opacity:0.25;fill:var(--gold);
}
.blog-card__body{padding:1.75rem;display:flex;flex-direction:column;flex:1}
.blog-card__cat {
  font-size:0.65rem;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-bottom:0.6rem;
}
.blog-card__title {
  font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-weight:500;
  color:var(--navy);line-height:1.3;margin-bottom:0.85rem;
}
.blog-card__excerpt {
  font-size:0.88rem;line-height:1.7;color:var(--gray);flex:1;margin-bottom:1.25rem;
}
.blog-card__meta {
  display:flex;align-items:center;justify-content:space-between;
  font-size:0.72rem;color:var(--gray);letter-spacing:0.05em;
  border-top:1px solid var(--gray-lt);padding-top:1rem;
}
.blog-card__read-more {
  font-size:0.72rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--blue);display:flex;align-items:center;gap:0.3rem;
  transition:color 0.2s,gap 0.2s;
}
.blog-card:hover .blog-card__read-more{color:var(--navy);gap:0.55rem}

/* ─── BLOG POST ──────────────────────────────────────── */
.blog-post {
  max-width:1100px;margin:0 auto;padding:4rem 5% 6rem;
}
.blog-post__cat {
  font-size:0.68rem;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-bottom:0.75rem;display:block;
}
.blog-post__title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,3.5vw,3.5rem);font-weight:400;
  color:var(--navy);line-height:1.15;margin-bottom:1rem;
}
.blog-post__meta {
  font-size:0.78rem;color:var(--gray);letter-spacing:0.05em;
  display:flex;gap:1.5rem;align-items:center;margin-bottom:2rem;
  padding-bottom:2rem;border-bottom:1px solid var(--gray-lt);
}
.blog-post__feat-img {
  width:100%;height:480px;object-fit:cover;border-radius:3px;
  margin-bottom:2.5rem;background:linear-gradient(135deg,var(--navy),rgba(74,144,196,0.4));
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.blog-post__feat-img img{width:100%;height:100%;object-fit:cover}
.blog-post__body {font-size:1.02rem;line-height:1.8;color:var(--text)}
.blog-post__body h2 {
  font-family:'Cormorant Garamond',serif;font-size:1.75rem;font-weight:500;
  color:var(--navy);margin:2.5rem 0 1rem;line-height:1.25;
}
.blog-post__body h3 {
  font-family:'DM Sans',sans-serif;font-size:1.05rem;font-weight:600;
  color:var(--navy);margin:2rem 0 0.75rem;
}
.blog-post__body p{margin-bottom:1.4rem}
.blog-post__body ul,.blog-post__body ol {
  margin:0 0 1.4rem 1.5rem;display:flex;flex-direction:column;gap:0.5rem;
}
.blog-post__body li{line-height:1.7}
.blog-post__body ul li{list-style:disc}
.blog-post__body ol li{list-style:decimal}
.blog-post__body strong{color:var(--navy);font-weight:600}
.blog-post__body a{color:var(--blue);text-decoration:underline;text-underline-offset:3px}
.blog-post__body a:hover{color:var(--navy)}
.blog-post__body .btn{text-decoration:none}
.blog-post__body .btn--gold{color:var(--white)}
.blog-post__body .btn--gold:hover{color:var(--navy)}
.blog-post__body .btn--navy{color:var(--white)}
.blog-post__cta {
  background:var(--cream);border-left:3px solid var(--gold);
  padding:1.75rem 2rem;margin:2.5rem 0;border-radius:0 3px 3px 0;
}
.blog-post__cta p{margin-bottom:1rem;font-weight:500;color:var(--navy)}
.blog-back {
  display:inline-flex;align-items:center;gap:0.4rem;
  font-size:0.78rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gray);margin-bottom:2.5rem;transition:color 0.2s;
}
.blog-back:hover{color:var(--navy)}
.blog-related {
  padding:4rem 5%;background:var(--cream);
  border-top:1px solid var(--gray-lt);
}
.blog-related__title {
  font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:400;
  color:var(--navy);margin-bottom:2rem;
}
.blog-related__grid {
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  max-width:1280px;margin:0 auto;
}

@media(max-width:900px){
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .blog-related__grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .blog-grid{grid-template-columns:1fr;padding:2.5rem 4% 4rem}
  .blog-related__grid{grid-template-columns:1fr}
  .blog-post{padding:2.5rem 4% 4rem}
  .blog-post__feat-img{height:220px}
  .blog-post__title{font-size:1.85rem}
}

/* ─── ANIMATE ON SCROLL ──────────────────────────────── */
.reveal{
  opacity:0;transform:translateY(24px);
  transition:opacity 0.7s var(--ease),transform 0.7s var(--ease);
}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:0.1s}
.reveal-delay-2{transition-delay:0.2s}
.reveal-delay-3{transition-delay:0.3s}

/* ─── FAQ SECTION ────────────────────────────────────── */
.faq-section {
  background: var(--white);
  padding: 5rem 5%;
  border-top: 1px solid var(--gray-lt);
}
.faq-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-lt);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-lt);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-item--open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item--open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-a p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #4a5568;
}

@media(max-width: 600px) {
  .faq-section { padding: 3.5rem 4%; }
  .faq-q { font-size: 0.88rem; }
}

/* ─── ABOUT REVIVME ──────────────────────────────────── */
.about-revivme {
  background: var(--cream);
  padding: 5rem 5%;
  border-top: 1px solid var(--gray-lt);
}
.about-revivme__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-revivme__text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.1rem;
}
.about-revivme__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26,41,64,0.05);
}
.about-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat__num span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-left: 2px;
}
.about-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.about-stat__sub {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
}

@media(max-width: 900px) {
  .about-revivme__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media(max-width: 600px) {
  .about-revivme {
    padding: 3.5rem 4%;
  }
  .about-revivme__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ─── PRICING CALCULATOR ─────────────────────────────── */
.calc-section {
  background: var(--cream);
  padding: 5rem 5%;
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
}

.calc-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.calc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.calc-intro {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* ── Inputs panel ── */
.calc-inputs {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 16px rgba(26,41,64,0.06);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.calc-val {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 0.1em 0.65em;
  letter-spacing: 0.05em;
  min-width: 1.8em;
  text-align: center;
}

/* Event type toggle */
.calc-toggle {
  display: flex;
  border: 1px solid var(--gray-lt);
  border-radius: 4px;
  overflow: hidden;
}

.calc-toggle__btn {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
}

.calc-toggle__btn + .calc-toggle__btn {
  border-left: 1px solid var(--gray-lt);
}

.calc-toggle__btn.active {
  background: var(--navy);
  color: var(--white);
}

.calc-toggle__btn:not(.active):hover {
  background: var(--gray-lt);
  color: var(--navy);
}

/* Session length pills */
.calc-pills {
  display: flex;
  gap: 0.75rem;
}

.calc-pill {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--gray-lt);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.2;
}

.calc-pill span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.03em;
}

.calc-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.calc-pill.active span {
  color: rgba(255,255,255,0.65);
}

.calc-pill:not(.active):hover {
  border-color: var(--blue-lt);
  background: rgba(74,144,196,0.05);
}

/* Range slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-lt);
  outline: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--navy), 0 2px 8px rgba(26,41,64,0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--navy), 0 2px 8px rgba(26,41,64,0.2);
  cursor: pointer;
}

.calc-slider:hover::-webkit-slider-thumb {
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 2px 8px rgba(74,144,196,0.3);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* Inputs disclaimer */
.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
  border-top: 1px solid var(--gray-lt);
  padding-top: 1.25rem;
  font-style: italic;
  margin-top: auto;
}

/* ── Results panel ── */
.calc-results {
  background: var(--navy);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  flex-direction: column;
}

.calc-results__header {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.calc-breakdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.calc-breakdown__val {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.calc-breakdown__divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0.5rem 0;
}

/* Total */
.calc-total {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0 0.75rem;
}

.calc-total__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.calc-total__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Note */
.calc-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-style: italic;
  min-height: 1.2em;
}

/* ── Calculator responsive ── */
@media(max-width: 900px) {
  .calc-body {
    grid-template-columns: 1fr;
  }
  .calc-results {
    position: static;
  }
}

@media(max-width: 600px) {
  .calc-section {
    padding: 3.5rem 4%;
  }
  .calc-inputs {
    padding: 1.75rem 1.25rem;
  }
  .calc-results {
    padding: 1.75rem 1.25rem;
  }
  .calc-pills {
    flex-direction: column;
  }
  .calc-pill {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }
}
