
:root{
  --sap:#476b57;
  --sap-dark:#2d4a3a;
  --ink:#1f2a22;
  --muted:#6e7c73;
  --line:rgba(71,107,87,.15);
  --soft:#f6f6f2;
  --paper:#ffffff;
  --shadow:0 24px 80px rgba(37,51,42,.08);
  --radius:32px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Montserrat Alternates",sans-serif;
  background:linear-gradient(180deg,#ffffff,#f8f8f5 42%, #ffffff 100%);
  color:var(--ink);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}
.bg-orb{
  position:fixed; inset:auto; width:34rem; height:34rem; border-radius:50%;
  background:radial-gradient(circle, rgba(71,107,87,.08), rgba(71,107,87,0));
  filter:blur(20px); pointer-events:none; z-index:-1;
}
.orb-1{top:-8rem; right:-8rem}
.orb-2{bottom:-10rem; left:-8rem}

.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:18px; padding:16px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand strong{display:block; letter-spacing:.16em; font-size:1.05rem}
.brand small{display:block; color:var(--muted); letter-spacing:.24em; text-transform:uppercase; font-size:.64rem; margin-top:2px}
.brand-mark{
  width:48px; height:48px; border-radius:16px; display:grid; place-items:center;
  background:linear-gradient(180deg,#fff,#f3f4ef); border:1px solid var(--line); color:var(--sap);
  box-shadow:var(--shadow);
}
.brand-mark svg{width:30px; height:30px; fill:currentColor}
.desktop-nav{display:flex; gap:24px; align-items:center}
.desktop-nav a{font-size:.92rem; color:#45544a}
.desktop-nav a:hover{color:var(--sap)}
.nav-actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px; padding:14px 22px; font-weight:600; transition:.25s ease;
  border:1px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--sap); color:#fff; box-shadow:var(--shadow)}
.btn-outline{border-color:var(--line); color:var(--sap); background:#fff}
.btn-ghost{border-color:var(--line); background:rgba(255,255,255,.72); color:var(--ink)}
.block-btn{width:100%}
.menu-btn{display:none; border:none; background:none; font-size:28px; color:var(--sap)}
.mobile-nav{display:none; padding:8px 16px 18px; border-top:1px solid var(--line); background:#fff}
.mobile-nav.active{display:grid; gap:12px}
.mobile-cta{margin-top:6px}

.hero{padding:64px 0 34px}
.hero-grid{
  display:grid; grid-template-columns:1.02fr .98fr; gap:42px; align-items:center;
}
.eyebrow{
  display:inline-block; padding:8px 12px; border-radius:999px; background:#f2f4ef;
  color:var(--sap); border:1px solid var(--line); font-size:.73rem; letter-spacing:.16em;
  text-transform:uppercase; font-weight:700;
}
.hero h1{
  margin:18px 0 0; font-size:clamp(2.6rem, 5vw, 5rem); line-height:1.04; letter-spacing:-.03em;
}
.hero p{
  margin:18px 0 0; color:var(--muted); font-size:1.05rem; max-width:640px; line-height:1.8;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:28px}
.metrics{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:34px;
}
.metrics div{
  padding:18px; background:rgba(255,255,255,.7); border:1px solid var(--line); border-radius:24px;
  box-shadow:var(--shadow);
}
.metrics strong{display:block; color:var(--sap); font-size:.92rem}
.metrics span{display:block; margin-top:6px; color:var(--muted); font-size:.88rem; line-height:1.5}
.hero-visual{
  position:relative; min-height:620px;
}
.card{
  background:#fff; border:1px solid var(--line); border-radius:36px; overflow:hidden; box-shadow:var(--shadow);
}
.hero-main-card{
  position:absolute; inset:0 0 70px 100px;
}
.hero-main-card img{
  width:100%; height:100%; object-fit:cover;
}
.hero-side-card{
  position:absolute; width:300px; height:360px; left:0; bottom:0;
}
.hero-side-card img{
  width:100%; height:100%; object-fit:cover;
}

.section{padding:90px 0}
.section-head{max-width:760px; margin-bottom:34px}
.section-head.center{text-align:center; margin-left:auto; margin-right:auto}
.section-head h2{
  margin:16px 0 0; font-size:clamp(2rem, 4vw, 3.6rem); line-height:1.08;
}
.section-head p{margin:14px 0 0; color:var(--muted); line-height:1.8}

.philosophy{padding-top:40px}
.philosophy-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px; align-items:start}
.philosophy-cards{display:grid; gap:16px}
.mini-card{
  padding:26px; border:1px solid var(--line); border-radius:28px; background:rgba(255,255,255,.72); box-shadow:var(--shadow)
}
.mini-card h3{margin:0 0 8px; font-size:1.08rem}
.mini-card p{margin:0; color:var(--muted); line-height:1.7}

.services-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.service-card{
  border:1px solid var(--line); border-radius:30px; overflow:hidden; background:#fff; box-shadow:var(--shadow)
}
.service-card img{width:100%; height:280px; object-fit:cover}
.service-copy{padding:22px}
.service-copy span{display:block; color:var(--sap); font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700}
.service-copy h3{margin:10px 0 8px; font-size:1.22rem; line-height:1.35}
.service-copy p{margin:0; color:var(--muted); line-height:1.75}
.pill-row{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:22px;
}
.pill-row span{
  padding:11px 16px; border-radius:999px; border:1px solid var(--line); background:#fff; color:#506056; font-size:.88rem;
}

.signature-section{background:linear-gradient(180deg,#fcfcfa,#f6f7f2)}
.signature-layout{display:grid; grid-template-columns:1fr 1fr; gap:34px; align-items:center}
.signature-left h2{margin:16px 0 0; font-size:clamp(2rem,4vw,3.3rem); line-height:1.08}
.signature-left p{color:var(--muted); line-height:1.8; margin-top:16px}
.signature-list{display:grid; gap:14px; margin-top:24px}
.signature-item{
  display:flex; align-items:center; gap:14px; padding:18px 20px;
  border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow)
}
.signature-item strong{
  width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  background:#f2f4ef; color:var(--sap); font-size:.86rem;
}
.signature-stack{position:relative; min-height:640px}
.signature-stack .large{
  position:absolute; right:0; top:40px; width:78%; height:500px; object-fit:cover;
}
.signature-stack .small{
  position:absolute; width:260px; height:220px; object-fit:cover;
}
.signature-stack .top{left:0; top:0}
.signature-stack .bottom{left:40px; bottom:20px}

.membership{background:linear-gradient(180deg,#ffffff,#fbfbf8)}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.price-card{
  border:1px solid var(--line); border-radius:30px; background:#fff; padding:28px; box-shadow:var(--shadow)
}
.plan-tag{
  display:inline-block; padding:8px 12px; border-radius:999px; background:#f2f4ef; color:var(--sap);
  font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; font-weight:700
}
.price-card h3{margin:16px 0 8px; font-size:1.24rem}
.price{
  font-size:2.25rem; margin-bottom:12px; color:var(--sap); letter-spacing:-.03em
}
.price-card ul{margin:0 0 24px; padding-left:18px; color:var(--muted); line-height:1.9}
.price-card.featured{outline:1px solid rgba(71,107,87,.24); transform:translateY(-4px)}

.gallery-grid{display:grid; grid-template-columns:1.2fr 1.2fr .9fr .9fr; gap:18px}
.gallery-card{
  border-radius:30px; overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); background:#fff
}
.gallery-card img{width:100%; height:380px; object-fit:cover}

.contact-layout{display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:center}
.contact-copy h2{margin:16px 0 12px; font-size:clamp(2rem,4vw,3.1rem)}
.contact-copy p{color:var(--muted); line-height:1.8; font-size:1rem}
.map-card{
  border:1px solid var(--line); border-radius:34px; background:linear-gradient(180deg,#f8f9f4,#ffffff);
  min-height:360px; box-shadow:var(--shadow); display:grid; place-items:center;
}
.map-placeholder{text-align:center; max-width:360px; padding:28px}
.map-dot{
  width:84px; height:84px; margin:0 auto 18px; border-radius:50%;
  background:radial-gradient(circle, rgba(71,107,87,.26), rgba(71,107,87,.06));
  position:relative;
}
.map-dot::after{
  content:""; width:18px; height:18px; border-radius:50%; background:var(--sap);
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
}
.map-placeholder h3{margin:0 0 8px; font-size:1.4rem}
.map-placeholder p{margin:0; color:var(--muted); line-height:1.8}

.site-footer{
  padding:26px 0 44px; border-top:1px solid var(--line); background:#fff;
}
.footer{display:flex; align-items:center; justify-content:space-between; gap:16px}
.footer p{margin:0; color:var(--muted); font-size:.9rem}

.whatsapp-float{
  position:fixed; right:18px; bottom:18px; width:58px; height:58px; border-radius:50%;
  background:var(--sap); color:#fff; display:grid; place-items:center; box-shadow:var(--shadow); z-index:50
}

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

@media (max-width: 1060px){
  .hero-grid,.philosophy-grid,.signature-layout,.contact-layout,
  .services-grid,.pricing-grid,.gallery-grid{grid-template-columns:1fr 1fr}
  .metrics{grid-template-columns:1fr}
  .hero-visual{min-height:540px}
  .hero-main-card{inset:0 0 60px 60px}
  .hero-side-card{width:240px; height:300px}
}
@media (max-width: 760px){
  .desktop-nav,.nav-actions{display:none}
  .menu-btn{display:block}
  .hero,.section{padding:64px 0}
  .hero-grid,.philosophy-grid,.signature-layout,.contact-layout,
  .services-grid,.pricing-grid,.gallery-grid,.footer{grid-template-columns:1fr; display:grid}
  .hero-visual{min-height:auto}
  .hero-main-card,.hero-side-card,.signature-stack .large,.signature-stack .small{
    position:relative; inset:auto; width:100%; height:auto; left:auto; right:auto; top:auto; bottom:auto; margin:0;
  }
  .hero-main-card{margin-bottom:14px}
  .hero-main-card img,.hero-side-card img,.signature-stack .large,.signature-stack .small,.gallery-card img{height:320px}
  .signature-stack{min-height:auto; display:grid; gap:14px}
}


.tagline{
  margin-top:16px;
  color:var(--sap);
  font-size:.9rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
}
.reveal-delay{animation:none}

.why-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}
.why-visual{
  position:relative;
  min-height:520px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.why-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.why-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.24) 55%, rgba(255,255,255,.88) 100%);
}
.why-overlay{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  z-index:2;
}
.why-overlay span{
  display:block;
  font-size:.82rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--sap);
  margin-bottom:8px;
}
.why-overlay strong{
  display:block;
  font-size:2rem;
  line-height:1.1;
}
.why-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.why-card{
  padding:28px 24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}
.why-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#f2f4ef;
  color:var(--sap);
  font-size:1.05rem;
  margin-bottom:14px;
}
.why-card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}
.why-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 1060px){
  .why-grid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .why-cards{grid-template-columns:1fr}
  .why-visual{min-height:380px}
  .why-overlay strong{font-size:1.6rem}
}


body{
  font-family:"Inter",system-ui,sans-serif !important;
}
.brand strong,
.hero h1,
.section-head h2,
.signature-left h2,
.contact-copy h2,
.service-copy h3,
.why-card h3,
.price-card h3,
.map-placeholder h3{
  font-family:"Cormorant Garamond", serif !important;
}
.brand strong{
  letter-spacing:.12em !important;
  font-size:1.18rem !important;
}
.hero h1{
  letter-spacing:-.04em !important;
}
.section-head h2,
.signature-left h2,
.contact-copy h2{
  letter-spacing:-.03em;
}
.service-copy h3,
.why-card h3,
.price-card h3{
  font-size:1.5rem;
  line-height:1.15;
}
.hero p,
.section-head p,
.service-copy p,
.why-card p,
.contact-copy p,
.metrics span{
  font-family:"Inter",system-ui,sans-serif !important;
}
.hero-side-card img,
.why-visual img,
.service-card img{
  filter:saturate(0.95) contrast(1.03);
}
.why-overlay strong{
  font-family:"Cormorant Garamond", serif;
  font-size:2.35rem;
}


body{
  font-family:"Manrope",system-ui,sans-serif !important;
}
.brand strong,
.hero h1,
.section-head h2,
.signature-left h2,
.contact-copy h2,
.service-copy h3,
.why-card h3,
.price-card h3,
.map-placeholder h3,
.therapy-tile h3{
  font-family:"Fraunces", serif !important;
}
.hero h1{
  font-size:clamp(3rem, 5.4vw, 5.6rem) !important;
}
.highlight-destination{
  background:linear-gradient(90deg, rgba(71,107,87,.14), rgba(183,155,104,.12)) !important;
  border-color:rgba(71,107,87,.22) !important;
  color:var(--sap-dark) !important;
  box-shadow:0 8px 24px rgba(37,51,42,.05);
}
.sticky-book-bar{
  position:sticky;
  top:81px;
  z-index:95;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.sticky-book-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.sticky-book-inner span{
  color:var(--sap-dark);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.8rem;
}
.therapy-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.therapy-tile{
  border:1px solid var(--line);
  border-radius:28px;
  padding:26px 22px;
  background:#fff;
  box-shadow:var(--shadow);
}
.therapy-tile h3{
  margin:0 0 8px;
  font-size:1.45rem;
  line-height:1.1;
}
.therapy-tile p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.hero-side-card img,
.why-visual img,
.signature-stack img{
  filter:saturate(.96) contrast(1.04);
}
@media (max-width:1060px){
  .therapy-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .sticky-book-bar{
    top:77px;
  }
  .sticky-book-inner{
    flex-direction:column;
    align-items:stretch;
  }
  .therapy-grid{grid-template-columns:1fr}
}


body{
  font-family:"Inter",system-ui,sans-serif !important;
  background:
    radial-gradient(circle at top right, rgba(71,107,87,.05), transparent 28%),
    radial-gradient(circle at bottom left, rgba(183,155,104,.06), transparent 24%),
    linear-gradient(180deg,#ffffff,#f8f8f5 42%, #ffffff 100%) !important;
}
.brand strong,
.hero h1,
.section-head h2,
.signature-left h2,
.contact-copy h2,
.service-copy h3,
.why-card h3,
.price-card h3,
.map-placeholder h3,
.therapy-tile h3{
  font-family:"Playfair Display", serif !important;
}
.phone-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, #ffffff, #f3f5f1);
  border:1px solid rgba(71,107,87,.18);
  color:var(--sap-dark);
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:var(--shadow);
  white-space:nowrap;
}
.highlight-destination{
  font-weight:800 !important;
  background:linear-gradient(90deg, rgba(71,107,87,.12), rgba(183,155,104,.10)) !important;
}
.hero h1{
  max-width:800px;
}
.hero p{
  max-width:560px !important;
}
.hero-side-card{
  border-radius:40px !important;
}
.hero-side-card img,
.hero-main-card img,
.signature-stack img,
.gallery-card img,
.service-card img,
.why-visual img{
  transform:scale(1.01);
}
.service-card{
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover,
.gallery-card:hover{
  transform:translateY(-4px);
}
.signature-item{
  justify-content:flex-start;
}
.gallery-grid{
  grid-template-columns:1.25fr 1.25fr .95fr .95fr !important;
}
.site-header{
  box-shadow:0 8px 30px rgba(37,51,42,.04);
}
.sticky-book-inner{
  padding:9px 0 !important;
}
.sticky-book-inner span{
  font-size:.85rem !important;
}
@media (max-width:760px){
  .phone-pill{
    width:100%;
  }
}


body{
  font-family:"Inter",system-ui,sans-serif !important;
  background:
    radial-gradient(circle at top right, rgba(71,107,87,.04), transparent 28%),
    radial-gradient(circle at bottom left, rgba(183,155,104,.05), transparent 24%),
    linear-gradient(180deg,#fffdf9,#f8f7f2 42%, #ffffff 100%) !important;
}
.brand{
  gap:14px !important;
}
.brand-mark.image-logo{
  width:62px !important;
  height:62px !important;
  padding:6px;
  background:linear-gradient(180deg,#fff,#f5f3ec) !important;
}
.brand-mark.image-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:14px;
}
.brand-text-wrap{
  display:flex;
  flex-direction:column;
}
.brand strong,
.footer-brand strong{
  font-family:"Montserrat", sans-serif !important;
  font-weight:300 !important;
  letter-spacing:.34em !important;
  text-transform:uppercase;
  font-size:1rem !important;
  line-height:1.02;
}
.brand small,
.footer-brand small{
  font-family:"Inter", system-ui, sans-serif !important;
  letter-spacing:.18em !important;
  text-transform:uppercase;
  font-size:.62rem !important;
  color:var(--sap) !important;
  margin-top:8px;
  font-weight:700;
}
.hero h1,
.section-head h2,
.signature-left h2,
.contact-copy h2,
.service-copy h3,
.why-card h3,
.price-card h3,
.map-placeholder h3,
.therapy-tile h3{
  font-family:"Cormorant Garamond", serif !important;
}
.phone-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#fff,#f2f1eb);
  border:1px solid rgba(71,107,87,.18);
  color:var(--sap-dark);
  font-weight:800;
  box-shadow:var(--shadow);
  white-space:nowrap;
}
.btn-primary{
  padding:14px 24px !important;
}
.highlight-destination{
  font-weight:800 !important;
  background:linear-gradient(90deg, rgba(71,107,87,.12), rgba(183,155,104,.12)) !important;
  border-color:rgba(71,107,87,.24) !important;
  color:var(--sap-dark) !important;
  box-shadow:0 10px 30px rgba(37,51,42,.06);
}
.tagline{
  margin-top:14px !important;
  color:#9b7d3a !important;
  letter-spacing:.18em !important;
  font-weight:800 !important;
}
.sticky-book-inner span{
  color:var(--sap-dark) !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
}
.hero-main-card{
  inset:0 0 84px 80px !important;
}
.hero-main-card img{
  object-fit:cover !important;
  object-position:center center;
}
.hero-side-card{
  width:250px !important;
  height:320px !important;
  left:8px !important;
  bottom:8px !important;
}
.hero-side-card img,
.why-visual img,
.signature-stack img,
.gallery-card img,
.service-card img{
  filter:saturate(.98) contrast(1.03);
}
.philosophy{
  padding-top:24px !important;
  padding-bottom:70px !important;
}
.why-grid{
  grid-template-columns:.9fr 1.1fr !important;
  gap:20px !important;
}
.why-visual{
  min-height:420px !important;
}
.why-overlay strong{
  font-family:"Montserrat", sans-serif !important;
  font-weight:500 !important;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:1.1rem !important;
  line-height:1.35 !important;
  color:#6a5730;
  background:rgba(255,255,255,.6);
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
}
.services-grid .service-card:nth-child(2) img{
  object-position:center center;
}
.services-grid .service-card:nth-child(3) img{
  object-position:center top;
}
.signature-stack .large{
  width:76% !important;
  height:480px !important;
}
.signature-stack .small{
  width:240px !important;
  height:200px !important;
}
.editorial-sub{
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.editorial-grid{
  grid-template-columns:1.2fr 1.2fr .95fr .95fr !important;
}
.editorial-grid .gallery-card img{
  height:340px !important;
  object-fit:cover;
}
.footer-brand .brand-mark.image-logo{
  width:54px !important;
  height:54px !important;
}

@media (max-width:1060px){
  .why-grid{
    grid-template-columns:1fr !important;
  }
  .editorial-grid{
    grid-template-columns:1fr 1fr !important;
  }
}
@media (max-width:760px){
  .brand strong,
  .footer-brand strong{
    letter-spacing:.16em !important;
    font-size:.84rem !important;
  }
  .brand small,
  .footer-brand small{
    letter-spacing:.1em !important;
    font-size:.54rem !important;
  }
  .hero-main-card,
  .hero-side-card{
    inset:auto !important;
    width:100% !important;
    height:auto !important;
    left:auto !important;
    bottom:auto !important;
  }
  .hero-main-card img,
  .hero-side-card img{
    height:280px !important;
  }
  .why-visual{
    min-height:320px !important;
  }
  .editorial-grid{
    grid-template-columns:1fr !important;
  }
}


/* Premium hero with stronger full-width visual */
.hero{
  padding:56px 0 30px !important;
}
.hero-grid{
  grid-template-columns:1fr !important;
  gap:26px !important;
}
.hero-copy{
  text-align:center;
  max-width:860px;
  margin:0 auto;
}
.hero-copy p{
  margin-left:auto;
  margin-right:auto;
  max-width:620px !important;
}
.hero-actions,
.metrics{
  justify-content:center;
}
.hero-visual{
  min-height:auto !important;
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.hero-main-card{
  position:relative !important;
  inset:auto !important;
  width:100% !important;
  height:auto !important;
  border-radius:40px !important;
}
.hero-main-card img{
  width:100% !important;
  height:560px !important;
  object-fit:cover !important;
  object-position:center center !important;
}
.hero-side-card{
  position:absolute !important;
  right:34px !important;
  left:auto !important;
  bottom:28px !important;
  width:220px !important;
  height:280px !important;
  border-radius:30px !important;
}
.hero-side-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.brand-mark.image-logo{
  width:76px !important;
  height:76px !important;
  border-radius:50% !important;
  padding:8px !important;
}
.brand-mark.image-logo img{
  border-radius:50% !important;
}
.brand strong,
.footer-brand strong{
  font-family:"Montserrat", sans-serif !important;
  font-weight:300 !important;
  letter-spacing:.30em !important;
}
.sticky-book-inner{
  justify-content:center !important;
}
.sticky-book-inner span{
  text-align:center;
}

.why-grid{
  grid-template-columns:.78fr 1.22fr !important;
}
.why-visual{
  min-height:340px !important;
}
.why-visual img{
  object-position:center center;
}
.why-overlay{
  bottom:18px !important;
  left:18px !important;
  right:18px !important;
}
.why-overlay strong{
  font-size:.95rem !important;
}

.services-grid .service-card:nth-child(2) img,
.services-grid .service-card:nth-child(3) img{
  height:300px !important;
  object-fit:cover;
}
.signature-stack .large{
  width:78% !important;
  height:500px !important;
}
.signature-stack .small{
  width:230px !important;
  height:190px !important;
}
.signature-stack .small img,
.signature-stack .large{
  object-fit:cover;
}
.editorial-grid .gallery-card img{
  height:320px !important;
  object-fit:cover !important;
}
@media (max-width:760px){
  .hero-main-card img{height:320px !important;}
  .hero-side-card{
    position:relative !important;
    right:auto !important;
    bottom:auto !important;
    width:100% !important;
    height:auto !important;
    margin-top:14px !important;
  }
  .hero-side-card img{height:220px !important;}
  .brand-mark.image-logo{
    width:62px !important;
    height:62px !important;
  }
  .brand strong,.footer-brand strong{
    letter-spacing:.14em !important;
  }
}


.offer-section{
  padding-top:28px !important;
  padding-bottom:18px !important;
}
.offer-card{
  display:grid;
  grid-template-columns:1.15fr .6fr;
  gap:22px;
  align-items:center;
  padding:34px;
  border-radius:36px;
  background:
    radial-gradient(circle at top right, rgba(183,155,104,.14), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f6f4ec);
  border:1px solid rgba(183,155,104,.24);
  box-shadow:0 24px 80px rgba(37,51,42,.08);
  position:relative;
  overflow:hidden;
}
.offer-card::before{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(71,107,87,.10), rgba(71,107,87,0));
}
.offer-badge{
  position:absolute;
  top:16px;
  right:16px;
  padding:8px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(71,107,87,.14);
  color:var(--sap-dark);
  font-size:.74rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
}
.offer-kicker{
  display:inline-block;
  color:#9b7d3a;
  font-size:.85rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:10px;
}
.offer-card h2{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.05;
}
.offer-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  max-width:680px;
}
.offer-price-block{
  justify-self:end;
  text-align:center;
  min-width:220px;
  padding:26px 22px;
  border-radius:30px;
  background:linear-gradient(180deg,#476b57,#2d4a3a);
  color:#fff;
  box-shadow:0 20px 50px rgba(37,51,42,.16);
}
.offer-price{
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  letter-spacing:.18em;
  font-size:2.2rem;
}
.offer-worth{
  margin-top:8px;
  font-size:1rem;
  letter-spacing:.08em;
  opacity:.95;
}
@media (max-width:760px){
  .offer-card{
    grid-template-columns:1fr;
    padding:26px;
  }
  .offer-price-block{
    justify-self:start;
    width:100%;
  }
}


/* Final requested refinements */
.offer-section{
  padding-top:12px !important;
  padding-bottom:10px !important;
}
.offer-badge{
  background:linear-gradient(135deg,#fff,#faf6ea) !important;
}
.hero{
  padding-top:42px !important;
}
.hero-grid{
  gap:20px !important;
}
.hero-main-clean{
  width:100% !important;
  border-radius:42px !important;
}
.hero-main-clean img{
  width:100% !important;
  height:620px !important;
  object-fit:cover !important;
  object-position:center center !important;
}
.hero-visual{
  display:block !important;
}
.philosophy{
  padding-top:56px !important;
}
.why-visual{
  min-height:360px !important;
}
.why-main-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
@media (max-width:760px){
  .hero-main-clean img{
    height:320px !important;
  }
}


/* Visible without scrolling */
.top-offer-bar{
  background:linear-gradient(90deg,#3f614f,#5a7d68 55%, #3f614f);
  color:#fff;
  position:sticky;
  top:0;
  z-index:130;
  box-shadow:0 8px 24px rgba(37,51,42,.10);
}
.top-offer-inner{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding:10px 0;
  text-align:center;
}
.top-offer-label{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
}
.top-offer-inner strong{
  font-size:.98rem;
  letter-spacing:.02em;
}
.top-offer-inner a{
  color:#fff;
  text-decoration:none;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  font-weight:700;
}
.top-offer-sep{opacity:.55}

.site-header{
  top:48px !important;
}

.hero-offer-card{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
  padding:16px 18px;
  border-radius:24px;
  background:linear-gradient(135deg,#fffdf8,#f5f1e6);
  border:1px solid rgba(183,155,104,.22);
  box-shadow:0 16px 40px rgba(37,51,42,.06);
}
.hero-offer-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(71,107,87,.14);
  color:#9b7d3a;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  font-weight:800;
}
.hero-offer-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:left;
}
.hero-offer-text strong{
  font-size:1.08rem;
  color:#6a5730;
}
.hero-offer-text span{
  color:var(--muted);
  font-size:.92rem;
}

@media (max-width:760px){
  .top-offer-inner{
    gap:8px;
    padding:10px 12px;
  }
  .top-offer-sep{display:none}
  .site-header{
    top:78px !important;
  }
  .hero-offer-card{
    align-items:flex-start;
    justify-content:flex-start;
  }
  .hero-offer-text{
    text-align:left;
  }
}


.top-offer-inner{
  gap:10px !important;
}
.top-offer-inner strong{
  font-size:1rem !important;
}
.hero-offer-card{
  display:grid !important;
  grid-template-columns:auto 1fr auto !important;
  align-items:center !important;
  gap:18px !important;
}
.hero-offer-stats{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.remaining-count{
  color:var(--sap-dark);
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
}
.remaining-count span{
  color:#9b7d3a;
  font-size:1.3rem;
  margin-right:4px;
}
.claim-btn{
  border:none;
  border-radius:999px;
  background:var(--sap);
  color:#fff;
  padding:12px 18px;
  font-weight:700;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.claim-btn:hover{
  transform:translateY(-1px);
}
@media (max-width:760px){
  .hero-offer-card{
    grid-template-columns:1fr !important;
    align-items:flex-start !important;
  }
  .hero-offer-stats{
    width:100%;
    justify-content:space-between;
  }
}
