/* ==========================================================================
   EMPIRICA — brand tokens
   ========================================================================== */
:root {
  --eucalyptus-dark: #1E3B35;
  --eucalyptus-deep: #2F4A45;
  --sage: #A8B5A0;
  --gold: #C8A56A;
  --gold-light: #D9BD8B;
  --ivory: #F7F4EF;
  --stone: #D8D2C8;
  --stone-light: #E9E4DA;
  --moss: #7A8D77;
  --charcoal: #2A2A28;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  --max-width: 1160px;
  --nav-height: 84px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--eucalyptus-deep);
  margin: 0 0 .6em;
  line-height: 1.2;
}
p { margin: 0 0 1.2em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1em;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: currentColor;
}
.on-dark .eyebrow { color: var(--gold-light); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--ivory); }
.on-dark p { color: var(--sage); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--eucalyptus-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--eucalyptus-dark); }
.on-dark .btn-outline { border-color: var(--sage); color: var(--ivory); }
.on-dark .btn-outline:hover { background: var(--sage); color: var(--eucalyptus-dark); }
.btn-outline-deep {
  background: transparent;
  border-color: var(--eucalyptus-deep);
  color: var(--eucalyptus-deep);
}
.btn-outline-deep:hover { background: var(--eucalyptus-deep); color: var(--gold-light); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--stone);
}
.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand svg { width: 34px; height: 34px; }
.brand-word {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--eucalyptus-deep);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.nav-links a {
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--eucalyptus-deep); font-weight: 500; }
.nav-links-cta { display: none; }

.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-right .btn { padding: 11px 24px; font-size: .7rem; }
.lang-switch { display: flex; gap: 6px; font-size: .75rem; letter-spacing: .06em; }
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--moss);
  font-family: var(--font-sans);
  padding: 4px 6px;
}
.lang-switch button[aria-current="true"] { color: var(--eucalyptus-deep); font-weight: 600; border-bottom: 1px solid var(--gold); }
.lang-select {
  display: none;
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-radius: 2px;
  cursor: pointer;
  color: var(--eucalyptus-deep);
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .06em;
  padding: 7px 10px;
}
.lang-select:focus { outline: none; border-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 1px; background: var(--eucalyptus-deep); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 50% 20%, var(--eucalyptus-deep), var(--eucalyptus-dark) 70%);
  color: var(--ivory);
  overflow: hidden;
  padding: 110px 0 90px;
  text-align: center;
}
.hero.hero-page {
  padding: 90px 0 70px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.hero-photo {
  --hero-photo: url('../assets/hero-photo.jpg');
  background:
    linear-gradient(180deg, rgba(30,59,53,.68), rgba(30,59,53,.86)),
    var(--hero-photo) center 35%/cover no-repeat;
}
.hero.hero-photo.hero-photo-centered {
  background:
    linear-gradient(180deg, rgba(30,59,53,.68), rgba(30,59,53,.86)),
    var(--hero-photo) center center/cover no-repeat;
}

.hero.parallax-hero {
  background: none;
  position: relative;
  overflow: hidden;
}
.hero.parallax-hero .parallax-layer {
  position: absolute;
  inset: -45% 0;
  background:
    linear-gradient(180deg, rgba(30,59,53,.68), rgba(30,59,53,.86)),
    var(--hero-photo) center 35%/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero.parallax-hero .hero-inner { position: relative; z-index: 1; }
.hero.parallax-hero .hero-mark { height: 130px; }
.hero.parallax-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.hero-mist {
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-mark { height: 112px; width: auto; margin: 0 auto 10px; }
.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: .04em;
  margin-bottom: .3em;
}
.hero .subtitle {
  font-family: var(--font-sans);
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6em;
}
.hero .lede {
  color: var(--sage);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.2em;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-page h1 { font-size: clamp(2.2rem, 5vw, 3rem); }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-dark {
  background: var(--eucalyptus-dark);
  color: var(--ivory);
}
.section-stone { background: var(--stone); }
.section-sage { background: var(--sage); }
.section-center { text-align: center; }
.lede-block { max-width: 640px; margin: 0 auto 3em; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.value-card { text-align: center; }
.value-card .icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  color: var(--gold);
}
.value-card h3 { font-size: 1.5rem; }
.value-card p { color: var(--eucalyptus-deep); font-size: 1rem; }

.metaphor-card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 40px 30px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.metaphor-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30,59,53,.08); }
.metaphor-card .icon { width: 60px; height: 60px; margin: 0 auto 22px; color: var(--gold); }
.metaphor-card h4 { font-size: 1.3rem; margin-bottom: .4em; }
.metaphor-card p { color: var(--eucalyptus-deep); font-size: 1rem; margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.service-tile {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 24px 22px;
  text-align: center;
}
.service-tile h4 { font-size: 1.05rem; margin-bottom: .5em; }
.service-tile p { font-size: .85rem; color: var(--eucalyptus-deep); margin: 0; line-height: 1.5; }
@media (max-width: 640px) { .service-grid { grid-template-columns: minmax(0, 1fr); } }

/* Interactive symbolism explorer */
.symbolism {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.symbolism-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.symbolism-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--stone);
  background: var(--ivory);
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-family: var(--font-sans);
}
.symbolism-item:hover { border-color: var(--gold); }
.symbolism-item.is-active { border-color: var(--gold); background: var(--stone); }
.symbolism-item .symbolism-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.symbolism-item .symbolism-icon svg { width: 34px; height: 34px; }
.symbolism-item .symbolism-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--eucalyptus-deep);
}
.symbolism-panel {
  border: 1px solid var(--stone);
  background: var(--ivory);
  padding: 36px;
}
.symbolism-panel-item { display: none; }
.symbolism-panel-item.is-active { display: block; }
.symbolism-panel-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.symbolism-panel-header .symbolism-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.symbolism-panel-header .symbolism-icon svg { width: 48px; height: 48px; }
.symbolism-panel-header h3 { margin: 0; font-size: 2.1rem; }
.symbolism-panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 32px;
  align-items: center;
}
.symbolism-panel-photo { order: 2; }
.symbolism-panel-text { order: 1; }
.symbolism-panel-photo {
  aspect-ratio: 1;
  border: 1px solid var(--stone);
  overflow: hidden;
}
.symbolism-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.symbolism-panel-text p { margin: 0; color: var(--charcoal); font-size: 1rem; line-height: 1.75; }
@media (max-width: 800px) {
  .symbolism { grid-template-columns: minmax(0, 1fr); }
  .symbolism-panel { padding: 26px; }
  .symbolism-panel-body { grid-template-columns: minmax(0, 1fr); }
  .symbolism-panel-photo { max-width: 220px; margin: 0 auto; }
}

blockquote.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}
blockquote.pull-quote::before,
blockquote.pull-quote::after { color: var(--gold); }
blockquote.pull-quote::before { content: '“'; }
blockquote.pull-quote::after { content: '”'; }

.believe-photo {
  background:
    linear-gradient(180deg, rgba(30,59,53,.7), rgba(30,59,53,.82)),
    url('../assets/about-believe.jpg') center/cover no-repeat;
}
.ready-photo {
  background:
    linear-gradient(180deg, rgba(30,59,53,.55), rgba(30,59,53,.68)),
    url('../assets/ready-photo.jpg') center/cover no-repeat;
}
.ready-photo h2 { color: var(--gold); font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.ready-photo p { color: var(--ivory); font-weight: 400; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.stream-photo {
  background:
    linear-gradient(180deg, rgba(30,59,53,.7), rgba(30,59,53,.82)),
    url('../assets/symbol-stream.jpg') center/cover no-repeat;
}

/* Watermark logo behind a dark section's content */
.section-watermark { position: relative; overflow: hidden; }
.section-watermark .watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 260px;
  width: auto;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
.section-watermark > .container { position: relative; z-index: 1; }

.testimonial {
  background: var(--ivory);
  padding: 30px 36px;
  font-style: italic;
  color: var(--eucalyptus-deep);
  text-align: center;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--eucalyptus-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .85rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss);
}

/* Testimonial carousel */
.testimonial-carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 84px;
}
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1);
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}
.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  background: var(--ivory);
  color: var(--eucalyptus-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--eucalyptus-dark); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--stone);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.carousel-dot.is-active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 600px) {
  .testimonial-carousel { padding: 0; }
  .carousel-arrow { display: none; }
}

/* Decorative placeholder art */
.art-frame {
  border: 1px solid var(--stone);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.portrait-frame {
  aspect-ratio: 4/5;
  border: 1px solid var(--stone);
  background: linear-gradient(165deg, var(--eucalyptus-deep), var(--eucalyptus-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-frame svg, .portrait-frame img { width: 46%; color: var(--gold); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px; counter-reset: step; position: relative; }
.step { text-align: center; position: relative; z-index: 1; }
.step:not(:last-child)::after {
  content: '- - - -';
  position: absolute;
  top: 30px;
  left: 100%;
  width: 44px;
  transform: translateY(-50%);
  text-align: center;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.step .num {
  width: 60px; height: 60px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--eucalyptus-dark);
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(200,165,106,.35);
}
.step h4 { font-size: 1.15rem; margin-bottom: .35em; }
.step p { font-size: .92rem; color: var(--charcoal); opacity: .8; margin: 0; }
@media (max-width: 900px) { .step::after { display: none; } }

/* Offer / pricing */
.offer-card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 48px;
}
.offer-card .price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  margin: .2em 0 .1em;
}
.offer-card .price small { font-family: var(--font-sans); font-size: .9rem; color: var(--moss); }
.offer-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--stone);
  font-size: .92rem;
  display: flex;
  gap: 10px;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--gold); }
/* Offer tabs (interactive service selector) */
.offer-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  position: sticky;
  top: var(--nav-height);
  z-index: 80;
  background: var(--ivory);
  padding: 18px 0;
}
.offer-tab-btn {
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid var(--stone);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eucalyptus-deep);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.offer-tab-btn:hover { border-color: var(--gold); }
.offer-tab-btn.is-active { background: var(--gold); border-color: var(--gold); color: var(--eucalyptus-dark); }
.offer-tab-panel { display: none; }
.offer-tab-panel.is-active { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 56px; align-items: start; }
.offer-tab-media { display: flex; flex-direction: column; gap: 24px; }
.offer-tab-price {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 28px;
}
.offer-tab-price .price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 .3em;
}
.offer-tab-price p:not(.price) { font-size: .88rem; color: var(--charcoal); opacity: .85; margin: 0; }
@media (max-width: 860px) {
  .offer-tab-panel.is-active { grid-template-columns: minmax(0, 1fr); }
  .offer-tab-media { flex-direction: row; }
  .offer-tab-media .art-frame { flex: 1; }
  .offer-tab-price { flex: 1; }
}
@media (max-width: 560px) {
  .offer-tab-media { flex-direction: column; }
}

/* Tile grid (help topics, credentials, etc.) */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.tile {
  background: var(--stone-light);
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tile:hover {
  box-shadow: 0 18px 40px rgba(30,59,53,.08);
  border-color: var(--gold);
}
.tile .icon { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--gold); }
.tile span { font-size: .95rem; color: var(--eucalyptus-deep); line-height: 1.4; }
@media (max-width: 760px) { .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 500px) { .tile-grid { grid-template-columns: minmax(0, 1fr); } }
.credentials-grid { max-width: 720px; margin: 0 auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 560px) { .credentials-grid { grid-template-columns: minmax(0, 1fr); } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--stone); padding: 18px 0; }
.faq-item summary {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--eucalyptus-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item p { margin: .9em 0 0; color: var(--charcoal); opacity: .85; font-size: .95rem; }
.faq-category {
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 48px 0 4px;
}
.faq-category:first-child { margin-top: 0; }

.disclaimer {
  font-size: .85rem;
  color: var(--moss);
  border-top: 1px solid var(--stone);
  padding-top: 24px;
  margin-top: 40px;
}
.disclaimer-note {
  font-size: .8rem;
  color: var(--moss);
  margin: 18px 0 0;
}

/* Instagram strip */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
}
.insta-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
}
.insta-cell.art { background: linear-gradient(150deg, var(--eucalyptus-deep), var(--moss)); }
.insta-cell.art svg { width: 44%; color: var(--gold-light); }
.insta-cell.quote { background: var(--ivory); border: 1px solid var(--stone); }
.insta-cell.quote p { font-family: var(--font-serif); font-size: .82rem; font-style: italic; color: var(--eucalyptus-deep); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 60px; }
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eucalyptus-deep);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--stone);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--charcoal);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: .8rem; color: var(--moss); margin-top: 4px; }
.contact-side { background: var(--eucalyptus-dark); color: var(--ivory); padding: 44px; }
.contact-side h3 { color: var(--ivory); }
.contact-side p { color: var(--sage); }
.contact-side .item { margin-bottom: 22px; }
.contact-side .item .label { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.form-status { margin-top: 16px; font-size: .88rem; }
.form-status.success { color: var(--moss); }
.form-status.error { color: #a5453a; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--eucalyptus-dark);
  color: var(--sage);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247,244,239,.12);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.footer-brand svg { width: 30px; height: 30px; color: var(--gold); }
.footer-brand span { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ivory); }
.footer-tag { font-size: .85rem; max-width: 280px; margin: 0 0 8px; }
.site-footer h4 {
  color: var(--ivory);
}
.footer-col a, .footer-col span { display: block; font-size: .9rem; margin-bottom: 12px; color: var(--sage); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col .email-copy { display: flex; align-items: center; gap: 8px; }

/* Copy-to-clipboard email */
.email-copy { display: inline-flex; align-items: center; gap: 8px; }
.copy-btn {
  background: none;
  border: none;
  padding: 2px;
  margin: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  opacity: .65;
  transition: opacity .2s ease, color .2s ease;
}
.copy-btn:hover { opacity: 1; }
.copy-btn svg { width: 14px; height: 14px; }
.copy-btn.is-copied { color: var(--gold); opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: .78rem;
  color: rgba(247,244,239,.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(247,244,239,.5); }
.footer-legal a:hover { color: var(--gold-light); }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-page-header { padding: 60px 0 20px; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 90px;
}
.legal-content h2 { font-size: 1.4rem; margin-top: 2em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--charcoal); }
.social-row { display: flex; gap: 18px; margin-top: 10px; }
.social-row a svg { width: 26px; height: 26px; color: var(--sage); }
.social-row a:hover svg { color: var(--gold-light); }

/* ==========================================================================
   Sticky side social bar
   ========================================================================== */
.side-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--eucalyptus-dark);
  padding: 20px 12px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 8px 24px rgba(30,59,53,.2);
  opacity: 1;
  transition: opacity .3s ease, transform .3s ease;
}
.side-social.is-hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
  pointer-events: none;
}
.side-social a svg { width: 20px; height: 20px; color: var(--gold-light); transition: color .2s ease, transform .2s ease; }
.side-social a:hover svg { color: var(--ivory); transform: scale(1.12); }
@media (max-width: 900px) { .side-social { display: none; } }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--eucalyptus-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
  z-index: 90;
  box-shadow: 0 8px 20px rgba(30,59,53,.25);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-light); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .grid-2 { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); column-gap: 0; row-gap: 60px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .insta-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-side { padding: 32px; }
  .symbolism-panel-header h3 { font-size: 1.7rem; }
  .offer-tab-btn { padding: 11px 20px; font-size: .74rem; }
}
@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-tab-btn { padding: 10px 16px; font-size: .7rem; }
  .offer-tabs-nav { gap: 10px; }
  section { padding: 70px 0; }
  .section-tight { padding: 50px 0; }
  .hero { padding: 90px 0 70px; }
  .hero-mark { height: 88px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-right .lang-select { position: static; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--stone);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 14px; }
  .nav-right > .btn { display: none; }
  .nav-links-cta { display: inline-flex; margin-top: 6px; }
  .lang-switch { display: none; }
  .lang-select { display: block; }
  .steps { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .brand-word { font-size: 1.15rem; }
  .nav-right { gap: 10px; }
  .lang-select { font-size: .7rem; padding: 6px 8px; }
  .container { padding: 0 20px; }
}
