/* ===================== ASTRA by Sabby — styles ===================== */

:root{
  --cream:        #FBF6EE;
  --cream-2:      #F5EEE0;
  --white:        #FFFFFF;
  --ink:          #2B2420;
  --ink-soft:     #58504A;
  --gold:         #A9834E;
  --gold-deep:    #8C6A3A;
  --gold-light:   #D9C39C;
  --line:         rgba(43,36,32,0.1);
  --shadow-soft:  0 20px 60px -25px rgba(43,36,32,0.35);
  --shadow-card:  0 12px 30px -18px rgba(43,36,32,0.25);
  --radius-lg:    28px;
  --radius-md:    18px;
  --radius-sm:    10px;
  --ff-serif:     'Cormorant Garamond', Georgia, serif;
  --ff-sans:      'Jost', 'Helvetica Neue', Arial, sans-serif;
  --container:    1240px;
  color-scheme: light;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--ff-sans);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* film-grain overlay for texture */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9000;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow{
  font-family:var(--ff-sans);
  font-size:12.5px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-deep);
  font-weight:500;
  margin:0 0 16px;
  display:flex; align-items:center; gap:8px;
}
.eyebrow.center{ justify-content:center; }
.star{ color:var(--gold); display:inline-block; }

.section-title{
  font-family:var(--ff-serif);
  font-weight:500;
  font-size:clamp(30px,4.4vw,50px);
  line-height:1.12;
  margin:0 0 18px;
  color:var(--ink);
}
.section-title em{ font-style:italic; color:var(--gold-deep); font-weight:500; }
.section-title.center{ text-align:center; }

.section-sub{
  font-size:17px;
  color:var(--ink-soft);
  max-width:560px;
  margin:0 0 8px;
}
.section-sub.center{ margin-left:auto; margin-right:auto; text-align:center; }

.section-head{ max-width:720px; margin:0 auto 56px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px;
  border-radius:999px;
  font-size:14.5px;
  font-weight:500;
  letter-spacing:.02em;
  white-space:nowrap;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .3s ease, color .3s ease, border-color .3s ease;
  border:1px solid transparent;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold) 0%, var(--gold-deep) 100%);
  color:#fff;
  box-shadow:0 14px 30px -12px rgba(140,106,58,.55);
  position:relative; overflow:hidden;
}
.btn-primary::after{
  content:''; position:absolute; top:0; bottom:0; left:-60%; width:40%;
  background:linear-gradient(115deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
  transform:skewX(-20deg);
  transition:left .7s cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover::after{ left:130%; }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 36px -12px rgba(140,106,58,.65); }
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-deep); transform:translateY(-2px); }
.btn-lg{ padding:16px 32px; font-size:15.5px; }
.icon-wa{ width:18px; height:18px; flex:none; }

/* ===================== HEADER ===================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(251,246,238,0);
  transition:background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease, padding .3s ease;
  padding:22px 0;
}
.site-header.scrolled{
  background:rgba(251,246,238,.86);
  backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 8px 30px -20px rgba(43,36,32,.4);
  padding:12px 0;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; }
/* Logo file is trimmed to its ink, so height here is the visible mark height */
.brand-logo{ height:56px; width:auto; transition:height .3s ease; }
.site-header.scrolled .brand-logo{ height:46px; }

.nav-desktop{ display:flex; align-items:center; gap:34px; }
.nav-desktop a{
  position:relative; font-size:14.5px; font-weight:500; color:var(--ink-soft);
  padding:4px 0; transition:color .25s ease;
}
.nav-desktop a::after{
  content:''; position:absolute; left:0; right:100%; bottom:-2px; height:1px;
  background:var(--gold); transition:right .3s ease;
}
.nav-desktop a:hover{ color:var(--ink); }
.nav-desktop a:hover::after{ right:0; }
.nav-desktop a.active{ color:var(--ink); }
.nav-desktop a.active::after{ right:0; }

.btn-nav{ padding:11px 22px; font-size:13.5px; }

.menu-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px;
}
.menu-toggle span{ width:22px; height:1.5px; background:var(--ink); transition:transform .3s ease, opacity .3s ease; }
.menu-toggle.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

.nav-mobile{
  display:none; flex-direction:column; gap:2px;
  background:var(--cream);
  max-height:0; overflow:hidden; transition:max-height .45s cubic-bezier(.2,.8,.2,1);
}
.nav-mobile.open{ border-top:1px solid var(--line); }
.nav-mobile a{
  padding:16px 24px; font-size:16px; font-weight:500; border-bottom:1px solid var(--line);
}
.nav-mobile.open{ max-height:420px; }
.btn-mobile-cta{ margin:16px 24px; justify-content:center; border-bottom:none !important; }

/* ===================== HERO ===================== */
.hero{ position:relative; padding:150px 0 70px; overflow:hidden; }
.hero::before{
  content:''; position:absolute; top:-160px; right:-160px; width:520px; height:520px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, var(--gold-light), transparent 70%);
  opacity:.5; z-index:0;
}
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.12fr .88fr; gap:56px; align-items:center;
}
.hero-copy{ position:relative; z-index:0; }
/* Sits in the empty lower-left of the hero, clear of the headline and copy */
.hero-compass{
  display:none;
  position:absolute;
  left:-110px; bottom:-152px;
  width:340px; height:340px;
  color:var(--gold-deep);
  opacity:.18;
  z-index:0;
  pointer-events:none;
  animation:compass-drift 150s linear infinite;
}
@keyframes compass-drift{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}
@media (min-width:900px){
  .hero-compass{ display:block; }
}
.hero-title{
  font-family:var(--ff-serif);
  font-weight:500;
  /* Sized so the longest line ("Understand your energy") stays on one line */
  font-size:clamp(33px,5vw,64px);
  line-height:1.08;
  margin:0 0 22px;
  color:var(--ink);
}
.hero-title em{
  font-style:italic;
  /* background-clip:text only paints glyphs inside the background box, so the
     box is extended past the italic descenders and pulled back with margin. */
  padding-bottom:.2em;
  margin-bottom:-.2em;
  background:linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 22%, var(--gold-light) 45%, var(--gold) 68%, var(--gold-deep) 100%);
  background-size:250% auto;
  -webkit-background-clip:text; background-clip:text;
  color:transparent; -webkit-text-fill-color:transparent;
  animation:shimmer 7s linear infinite;
}
@keyframes shimmer{ to{ background-position:-250% center; } }
.hero-sub{ font-size:18px; color:var(--ink-soft); max-width:480px; margin:0 0 34px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; }

.hero-visual{ position:relative; display:flex; flex-direction:column; align-items:center; }
.hero-frame{ position:relative; width:100%; max-width:420px; }
.hero-img-mask{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  position:relative; z-index:2;
}
.hero-img{
  width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top center;
  display:block;
  animation:kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns{ from{ transform:scale(1); } to{ transform:scale(1.08); } }
.hero-ring{
  position:absolute; top:24px; left:24px; right:-24px; bottom:-24px;
  border:1px solid var(--gold-light); border-radius:var(--radius-lg);
  z-index:1;
}
.hero-star{ position:absolute; color:var(--gold); font-size:22px; z-index:3; animation:twinkle 3.2s ease-in-out infinite; }
.hero-star--1{ top:-14px; left:-10px; font-size:30px; animation-delay:.2s; }
.hero-star--2{ bottom:30px; right:-18px; font-size:18px; animation-delay:1.1s; }
@keyframes twinkle{ 0%,100%{ opacity:.35; transform:scale(.85);} 50%{ opacity:1; transform:scale(1.1);} }

.hero-badge{
  display:flex; align-items:center; gap:12px;
  background:var(--white); border-radius:999px; padding:12px 22px;
  box-shadow:var(--shadow-card);
  margin-top:-28px; position:relative; z-index:3;
  font-size:12.5px;
}
.hero-badge-icon{ color:var(--gold); font-size:18px; }
.hero-badge strong{ display:block; font-size:13.5px; font-weight:600; }
.hero-badge small{ color:var(--ink-soft); font-size:11.5px; letter-spacing:.02em; }

/* ===================== MARQUEE ===================== */
.marquee{
  background:var(--ink); color:var(--gold-light);
  overflow:hidden; padding:16px 0; white-space:nowrap;
}
.marquee-track{
  display:inline-flex; gap:22px; font-family:var(--ff-serif); font-style:italic; font-size:19px;
  animation:marquee 40s linear infinite;
  padding-left:22px;
}
.marquee-track span:nth-child(odd){ color:var(--gold); font-style:normal; font-family:var(--ff-sans); font-size:12px; letter-spacing:.14em; text-transform:uppercase; align-self:center; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
.marquee:hover .marquee-track{ animation-play-state:paused; }

/* ===================== ABOUT ===================== */
.about{ padding:120px 0; overflow-x:hidden; }
.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center; }
.about-visual{ position:relative; }
.about-img--main{
  width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
}
.about-img--accent{
  position:absolute; width:52%; aspect-ratio:1/1; object-fit:cover;
  right:-8%; bottom:-10%;
  border-radius:var(--radius-md);
  border:6px solid var(--cream);
  box-shadow:var(--shadow-card);
}
.about-copy p{ color:var(--ink-soft); font-size:16.5px; margin:0 0 18px; max-width:520px; }
.about-stats{ display:flex; flex-wrap:wrap; gap:14px 56px; margin:32px 0 4px; }
.about-stats strong{
  display:block; font-family:var(--ff-serif); font-weight:500;
  font-size:44px; line-height:1; color:var(--gold-deep);
}
.about-stats span{
  display:block; margin-top:9px;
  font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft);
}
.pill-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.pill-list li{
  border:1px solid var(--line); border-radius:999px; padding:9px 18px;
  font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--gold-deep);
  background:var(--white);
}

/* ===================== SERVICES ===================== */
.services{
  padding:100px 0 120px;
  background:
    radial-gradient(circle at 92% -6%, rgba(169,131,78,.20), transparent 42%),
    radial-gradient(circle at 3% 104%, rgba(169,131,78,.16), transparent 42%),
    var(--cream-2);
  position:relative; overflow:hidden;
}
/* Star layer is oversized so it can drift a full tile without exposing an edge */
.services::before{
  content:'';
  position:absolute; inset:-280px;
  animation:starfield-drift 30s linear infinite;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cg fill='%23A9834E'%3E%3Ccircle cx='18' cy='24' r='1.4' opacity='.35'/%3E%3Ccircle cx='64' cy='12' r='1' opacity='.22'/%3E%3Ccircle cx='112' cy='40' r='1.6' opacity='.3'/%3E%3Ccircle cx='150' cy='16' r='1' opacity='.2'/%3E%3Ccircle cx='200' cy='30' r='1.3' opacity='.28'/%3E%3Ccircle cx='230' cy='70' r='1' opacity='.2'/%3E%3Ccircle cx='30' cy='90' r='1' opacity='.2'/%3E%3Ccircle cx='90' cy='100' r='1.5' opacity='.28'/%3E%3Ccircle cx='140' cy='84' r='1' opacity='.2'/%3E%3Ccircle cx='180' cy='110' r='1.4' opacity='.28'/%3E%3Ccircle cx='10' cy='140' r='1.2' opacity='.24'/%3E%3Ccircle cx='55' cy='160' r='1' opacity='.2'/%3E%3Ccircle cx='105' cy='150' r='1.6' opacity='.3'/%3E%3Ccircle cx='160' cy='170' r='1' opacity='.2'/%3E%3Ccircle cx='215' cy='150' r='1.3' opacity='.26'/%3E%3Ccircle cx='40' cy='200' r='1' opacity='.2'/%3E%3Ccircle cx='95' cy='210' r='1.3' opacity='.24'/%3E%3Ccircle cx='150' cy='225' r='1' opacity='.2'/%3E%3Ccircle cx='200' cy='205' r='1.5' opacity='.28'/%3E%3Ccircle cx='230' cy='230' r='1' opacity='.2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:240px 240px;
  pointer-events:none;
}
.services .container{ position:relative; z-index:1; }
.cards-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.service-card{
  background:var(--white); border-radius:var(--radius-md); padding:36px 30px;
  box-shadow:var(--shadow-card);
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:0 26px 46px -20px rgba(43,36,32,.3); }
.service-icon{
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--cream-2),var(--white));
  display:flex; align-items:center; justify-content:center; color:var(--gold-deep);
  margin-bottom:22px;
}
.service-icon svg{ width:26px; height:26px; }
.service-card h3{ font-family:var(--ff-serif); font-size:23px; font-weight:600; margin:0 0 10px; }
.service-card p{ color:var(--ink-soft); font-size:15px; margin:0; }

/* ===================== PROCESS ===================== */
.process{ padding:120px 0; }
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:36px; position:relative; }
.steps::before{
  content:''; position:absolute; top:26px; left:6%; right:6%; height:1px;
  background:repeating-linear-gradient(to right, var(--gold-light) 0 8px, transparent 8px 16px);
  z-index:0;
}
.step{ position:relative; z-index:1; text-align:left; }
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:50%;
  background:var(--white); border:1px solid var(--gold-light);
  font-family:var(--ff-serif); font-size:19px; color:var(--gold-deep);
  margin-bottom:20px;
}
.step h3{ font-family:var(--ff-serif); font-size:21px; font-weight:600; margin:0 0 8px; }
.step p{ color:var(--ink-soft); font-size:14.5px; margin:0; max-width:240px; }

/* ===================== PHILOSOPHY ===================== */
.philosophy{
  background:
    linear-gradient(135deg, rgba(30,24,19,.92) 0%, rgba(58,48,38,.88) 100%),
    var(--philosophy-img) center 30%/cover no-repeat;
  color:var(--cream);
  padding:110px 0;
  position:relative; overflow:hidden;
}
.philosophy::after{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 80% 20%, rgba(169,131,78,.25), transparent 55%);
}
.philosophy-inner{ position:relative; text-align:center; max-width:780px; }
.quote-mark{ font-family:var(--ff-serif); font-size:70px; color:var(--gold); line-height:1; display:block; margin-bottom:10px; }
.philosophy-quote{
  font-family:var(--ff-serif); font-style:italic; font-weight:500;
  font-size:clamp(24px,3.4vw,36px); line-height:1.4; margin:0 0 22px;
}
.philosophy-attr{ font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light); }

/* ===================== INSTAGRAM ===================== */
.instagram{ padding:120px 0; }
.instagram-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:36px;
}
.instagram-tile{
  position:relative; display:block; aspect-ratio:1/1; border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-card);
}
.instagram-tile img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}
.instagram-tile:hover img{ transform:scale(1.08); }
.instagram-overlay{
  position:absolute; inset:0;
  background:rgba(43,36,32,.42);
  display:flex; align-items:center; justify-content:center;
  color:var(--white); opacity:0; transition:opacity .35s ease;
}
.instagram-tile:hover .instagram-overlay{ opacity:1; }
.icon-ig{ width:26px; height:26px; }
.instagram-cta{ text-align:center; }

/* ===================== FAQ ===================== */
.faq{ padding:110px 0 130px; background:var(--cream-2); }
.faq-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:start; }
.faq-img{
  width:100%; max-width:280px; aspect-ratio:4/3; object-fit:cover;
  border-radius:var(--radius-md); box-shadow:var(--shadow-card);
  margin-bottom:28px;
}
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:var(--white); border-radius:var(--radius-sm); overflow:hidden;
  box-shadow:var(--shadow-card);
}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; padding:22px 26px; text-align:left;
  font-size:16px; font-weight:500; color:var(--ink);
}
.faq-icon{
  flex:none; width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); color:var(--gold-deep);
  transition:transform .35s ease, background .3s ease, color .3s ease;
}
.faq-icon svg{ width:13px; height:13px; display:block; }
.faq-item.open .faq-icon{ transform:rotate(45deg); background:var(--gold); color:#fff; border-color:var(--gold); }
.faq-a{
  max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.2,.8,.2,1), padding .4s ease;
  padding:0 26px;
}
.faq-item.open .faq-a{ max-height:220px; padding:0 26px 24px; }
.faq-a p{ margin:0; color:var(--ink-soft); font-size:15px; }

/* ===================== FINAL CTA ===================== */
.final-cta{ padding:120px 0 130px; position:relative; overflow:hidden; }
.final-cta-inner{ text-align:center; max-width:640px; position:relative; }
.final-cta-inner .btn{ margin-top:8px; }
.final-star--1, .final-star--2{ position:absolute; color:var(--gold); }
.final-star--1{ top:-10px; left:8%; font-size:24px; }
.final-star--2{ top:6px; right:6%; font-size:16px; }

/* ===================== LEGAL PAGES ===================== */
.legal{ padding:150px 0 110px; }
.legal-inner{ max-width:760px; }
.legal-title{
  font-family:var(--ff-serif); font-weight:500;
  font-size:clamp(34px,4.4vw,52px); line-height:1.12; margin:0 0 10px; color:var(--ink);
}
.legal-updated{
  font-size:12.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink-soft); opacity:.75; margin:0 0 36px;
}
.legal-lead{ font-size:18px; color:var(--ink-soft); margin:0 0 34px; }
.legal-inner h2{
  font-family:var(--ff-serif); font-size:25px; font-weight:600;
  margin:38px 0 12px; color:var(--ink);
}
.legal-inner p{ color:var(--ink-soft); font-size:16px; line-height:1.85; margin:0 0 16px; }
.legal-inner ul{ margin:0 0 16px; padding-left:0; }
.legal-inner li{
  position:relative; padding-left:22px; margin-bottom:10px;
  color:var(--ink-soft); font-size:16px; line-height:1.8;
}
.legal-inner li::before{
  content:'\2726'; position:absolute; left:0; top:1px; color:var(--gold); font-size:11px;
}
.legal-inner strong{ color:var(--ink); font-weight:500; }
.legal-inner a{ color:var(--gold-deep); border-bottom:1px solid var(--gold-light); }
.legal-inner a:hover{ color:var(--gold); border-color:var(--gold); }
.legal-back{ margin-top:48px; padding-top:26px; border-top:1px solid var(--line); }

.footer-legal{ margin:16px 0 0; display:flex; flex-wrap:wrap; justify-content:center; gap:6px 22px; }
.footer-legal a{
  font-size:12.5px; letter-spacing:.06em; color:rgba(251,246,238,.68);
  transition:color .3s ease;
}
.footer-legal a:hover{ color:var(--gold-light); }

@media (max-width:520px){
  .legal{ padding:120px 0 80px; }
}

/* ===================== VISIT ===================== */
.visit{ padding:100px 0 110px; background:var(--cream-2); }
.visit-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
  max-width:860px; margin:0 auto;
}
.visit-card{
  background:var(--white); border-radius:var(--radius-md);
  padding:40px 34px; box-shadow:var(--shadow-card); text-align:center;
  /* Column layout lets the CTA sit on the card floor regardless of copy length */
  display:flex; flex-direction:column; align-items:center;
}
.visit-icon{
  width:52px; height:52px; border-radius:50%;
  background:linear-gradient(135deg,var(--cream-2),var(--white));
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-deep); margin:0 auto 20px;
}
.visit-icon svg{ width:24px; height:24px; }
.visit-card h3{ font-family:var(--ff-serif); font-size:23px; font-weight:600; margin:0 0 12px; }
.visit-card p{ color:var(--ink-soft); font-size:15.5px; line-height:1.8; margin:0; }
.visit-note{ font-size:13.5px; margin-top:12px; opacity:.85; }
.visit-link{
  display:inline-block;
  margin-top:auto; padding-top:26px;
  white-space:nowrap;
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-deep); border-bottom:1px solid var(--gold-light); padding-bottom:3px;
  transition:color .3s ease, border-color .3s ease;
}
.visit-link:hover{ color:var(--gold); border-color:var(--gold); }


/* ===================== FOOTER ===================== */
.site-footer{
  background:
    radial-gradient(circle at 18% -10%, rgba(169,131,78,.22), transparent 50%),
    radial-gradient(circle at 88% 110%, rgba(169,131,78,.16), transparent 45%),
    var(--ink);
  color:var(--cream); padding:64px 0 32px;
  position:relative; overflow:hidden;
}
.site-footer::before{
  content:'';
  position:absolute; inset:-280px;
  animation:starfield-drift 30s linear infinite, starfield-twinkle 7s ease-in-out infinite;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cg fill='%23D9C39C'%3E%3Ccircle cx='18' cy='24' r='1.4' opacity='.5'/%3E%3Ccircle cx='64' cy='12' r='1' opacity='.35'/%3E%3Ccircle cx='112' cy='40' r='1.6' opacity='.45'/%3E%3Ccircle cx='150' cy='16' r='1' opacity='.3'/%3E%3Ccircle cx='200' cy='30' r='1.3' opacity='.4'/%3E%3Ccircle cx='230' cy='70' r='1' opacity='.3'/%3E%3Ccircle cx='30' cy='90' r='1' opacity='.3'/%3E%3Ccircle cx='90' cy='100' r='1.5' opacity='.4'/%3E%3Ccircle cx='140' cy='84' r='1' opacity='.3'/%3E%3Ccircle cx='180' cy='110' r='1.4' opacity='.4'/%3E%3Ccircle cx='10' cy='140' r='1.2' opacity='.35'/%3E%3Ccircle cx='55' cy='160' r='1' opacity='.3'/%3E%3Ccircle cx='105' cy='150' r='1.6' opacity='.45'/%3E%3Ccircle cx='160' cy='170' r='1' opacity='.3'/%3E%3Ccircle cx='215' cy='150' r='1.3' opacity='.4'/%3E%3Ccircle cx='40' cy='200' r='1' opacity='.3'/%3E%3Ccircle cx='95' cy='210' r='1.3' opacity='.35'/%3E%3Ccircle cx='150' cy='225' r='1' opacity='.3'/%3E%3Ccircle cx='200' cy='205' r='1.5' opacity='.4'/%3E%3Ccircle cx='230' cy='230' r='1' opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size:240px 240px;
  background-repeat:repeat;
  opacity:.7;
  pointer-events:none;
}
/* Drifting exactly one tile keeps the repeat seamless when the loop restarts */
@keyframes starfield-drift{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(240px,-240px,0); }
}
@keyframes starfield-twinkle{
  0%,100%{ opacity:.55; }
  50%{ opacity:.9; }
}
.footer-inner{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px; position:relative; z-index:1; }
.footer-logo{ height:52px; width:auto; }
.footer-tagline{ font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-light); margin:0; }
.footer-whatsapp{
  display:inline-flex; align-items:center; gap:8px; margin-top:6px;
  font-size:14.5px; color:var(--cream); border:1px solid rgba(251,246,238,.2);
  border-radius:999px; padding:10px 20px; transition:border-color .3s ease, color .3s ease;
}
.footer-whatsapp:hover{ border-color:var(--gold); color:var(--gold-light); }
.footer-copy{ font-size:12.5px; color:rgba(251,246,238,.5); margin:24px 0 0; }
.footer-credit{ font-size:12.5px; color:rgba(251,246,238,.45); margin:6px 0 0; }
.footer-credit a{
  color:rgba(251,246,238,.7); border-bottom:1px solid rgba(217,195,156,.35);
  padding-bottom:1px; transition:color .3s ease, border-color .3s ease;
}
.footer-credit a:hover{ color:var(--gold-light); border-color:var(--gold-light); }

/* ===================== FLOATING WHATSAPP ===================== */
.fab-whatsapp{
  position:fixed; right:22px; bottom:22px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(37,211,102,.6);
  transition:transform .3s ease;
}
.fab-whatsapp:hover{ transform:scale(1.08); }
.fab-whatsapp .icon-wa{ width:28px; height:28px; }
.fab-pulse{
  position:absolute; inset:0; border-radius:50%;
  border:2px solid #25D366;
  animation:pulse 2.2s ease-out infinite;
}
@keyframes pulse{
  0%{ transform:scale(1); opacity:.8; }
  100%{ transform:scale(1.7); opacity:0; }
}

/* ===================== SCROLL REVEAL ===================== */
.js-anim .reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay:var(--delay,0s);
}
.js-anim .reveal.is-visible{ opacity:1; transform:translateY(0); }

/* Hero: children animate individually rather than as one block */
.js-anim .hero-copy.reveal{ opacity:1; transform:none; transition:none; }
.js-anim .hero-stagger{
  opacity:0; transform:translateY(22px);
  transition:opacity .95s cubic-bezier(.16,.84,.28,1), transform .95s cubic-bezier(.16,.84,.28,1);
  transition-delay:var(--d,0s);
}
.js-anim .hero-copy.is-visible .hero-stagger{ opacity:1; transform:translateY(0); }

/* Hero headline: line-by-line rise from behind a mask */
/* Generous bottom room so italic descenders aren't clipped by the mask,
   pulled back with a matching negative margin to keep line spacing intact. */
.hero-title .ht-line{ display:block; overflow:hidden; padding-bottom:.3em; margin-bottom:-.3em; }
.js-anim .hero-title .ht-inner{
  display:block;
  transform:translateY(150%);
  transition:transform 1.15s cubic-bezier(.16,.84,.28,1);
  transition-delay:var(--d,0s);
}
.js-anim .hero-copy.is-visible .hero-title .ht-inner{ transform:translateY(0); }

/* Cinematic wipe for photography */
.js-anim .mask-reveal{
  clip-path:inset(0 0 100% 0 round var(--radius-md));
  transition:clip-path 1.25s cubic-bezier(.16,.84,.28,1);
  transition-delay:var(--delay,0s);
}
.js-anim .mask-reveal.is-visible{ clip-path:inset(0 0 0 0 round var(--radius-md)); }
.js-anim .about-img--main.mask-reveal{ clip-path:inset(0 0 100% 0 round var(--radius-lg)); }
.js-anim .about-img--main.mask-reveal.is-visible{ clip-path:inset(0 0 0 0 round var(--radius-lg)); }

@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .marquee-track, .hero-star, .fab-pulse, .hero-img, .hero-title em, .hero-compass,
  .services::before, .site-footer::before{ animation:none; }
  .service-card, .instagram-tile{ transform:none !important; }
  .hero-stagger, .hero-title .ht-inner{ opacity:1 !important; transform:none !important; transition:none !important; }
  .mask-reveal{ clip-path:none !important; transition:none !important; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1024px){
  .cards-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); row-gap:48px; }
  .steps::before{ display:none; }
  .faq-grid{ grid-template-columns:1fr; gap:36px; }
}

@media (max-width:860px){
  .nav-desktop{ display:none; }
  .menu-toggle{ display:flex; }
  .nav-mobile{ display:flex; }
  .btn-nav{ display:none; }

  .hero{ padding:120px 0 50px; }
  .hero-grid{ grid-template-columns:1fr; gap:48px; }
  .hero-visual{ order:-1; }
  .hero-frame{ max-width:300px; }
  .hero-copy{ text-align:center; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }

  .about-grid{ grid-template-columns:1fr; gap:70px; }
  .about-visual{ max-width:360px; margin:0 auto; }
  .about-copy{ text-align:center; }
  .about-copy p{ margin-left:auto; margin-right:auto; }
  .pill-list{ justify-content:center; }
  .about-stats{ justify-content:center; gap:14px 44px; }

  .cards-grid{ grid-template-columns:1fr; }
  .instagram-grid{ grid-template-columns:repeat(2,1fr); }
  .visit-grid{ grid-template-columns:1fr; }
}

@media (max-width:520px){
  .container{ padding:0 18px; }
  .hero{ padding:134px 0 40px; }
  .about, .services, .process, .instagram, .faq, .final-cta, .philosophy, .visit{ padding-top:76px; padding-bottom:76px; }
  .section-head{ margin-bottom:40px; }
  .instagram-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-badge{ font-size:11.5px; padding:10px 16px; }
  .quote-mark{ font-size:52px; }
  .about-img--accent{ right:-2%; bottom:-6%; width:48%; }
}
