:root {
  --site-bg: #000000;
  --site-bg-soft: #120f0d;
  --mobile-menu-bg: #080605;
  --site-bg-card: rgba(24, 20, 18, 0.72);
  --site-ink: #f8f6f4;
  --site-muted: rgba(243, 234, 223, 0.66);
  --site-line: rgba(243, 234, 223, 0.25);
  --site-accent: #5a3c2b;
  --site-accent-strong: #7b533d;
  --site-accent-light: #ddac8a;
  --site-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --motion-fast: 0.25s;
  --motion-normal: 0.45s;
  --motion-dramatic: 1s;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--site-bg);
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset, 7rem);
}

main [id],
footer [id] {
  scroll-margin-top: calc(var(--site-header-offset, 7rem) + 0.35rem);
}

body {
  font-family: "Cormorant Garamond", serif;
  background:
    radial-gradient(circle at top left, rgba(202, 161, 124, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(143, 105, 76, 0.16), transparent 24%),
    linear-gradient(180deg, #080605 0%, #0b0908 36%, #080605 100%);
  color: var(--site-ink);
}

h1,
h2,
h3,
h4,
.display-type {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

img {
  display: block;
  backface-visibility: hidden;
}

.site-shell {
  position: relative;
  overflow: clip;
}

/* Parallax layers stay transform-only for smoother scroll performance. */

[data-parallax-layer] {
  --parallax-y: 0px;
  --parallax-scale: 1;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--parallax-scale));
  will-change: transform;
}

.hero-image[data-parallax-layer] {
  --parallax-scale: 1.06;
}

.hero-secondary[data-parallax-layer] {
  --parallax-scale: 1.04;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px);
  background-size: 18px 18px, 24px 24px, 22px 22px;
}

.cursor-glow {
  --cursor-scale: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 9999px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at center,
      rgba(255, 248, 239, 0.44) 0%,
      rgba(244, 221, 184, 0.14) 28%,
      rgba(219, 179, 114, 0.06) 48%,
      transparent 72%);
  box-shadow: 0 0 12px rgba(232, 196, 137, 0.04);
  filter: blur(4px);
  mix-blend-mode: screen;
  transform: translate3d(-50%, -50%, 0) scale(var(--cursor-scale));
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}

.cursor-trail-particle {
  --x: 0px;
  --y: 0px;
  --drift-x: 0px;
  --drift-y: -16px;
  --particle-size: 10px;
  --particle-duration: 900ms;
  --twinkle-rotate: 0deg;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: var(--particle-size);
  height: var(--particle-size);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--x), var(--y), 0) translate(-50%, -50%) scale(0.35) rotate(var(--twinkle-rotate));
  animation: cursorTrailFloat var(--particle-duration) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.cursor-trail-particle--spark {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(247, 225, 179, 0.36) 32%, transparent 72%);
  filter: drop-shadow(0 0 6px rgba(247, 218, 165, 0.18));
}

.cursor-trail-particle--spark::before,
.cursor-trail-particle--spark::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: calc(50% - 0.65px);
  height: 1.3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 244, 221, 0.06) 18%, rgba(255, 244, 221, 0.9) 50%, rgba(255, 244, 221, 0.06) 82%, transparent 100%);
}

.cursor-trail-particle--spark::after {
  transform: rotate(90deg);
}

@keyframes cursorTrailFloat {
  0% {
    opacity: 0;
    transform: translate3d(var(--x), var(--y), 0) translate(-50%, -50%) scale(0.35) rotate(var(--twinkle-rotate));
  }

  18% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(var(--x) + var(--drift-x)), calc(var(--y) + var(--drift-y)), 0) translate(-50%, -50%) scale(1.22) rotate(calc(var(--twinkle-rotate) + 14deg));
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-color: rgba(243, 234, 223, 0.08);
  transition:
    background-color var(--motion-normal) var(--ease-out),
    border-color var(--motion-normal) var(--ease-out),
    backdrop-filter var(--motion-normal) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(8, 6, 5, 0.74);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open {
  background: var(--mobile-menu-bg);
  border-bottom: 1px solid rgba(243, 234, 223, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1;
}

.brand-title {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  text-align: start;
  margin-left: 3px;
}

.nav-toggle {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffffc7;
  transition:
    transform var(--motion-fast) var(--ease-out);
}

.nav-toggle__icon {
  position: relative;
  width: 1.2rem;
  height: 1rem;
}

.nav-toggle__line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  border-radius: 9999px;
  background: currentColor;
  transform-origin: center;
  transition:
    top var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    opacity var(--motion-fast) var(--ease-out),
    width var(--motion-fast) var(--ease-out);
}

.nav-toggle__line:nth-child(1) {
  top: 0;
  width: 82%;
}

.nav-toggle__line:nth-child(2) {
  top: calc(50% - 0.5px);
  width: 60%;
}

.nav-toggle__line:nth-child(3) {
  top: calc(100% - 1px);
  width: 70%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  top: calc(50% - 0.5px);
  width: 100%;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  top: calc(50% - 0.5px);
  width: 100%;
  transform: rotate(-45deg);
}

.site-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 234, 223, 0.84);
  transition: color var(--motion-fast) var(--ease-out);
}

.site-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: currentColor;
  transition: transform var(--motion-normal) var(--ease-out);
}

.site-link:hover,
.site-link:focus-visible {
  color: var(--site-accent-strong);
}

.site-link:hover::after,
.site-link:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav {
  background: var(--mobile-menu-bg);
  padding: 0 1rem;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transform: translateY(-0.75rem);
  pointer-events: none;
  transition:
    padding var(--motion-normal) var(--ease-out),
    max-height 0.55s var(--ease-out),
    opacity 0.34s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.mobile-nav ul li {
  opacity: 0;
  transform: translateY(-0.45rem);
  transition:
    opacity 0.3s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.mobile-nav ul li:nth-child(1) {
  transition-delay: 0.04s;
}

.mobile-nav ul li:nth-child(2) {
  transition-delay: 0.08s;
}

.mobile-nav ul li:nth-child(3) {
  transition-delay: 0.12s;
}

.mobile-nav ul li:nth-child(4) {
  transition-delay: 0.16s;
}

.mobile-nav.is-open {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  opacity: 1;
  max-height: 22rem;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav.is-open ul li {
  opacity: 1;
  transform: translateY(0);
}

.scene {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.panel-scroll {
  scroll-snap-type: y mandatory;
}

.panel-scroll.is-anchor-scrolling {
  scroll-snap-type: none;
}

.hero-panel-stack {
  position: relative;
}

.panel-section {
  display: flex;
  align-items: stretch;
  opacity: 0.92;
  transform: scale(0.988);
  transition:
    opacity var(--motion-normal) var(--ease-out),
    transform var(--motion-normal) var(--ease-out);
}

.panel-section.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-scene {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  min-height: 750px;
  padding-top: 6rem;
  box-sizing: border-box;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image,
.hero-secondary {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

.hero-image {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  opacity: 1;
  transition: opacity 1.1s var(--ease-out), filter 1.1s var(--ease-out);
}

.scene-frame {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero intro motion is handled with a simple ready-state instead of a library. */

.hero-scene .eyebrow,
.hero-scene .hero-title,
.hero-scene .hero-subcopy,
.hero-scene .hero-actions,
.hero-scene .hero-marquee,
.hero-scene .hero-rail>* {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.hero-scene .hero-title {
  transition-delay: 0.08s;
}

.hero-scene .hero-subcopy {
  transition-delay: 0.16s;
}

.hero-scene .hero-actions,
.hero-scene .hero-marquee {
  transition-delay: 0.24s;
}

.hero-scene .hero-rail>*:first-child {
  transition-delay: 0.18s;
}

.hero-scene .hero-rail>*:last-child {
  transition-delay: 0.28s;
}

body:not(.is-ready) .hero-image {
  opacity: 0;
  filter: saturate(0.4) blur(8px);
}

body:not(.is-ready) .hero-secondary {
  opacity: 0;
  filter: saturate(0.4) blur(10px);
}

body.is-ready .hero-scene .eyebrow,
body.is-ready .hero-scene .hero-title,
body.is-ready .hero-scene .hero-subcopy,
body.is-ready .hero-scene .hero-actions,
body.is-ready .hero-scene .hero-marquee,
body.is-ready .hero-scene .hero-rail>* {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-indicator__inner {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 0.8s var(--ease-out) 0.7s,
    transform 0.8s var(--ease-out) 0.7s;
}

body.is-ready .scroll-indicator__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Reusable scroll-reveal state for content blocks. */

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 2.25rem, 0);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--site-accent-light);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
}

.hero-line {
  display: block;
}

.hero-line span, .subtle-hero-title {
  display: block;
  color: var(--site-accent-light);
  font-style: italic;
}

.hero-subcopy {
  max-width: 30rem;
  margin-top: 1.1rem;
  color: rgba(243, 234, 223, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.site-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  font-size: 0.75rem;
  line-height: 1.65 !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(0);
  transition:
    transform var(--motion-normal) var(--ease-out),
    box-shadow var(--motion-normal) var(--ease-out),
    border-color var(--motion-normal) var(--ease-out),
    background-color var(--motion-normal) var(--ease-out),
    background-position var(--motion-normal) var(--ease-out),
    filter var(--motion-normal) var(--ease-out);
}

.site-button span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: inherit !important;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: transform var(--motion-fast) var(--ease-out);
}

.site-button:hover,
.site-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.site-button:hover span,
.site-button:focus-visible span {
  transform: translateX(4px);
}

.site-button--solid {
  background-image: radial-gradient(circle at top left, #7a614b 0%, #3f271c 100%);
  background-size: 160% 160%;
  background-position: 18% 22%;
  color: var(--site-ink);
  border-radius: 10px 0 10px 0;
}

.site-button--solid:hover,
.site-button--solid:focus-visible {
  background-position: 82% 78%;
  filter: saturate(1.06) brightness(1.05);
}

.site-button--unsolid {
  background: var(--site-accent-light);
  color: var(--site-bg);
  border-radius: 0 10px 0 10px;
}

.site-button--unsolid:hover,
.site-button--unsolid:focus-visible {
  background: var(--site-accent-strong);
}

.site-button--ghost {
  border-color: rgba(243, 234, 223, 0.16);
  background: rgba(243, 234, 223, 0.04);
  color: var(--site-ink);
  border-radius: 0 10px 0 10px;
}

.site-button--ghost:hover,
.site-button--ghost:focus-visible {
  border-color: rgba(243, 234, 223, 0.28);
  background: rgba(243, 234, 223, 0.08);
}

.metric-card,
.glass-card,
.panel-copy,
.showcase-item,
.stack-card,
.cta-card,
.visual-overlay,
.service-step {
  backdrop-filter: blur(16px);
  background: var(--site-bg-card);
  border: 1px solid var(--site-line);
  box-shadow: var(--site-shadow);
}

.metric-card {
  padding: 1.2rem;
  border-radius: 1.4rem;
}

.metric-card strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
}

.metric-card span,
.metric-line {
  font-size: 0.85rem;
  color: var(--site-muted);
}

.hero-rail {
  display: grid;
  gap: 1rem;
  align-self: end;
  margin-top: 2rem;
}

.hero-note {
  padding: 1.3rem;
  border-radius: 1.4rem;
}

.hero-note p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.hero-note strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--site-ink);
}

.hero-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(243, 234, 223, 0.14);
  color: rgba(243, 234, 223, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-section {
  position: relative;
  z-index: 4;
  padding: 0;
  padding-top: 5svh;
  align-items: center;
  background-color: var(--site-bg);
}

/* Full-width separators add depth between denser content sections. */

.separator-section {
  align-items: stretch;
  min-height: 88svh;
  overflow: hidden;
}

.separator-section--compact {
  min-height: 72svh;
}

.separator-media,
.separator-wash {
  position: absolute;
  inset: 0;
}

.separator-media {
  overflow: hidden;
}

.separator-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  filter: saturate(0.72);
}

.separator-wash {
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.28) 0%, rgba(8, 6, 5, 0.84) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.82) 0%, rgba(8, 6, 5, 0.26) 48%, rgba(8, 6, 5, 0.76) 100%);
}

.separator-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88svh;
  max-width: 38rem;
}

.separator-copy--end {
  justify-content: flex-end;
  padding-bottom: 5rem;
}

.separator-title {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.92;
}

.panel-pin {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: 6rem max(0.9rem, 2.6vw) 6rem 1.5rem;
}

.story-panels {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15.5rem, 22rem);
  gap: 2rem;
  height: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.3rem;
}

.story-panel {
  position: relative;
  min-height: auto;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.story-panel .panel-media {
  position: relative;
  inset: auto;
  width: 100%;
  height: 250px;
  max-height: 250px;
  border-radius: 15px 15px 0 0;
  flex-shrink: 0;
}

.story-panels.has-story-anim .story-panel {
  opacity: 0;
  transform: translate3d(0, 2.1rem, 0) scale(0.965) rotateX(8deg);
  transform-origin: center bottom;
  filter: blur(8px) saturate(0.82);
  will-change: transform, opacity, filter;
  transition:
    opacity 0.72s var(--ease-out) var(--story-panel-delay, 0s),
    transform 0.92s var(--ease-out) var(--story-panel-delay, 0s),
    filter 0.88s var(--ease-out) var(--story-panel-delay, 0s);
}

.story-panels.has-story-anim .story-panel.is-entered {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0);
  filter: none;
}

.story-panels.has-story-anim .story-panel .panel-media img {
  transform: scale(1.16);
  filter: saturate(0.66) brightness(0.72);
  transition:
    transform 1.18s var(--ease-out) calc(var(--story-panel-delay, 0s) + 0.08s),
    filter 1s var(--ease-out) calc(var(--story-panel-delay, 0s) + 0.08s);
}

.story-panels.has-story-anim .story-panel.is-entered .panel-media img {
  transform: scale(1);
  filter: none;
}

.story-panels.has-story-anim .story-panel .panel-copy.depth-card>* {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 0.54s var(--ease-out),
    transform 0.68s var(--ease-out);
  transition-delay: calc(var(--story-panel-delay, 0s) + var(--story-copy-delay, 0s));
}

.story-panels.has-story-anim .story-panel .panel-copy.depth-card .kicker {
  --story-copy-delay: 0.12s;
}

.story-panels.has-story-anim .story-panel .panel-copy.depth-card h2 {
  --story-copy-delay: 0.2s;
}

.story-panels.has-story-anim .story-panel .panel-copy.depth-card p {
  --story-copy-delay: 0.3s;
}

.story-panels.has-story-anim .story-panel.is-entered .panel-copy.depth-card>* {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.panel-media,
.visual-media,
.showcase-media,
.cta-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.panel-media::after,
.visual-media::after,
.showcase-media::after,
.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 5, 0.08) 0%, rgba(8, 6, 5, 0.8) 100%);
}

.story-panel .panel-media::after {
  background: linear-gradient(180deg,
      rgba(16, 11, 8, 0.14) 0%,
      rgba(16, 11, 8, 0.24) 42%,
      rgba(14, 10, 7, 0.55) 66%,
      rgba(10, 7, 5, 0.82) 100%);
}

.panel-media img,
.visual-media img,
.showcase-media img,
.cta-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--motion-dramatic) var(--ease-out);
}

.panel-copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-radius: 1.2rem;
}

.story-panel .panel-copy.depth-card {
  position: relative;
  inset: auto;
  max-width: none;
  width: 100%;
  padding: 1.25rem 1.15rem 1.1rem;
  border-radius: 0 0 15px 15px;
  border: 0;
  border-top: 1px solid rgb(214, 167, 110);
  box-shadow: none;
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(27, 20, 16, 0.94) 0%, rgba(20, 14, 11, 0.98) 100%);
}

.story-panel .panel-copy.depth-card .kicker {
  color: rgba(233, 216, 198, 0.84);
}

.story-panel .panel-copy.depth-card h2 {
  color: #f7eee7;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.story-panel .panel-copy.depth-card p {
  color: rgba(237, 222, 208, 0.82);
}

.panel-copy> :last-child {
  margin-bottom: auto;
}

.kicker {
  margin-bottom: 0.65rem;
  color: var(--site-accent-strong);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-copy h2 {
  margin: 0 0 0.5rem 0;
}

.split-heading,
.section-title,
.cta-title {
  margin: 0;
}

.panel-copy p,
.section-intro,
.stack-body,
.cta-copy,
.showcase-copy,
.footer-copy {
  color: var(--site-muted);
  line-height: 1.8;
}

.service-copy {
  color: var(--site-muted);
}

.panel-copy p {
  line-height: 1.62;
}

.split-section,
.showcase-section,
.stack-section,
.cta-section {
  padding: 6.75rem 0.5rem;
}

.split-shell {
  display: grid;
  position: relative;
  gap: 4rem;
  --split-visual-offset: clamp(5rem, 9vw, 6.5rem);
  isolation: isolate;
}

.visual-stage-shell {
  position: sticky;
  top: var(--split-visual-offset);
  z-index: 20;
  align-self: start;
}

.visual-stage {
  position: relative;
  z-index: 2;
  height: min(62vh, 34rem);
  min-height: 28rem;
  max-height: calc(100svh - var(--split-visual-offset) - 1.5rem);
  overflow: hidden;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.26);
}

.visual-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  z-index: 2;
  pointer-events: none;
}

.visual-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 2rem, 0) scale(1);
  transition:
    opacity var(--motion-dramatic) var(--ease-out),
    transform var(--motion-dramatic) var(--ease-out);
}

.visual-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.22);
}

.visual-item.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.05);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.92) 100%);
  border-radius: 0;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.visual-overlay strong {
  display: block;
  margin-bottom: 0.35rem;
  pointer-events: none;
}

.split-copy {
  position: relative;
  z-index: 1;
}

.service-step {
  scale: 0.98;
  opacity: 0.50;
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  border-radius: 0;
  pointer-events: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: calc(var(--split-visual-offset) + 15rem);
  transition:
    transform var(--motion-normal) var(--ease-out),
    border-color var(--motion-normal) var(--ease-out),
    opacity var(--motion-normal) var(--ease-out),
    box-shadow var(--motion-normal) var(--ease-out);
}

.service-step+.service-step {
  margin-top: 2.5rem;
}

.service-step.is-active {
  transform: scale(1.01);
  border-color: rgba(202, 161, 124, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 1;
}

.service-index {
  display: block;
  margin-bottom: 1rem;
  color: rgba(243, 234, 223, 0.42);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-step h3,
.showcase-item h3,
.stack-card h3,
.cta-card h3 {
  margin: 0;
}

.showcase-section {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showcase-heading {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.showcase-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
}

.showcase-track {
  display: flex;
  gap: 1.25rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0 1rem;
}

.showcase-item {
  position: relative;
  flex: 0 0 min(78vw, 28rem);
  min-height: 32rem;
  border-radius: 2rem;
  overflow: hidden;
  transition:
    transform var(--motion-normal) var(--ease-out),
    box-shadow var(--motion-normal) var(--ease-out),
    border-color var(--motion-normal) var(--ease-out);
  scroll-snap-align: center;
}

.showcase-item.is-active {
  transform: translateY(-0.8rem) scale(1.02);
  border-color: rgba(202, 161, 124, 0.34);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.showcase-copy-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 32rem;
  padding: 1.6rem;
}

.showcase-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--site-accent-strong);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stack-shell {
  display: grid;
  gap: 2rem;
}

.stack-stage {
  position: relative;
  min-height: auto;
  display: grid;
  gap: 1rem;
}

.stack-card {
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  max-width: none;
  margin: 0;
  min-height: 18rem;
  padding: 2rem;
  border-radius: 2rem;
  transform-origin: center center;
}

.stack-quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.96;
}

.stack-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.stack-foot span {
  color: var(--site-muted);
}

.cta-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2.4rem;
  border: 1px solid var(--site-line);
  background: linear-gradient(135deg, rgba(19, 15, 13, 0.94), rgba(8, 6, 5, 0.9));
  box-shadow: var(--site-shadow);
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(202, 161, 124, 0.12), transparent 42%, transparent 62%, rgba(243, 234, 223, 0.04) 100%);
  pointer-events: none;
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.cta-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 1.8rem;
}

.cta-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.cta-list a,
.inline-link {
  position: relative;
  display: inline-flex;
  color: var(--site-ink);
}

.inline-link::after,
.cta-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-normal) var(--ease-out);
}

.inline-link:hover::after,
.inline-link:focus-visible::after,
.cta-list a:hover::after,
.cta-list a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 2.8rem;
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243, 234, 223, 0.08);
}

.media-lift,
.depth-card {
  transform: translate3d(0, var(--parallax-y, 0px), 0) translateY(0) scale(1);
  transition:
    transform var(--motion-normal) var(--ease-out),
    box-shadow var(--motion-normal) var(--ease-out),
    border-color var(--motion-normal) var(--ease-out);
}

.media-lift:hover img,
.media-lift:focus-within img,
.depth-card:hover img,
.depth-card:focus-within img {
  transform: scale(1.06) translate3d(0, -6px, 0);
}

.depth-card:hover,
.depth-card:focus-within {
  transform: translate3d(0, var(--parallax-y, 0px), 0) translateY(-6px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.story-panel .panel-copy.depth-card:hover,
.story-panel .panel-copy.depth-card:focus-within {
  transform: translate3d(0, var(--parallax-y, 0px), 0) translateY(0) scale(1);
  box-shadow: none;
}

.stack-card.depth-card:hover,
.stack-card.depth-card:focus-within {
  transform: translate3d(0, var(--parallax-y, 0px), 0) translateY(-4px) scale(1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.stack-card.depth-card:hover img,
.stack-card.depth-card:focus-within img {
  transform: none;
}

.stack-card .testimonial-avatar {
  transform: translate3d(-50%, -50%, 0);
}

.stack-card.depth-card:hover .testimonial-avatar,
.stack-card.depth-card:focus-within .testimonial-avatar {
  transform: translate3d(-50%, -50%, 0);
}

@media (min-width: 768px) {
  .hero-image {
    -o-object-position: center 35%;
       object-position: center 35%;
  }

  .site-button {
    font-size: 0.875rem;
  }

  .visual-overlay {
    padding: 2rem;
  }

  .split-section,
  .showcase-section,
  .stack-section,
  .cta-section {
    padding: 6.75rem 2rem;
  }

  .separator-copy {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .story-panels {
    grid-auto-columns: minmax(18rem, 24rem);
  }

  .split-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .cta-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: end;
  }

  .footer-bar {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .story-panels {
    grid-auto-columns: minmax(21.875rem, 24rem);
  }

  .stack-shell {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 2.4rem;
  }

  .stack-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .panel-scroll {
    scroll-snap-type: none;
  }

  .scene {
    scroll-snap-stop: normal;
  }

  .panel-section {
    min-height: auto;
    opacity: 1;
    transform: none;
  }

  .noise-overlay {
    opacity: 0.05;
  }

  .cursor-glow {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 10.4vw, 3rem);
  }

  .hero-subcopy {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .site-button {
    min-height: 2.75rem;
    padding: 0.62rem 1rem;
  }

  .panel-pin {
    min-height: auto;
    padding-top: 5.5rem;
  }

  .story-panels {
    display: flex;
    gap: 1.8rem;
    padding: 0 0 0.75rem;
    scroll-padding-inline: 12vw;
  }

  .story-panel {
    min-height: 56vh;
    padding: 0.75rem;
    min-width: 325px;
  }

  .panel-copy {
    padding: 0.95rem;
    border-radius: 1rem;
  }

  .story-panel .panel-copy.depth-card {
    padding: 1rem 0.9rem 0.9rem;
    border-radius: 0 0 15px 15px;
    border-top: 1px solid #77584870;
    background: linear-gradient(180deg, rgba(27, 20, 16, 0.94) 0%, rgba(20, 14, 11, 0.98) 100%);
  }

  .story-panel .panel-copy.depth-card::before {
    top: -2.8rem;
    height: 2.8rem;
  }

  .panel-copy h2 {
    font-size: clamp(1.3rem, 6.8vw, 1.9rem);
  }

  .panel-copy p {
    font-size: 0.83rem;
    line-height: 1.52;
  }

  .kicker {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .separator-section,
  .separator-copy {
    min-height: 58svh;
  }

  .separator-copy {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .separator-title {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .visual-stage-shell::after {
    content: "";
    position: absolute;
    inset: 225px 0 auto 0;
    height: 15px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0) 100%);
  }

  .visual-stage-shell::before {
    content: "";
    display: block;
    position: absolute;
    inset: -100svh -100vw 100% -100vw;
    z-index: 0;
    pointer-events: none;
    background: #000000;
  }

  .visual-stage {
    background: #000000;
    height: 225px;
    min-height: 225px;
    max-height: 225px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36), 0 48px 80px -38px rgba(0, 0, 0, 0.95);
  }

  .visual-stage::after {
    display: none;
  }

  .split-copy::before {
    display: none;
  }

  .showcase-track {
    padding-right: 1rem;
  }

  .stack-card {
    min-height: 24rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cursor-glow,
  .noise-overlay {
    display: none;
  }

  .site-button,
  .site-button span,
  .site-link,
  .site-link::after,
  .reveal-on-scroll,
  .visual-item,
  .service-step,
  .showcase-item,
  .depth-card,
  .media-lift img,
  .story-panel,
  .story-panel .panel-media img,
  .story-panel .panel-copy.depth-card>* {
    transition: none !important;
  }

  .hero-scene .eyebrow,
  .hero-scene .hero-title,
  .hero-scene .hero-subcopy,
  .hero-scene .hero-actions,
  .hero-scene .hero-marquee,
  .hero-scene .hero-rail>*,
  .scroll-indicator__inner,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax-layer] {
    transform: none !important;
    will-change: auto;
  }

  .story-panels.has-story-anim .story-panel,
  .story-panels.has-story-anim .story-panel .panel-media img,
  .story-panels.has-story-anim .story-panel .panel-copy.depth-card>* {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ============================================================
   footer.css — Premium footer for Glamour by Tink
   Sections: Pre-footer CTA · Main footer body · Bottom bar
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   PRE-FOOTER CTA
   The final conversion moment: editorial scale, ghost type,
   staggered entry, strong hierarchy.
   ──────────────────────────────────────────────────────────── */

.prefooter-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 11vw, 9rem) clamp(1.5rem, 5vw, 3rem) clamp(5rem, 9.5vw, 8rem);
  background: linear-gradient(185deg, #080605 0%, #0c0909 55%, #070504 100%);
}

/* Ghost text — scale and presence without competing */

.prefooter-ghost {
  position: absolute;
  top: 50%;
  right: -1vw;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(9rem, 23vw, 21rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  opacity: 0.028;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}

/* Top animated divider — draws left-to-right on entry */

.prefooter-line-wrap {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.prefooter-line {
  height: 1px;
  background: linear-gradient(90deg, var(--site-accent-light) 0%, transparent 75%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease-out);
  opacity: 0.5;
}

.prefooter-cta.is-revealed .prefooter-line {
  transform: scaleX(1);
}

/* Inner wrapper */

.prefooter-inner {
  position: relative;
}

.prefooter-content {
  max-width: 54rem;
}

/* Eyebrow label with leading rule */

.prefooter-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-accent-light);
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.prefooter-label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* Headline — large editorial type */

.prefooter-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7.8vw, 7rem);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.03em;
  color: var(--site-ink);
  margin: 0 0 1.75rem;
}

.prefooter-hl-plain {
  display: block;
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.8s 0.08s var(--ease-out),
    transform 0.8s 0.08s var(--ease-out);
}

.prefooter-hl-accent {
  display: block;
  font-style: italic;
  color: var(--site-accent-light);
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.8s 0.18s var(--ease-out),
    transform 0.8s 0.18s var(--ease-out);
}

/* Supporting copy */

.prefooter-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.72;
  color: var(--site-muted);
  max-width: 34rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 0.72s 0.28s var(--ease-out),
    transform 0.72s 0.28s var(--ease-out);
}

/* CTA button group */

.prefooter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.825rem;
  align-items: center;
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 0.65s 0.38s var(--ease-out),
    transform 0.65s 0.38s var(--ease-out);
}

/* Cascade reveal — triggered by IntersectionObserver */

.prefooter-cta.is-revealed .prefooter-label,
.prefooter-cta.is-revealed .prefooter-hl-plain,
.prefooter-cta.is-revealed .prefooter-hl-accent,
.prefooter-cta.is-revealed .prefooter-sub,
.prefooter-cta.is-revealed .prefooter-actions {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────
   SITE FOOTER
   Asymmetric layout: brand (wide) · behandelingen · studio ·
   contact. Dark warm surface, ambient glow, refined details.
   ──────────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  color: var(--site-ink);
}

.footer-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(190deg, #0a0806 0%, #060403 100%);
}

/* Warm ambient radial — one from top-right, one from bottom-left */

.footer-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 78% 0%, rgba(197, 164, 142, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 28% at 14% 95%, rgba(90, 60, 43, 0.1) 0%, transparent 55%);
}

/* ── Footer body: asymmetric grid ── */

.footer-body {
  position: relative;
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1.3fr;
  gap: 0 2.5rem;
  max-width: 88rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) 0;
  align-items: start;
}

@media (max-width: 1023px) {
  .footer-body {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }

  .footer-col--brand {
    grid-column: span 2;
  }
}

@media (max-width: 639px) {
  .footer-body {
    grid-template-columns: 1fr;
    row-gap: 2.25rem;
  }

  .footer-col--brand {
    grid-column: span 1;
  }
}

/* ── Column: base + staggered scroll-reveal ── */

.footer-col {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.footer-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-col:nth-child(1) {
  transition-delay: 0s;
}

.footer-col:nth-child(2) {
  transition-delay: 0.1s;
}

.footer-col:nth-child(3) {
  transition-delay: 0.19s;
}

.footer-col:nth-child(4) {
  transition-delay: 0.28s;
}

/* ── Brand column ── */

.footer-logotype {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  margin-bottom: 1.4rem;
  text-decoration: none;
  transition: opacity var(--motion-fast) var(--ease-out);
}

.footer-logotype:hover,
.footer-logotype:focus-visible {
  opacity: 0.72;
}

.footer-logotype__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #ffffff;
  line-height: 0.92;
  text-transform: uppercase;
}

.footer-logotype__sub {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-left: 3px;
}

.footer-tagline {
  line-height: 1.68;
  color: var(--site-muted);
  max-width: 21rem;
  margin-bottom: 1.6rem;
}

/* Social icons */

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--site-line);
  color: rgb(253, 245, 234);
  text-decoration: none;
  flex-shrink: 0;
  transition:
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--site-accent-light);
  border-color: rgba(221, 172, 138, 0.5);
  transform: scale(1.12);
}

/* ── Navigation columns ── */

.footer-col-label {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-accent-light);
  margin-bottom: 1.2rem;
  margin-top: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Nav link with animated underline draw */

.footer-nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.12rem;
  line-height: 1.4;
  color: var(--site-muted);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

.footer-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--site-accent-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-normal) var(--ease-out);
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
  color: var(--site-ink);
}

.footer-nav-link:hover::after,
.footer-nav-link:focus-visible::after {
  transform: scaleX(1);
}

/* ── Contact / visit column ── */

.footer-addr {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--site-muted);
  margin-bottom: 1.5rem;
}

/* CTA pill — lift + glow on hover */

.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(243, 234, 223, 0.18);
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 234, 223, 0.6);
  text-decoration: none;
  transition:
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-normal) var(--ease-out);
}

.footer-pill:hover,
.footer-pill:focus-visible {
  color: var(--site-ink);
  border-color: rgba(221, 172, 138, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197, 164, 142, 0.1);
}

/* ── Divider line: animated draw ── */

.footer-rule-wrap {
  position: relative;
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer-rule {
  height: 1px;
  background: var(--site-line);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease-out);
}

.footer-rule.is-drawn {
  transform: scaleX(1);
}

/* ── Bottom bar ── */

.footer-bottom {
  position: relative;
  max-width: 88rem;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem 1.5rem;
}

.footer-copy {
  color: rgba(243, 234, 223, 0.32);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(243, 234, 223, 0.32);
}

.footer-legal-link {
  color: rgba(243, 234, 223, 0.32);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--site-muted);
}

/* Design credit — refined, clearly readable, hover draw effect */

.footer-credit {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(243, 234, 223, 0.44);
  letter-spacing: 0.02em;
}

.footer-credit-link {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
  color: rgba(243, 234, 223, 0.7);
  text-decoration: none;
  transition: color var(--motion-normal) var(--ease-out);
}

.footer-credit-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--site-accent-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-normal) var(--ease-out);
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: var(--site-ink);
}

.footer-credit-link:hover::after,
.footer-credit-link:focus-visible::after {
  transform: scaleX(1);
}

/* ── Bottom bar: mobile stack ── */

@media (max-width: 639px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ── Focus states for accessibility ── */

.footer-social:focus-visible,
.footer-logotype:focus-visible,
.footer-pill:focus-visible,
.footer-nav-link:focus-visible,
.footer-legal-link:focus-visible,
.footer-credit-link:focus-visible {
  outline: 2px solid var(--site-accent-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── prefers-reduced-motion ── */

@media (prefers-reduced-motion: reduce) {
  .prefooter-label,
  .prefooter-hl-plain,
  .prefooter-hl-accent,
  .prefooter-sub,
  .prefooter-actions,
  .footer-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .prefooter-line,
  .footer-rule {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

:root {
  --treat-surface: rgba(22, 18, 16, 0.82);
  --treat-surface-strong: rgba(28, 23, 20, 0.9);
  --treat-border: rgba(243, 234, 223, 0.14);
  --treat-shadow: 0 24px 75px rgba(0, 0, 0, 0.32);
}

.treatments-shell {
  position: relative;
}

.treatments-main {
  position: relative;
  overflow: clip;
}

.section-edge {
  position: relative;
  padding: clamp(4.6rem, 8vw, 7.4rem) 0;
}

.section-edge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 100%);
  opacity: 0.6;
}

.treatments-hero {
  min-height: 100svh;
  padding-top: 6rem;
  display: flex;
  align-items: flex-end;
}

.treatments-hero__media,
.treatments-hero__veil {
  position: absolute;
  inset: 0;
}

.treatments-hero__media {
  overflow: hidden;
}

.treatments-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
}

.treatments-hero__veil {
  background:
        radial-gradient(circle at 16% 17%, rgba(221, 172, 138, 0.2) 0%, transparent 34%),
        radial-gradient(circle at 80% 18%, rgba(90, 60, 43, 0.24) 0%, transparent 38%),
        linear-gradient(112deg, rgba(9, 7, 6, 0.47) 7%, rgba(9, 7, 6, 0.36) 46%, rgba(9, 7, 6, 0.45) 100%);
}

.treatments-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.treatments-hero__title {
  margin: 0;
}

.treatments-hero__title span {
  display: block;
  color: var(--site-accent-light);
  font-style: italic;
}

.treatments-hero__intro {
  max-width: 30rem;
  margin-top: 1.1rem;
  color: rgba(243, 234, 223, 0.74);
}

.treatments-hero__actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.treatments-heading {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.treatment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  border: 1px solid var(--treat-border);
  background: var(--treat-surface);
  box-shadow: var(--treat-shadow);
  overflow: hidden;
  transition:
        transform var(--motion-normal) var(--ease-out),
        border-color var(--motion-normal) var(--ease-out),
        box-shadow var(--motion-normal) var(--ease-out);
}

.treatment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 45%);
  opacity: 0.7;
}

.treatment-card:hover,
.treatment-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(221, 172, 138, 0.35);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.4);
}

.treatment-card__media {
  overflow: hidden;
}

.treatment-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s var(--ease-out), filter 1s var(--ease-out);
}

.treatment-card:hover .treatment-card__media img,
.treatment-card:focus-within .treatment-card__media img {
  transform: scale(1.08);
  filter: saturate(1.06);
}

.treatment-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.2rem, 2.3vw, 1.8rem);
  display: grid;
  gap: 0.85rem;
}

.treatment-card__kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-accent-light);
}

.treatment-card h3,
.treatment-card h4 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 0.95;
}

.treatment-card__text {
  margin: 0;
  color: rgba(243, 234, 223, 0.84);
  line-height: 1.58;
  font-size: 0.95rem;
}

.treatment-card__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.treatment-card__meta div {
  min-width: 8.2rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(12, 9, 8, 0.5);
  border: 1px solid rgba(243, 234, 223, 0.12);
}

.treatment-card__meta dt {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 223, 0.6);
}

.treatment-card__meta dd {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  color: var(--site-ink);
}

.treatment-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.12rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--site-accent-light);
  text-decoration: none;
}

.treatment-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-normal) var(--ease-out);
}

.treatment-link:hover::after,
.treatment-link:focus-visible::after {
  transform: scaleX(1);
}

.treatment-card--feature {
  grid-column: span 7;
  min-height: 31rem;
}

.treatment-card--feature .treatment-card__media {
  height: 17.2rem;
}

.treatment-card--compact {
  grid-column: span 5;
}

.treatment-card--compact .treatment-card__media {
  height: 13.2rem;
}

.treatment-card--wide {
  grid-column: span 8;
}

.treatment-card--wide .treatment-card__media {
  height: 12.6rem;
}

.treatment-card--note {
  grid-column: span 4;
  justify-content: center;
  background:
        radial-gradient(circle at 6% 10%, rgba(221, 172, 138, 0.2), transparent 42%),
        var(--treat-surface-strong);
}

.featured-treatment {
  padding-top: clamp(3rem, 6.5vw, 5.5rem);
}

.featured-treatment__shell {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--treat-border);
}

.featured-treatment__media {
  min-height: 26rem;
  overflow: hidden;
}

.featured-treatment__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.featured-treatment__shell:hover .featured-treatment__media img,
.featured-treatment__shell:focus-within .featured-treatment__media img {
  transform: scale(1.07);
}

.featured-treatment__copy {
  padding: clamp(2rem, 4.2vw, 3.2rem);
  background: linear-gradient(165deg, rgba(24, 19, 17, 0.92) 0%, rgba(16, 13, 11, 0.9) 100%);
  display: grid;
  align-content: center;
  gap: 1rem;
}

.featured-treatment__copy h2 {
  margin: 0;
}

.featured-treatment__copy p {
  margin: 0;
  color: rgba(243, 234, 223, 0.84);
}

.treatment-details {
  padding-top: clamp(4.2rem, 7.4vw, 6.2rem);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.details-block {
  grid-column: span 4;
  border-radius: 1.2rem;
  padding: 1.4rem 1.35rem 1.45rem;
  border: 1px solid var(--treat-border);
  background: var(--treat-surface);
}

.details-block h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.details-block p {
  margin: 0.85rem 0 0;
  color: rgba(243, 234, 223, 0.82);
  line-height: 1.58;
}

.details-block ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(243, 234, 223, 0.88);
  display: grid;
  gap: 0.3rem;
}

.details-note {
  grid-column: span 12;
  margin-top: 0.35rem;
  border: 1px solid rgba(221, 172, 138, 0.25);
  border-radius: 1rem;
  padding: 1.3rem 1.35rem;
  background: linear-gradient(110deg, rgba(90, 60, 43, 0.2), rgba(20, 16, 14, 0.65));
}

.details-note h3 {
  margin: 0;
  font-size: 1.45rem;
}

.details-note p {
  margin: 0.5rem 0 0;
  color: rgba(243, 234, 223, 0.88);
  line-height: 1.58;
  max-width: 62rem;
}

.trust-shell {
  border-radius: 1.45rem;
  border: 1px solid var(--treat-border);
  background:
        radial-gradient(circle at 8% 6%, rgba(221, 172, 138, 0.17), transparent 34%),
        linear-gradient(170deg, rgba(22, 18, 16, 0.88), rgba(11, 9, 8, 0.88));
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.trust-intro {
  max-width: 44rem;
}

.trust-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-card {
  grid-column: span 6;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(243, 234, 223, 0.12);
  background: rgba(9, 7, 6, 0.42);
}

.trust-card span {
  color: var(--site-accent-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.trust-card h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.38rem, 2.4vw, 1.75rem);
  line-height: 1;
}

.trust-card p {
  margin: 0.65rem 0 0;
  color: rgba(243, 234, 223, 0.8);
  line-height: 1.58;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid rgba(243, 234, 223, 0.12);
  border-radius: 1rem;
  background: rgba(18, 14, 12, 0.72);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  color: var(--site-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-trigger:focus-visible,
.treatment-link:focus-visible,
.site-button:focus-visible {
  outline: 2px solid rgba(221, 172, 138, 0.7);
  outline-offset: 2px;
}

.faq-icon {
  position: relative;
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  opacity: 1;
  background: currentColor;
  transition: opacity var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}

.faq-panel {
  overflow: hidden;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p, .faq-panel ul {
  margin: 0.15rem;
  color: rgba(243, 234, 223, 0.82);
  margin: 1.1rem 1.2rem;
}

.treatments-reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
        opacity 0.72s var(--ease-out),
        transform 0.72s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.treatments-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1023px) {
  .treatment-card--feature,
    .treatment-card--compact,
    .treatment-card--wide,
    .treatment-card--note {
    grid-column: span 6;
  }

  .featured-treatment__shell {
    grid-template-columns: 1fr;
  }

  .featured-treatment__media {
    min-height: 19rem;
  }

  .details-block {
    grid-column: span 6;
  }

  .trust-card {
    grid-column: span 12;
  }
}

@media (max-width: 767px) {
  .section-edge {
    padding: clamp(3.5rem, 11vw, 5.2rem) 0;
  }

  .treatments-hero {
    min-height: 100svh;
    padding-top: 6.3rem;
  }

  .treatments-grid,
    .details-grid,
    .trust-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card--feature,
    .treatment-card--compact,
    .treatment-card--wide,
    .treatment-card--note,
    .details-block,
    .details-note,
    .trust-card {
    grid-column: span 1;
  }

  .treatment-card--feature .treatment-card__media,
    .treatment-card--compact .treatment-card__media,
    .treatment-card--wide .treatment-card__media {
    height: 13rem;
  }

  .faq-trigger {
    padding: 1rem;
  }

  .faq-panel p, .faq-panel ul {
    margin: 0.5rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatments-reveal,
    .treatment-card,
    .treatment-card__media img,
    .featured-treatment__media img,
    .faq-icon::before,
    .faq-icon::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .treatments-reveal {
    opacity: 1;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: "Montserrat", sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.-left-28 {
  left: -7rem;
}

.-right-24 {
  right: -6rem;
}

.-top-8 {
  top: -2rem;
}

.bottom-3 {
  bottom: 0.75rem;
}

.bottom-5 {
  bottom: 1.25rem;
}

.bottom-\[-5rem\] {
  bottom: -5rem;
}

.left-1\/2 {
  left: 50%;
}

.right-5 {
  right: 1.25rem;
}

.top-0 {
  top: 0px;
}

.top-5 {
  top: 1.25rem;
}

.top-\[-6rem\] {
  top: -6rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-\[2147483550\] {
  z-index: 2147483550;
}

.z-\[35\] {
  z-index: 35;
}

.z-\[9999\] {
  z-index: 9999;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.\!mb-2 {
  margin-bottom: 0.5rem !important;
}

.\!mt-0 {
  margin-top: 0px !important;
}

.-mt-\[39px\] {
  margin-top: -39px;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.me-5 {
  margin-inline-end: 1.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.block {
  display: block;
}

.\!inline {
  display: inline !important;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-\[4\/5\] {
  aspect-ratio: 4/5;
}

.\!h-px {
  height: 1px !important;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-24 {
  height: 6rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-56 {
  height: 14rem;
}

.h-6 {
  height: 1.5rem;
}

.h-64 {
  height: 16rem;
}

.h-72 {
  height: 18rem;
}

.h-\[0\.95em\] {
  height: 0.95em;
}

.h-\[1376px\] {
  height: 1376px;
}

.h-\[clamp\(19rem\2c 65svh\2c 34rem\)\] {
  height: clamp(19rem, 65svh, 34rem);
}

.h-full {
  height: 100%;
}

.max-h-\[85svh\] {
  max-height: 85svh;
}

.\!min-h-0 {
  min-height: 0px !important;
}

.\!min-h-\[21rem\] {
  min-height: 21rem !important;
}

.min-h-0 {
  min-height: 0px;
}

.min-h-\[100svh\] {
  min-height: 100svh;
}

.min-h-\[18rem\] {
  min-height: 18rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-64 {
  width: 16rem;
}

.w-72 {
  width: 18rem;
}

.w-\[0\.95em\] {
  width: 0.95em;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-\[72rem\] {
  max-width: 72rem;
}

.max-w-\[88rem\] {
  max-width: 88rem;
}

.max-w-\[90\%\] {
  max-width: 90%;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.grow {
  flex-grow: 1;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[22px\] {
  --tw-translate-x: 22px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-\[0\.989\] {
  --tw-scale-x: 0.989;
  --tw-scale-y: 0.989;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize {
  resize: both;
}

.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

.auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-\[5px\] {
  gap: 5px;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.self-start {
  align-self: flex-start;
}

.\!overflow-hidden {
  overflow: hidden !important;
}

.overflow-hidden {
  overflow: hidden;
}

.\!rounded-\[1\.35rem\] {
  border-radius: 1.35rem !important;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-\[1\.2rem\] {
  border-radius: 1.2rem;
}

.rounded-\[2px\] {
  border-radius: 2px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-\[10px\] {
  border-width: 10px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l-\[4px\] {
  border-left-width: 4px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-\[1px\] {
  border-top-width: 1px;
}

.border-\[\#120f0d\] {
  --tw-border-opacity: 1;
  border-color: rgb(18 15 13 / var(--tw-border-opacity, 1));
}

.border-\[color\:rgba\(202\2c 161\2c 124\2c 0\.34\)\] {
  border-color: rgba(202,161,124,0.34);
}

.border-\[color\:var\(--site-line\)\] {
  border-color: var(--site-line);
}

.border-\[rgba\(243\2c 234\2c 223\2c 0\.12\)\] {
  border-color: rgba(243,234,223,0.12);
}

.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}

.border-l-\[rgba\(109\2c 93\2c 83\2c 1\)\] {
  border-left-color: rgba(109,93,83,1);
}

.border-l-\[rgba\(117\2c 102\2c 62\2c 1\)\] {
  border-left-color: rgba(117,102,62,1);
}

.border-l-\[rgba\(135\2c 103\2c 81\2c 1\)\] {
  border-left-color: rgba(135,103,81,1);
}

.border-l-\[rgba\(221\2c 172\2c 138\2c 0\.9\)\] {
  border-left-color: rgba(221,172,138,0.9);
}

.bg-\[\#120f0d\] {
  --tw-bg-opacity: 1;
  background-color: rgb(18 15 13 / var(--tw-bg-opacity, 1));
}

.bg-\[\#141210\] {
  --tw-bg-opacity: 1;
  background-color: rgb(20 18 16 / var(--tw-bg-opacity, 1));
}

.bg-amber-200\/10 {
  background-color: rgb(253 230 138 / 0.1);
}

.bg-amber-400\/20 {
  background-color: rgb(251 191 36 / 0.2);
}

.bg-amber-600\/20 {
  background-color: rgb(217 119 6 / 0.2);
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}

.bg-black\/25 {
  background-color: rgb(0 0 0 / 0.25);
}

.bg-black\/35 {
  background-color: rgb(0 0 0 / 0.35);
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-\[linear-gradient\(0deg\2c rgba\(0\2c 0\2c 0\2c 1\)_0\%\2c rgba\(0\2c 0\2c 0\2c 0\.5\)_50\%\2c rgba\(0\2c 0\2c 0\2c 0\)_100\%\)\] {
  background-image: linear-gradient(0deg,rgba(0,0,0,1) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0) 100%);
}

.bg-\[linear-gradient\(110deg\2c rgba\(15\2c 10\2c 10\2c 0\.45\)_0\%\2c rgba\(15\2c 10\2c 10\2c 0\.45\)_42\%\2c rgba\(15\2c 10\2c 10\2c 0\.45\)_72\%\2c rgba\(15\2c 10\2c 10\2c 0\.8\)_100\%\)\] {
  background-image: linear-gradient(110deg,rgba(15,10,10,0.45) 0%,rgba(15,10,10,0.45) 42%,rgba(15,10,10,0.45) 72%,rgba(15,10,10,0.8) 100%);
}

.bg-\[linear-gradient\(135deg\2c \#000000_0\%\2c \#080808_42\%\2c \#1b150d_100\%\)\] {
  background-image: linear-gradient(135deg,#000000 0%,#080808 42%,#1b150d 100%);
}

.bg-\[radial-gradient\(circle_at_78\%_18\%\2c rgba\(241\2c 203\2c 171\2c 0\.28\)_0\%\2c transparent_42\%\)\2c linear-gradient\(0deg\2c rgba\(18\2c 12\2c 9\2c 0\.95\)_0\%\2c rgba\(18\2c 12\2c 9\2c 0\.65\)_42\%\2c rgba\(18\2c 12\2c 9\2c 0\.35\)_72\%\2c rgba\(18\2c 12\2c 9\2c 0\.72\)_100\%\)\] {
  background-image: radial-gradient(circle at 78% 18%,rgba(241,203,171,0.28) 0%,transparent 42%),linear-gradient(0deg,rgba(18,12,9,0.95) 0%,rgba(18,12,9,0.65) 42%,rgba(18,12,9,0.35) 72%,rgba(18,12,9,0.72) 100%);
}

.bg-\[radial-gradient\(circle_at_top_left\2c _\#ffffff_0\%\2c _\#d9d9d9_100\%\)\] {
  background-image: radial-gradient(circle at top left, #ffffff 0%, #d9d9d9 100%);
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.\!p-0 {
  padding: 0px !important;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.\!py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-\[4px\] {
  padding-top: 4px;
  padding-bottom: 4px;
}

.\!pb-0 {
  padding-bottom: 0px !important;
}

.\!pb-6 {
  padding-bottom: 1.5rem !important;
}

.\!pt-20 {
  padding-top: 5rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-\[4rem\] {
  padding-bottom: 4rem;
}

.pb-\[5rem\] {
  padding-bottom: 5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.align-top {
  vertical-align: top;
}

.font-\[\'Cormorant_Garamond\'\] {
  font-family: 'Cormorant Garamond';
}

.\!text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.\!text-\[1\.2rem\] {
  font-size: 1.2rem !important;
}

.\!text-\[1\.6rem\] {
  font-size: 1.6rem !important;
}

.\!text-\[clamp\(1\.95rem\2c 4\.8vw\2c 3\.2rem\)\] {
  font-size: clamp(1.95rem, 4.8vw, 3.2rem) !important;
}

.\!text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[0\.55rem\] {
  font-size: 0.55rem;
}

.text-\[0\.62rem\] {
  font-size: 0.62rem;
}

.text-\[0\.63rem\] {
  font-size: 0.63rem;
}

.text-\[0\.65rem\] {
  font-size: 0.65rem;
}

.text-\[0\.68rem\] {
  font-size: 0.68rem;
}

.text-\[0\.72rem\] {
  font-size: 0.72rem;
}

.text-\[0\.7rem\] {
  font-size: 0.7rem;
}

.text-\[0\.82rem\] {
  font-size: 0.82rem;
}

.text-\[0\.98rem\] {
  font-size: 0.98rem;
}

.text-\[1\.02rem\] {
  font-size: 1.02rem;
}

.text-\[clamp\(1\.75rem\2c 3vw\2c 2\.2rem\)\] {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.text-\[clamp\(1\.8rem\2c 3\.4vw\2c 2\.45rem\)\] {
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
}

.text-\[clamp\(1\.9rem\2c 3\.8vw\2c 2\.7rem\)\] {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
}

.text-\[clamp\(2rem\2c 4vw\2c 3rem\)\] {
  font-size: clamp(2rem, 4vw, 3rem);
}

.text-\[clamp\(2rem\2c 6\.2vw\2c 5\.2rem\)\] {
  font-size: clamp(2rem, 6.2vw, 5.2rem);
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.\!leading-\[0\.96\] {
  line-height: 0.96 !important;
}

.\!leading-\[1\.02\] {
  line-height: 1.02 !important;
}

.\!leading-\[1\.62\] {
  line-height: 1.62 !important;
}

.\!leading-none {
  line-height: 1 !important;
}

.\!leading-relaxed {
  line-height: 1.625 !important;
}

.\!leading-tight {
  line-height: 1.25 !important;
}

.leading-\[0\.88\] {
  line-height: 0.88;
}

.leading-\[0\.92\] {
  line-height: 0.92;
}

.leading-\[0\.94\] {
  line-height: 0.94;
}

.leading-\[0\.95\] {
  line-height: 0.95;
}

.leading-\[0\.96\] {
  line-height: 0.96;
}

.leading-\[0\.98\] {
  line-height: 0.98;
}

.leading-\[1\.02\] {
  line-height: 1.02;
}

.leading-\[1\.15\] {
  line-height: 1.15;
}

.leading-\[1\.62\] {
  line-height: 1.62;
}

.leading-\[1\.65\] {
  line-height: 1.65;
}

.leading-\[1\.68\] {
  line-height: 1.68;
}

.leading-\[1\.6\] {
  line-height: 1.6;
}

.leading-none {
  line-height: 1;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-\[-0\.035em\] {
  letter-spacing: -0.035em;
}

.tracking-\[-0\.03em\] {
  letter-spacing: -0.03em;
}

.tracking-\[0\.14em\] {
  letter-spacing: 0.14em;
}

.tracking-\[0\.17em\] {
  letter-spacing: 0.17em;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

.tracking-\[0\.22em\] {
  letter-spacing: 0.22em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.34em\] {
  letter-spacing: 0.34em;
}

.text-\[\#141210\] {
  --tw-text-opacity: 1;
  color: rgb(20 18 16 / var(--tw-text-opacity, 1));
}

.text-\[\#e8dcc2\]\/85 {
  color: rgb(232 220 194 / 0.85);
}

.text-\[\#ead8c8\]\/75 {
  color: rgb(234 216 200 / 0.75);
}

.text-\[\#ead8c8\]\/85 {
  color: rgb(234 216 200 / 0.85);
}

.text-\[\#ede3da\]\/80 {
  color: rgb(237 227 218 / 0.8);
}

.text-\[\#f1e4d8\]\/90 {
  color: rgb(241 228 216 / 0.9);
}

.text-\[\#ff1d1d\] {
  --tw-text-opacity: 1;
  color: rgb(255 29 29 / var(--tw-text-opacity, 1));
}

.text-\[\#fff8f1\] {
  --tw-text-opacity: 1;
  color: rgb(255 248 241 / var(--tw-text-opacity, 1));
}

.text-\[--site-line\] {
  color: var(--site-line);
}

.text-\[color\:var\(--site-accent-light\)\] {
  color: var(--site-accent-light);
}

.text-\[color\:var\(--site-ink\)\] {
  color: var(--site-ink);
}

.text-\[var\(--site-accent-light\)\] {
  color: var(--site-accent-light);
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/55 {
  color: rgb(255 255 255 / 0.55);
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.text-white\/75 {
  color: rgb(255 255 255 / 0.75);
}

.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}

.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_24px_60px_-32px_rgba\(0\2c 0\2c 0\2c 0\.65\)\] {
  --tw-shadow: 0 24px 60px -32px rgba(0,0,0,0.65);
  --tw-shadow-colored: 0 24px 60px -32px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-2xl {
  --tw-blur: blur(40px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.\[-ms-overflow-style\:none\] {
  -ms-overflow-style: none;
}

.\[scrollbar-width\:none\] {
  scrollbar-width: none;
}

:root {
  --accent: #c5a48e;
}

/* Accent colour utility classes */

.text-accent {
  color: var(--accent);
}

/* Primary button: white background with dark text. */

.btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent);
  color: #000;
}

/* Secondary button: accent colour background. */

.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--accent);
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000;
  border: 1px solid var(--accent);
}

/* Simple override for radio inputs on dark background */

input[type="radio"] {
  accent-color: var(--accent);
}

.hover\:scale-\[1\.04\]:hover {
  --tw-scale-x: 1.04;
  --tw-scale-y: 1.04;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.group:hover .group-hover\:translate-x-\[4px\] {
  --tw-translate-x: 4px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (prefers-reduced-motion: reduce) {
  .motion-reduce\:transition-none {
    transition-property: none;
  }
}

@media (min-width: 640px) {
  .sm\:bottom-6 {
    bottom: 1.5rem;
  }

  .sm\:right-6 {
    right: 1.5rem;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-60 {
    height: 15rem;
  }

  .sm\:h-\[1244px\] {
    height: 1244px;
  }

  .sm\:w-max {
    width: -moz-max-content;
    width: max-content;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:pb-\[6rem\] {
    padding-bottom: 6rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media (min-width: 768px) {
  .md\:right-6 {
    right: 1.5rem;
  }

  .md\:top-6 {
    top: 1.5rem;
  }

  .md\:top-7 {
    top: 1.75rem;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[1300px\] {
    height: 1300px;
  }

  .md\:scroll-mt-28 {
    scroll-margin-top: 7rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:\!pt-24 {
    padding-top: 6rem !important;
  }

  .md\:pt-6 {
    padding-top: 1.5rem;
  }

  .md\:\!text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .md\:\!text-\[0\.92rem\] {
    font-size: 0.92rem !important;
  }

  .md\:\!text-\[2rem\] {
    font-size: 2rem !important;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-\[0\.58rem\] {
    font-size: 0.58rem;
  }

  .md\:text-\[0\.76rem\] {
    font-size: 0.76rem;
  }

  .md\:text-\[0\.82rem\] {
    font-size: 0.82rem;
  }

  .md\:text-\[0\.92rem\] {
    font-size: 0.92rem;
  }

  .md\:text-\[1\.78rem\] {
    font-size: 1.78rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:aspect-\[3\/4\] {
    aspect-ratio: 3/4;
  }

  .lg\:h-\[1244px\] {
    height: 1244px;
  }

  .lg\:max-h-\[44rem\] {
    max-height: 44rem;
  }

  .lg\:max-w-3xl {
    max-width: 48rem;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[0\.95fr_1\.05fr\] {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-7 {
    padding: 1.75rem;
  }

  .lg\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-\[2\.5rem\] {
    font-size: 2.5rem;
  }

  .lg\:text-\[2\.6rem\] {
    font-size: 2.6rem;
  }

  .lg\:text-\[2\.8rem\] {
    font-size: 2.8rem;
  }

  .lg\:text-\[4rem\] {
    font-size: 4rem;
  }
}

@media (min-width: 1280px) {
  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:\!text-\[2rem\] {
    font-size: 2rem !important;
  }

  .xl\:text-\[1\.08rem\] {
    font-size: 1.08rem;
  }

  .xl\:text-\[1\.2rem\] {
    font-size: 1.2rem;
  }

  .xl\:text-\[1\.35rem\] {
    font-size: 1.35rem;
  }

  .xl\:text-\[3\.35rem\] {
    font-size: 3.35rem;
  }

  .xl\:text-\[4\.2rem\] {
    font-size: 4.2rem;
  }

  .xl\:text-\[4\.4rem\] {
    font-size: 4.4rem;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
  display: none;
}
