
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap");

:root {
  --ivory: #FAF8F5;
  --champagne: #F4EFE7;
  --gold: #C8A15A;
  --deep-gold: #B8892D;
  --gold-start: #D4A94C;
  --gold-end: #B9872C;
  --obsidian: #2B2623;
  --muted: #6D655D;
  --emerald: #eee6d9;
  --emerald-light: #f4e7d1;
  --glow: #eaf4ff;
  --serif-display: "Cormorant Garamond", Georgia, serif;
  --hero-display: "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Cormorant Garamond", Georgia, serif;
  --sans: "Cormorant Garamond", Georgia, serif;
  --button-font: "Cormorant Garamond", Georgia, serif;
  --script: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --page: clamp(24px, 5vw, 84px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--obsidian);
  font-family: var(--body);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.cursor-glow {
  position: fixed; z-index: 20; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,231,209,.17), transparent 68%);
  pointer-events: none; transform: translate(-50%, -50%); opacity: 0; transition: opacity .5s;
}
@media (pointer: fine) { body:hover .cursor-glow { opacity: 1; } }

/* Navigation */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 132px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--page); border-bottom: 1px solid rgba(17,17,17,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17,17,17,.06);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled,
.inner-page .site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17,17,17,.06);
}
.brand { display: inline-flex; align-items: center; justify-self: start; margin-left: 0; transform: translateX(-12px); }
.brand-logo {
  display: block;
  width: 380px;
  height: 116px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(184,138,28,.12));
}
.main-nav { display: flex; gap: clamp(18px, 2vw, 36px); }
.main-nav a, .footer-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: clamp(12px, .82vw, 16px);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a::after, .footer-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: var(--deep-gold); transition: right .45s var(--ease);
}
.main-nav a:hover::after, .footer-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 26px; }
.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lang-btn { padding: 4px 0; border: 0; background: none; cursor: pointer; opacity: .42; }
.lang-btn.active { color: var(--deep-gold); opacity: 1; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 27px;
  border: 1.5px solid; border-radius: 16px;
  font-family: var(--button-font);
  font-size: clamp(11px, .72vw, 14px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(184,138,28,.13);
  transition: color .4s, background .4s, border-color .4s, transform .4s var(--ease), box-shadow .4s var(--ease);
}
.button:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(184,138,28,.2); }
.button-dark,
.button-gold {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #fff;
}
.button-dark:hover,
.button-gold:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #c49431, #a97622);
  color: #fff;
}
.button-cream {
  border-color: rgba(200,161,90,.88);
  background: rgba(255,255,255,.9);
  color: var(--deep-gold);
}
.button-cream:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #fff;
}
.header-cta { min-height: 34px; padding-inline: 15px; }
.menu-toggle { display: none; }
.mobile-nav-cta { display: none; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: grid; grid-template-columns: minmax(0, 58%);
  padding: 132px var(--page) 0; background:
    radial-gradient(circle at 60% 20%, rgba(234,244,255,.65), transparent 24%),
    linear-gradient(120deg, var(--ivory) 0 58%, #e9e2d5 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 132px auto 0 58%; width: 1px;
  background: linear-gradient(transparent, rgba(184,138,28,.28), transparent);
}
.hero-copy { z-index: 2; align-self: center; max-width: 860px; padding: 8vh 6vw 8vh 0; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .94; }
h1 {
  max-width: 700px;
  color: #1F1A17;
  font-family: var(--serif-display);
  font-size: clamp(70px, 5.8vw, 82px);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-title { max-width: 1120px; font-family: var(--hero-display); font-size: clamp(70px, 5.35vw, 82px); font-weight: 300; letter-spacing: -.035em; line-height: .92; }
.hero-title span { display: block; white-space: nowrap; }
.hero-title span.straight-dash { display: inline; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-weight: 200; }
.hero-title em { font-family: var(--hero-display); font-weight: 300; font-style: italic; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--deep-gold); font-weight: 400; }
.hero-intro { max-width: 530px; margin: 59px 0 74px; color: var(--muted); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 36px; }
.hero-note { display: flex; align-items: center; gap: 16px; max-width: 410px; margin-top: 81px; color: rgba(17,17,17,.56); font-family: var(--serif); font-size: 14px; font-style: italic; }
.hero-note .line { width: 42px; height: 1px; flex: none; background: var(--deep-gold); }
.hero-stats { margin: 10px 0 0 58px; color: rgba(17,17,17,.56); font-family: var(--serif); font-size: clamp(18px, 1.35vw, 22px); font-style: italic; }
.hero-stats .stat-num { color: var(--deep-gold); font-style: normal; }
.hero-visual { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.image-frame { position: absolute; inset: 0; overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; scale: 1.01; }
.image-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ivory) 0%, rgba(250,248,243,.97) 31%, rgba(250,248,243,.76) 48%, rgba(250,248,243,.2) 69%, rgba(250,248,243,0) 100%),
    linear-gradient(0deg, rgba(250,248,243,.2), rgba(255,255,255,.02));
}
.celestial-seal { display: none; position: absolute; top: 14%; left: 5%; width: 120px; color: rgba(212,175,55,.65); animation: rotate 45s linear infinite; }
.celestial-seal svg { fill: none; stroke: currentColor; stroke-width: .35; }
.vertical-word { position: absolute; right: 26px; top: 50%; margin: 0; color: rgba(255,255,255,.65); font-size: 8px; letter-spacing: .48em; writing-mode: vertical-rl; }
.hero-orbit { display: none; position: absolute; z-index: 1; border: 1px solid rgba(184,138,28,.13); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 52vw; height: 52vw; left: -27vw; bottom: -34vw; }
.orbit-two { width: 19vw; height: 19vw; left: 46%; top: 12%; }
.scroll-mark { position: absolute; z-index: 4; left: var(--page); bottom: 22px; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .2em; }
.scroll-mark i { display: block; width: 36px; height: 1px; background: var(--gold); }
@keyframes rotate { to { transform: rotate(360deg); } }

/* Sacred Introduction */
.sacred-intro {
  position: relative; padding: 150px var(--page) 150px; overflow: hidden; color: #f5f0e8;
  background-color: #062521;
  background-image:
    linear-gradient(90deg, rgba(4,27,24,.78) 0%, rgba(4,27,24,.62) 42%, rgba(4,27,24,.36) 100%),
    linear-gradient(180deg, rgba(4,27,24,.16), rgba(4,27,24,.28)),
    url("../images/bg-dark-texture.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}
.sacred-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 46%, rgba(4,27,24,.42) 100%);
}
.star-field {
  position: absolute;
  inset: -8% -4%;
  display: none;
  opacity: 0;
  transform: translate3d(0, var(--star-shift, 0px), 0);
  transition: transform .12s linear;
  background-image:
    radial-gradient(circle at 8% 14%, rgba(215,192,138,.52) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 62%, rgba(245,240,230,.36) 0 1px, transparent 2px),
    radial-gradient(circle at 31% 28%, rgba(215,192,138,.42) 0 1px, transparent 2px),
    radial-gradient(circle at 47% 76%, rgba(245,240,230,.32) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 20%, rgba(215,192,138,.44) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 56%, rgba(245,240,230,.3) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 82%, rgba(215,192,138,.38) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(215,192,138,.12) 0 1px, transparent 1.6px);
  background-size: 420px 330px, 510px 380px, 620px 440px, 540px 410px, 690px 500px, 480px 370px, 560px 460px, 72px 72px;
  background-position: 0 0, 120px 55px, 48px 160px, 240px 35px, 360px 120px, 90px 240px, 170px 90px, 0 0;
  filter: none;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.72), black 28%, rgba(0,0,0,.82));
}
.intro-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  max-width: 1440px;
  margin: 0 auto;
}
.intro-copy, .intro-heading, .intro-text, .pillars { position: relative; z-index: 2; }
.intro-heading { display: grid; grid-template-columns: 45px 1fr; max-width: 560px; }
.section-number { grid-row: span 2; color: #d7bc6d; font-family: var(--serif); font-size: 12px; letter-spacing: .15em; }
.section-number.dark { color: var(--deep-gold); }
.intro-heading h2, .section-head h2, .about h2, .product h2, .closing h2 { font-size: clamp(50px, 5.6vw, 86px); letter-spacing: -.035em; }
.intro-heading h2 { max-width: 640px; font-size: clamp(56px, 5.2vw, 82px); line-height: .9; }
.intro-heading em, .product h2 em, .closing h2 em { color: var(--deep-gold); }
.intro-text { max-width: 470px; margin: 90px 0 0 45px; color: rgba(245,240,232,.78); }
.intro-text .lead, .about-copy .lead { color: var(--obsidian); font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); line-height: 1.25; }
.intro-text .lead { color: #f5f0e8; font-size: clamp(23px, 2vw, 31px); margin-bottom: 58px; }
.lead-bullet { margin-right: 10px; color: var(--deep-gold); font-size: .5em; vertical-align: middle; }
.intro-text > p:not(.lead) { font-size: 18px; line-height: 1.65; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 0; }
.pillar {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 46px clamp(16px, 2vw, 34px);
  text-align: center;
}
.pillar:first-child { padding-left: clamp(16px, 2vw, 34px); }
.pillar:last-child { padding-right: clamp(16px, 2vw, 34px); }
.pillar-featured { min-height: 310px; margin-top: 0; padding-top: 46px; }
.sacred-icon {
  position: relative;
  z-index: 1;
  width: clamp(112px, 9.5vw, 160px);
  height: clamp(112px, 9.5vw, 160px);
  margin: 0 0 48px;
  color: #d7bc6d;
}
.pillar-featured .sacred-icon { width: clamp(112px, 9.5vw, 160px); height: clamp(112px, 9.5vw, 160px); margin-bottom: 48px; }
.sacred-icon-clarity,
.sacred-icon-reconnection { transform: scale(1.33); }
.sacred-icon::before {
  content: "";
  position: absolute;
  inset: 13%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,162,86,.36), rgba(212,162,86,.12) 42%, transparent 72%);
  filter: blur(12px);
}
.sacred-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 10px);
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(212,162,86,.58), rgba(212,162,86,0));
  transform: translateX(-50%);
}
.sacred-icon img { display: block; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 0 16px rgba(215,192,138,.34)); transition: filter .55s var(--ease), transform .55s var(--ease); }
.pillar h3 { margin: 0; color: #f5f0e8; font-size: clamp(23px, 2.1vw, 32px); font-weight: 400; }
.pillar:hover .sacred-icon img { animation: iconPulse .55s var(--ease); filter: drop-shadow(0 0 28px rgba(215,192,138,.55)); }
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

/* Shared sections */
.section-pad { padding: 130px var(--page); }
.section-head { display: grid; grid-template-columns: 1.6fr .7fr; align-items: end; gap: 8vw; margin-bottom: 75px; }
.section-head > div { display: grid; grid-template-columns: 65px 1fr; }
.section-head > p { max-width: 420px; margin: 0 0 8px; color: rgba(17,17,17,.62); }
.blog-intro-head { display: block; max-width: 820px; }
.blog-intro-head > div { display: block; }
.blog-intro-head > p { max-width: 620px; margin: 24px 0 0; color: rgba(17,17,17,.62); }
.section-subcopy { grid-column: 2; max-width: 520px; margin: 28px 0 0; color: rgba(17,17,17,.62); }

/* Services */
.services { background: var(--ivory); }
.services .section-head { grid-template-columns: 1fr; }
.services .section-head > div { max-width: 1180px; }
.services-title { white-space: nowrap; font-size: clamp(50px, 5vw, 78px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 40px); align-items: start; }
.service-card { overflow: hidden; border: 1px solid rgba(17,17,17,.13); border-radius: 24px; background: #fffdf9; box-shadow: 0 18px 50px rgba(17,17,17,.055); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(17,17,17,.10); }
.service-card.featured { margin-top: 55px; }
.service-art { position: relative; height: clamp(240px, 28vw, 430px); overflow: hidden; background: var(--emerald); }
.service-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.1s var(--ease); }
.service-card:hover .service-art img { transform: scale(1.035); }
.path { position: absolute; bottom: -16%; left: 35%; width: 30%; height: 58%; background: linear-gradient(to top, rgba(250,232,172,.65), transparent); clip-path: polygon(42% 0,58% 0,100% 100%,0 100%); filter: blur(4px); }
.service-body { position: relative; min-height: 280px; display: flex; flex-direction: column; padding: 37px 34px 34px; }
.service-body h2,
.service-body h3 { padding-right: 35px; font-size: clamp(26px, 2.4vw, 36px); }
.service-body p { margin: 22px 0 32px; color: rgba(17,17,17,.64); font-size: 15px; line-height: 1.65; }
.service-meta { display: grid; gap: 9px; align-items: start; margin: auto 0 28px; padding: 20px 0; border-top: 1px solid rgba(17,17,17,.1); color: rgba(17,17,17,.6); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.service-meta strong { color: var(--deep-gold); font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: 0; line-height: 1; text-transform: none; white-space: nowrap; }
.card-link { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(17,17,17,.12); font-size: 9px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.card-link b { color: var(--deep-gold); font-size: 16px; font-weight: 300; transition: transform .35s; }
.card-link:hover b { transform: translate(4px,-4px); }
.service-button { align-self: center; min-height: 40px; padding-inline: 19px; }
.price-old { margin-right: 2px; color: rgba(17,17,17,.4); font-family: var(--serif); font-size: 17px; text-decoration: line-through; }
.price-promo-label { display: block; margin-top: 2px; color: var(--deep-gold); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.featured-badge { display: inline-block; margin-bottom: 10px; padding: 5px 12px; border-radius: 20px; background: linear-gradient(135deg, var(--gold-start), var(--gold-end)); color: #fff; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.service-card.featured-service { border-color: rgba(184,138,28,.4); box-shadow: 0 22px 60px rgba(184,138,28,.16); }

.service-carousel { position: relative; display: flex; align-items: center; gap: 16px; width: min(1220px, 94vw); margin-inline: auto; }
.service-track {
  display: flex;
  gap: clamp(18px, 2.5vw, 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.service-track::-webkit-scrollbar { display: none; }
.service-track .service-card {
  flex: 0 0 calc((100% - 2 * clamp(18px, 2.5vw, 40px)) / 3);
  scroll-snap-align: start;
}
.carousel-arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17,17,17,.25);
  border-radius: 50%;
  background: transparent;
  color: var(--obsidian);
  font-size: 18px;
  cursor: pointer;
  transition: .3s;
}
.carousel-arrow:hover { border-color: var(--deep-gold); color: var(--deep-gold); }
@media (max-width: 1100px) {
  .service-track .service-card { flex-basis: calc((100% - clamp(18px, 2.5vw, 40px)) / 2); }
}
@media (max-width: 800px) {
  .service-carousel { gap: 10px; }
  .carousel-arrow { width: 40px; height: 40px; }
  .service-track .service-card { flex-basis: 100%; }
}

/* About */
.about { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 9vw, 150px); background: #eee6d9; }
.about-portrait { position: relative; }
.portrait-art { height: 740px; overflow: hidden; border-radius: 28px; background: transparent; box-shadow: 0 28px 72px rgba(17,17,17,.1); }
.portrait-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.9) sepia(.04); transform: none; }
.about-copy { align-self: center; max-width: 660px; }
.about-copy h2 { margin-bottom: 30px; font-size: clamp(40px, 4.48vw, 69px); }
.about-copy h2 em {
  color: rgba(184,138,28,.82);
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 400 !important;
  font-synthesis: none;
  font-synthesis-weight: none;
  font-synthesis-style: none;
  line-height: .82;
  letter-spacing: normal !important;
  text-transform: none;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: normal;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}
.about-copy .lead { color: var(--obsidian); }
.about-copy > p:not(.eyebrow):not(.lead) { max-width: 560px; color: rgba(17,17,17,.62); font-size: 18px; line-height: 1.65; }
.about-story-button { margin-top: 28px; }
.signature { margin: 28px 0 0; color: var(--deep-gold); font-family: var(--serif); font-size: 29px; font-style: italic; transform: none; transform-origin: left; }

/* Testimonials */
.testimonials { position: relative; background: var(--champagne); }
.testimonials::before { content: "“"; position: absolute; left: 50%; top: 25px; color: rgba(184,138,28,.11); font-family: var(--serif); font-size: 300px; line-height: 1; transform: translateX(-50%); }
.testimonial-carousel { display: grid; grid-template-columns: 60px 1fr 60px; align-items: center; max-width: 1160px; margin: 50px auto 0; }
.slides { position: relative; min-height: 290px; display: grid; align-items: center; }
.testimonial { grid-area: 1 / 1; margin: 0; text-align: center; opacity: 0; visibility: hidden; transform: translateY(15px); transition: .65s var(--ease); }
.testimonial.active { opacity: 1; visibility: visible; transform: none; }
blockquote { margin: 0 auto 32px; max-width: 950px; font-family: var(--serif); font-size: clamp(29px, 3.4vw, 52px); font-weight: 300; font-style: italic; line-height: 1.2; }
figcaption { color: var(--deep-gold); font-size: 27px; letter-spacing: .1em; text-transform: uppercase; }
.slider-btn { width: 48px; height: 48px; border: 1px solid rgba(17,17,17,.25); border-radius: 50%; background: transparent; cursor: pointer; transition: .3s; }
.slider-btn:hover { border-color: var(--deep-gold); color: var(--deep-gold); }
.slide-count { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--serif); font-size: 36px; }
.slide-count .current { color: var(--deep-gold); }
.slide-count i { width: 48px; height: 1px; background: rgba(17,17,17,.25); }

/* Product */
.product { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: center; color: var(--obsidian); background: linear-gradient(120deg, var(--ivory), var(--champagne)); }
.product-art { position: relative; height: 680px; overflow: hidden; border: 1px solid rgba(184,138,28,.24); border-radius: 28px; background: radial-gradient(circle at 50% 45%, #faf8f3, #f4e7d1 45%, #eee6d9 78%); }
.product-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s var(--ease); }
.product-art:hover img { transform: scale(1.025); }
.product-art p { position: absolute; z-index: 3; right: 18px; top: 50%; margin: 0; color: rgba(255,255,255,.45); font-size: 8px; letter-spacing: .42em; writing-mode: vertical-rl; }
.product-copy { max-width: 650px; }
.product-copy h2 { margin: 20px 0 34px; }
.product-copy > p:not(.eyebrow) { max-width: 570px; color: rgba(17,17,17,.65); }
.product-meta { display: flex; align-items: center; gap: 24px; margin: 40px 0; padding: 22px 0; border-top: 1px solid rgba(17,17,17,.18); border-bottom: 1px solid rgba(17,17,17,.18); color: rgba(17,17,17,.55); font-size: clamp(18px, 1.35vw, 22px); letter-spacing: .02em; }
.product-meta strong { margin-left: auto; color: var(--deep-gold); font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: 0; }

/* Closing and footer */
.closing { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; color: #f5f0e8; text-align: center; background: #062521; }
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(4,27,24,.28), rgba(4,27,24,.48)),
    radial-gradient(ellipse at center, rgba(212,175,55,.08), transparent 42%),
    url("../images/bg-dark-texture.jpg") center/cover;
}
.closing-glow { position: absolute; width: 480px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,246,209,.16), rgba(212,175,55,.06) 28%, transparent 68%); animation: breathe 6s ease-in-out infinite; }
.closing-content { position: relative; z-index: 2; }
.closing-content h2 { margin-bottom: 26px; font-size: clamp(56px, 7vw, 108px); }
.closing-content p:not(.eyebrow) { margin-bottom: 35px; color: rgba(245,240,232,.72); }
@keyframes breathe { 50% { transform: scale(1.18); opacity: .7; } }
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .32fr) minmax(0, 1fr);
  column-gap: clamp(36px, 6vw, 110px);
  padding: 46px var(--page) 28px;
  border-top: 1px solid rgba(17,17,17,.12);
  background: var(--ivory);
}
.footer-brand {
  position: relative;
  left: auto;
  top: auto;
  align-self: start;
  margin: 0;
}
.footer-brand .brand-logo { width: min(520px, 100%); height: 184px; }
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 90px);
  padding: 34px 0;
}
.footer-col { display: grid; align-content: start; gap: 12px; }
.footer-col .footer-heading {
  margin: 0 0 10px;
  color: var(--deep-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-col a, .footer-col span, .footer-col address {
  color: rgba(17,17,17,.62);
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}
.footer-col a:hover { color: var(--deep-gold); }
.footer-bottom { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-top: 25px; border-top: 1px solid rgba(17,17,17,.12); color: rgba(17,17,17,.45); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom > :nth-child(2) { text-align: center; font-family: var(--serif); font-size: 13px; font-style: italic; letter-spacing: .04em; text-transform: none; }
.footer-bottom .language-switcher { justify-self: end; }

/* Motion */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

/* V2 Inner Pages */
.inner-page .site-header { position: fixed; }
.page-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 170px var(--page) 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,231,209,.72), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(244,231,209,.82), transparent 34%),
    var(--ivory);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 58vw;
  aspect-ratio: 1;
  right: -18vw;
  top: 6vh;
  border: 1px solid rgba(184,138,28,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(184,138,28,.035);
}
.page-hero-content { position: relative; z-index: 1; max-width: 1050px; }
.page-hero h1 { max-width: 980px; }
.page-hero h1 em { color: var(--deep-gold); }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 34px 0 0; color: rgba(17,17,17,.66); font-size: clamp(17px, 1.45vw, 23px); }
.page-hero-cover {
  min-height: 78vh;
  background-position: center;
  background-size: cover;
}
.page-hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250,248,243,.62) 0%, rgba(250,248,243,.36) 42%, rgba(250,248,243,.08) 100%),
    linear-gradient(0deg, rgba(250,248,243,.18), rgba(255,255,255,.04));
}
.page-hero-cover .page-hero-content { z-index: 2; }
.about-cover .page-hero-content { margin-bottom: 4vh; }
.products-cover .page-hero-content { margin-bottom: 7.8vh; }
.products-cover { background-image: url("../images/cover-servicii.jpg"); }
.about-cover { background-image: url("../images/cover-despre-mine.jpg"); }
.blog-cover { background-image: url("../images/cover-blog.jpg"); }
.blog-cover h1 { max-width: 980px; font-size: clamp(58px, 6vw, 94px); line-height: .95; }
.blog-cover h1 span { display: block; }
.contact-cover {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(240px, .42fr);
  gap: clamp(36px, 5.8vw, 92px);
  align-items: start;
  min-height: clamp(660px, 58vw, 780px);
  margin-top: 132px;
  padding: clamp(34px, 4.2vw, 64px) var(--page) clamp(54px, 5vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 52%, rgba(200, 161, 90, .08), transparent 26%),
    linear-gradient(90deg, rgba(255,253,249,.96) 0%, rgba(250,248,245,.95) 46%, rgba(244,239,231,.92) 100%);
}
.contact-cover::after {
  display: none;
}
.contact-cover::before {
  display: none;
}
.contact-cover .page-hero-content {
  display: block;
  max-width: 560px;
  transform: none;
}
.contact-hero-left {
  display: grid;
  align-content: start;
  gap: clamp(22px, 2.8vw, 34px);
  max-width: 1000px;
  align-self: start;
  padding-top: 0;
}
.contact-cover h1 {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 5.8vw, 86px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.045em;
}
.contact-cover h1 span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}
.contact-cover h1 em {
  display: block;
  margin-top: 8px;
  margin-left: clamp(54px, 6.2vw, 118px);
  color: rgba(184,138,28,.62);
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: .91em;
  font-style: italic;
  font-weight: 400 !important;
  font-synthesis: none;
  font-synthesis-weight: none;
  font-synthesis-style: none;
  line-height: .95;
  letter-spacing: normal !important;
  text-transform: none;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: normal;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}
.contact-cover .contact-hero-h1-inline {
  display: block;
  max-width: 1000px;
  font-size: clamp(38px, 3.4vw, 56px);
  white-space: nowrap;
}
.contact-cover .contact-hero-h1-inline em {
  display: inline;
  margin: 0;
  font-size: 1em;
}
.contact-cover p:not(.eyebrow) {
  max-width: 780px;
  margin: clamp(12px, 1.6vw, 22px) 0 0;
  color: rgba(17,17,17,.66);
  font-size: clamp(22px, 1.66vw, 26px);
  line-height: 1.55;
}
.contact-hero-card {
  position: relative;
  display: block;
  width: min(360px, 100%);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(200, 161, 90, .22);
  border-radius: 30px;
  background: #ead9c8;
  box-shadow: 0 30px 80px rgba(43, 38, 35, .08);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(244,239,231,.2), rgba(244,239,231,.08)),
    linear-gradient(90deg, rgba(255,253,249,.18), transparent 34%);
}
.contact-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(43, 38, 35, .11);
}
.contact-hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 18.48;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(.9) sepia(.05) brightness(1.03);
  opacity: .86;
}
.contact-cover .contact-hero-form {
  width: 100%;
  max-width: 660px;
  gap: 14px;
  padding: clamp(22px, 2.7vw, 36px);
  border-radius: 24px;
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(10px);
}
.contact-cover .contact-hero-form:hover {
  transform: translateY(-3px);
}
.contact-cover .contact-hero-form label {
  gap: 6px;
}
.contact-cover .contact-hero-form input,
.contact-cover .contact-hero-form textarea {
  padding: 10px 0;
  font-size: 16px;
}
.contact-cover .contact-hero-form textarea {
  min-height: 96px;
}
.contact-cover .contact-hero-form .button {
  justify-self: stretch;
  margin-top: 4px;
}
.about-page-section {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 18%, rgba(244,231,209,.7), transparent 32%),
    linear-gradient(180deg, #fffdf9, var(--ivory));
}
.about-page-section .about-portrait {
  position: sticky;
  top: 132px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(184,138,28,.18);
  box-shadow: 0 32px 90px rgba(17,17,17,.12);
}
.about-page-section .about-portrait img {
  display: block;
  width: 100%;
  height: min(780px, 74vh);
  object-fit: cover;
  object-position: center 22%;
}
.about-story {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(184,138,28,.14);
  border-radius: 30px;
  background: rgba(255,253,249,.78);
  box-shadow: 0 28px 76px rgba(17,17,17,.055);
}
.about-role {
  margin-bottom: 42px;
  color: rgba(17,17,17,.62);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.4;
}
.about-signoff {
  margin-top: 22px;
  margin-bottom: 46px;
}
.about-signoff .about-role {
  margin: 8px 0 0;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.45;
}
.about-signoff .about-signature {
  margin: 0;
  color: var(--deep-gold);
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.45;
}
.about-story h2 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--deep-gold);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
  letter-spacing: -.025em;
}
.about-copy {
  display: grid;
  gap: 18px;
}
.about-copy p {
  color: rgba(17,17,17,.68);
  font-size: 18px;
  line-height: 1.75;
}
.about-copy .about-blessing {
  margin: 12px 0 18px;
  color: rgba(17,17,17,.78);
  font-style: italic;
}
.split-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 8vw, 130px); align-items: center; }
.feature-panel { padding: clamp(42px, 6vw, 88px); border: 1px solid rgba(184,138,28,.16); border-radius: 24px; background: var(--champagne); box-shadow: 0 22px 60px rgba(17,17,17,.05); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.feature-panel:hover { transform: translateY(-5px); box-shadow: 0 30px 76px rgba(17,17,17,.08); }
.feature-panel h2 { margin-bottom: 24px; font-size: clamp(48px, 5vw, 76px); }
.feature-panel p { max-width: 860px; color: rgba(17,17,17,.65); }
.cta-band { text-align: center; background: var(--champagne); }
.cta-band h2 { margin-bottom: 30px; font-size: clamp(48px, 6vw, 88px); }
.cta-band.cta-night {
    position: relative;
    overflow: hidden;
    color: #f5f0e8;
    background: #062521;
}
.cta-band.cta-night::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 27, 24, .78), rgba(4, 27, 24, .56) 44%, rgba(4, 27, 24, .72)),
        radial-gradient(ellipse at center, rgba(212, 175, 55, .10), transparent 48%),
        url("../images/bg-cta-night.jpg") center/cover;
}
.cta-band.cta-night > * {
    position: relative;
    z-index: 1;
}
.cta-band.cta-night h2 { color: #f5f0e8; }
.cta-band.cta-night .button-gold { box-shadow: 0 18px 42px rgba(0, 0, 0, .24); }
.category-card, .faq-item {
  padding: 32px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 22px;
  background: rgba(255,253,249,.74);
  box-shadow: 0 18px 48px rgba(17,17,17,.045);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.category-card:hover, .faq-item:hover { transform: translateY(-5px); box-shadow: 0 28px 64px rgba(17,17,17,.075); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-item h3 { margin-bottom: 12px; font-size: 28px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 36px); }
.blog-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,253,249,.92), rgba(244,231,209,.58));
  box-shadow: 0 18px 52px rgba(17,17,17,.055);
  overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: 0 30px 76px rgba(17,17,17,.09); }
.blog-card::before {
  content: "";
  position: absolute;
  width: 240px;
  aspect-ratio: 1;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(184,138,28,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(184,138,28,.035);
}
.blog-date { position: relative; z-index: 1; display: block; margin-bottom: 28px; color: var(--deep-gold); font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.blog-thumb-link { display: block; }
.blog-thumb {
  position: relative;
  z-index: 1;
  height: 230px;
  margin: calc(clamp(30px, 3.2vw, 46px) * -1) calc(clamp(30px, 3.2vw, 46px) * -1) 32px;
  overflow: hidden;
  border-bottom: 1px solid rgba(17,17,17,.1);
  background: var(--champagne);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease), filter 1.2s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.04); filter: saturate(1.05); }
.blog-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 1.75vw, 28px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.blog-card p { position: relative; z-index: 1; margin: 24px 0 36px; color: rgba(17,17,17,.62); }
.blog-card .card-link { position: relative; z-index: 1; margin-top: auto; }
.article-shell { padding: 150px var(--page) 120px; background: var(--ivory); }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
  color: rgba(17,17,17,.62);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.article-back:hover { color: var(--deep-gold); }
.article-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 120px);
}
.article-hero-copy h1 { margin: 18px 0 24px; font-size: clamp(54px, 6vw, 104px); line-height: .9; letter-spacing: -.06em; }
.article-hero-copy p:not(.eyebrow) { color: rgba(17,17,17,.62); font-size: clamp(18px, 1.45vw, 24px); line-height: 1.7; }
.article-hero-image {
  height: clamp(320px, 39vw, 560px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(184,138,28,.16);
  background: var(--champagne);
  box-shadow: 0 28px 80px rgba(17,17,17,.08);
}
.article-hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-content { max-width: 880px; margin: 0 auto; }
.article-content .lead {
  margin-bottom: 46px;
  color: var(--obsidian);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1.18;
}
.article-content h2 { margin: 58px 0 18px; font-size: clamp(34px, 3.5vw, 56px); line-height: 1; letter-spacing: -.04em; }
.article-content p { margin: 0 0 24px; color: rgba(17,17,17,.68); font-size: 18px; line-height: 1.9; }
.article-next {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 82px;
  padding-top: 28px;
  border-top: 1px solid rgba(17,17,17,.12);
}
.article-next a { color: var(--obsidian); font-family: var(--serif); font-size: clamp(28px, 2.6vw, 42px); }
.article-next a:hover { color: var(--deep-gold); }
.product-page-main { padding-top: 132px; background: var(--ivory); }
.shopify-product {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, .8fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  padding: 92px var(--page) 110px;
}
.product-gallery { position: sticky; top: 128px; display: grid; gap: 18px; }
.product-main-image {
  overflow: hidden;
  border: 1px solid rgba(184,138,28,.18);
  border-radius: 28px;
  background: var(--champagne);
  box-shadow: 0 30px 90px rgba(17,17,17,.08);
}
.product-main-image img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; }
.product-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-thumb {
  min-height: 96px;
  border: 1px solid rgba(184,138,28,.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,253,249,.8), rgba(244,231,209,.62));
}
.product-info { padding-top: 18px; }
.product-breadcrumb { display: inline-flex; margin-bottom: 28px; color: rgba(17,17,17,.48); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.product-info h1 { max-width: 780px; font-size: clamp(48px, 5vw, 82px); line-height: .92; }
.product-price { display: block; margin: 28px 0 18px; color: var(--deep-gold); font-family: var(--serif); font-size: clamp(34px, 3vw, 50px); font-weight: 400; }
.product-short { max-width: 680px; color: rgba(17,17,17,.66); font-size: 17px; line-height: 1.8; }
.product-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 34px 0; }
.product-fact { padding: 20px; border: 1px solid rgba(17,17,17,.12); background: rgba(255,253,249,.74); }
.product-fact span { display: block; color: rgba(17,17,17,.48); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.product-fact strong { display: block; margin-top: 6px; color: var(--obsidian); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.product-actions { display: grid; gap: 12px; margin: 30px 0 34px; }
.product-actions .button { width: 100%; min-height: 46px; }
.product-note { color: rgba(17,17,17,.52); font-size: 13px; }
.product-accordion { border-top: 1px solid rgba(17,17,17,.12); }
.product-accordion details { border-bottom: 1px solid rgba(17,17,17,.12); padding: 22px 0; }
.product-accordion summary { cursor: pointer; color: var(--obsidian); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.product-accordion p, .product-accordion li { color: rgba(17,17,17,.64); }
.product-details { padding: 0 var(--page) 125px; }
.product-detail-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(36px, 7vw, 110px); padding-top: 80px; border-top: 1px solid rgba(17,17,17,.12); }
.product-detail-kicker { color: var(--deep-gold); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.product-detail-copy { display: grid; gap: 42px; }
.product-detail-copy h2 { margin-bottom: 18px; font-size: clamp(35px, 3.5vw, 58px); }
.product-detail-copy p, .product-detail-copy li { color: rgba(17,17,17,.66); font-size: 16px; line-height: 1.85; }
.product-detail-copy ul { margin: 18px 0 0; padding: 0; list-style: none; }
.product-detail-copy li { padding: 12px 0; border-top: 1px solid rgba(17,17,17,.08); }
.product-detail-copy li::before { content: "✦"; margin-right: 12px; color: var(--deep-gold); font-size: 10px; }
.related-products { padding: 0 var(--page) 120px; }
.related-products h2 { margin-bottom: 36px; font-size: clamp(42px, 4vw, 68px); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.related-card { display: block; padding: 28px; border: 1px solid rgba(17,17,17,.12); border-radius: 22px; background: #fffdf9; box-shadow: 0 18px 48px rgba(17,17,17,.045); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.related-card:hover { transform: translateY(-5px); box-shadow: 0 28px 64px rgba(17,17,17,.075); }
.related-card h3 { margin-bottom: 16px; font-size: 31px; }
.related-card span { color: var(--deep-gold); font-family: var(--serif); font-size: 24px; }
.contact-form { display: grid; gap: 18px; padding: clamp(30px, 4vw, 54px); border: 1px solid rgba(17,17,17,.12); border-radius: 24px; background: #fffdf9; box-shadow: 0 22px 60px rgba(17,17,17,.055); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.contact-form:hover { transform: translateY(-5px); box-shadow: 0 30px 76px rgba(17,17,17,.085); }
.contact-form label { display: grid; gap: 8px; color: rgba(17,17,17,.62); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17,17,17,.22);
  border-radius: 12px;
  background: transparent;
  padding: 14px 0;
  color: var(--obsidian);
  font: 300 17px/1.5 var(--sans);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.field-error { display: block; min-height: 14px; margin: -8px 0 0; color: #b3413c; font-family: var(--sans); font-size: 11px; letter-spacing: .02em; text-transform: none; }
.form-status { margin-top: 10px; padding: 12px 16px; border-radius: 12px; font-family: var(--sans); font-size: 14px; line-height: 1.5; text-align: center; }
.form-status.is-success { background: rgba(184,138,28,.1); color: var(--deep-gold); }
.form-status.is-error { background: rgba(179,65,60,.08); color: #b3413c; }

/* Responsive */
@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav {
    position: fixed;
    top: 132px;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    background: var(--ivory);
    border-top: 1px solid rgba(17,17,17,.1);
    box-shadow: 0 24px 48px rgba(17,17,17,.16);
    padding: 10px var(--page) 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
    pointer-events: none;
  }
  .main-nav a { padding: 15px 2px; border-bottom: 1px solid rgba(17,17,17,.08); font-family: var(--serif); font-size: 21px; letter-spacing: 0; text-transform: none; }
  .main-nav .mobile-nav-cta { display: inline-flex; justify-content: center; width: 100%; margin-top: 16px; }
  .menu-open .main-nav { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .header-actions { display: flex; align-items: center; gap: 16px; }
  .header-actions .desktop-cta { display: none; }
  .menu-toggle { position: relative; z-index: 3; display: block; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { position: absolute; left: 9px; width: 25px; height: 1px; background: currentColor; transition: .3s; }
  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:nth-child(2) { top: 25px; }
  .menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
  .hero { grid-template-columns: minmax(0, 62%); }
  .service-body { min-height: 320px; padding-inline: 24px; }
}
@media (max-width: 800px) {
  .site-header { height: 86px; }
  .main-nav { top: 86px; max-height: calc(100vh - 86px); }
  .hero { min-height: 680px; grid-template-columns: 1fr; padding-top: 86px; }
  .hero-copy { padding: 110px 0 75px; }
  h1 { font-size: clamp(58px, 17vw, 90px); }
  .hero-title { font-size: clamp(46px, 12vw, 74px); }
  .hero-title span { white-space: normal; }
  .hero-visual { position: absolute; top: 0; bottom: 0; left: calc(var(--page) * -1); right: calc(var(--page) * -1); min-height: 680px; }
  .image-vignette { background: linear-gradient(0deg, rgba(250,248,243,.3), rgba(250,248,243,.08)); }
  .hero::before, .scroll-mark { display: none; }
  .vertical-word { right: 16px; }
  .sacred-intro { padding-top: 100px; }
  .intro-layout { grid-template-columns: 1fr; gap: 58px; }
  .intro-heading { grid-template-columns: 40px 1fr; }
  .intro-heading h2 { white-space: normal; }
  .intro-text { max-width: none; margin: 85px 0 0 40px; }
  .pillars { grid-template-columns: 1fr; border-left: 0; border-top: 1px solid rgba(215,192,138,.24); }
  .pillar, .pillar:first-child { min-height: auto; padding: 52px 0 42px; border-right: 0; border-bottom: 1px solid rgba(244,231,209,.18); }
  .pillar:last-child { padding-right: 0; border-bottom: 0; }
  .pillar-featured { margin-top: 0; }
  .sacred-icon, .pillar-featured .sacred-icon { width: 143px; height: 143px; margin: 0 0 48px; }
  .section-pad { padding-block: 100px; }
  .section-head { grid-template-columns: 1fr; gap: 30px; }
  .section-head > div { grid-template-columns: 40px 1fr; }
  .services-title { white-space: normal; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { margin-top: 0; }
  .service-art { height: 480px; }
  .about { grid-template-columns: 1fr; }
  .portrait-art { height: 650px; }
  .about-copy { padding-top: 20px; }
  .testimonial-carousel { grid-template-columns: 42px 1fr 42px; }
  .testimonial-carousel .slider-btn { width: 44px; height: 44px; }
  .product { grid-template-columns: 1fr; }
  .product-art { height: 600px; }
  .split-section, .contact-layout { grid-template-columns: 1fr; }
  .about-page-section { grid-template-columns: 1fr; }
  .about-page-section .about-portrait { position: relative; top: auto; }
  .v2-grid, .product-grid, .blog-grid { grid-template-columns: 1fr; }
  .process-grid, .pillars-mini, .category-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { grid-template-columns: 1fr; }
  .article-hero-image { order: -1; margin-bottom: 8px; }
  .shopify-product, .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .article-shell { padding-top: 130px; }
  .contact-cover {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 86px;
    min-height: auto;
    padding: 64px var(--page);
  }
  .contact-cover .page-hero-content {
    display: block;
    padding-bottom: 0;
    transform: none;
  }
  .contact-cover h1 {
    font-size: clamp(38px, 8vw, 64px);
  }
  .contact-cover h1 em {
    margin-left: clamp(18px, 6vw, 46px);
  }
  .contact-hero-card {
    display: block;
    justify-self: start;
    width: min(320px, 100%);
  }
  .contact-cover .contact-hero-h1-inline {
    white-space: normal;
    font-size: clamp(32px, 9vw, 48px);
  }
  .eyebrow,
  .section-kicker,
  .card-link,
  .shop-type,
  .blog-date,
  .article-back,
  .product-breadcrumb,
  .product-detail-kicker,
  .contact-form label,
  .contact-list strong,
  .footer-col .footer-heading,
  .footer-bottom,
  .product-fact span {
    font-size: 11px;
  }
  .product-note {
    font-size: 14px;
  }
  .card-link {
    padding-top: 18px;
    padding-bottom: 14px;
  }
  .lang-btn {
    padding: 14px 10px;
  }
  .hero-stats {
    margin: 8px 0 0;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .brand-logo { width: 220px; height: 68px; }
  .hero-copy { padding-top: 80px; }
  .hero-title { font-size: clamp(48px, 13vw, 68px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-note { margin-top: 40px; }
  .hero-visual { min-height: 540px; }
  .celestial-seal { width: 82px; }
  .intro-heading h2, .section-head h2, .about h2, .product h2, .closing h2 { font-size: 48px; }
  .service-art { height: 360px; }
  .portrait-art { height: 540px; }
  .testimonials { padding-inline: 18px; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .testimonial-carousel .slider-btn { position: absolute; bottom: -25px; z-index: 2; }
  .testimonial-carousel .prev { left: 20px; }
  .testimonial-carousel .next { right: 20px; }
  .slides { min-height: 400px; }
  blockquote { font-size: 30px; }
  .product-art { height: 480px; }
  .product-meta { flex-wrap: wrap; gap: 12px; }
  .product-meta strong { width: 100%; margin: 5px 0 0; }
  .closing { min-height: 650px; padding-inline: 22px; }
  .site-footer { grid-template-columns: 1fr; padding-top: 36px; }
  .footer-brand { position: static; margin-bottom: 24px; }
  .footer-brand .brand-logo { width: 320px; height: 114px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main { padding-left: 0; }
  .footer-bottom { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer-bottom .language-switcher { justify-self: center; }
  .page-hero { min-height: 62vh; padding-top: 140px; padding-bottom: 76px; }
  .about-page-section { grid-template-columns: 1fr; }
  .about-page-section .about-portrait { position: relative; top: auto; }
  .about-page-section .about-portrait img { height: 620px; }
  .process-grid, .pillars-mini, .category-grid, .faq-grid { grid-template-columns: 1fr; }
  .feature-panel { padding-inline: 28px; }
  .shopify-product { padding-top: 64px; }
  .product-facts, .related-grid { grid-template-columns: 1fr; }
  .blog-thumb { height: 205px; }
  .article-shell { padding-inline: 24px; }
  .article-hero-copy h1 { font-size: 52px; }
  .article-next { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Design System: Typography, Buttons, Cards */
.main-nav a,
.footer-nav a,
.language-switcher,
.eyebrow,
.section-kicker,
.shop-type,
.blog-date,
.article-back,
.product-breadcrumb,
.product-detail-kicker,
.product-accordion summary,
.contact-form label,
.contact-list strong,
.footer-col .footer-heading,
.card-link,
.text-link {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.main-nav a,
.footer-nav a { font-size: clamp(12px, .86vw, 17px); }

h1,
.page-hero h1,
.article-hero-copy h1,
.product-info h1,
.contact-cover h1,
.contact-cover h1 span {
  color: #1F1A17;
  font-family: var(--serif-display);
  font-weight: 400;
}

.hero-title,
.hero-title em {
  font-family: var(--hero-display);
  font-weight: 300;
}

h2,
h3,
.section-head h2,
.intro-heading h2,
.about h2,
.product h2,
.closing h2,
.feature-panel h2,
.cta-band h2,
.related-products h2,
.article-content h2,
.service-body h3,
.v2-card h3,
.shop-body h3,
.blog-card h3,
.product-detail-copy h2,
.contact-list span,
.contact-list a {
  font-family: var(--serif);
  font-weight: 400;
}

.section-head h2,
.intro-heading h2,
.about h2,
.product h2,
.feature-panel h2,
.cta-band h2,
.related-products h2 {
  font-size: clamp(42px, 4.2vw, 56px);
  letter-spacing: -.035em;
}

.intro-heading h2 {
  max-width: 640px;
  font-size: clamp(56px, 5.2vw, 82px);
  line-height: .9;
}

.service-body h2,
.service-body h3,
.v2-card h3,
.shop-body h3,
.blog-card h3,
.related-card h3,
.contact-list span,
.contact-list a {
  font-size: clamp(30px, 2.6vw, 36px);
}

.section-pad {
  padding: clamp(140px, 9vw, 180px) var(--page);
}

.hero-intro,
.section-head > p,
.section-subcopy,
.intro-text,
.service-body p,
.about-copy > p,
.product-copy > p:not(.eyebrow),
.v2-card p,
.feature-panel p,
.shop-body p,
.blog-card p,
.article-hero-copy p:not(.eyebrow),
.article-content p,
.product-short,
.product-detail-copy p,
.product-detail-copy li,
.product-accordion p,
.product-accordion li,
.contact-cover p:not(.eyebrow),
.contact-form input,
.contact-form textarea,
.footer-col a,
.footer-col span,
.footer-col address {
  color: var(--muted);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
}

.hero-intro,
.section-head > p,
.section-subcopy,
.intro-text,
.product-copy > p:not(.eyebrow),
.feature-panel p,
.article-hero-copy p:not(.eyebrow),
.contact-cover p:not(.eyebrow) {
  font-size: clamp(18px, 1.35vw, 22px);
}

.hero-intro {
  font-size: clamp(22px, 1.62vw, 26px);
}

.hero-note {
  font-size: 17px;
}

.service-body p,
.v2-card p,
.shop-body p,
.blog-card p,
.product-short,
.product-detail-copy p,
.product-detail-copy li,
.product-accordion p,
.product-accordion li {
  font-size: clamp(18px, 1.18vw, 20px);
}

.article-content p {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.85;
}

.button,
.contact-hero-button,
.product-actions .button,
.shop-body .button,
.hero-actions .button,
.contact-form .button {
  min-height: 46px;
  padding: 0 27px;
  border-radius: 16px;
  font-family: var(--button-font);
  font-size: clamp(11px, .76vw, 14px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button-dark,
.button-gold,
.contact-hero-button {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #fff;
}

.button-dark:hover,
.button-gold:hover,
.contact-hero-button:hover {
  background: linear-gradient(135deg, #c49431, #a97622);
  color: #fff;
}

.button-cream {
  border-color: rgba(200, 161, 90, .88);
  background: rgba(255, 255, 255, .92);
  color: var(--deep-gold);
}

.button-cream:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #fff;
}

.text-link,
.card-link {
  color: var(--deep-gold);
  font-size: 16px;
  font-weight: 500;
}

.text-link:hover,
.card-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.service-card,
.v2-card,
.feature-panel,
.category-card,
.faq-item,
.shop-product,
.blog-card,
.article-hero-image,
.product-main-image,
.product-thumb,
.product-fact,
.contact-form,
.related-card {
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(43, 38, 35, .045);
}

.service-card:hover,
.v2-card:hover,
.feature-panel:hover,
.category-card:hover,
.faq-item:hover,
.shop-product:hover,
.blog-card:hover,
.contact-form:hover,
.related-card:hover {
  box-shadow: 0 22px 48px rgba(43, 38, 35, .075);
}

.service-meta {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
}

.service-meta strong,
.shop-price,
.product-price,
.related-card span {
  color: var(--deep-gold);
  font-family: var(--serif);
  font-weight: 400;
}

.footer-col a,
.footer-col span,
.footer-col address {
  font-size: 16px;
}

.contact-cover h1 em,
.about-copy h2 em {
  color: #C79A35;
  font-family: var(--script) !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none;
}

.about .portrait-art {
  height: 660px;
}

.about-copy h2 {
  max-width: 720px;
  font-size: clamp(56px, 5.2vw, 82px);
  line-height: .9;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 640px;
  font-size: clamp(22px, 1.7vw, 24px);
  line-height: 1.65;
}

.services-title {
  max-width: 1180px;
  font-size: clamp(56px, 5.2vw, 82px);
  line-height: .9;
}

.services .section-subcopy {
  max-width: 640px;
  font-size: clamp(22px, 1.7vw, 24px);
  line-height: 1.65;
}

.services .services-title {
  font-size: clamp(56px, 5.2vw, 82px);
}

.services .service-grid {
  width: min(1220px, 94vw);
  margin-inline: auto;
  align-items: stretch;
}

@media (max-width: 800px) {
  .services .service-grid {
    width: 100%;
    margin-inline: 0;
  }
}

.services .service-card {
  display: flex;
  flex-direction: column;
}

.services .service-card.featured {
  margin-top: 0;
}

.services .service-art {
  height: clamp(199px, 23.2vw, 356px);
}

.services .service-body {
  flex: 1;
  min-height: 232px;
  padding: 30px 28px 28px;
}

.services .service-body p {
  margin: 20px 0 28px;
}

.services .service-body h2,
.services .service-body h3 {
  padding-right: 0;
}

.services .service-meta {
  justify-items: center;
  gap: 10px;
  margin: auto 0 25px;
  padding: 20px 0;
  text-align: center;
  color: var(--obsidian);
  font-family: var(--serif);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.services .service-meta strong {
  font-size: clamp(28px, 2.1vw, 34px);
}

.products-cover h1 {
  font-weight: 400;
}

.services-page-listing {
  padding-top: clamp(54px, 5.5vw, 86px);
  background:
    linear-gradient(rgba(4, 27, 24, .18), rgba(4, 27, 24, .42)),
    url("../images/bg-dark-texture.jpg") center / cover,
    #062521;
}

.services-rhythm {
  grid-template-columns: minmax(430px, .95fr) minmax(620px, 1.05fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 169, 76, .08), transparent 34%),
    var(--ivory);
}

.services-rhythm .feature-panel {
  aspect-ratio: 1 / 1;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5vw, 78px);
  border-color: rgba(200, 161, 90, .2);
  border-radius: 34px;
  background: #f4e7d1;
  box-shadow: 0 28px 90px rgba(43, 38, 35, .055);
}

.services-rhythm .feature-panel h2 {
  max-width: 460px;
  margin-bottom: clamp(26px, 2.8vw, 38px);
  color: var(--obsidian);
  font-size: clamp(62px, 6vw, 92px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}

.services-rhythm .feature-panel > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(43, 38, 35, .62);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.62;
}

.services-rhythm .faq-grid {
  gap: clamp(18px, 1.8vw, 26px);
}

.services-rhythm .faq-item {
  min-height: clamp(155px, 12vw, 190px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 2.4vw, 38px);
  border-color: rgba(43, 38, 35, .12);
  border-radius: 24px;
  background: rgba(255, 253, 249, .9);
  box-shadow: 0 22px 60px rgba(43, 38, 35, .045);
}

.services-rhythm .faq-item h3 {
  max-width: 330px;
  margin-bottom: 14px;
  color: var(--obsidian);
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.services-rhythm .faq-item p {
  max-width: 340px;
  color: rgba(43, 38, 35, .68);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .services-rhythm {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-rhythm .feature-panel {
    min-height: auto;
  }

  .services-rhythm .faq-grid {
    grid-template-columns: 1fr;
  }
}

.closing {
  min-height: clamp(560px, 56vw, 580px);
}

.closing-content {
  display: grid;
  justify-items: center;
  padding-top: 56px;
}

.closing-content .button-gold {
  order: 1;
  margin-top: 0;
}

.closing-content h2 {
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: 46px;
  font-size: clamp(45px, 5.6vw, 86px);
  line-height: .92;
}

.closing-content p:not(.eyebrow) {
  order: 2;
  margin-top: 46px;
  margin-bottom: 0;
  color: rgba(245,240,232,.82);
  font-size: clamp(22px, 1.7vw, 24px);
  line-height: 1.65;
}

@media (max-width: 800px) {
  body { font-size: 20px; }
  h1,
  .hero-title,
  .page-hero h1,
  .article-hero-copy h1,
  .product-info h1 {
    font-size: clamp(48px, 12vw, 56px);
  }
  .contact-cover h1 { font-size: clamp(38px, 8vw, 56px); }
}

@media (max-width: 540px) {
  body { font-size: 18px; }
  h1,
  .hero-title,
  .page-hero h1,
  .article-hero-copy h1,
  .product-info h1 {
    font-size: clamp(36px, 11vw, 44px);
  }
  .section-head h2,
  .intro-heading h2,
  .about h2,
  .product h2,
  .feature-panel h2,
  .cta-band h2,
  .related-products h2 {
    font-size: clamp(42px, 12vw, 50px);
  }
}


.legal-content { max-width: 880px; margin: 0 auto; }
.legal-content h2 { margin: 46px 0 14px; font-size: clamp(26px, 2.4vw, 36px); letter-spacing: -.02em; color: var(--obsidian); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { margin: 26px 0 10px; color: var(--deep-gold); font-size: clamp(19px, 1.6vw, 23px); }
.legal-content p { margin: 0 0 18px; color: rgba(17,17,17,.68); font-size: 17px; line-height: 1.8; }
.legal-content ul { margin: 0 0 18px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; color: rgba(17,17,17,.68); font-size: 17px; line-height: 1.7; }
.legal-table-wrap { overflow-x: auto; margin: 0 0 24px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.legal-table th, .legal-table td { padding: 12px 14px; border: 1px solid rgba(17,17,17,.14); text-align: left; vertical-align: top; color: rgba(17,17,17,.68); }
.legal-table th { color: var(--deep-gold); font-family: var(--serif); font-weight: 400; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 800px) {
  .legal-content h2 { margin-top: 34px; }
  .legal-table { font-size: 14px; }
  .legal-table th, .legal-table td { padding: 10px; }
}
