/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --c-black: #0a0a0a;
  --c-charcoal: #1a1a1a;
  --c-dark: #2a2a2a;
  --c-mid: #6b6b6b;
  --c-muted: #999;
  --c-light: #d4d0cb;
  --c-cream: #f5f0eb;
  --c-warm-white: #faf8f5;
  --c-white: #ffffff;
  --c-gold: #c9a96e;
  --c-gold-light: #ddc499;
  --c-gold-dark: #a6894f;

  --ff-display: 'Instrument Serif', Georgia, serif;
  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Darker Grotesque', 'Helvetica Neue', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--c-charcoal);
  background: var(--c-warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--c-gold);
  color: var(--c-white);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
@media (hover: hover) {
  body {
    cursor: default;
  }

  a,
  button,
  [data-cursor="pointer"] {
    cursor: pointer;
  }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__text {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--c-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFade 1.5s var(--ease-out-expo) forwards;
}

@keyframes preloaderFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.5em;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.2em;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(201, 169, 110, 0.15);
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  transition: color 0.5s;
  position: relative;
  display: inline-block;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.nav__logo:hover::after {
  transform: scaleX(1);
}

.nav.scrolled .nav__logo {
  color: var(--c-charcoal);
}

.nav__logo span {
  font-style: italic;
  color: var(--c-gold);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  position: relative;
  transition: color 0.5s;
}

.nav.scrolled .nav__link {
  color: var(--c-charcoal);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 0.6em 1.8em;
  transition: all 0.4s var(--ease-out-expo);
}

.nav__cta:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

.nav.scrolled .nav__cta {
  color: var(--c-gold);
}

.nav.scrolled .nav__cta:hover {
  color: var(--c-white);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--c-white);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.nav.scrolled .nav__toggle span {
  background: var(--c-charcoal);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION — CINEMATIC VIDEO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  /* Use dynamic viewport height if supported to fix mobile address bar cutoff */
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-black);
}

/* Video.js player as full-bleed background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap .video-js {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  background: var(--c-black);
}

.hero__video-wrap .video-js video,
.hero__video-wrap .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Shift the focal point up slightly so heads aren't chopped off on wide desktop screens */
  object-position: center 30%;
}

/* Hide ALL Video.js default UI chrome */
.hero__video-wrap .vjs-control-bar,
.hero__video-wrap .vjs-big-play-button,
.hero__video-wrap .vjs-loading-spinner,
.hero__video-wrap .vjs-text-track-display,
.hero__video-wrap .vjs-modal-dialog,
.hero__video-wrap .vjs-poster {
  display: none !important;
}

/* Cinematic gradient overlay on top of video */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.15) 30%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.1) 50%),
    /* Weaker bottom gradient to make subtitles readable */
    linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.25) 30%, transparent 60%);
}

/* Subtle vignette for extra cinematic depth */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(10, 10, 10, 0.4) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  z-index: 2;
}

.hero__geometric {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  transform: rotate(45deg);
  animation: geometricFloat 20s ease-in-out infinite;
  z-index: 3;
}

.hero__geometric::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201, 169, 110, 0.08);
}

@keyframes geometricFloat {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(15px, -15px);
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 0 clamp(1.5rem, 6vw, 8rem);
  padding-bottom: clamp(4rem, 10vh, 8rem);
  margin-bottom: 80px;
  max-width: 900px;
}

.hero__label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: slideUp 1s var(--ease-out-expo) 1.2s forwards;
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--c-white);
  margin-bottom: 2rem;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
}

.hero__title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealLine 1.2s var(--ease-out-expo) forwards;
}

.hero__title .line:nth-child(1) .line-inner {
  animation-delay: 1.4s;
}

.hero__title .line:nth-child(2) .line-inner {
  animation-delay: 1.55s;
}

.hero__title .line:nth-child(3) .line-inner {
  animation-delay: 1.7s;
}

.hero__title em {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold);
}

.hero__subtitle {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--c-light);
  max-width: 500px;
  line-height: 1.7;
  opacity: 0;
  animation: slideUp 1s var(--ease-out-expo) 2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--c-gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: slideUp 1s var(--ease-out-expo) 2.4s forwards;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ============================================
   HERO SOUND TOGGLE BUTTON
   ============================================ */
.hero__sound {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 3rem);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 1.6rem 0.8rem;
  border-radius: 50px;
  writing-mode: vertical-rl;
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  animation: slideLeft 1s var(--ease-out-expo) 2.6s forwards;
  cursor: pointer;
}

.hero__sound:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: rgba(201, 169, 110, 0.5);
  color: var(--c-gold);
  transform: translateX(-2px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(201, 169, 110, 0.1);
}

.hero__sound.is-active {
  background: rgba(201, 169, 110, 0.85);
  border-color: var(--c-gold);
  color: var(--c-charcoal);
}

.hero__sound.is-active:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

.hero__sound-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__sound-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  transform: rotate(90deg);
}

.hero__sound-text {
  position: relative;
  top: 1px;
}

@keyframes revealLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 6vw, 8rem);
}

.section__label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-charcoal);
  margin-bottom: 2rem;
}

.section__title em {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================
   ABOUT SECTION (PORTRAIT)
   ============================================ */
.about {
  background: var(--c-warm-white);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.2));
  z-index: 1;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
}

.about__image-wrap:hover .about__image {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}

.about__image-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 70%;
  border: 1px solid var(--c-gold);
  opacity: 0.3;
  z-index: -1;
}

.about__number {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--c-gold);
  opacity: 0.25;
  line-height: 1;
}

.about__content {
  max-width: 520px;
}

.about__text {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--c-mid);
  margin-bottom: 1.5rem;
}

.about__text:first-of-type {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  color: var(--c-charcoal);
  font-weight: 500;
}

.about__stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.about__stat {
  text-align: left;
}

.about__stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about__stat-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ============================================
   CREDENTIALS STRIP
   ============================================ */
.credentials {
  background: var(--c-cream);
  padding: clamp(3rem, 5vh, 4.5rem) clamp(1.5rem, 6vw, 8rem);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.credential__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
}

.credential__text {
  font-family: var(--ff-heading);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 500;
  color: var(--c-charcoal);
  line-height: 1.5;
}

.credential__text small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 0.25rem;
}

/* ============================================
   PHILOSOPHY STRIP
   ============================================ */
.philosophy {
  background: var(--c-black);
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 6vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.philosophy__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--c-white);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.35;
  position: relative;
}

.philosophy__quote em {
  font-family: var(--ff-heading);
  font-style: italic;
  color: var(--c-gold);
}

.philosophy__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.6em;
  left: -0.15em;
  font-family: var(--ff-display);
  font-size: 6em;
  color: var(--c-gold);
  opacity: 0.1;
  line-height: 1;
}

.philosophy__attribution {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--c-warm-white);
  position: relative;
}

.services__header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.services__desc {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-mid);
  line-height: 1.8;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.15);
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--c-warm-white);
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--c-charcoal);
  transition: height 0.6s var(--ease-out-expo);
  z-index: 0;
}

.service-card:hover::before {
  height: 100%;
}

.service-card__number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--c-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s;
}

.service-card:hover .service-card__number {
  opacity: 0.45;
}

.service-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--c-charcoal);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.service-card:hover .service-card__title {
  color: var(--c-white);
}

.service-card__text {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--c-mid);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.service-card:hover .service-card__text {
  color: var(--c-light);
}

.service-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.4s;
}

.service-card:hover .service-card__icon svg {
  stroke: var(--c-gold-light);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  background: var(--c-warm-white);
  position: relative;
}

.process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(3rem, 6vh, 5rem);
}

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

.process__header .section__label::before {
  display: none;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--c-gold);
  opacity: 0.3;
}

.process__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process__step-number {
  width: 56px;
  height: 56px;
  border: 2px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--c-gold);
  background: var(--c-warm-white);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
}

.process__step:hover .process__step-number {
  background: var(--c-gold);
  color: var(--c-white);
}

.process__step-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  color: var(--c-charcoal);
  margin-bottom: 0.75rem;
}

.process__step-text {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  color: var(--c-mid);
  line-height: 1.7;
}

/* ============================================
   BOOKING CTA STRIP
   ============================================ */
.booking-cta {
  background: linear-gradient(135deg, var(--c-gold-dark) 0%, var(--c-gold) 50%, var(--c-gold-light) 100%);
  padding: clamp(3.5rem, 6vh, 5rem) clamp(1.5rem, 6vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.booking-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  position: relative;
}

.booking-cta__title em {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
}

.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: var(--c-white);
  padding: 1.2em 3em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.booking-cta__btn:hover {
  background: var(--c-charcoal);
  color: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.booking-cta__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: clamp(2rem, 4vh, 3.5rem) 0;
  background: var(--c-cream);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--c-charcoal);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
  opacity: 0.7;
}

.marquee__item em {
  font-family: var(--ff-heading);
  font-style: italic;
  color: var(--c-gold);
  opacity: 0.9;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   PRESS / MEDIA SECTION — MASTHEAD STYLE
   ============================================ */
.press {
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
}

.press .section__title {
  color: var(--c-white);
}

.press__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.press__logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  justify-content: center;
  margin-top: clamp(3rem, 5vh, 5rem);
}

.press__logo {
  white-space: nowrap;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0.65;
  border: none;
  padding: 0;
}

.press__logo:hover {
  opacity: 1;
}

.press__logo--serif {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.press__logo--sans {
  font-family: var(--ff-body);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-white);
}

.press__logo--large {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-white);
}

.press__logo--condensed {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--c-warm-white);
  position: relative;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 1200px;
  margin: clamp(3rem, 5vh, 5rem) auto 0;
}

.testimonial-card {
  background: var(--c-white);
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--c-gold);
  opacity: 0.1;
  position: absolute;
  top: 0.3rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--c-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-gold);
  flex-shrink: 0;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
}

.testimonial-card__text {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-dark);
  line-height: 1.85;
  margin-bottom: 0;
}

.testimonial-card__author {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-charcoal);
}

.testimonial-card__role {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
}

/* ============================================
   GOOGLE REVIEWS BADGE
   ============================================ */
.google-reviews-banner {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 5vh, 4rem);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--c-white);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 1rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.google-badge:hover {
  background: var(--c-light);
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(201, 169, 110, 0.15);
}

.google-badge__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-charcoal);
  transition: color 0.4s ease;
}

.google-badge:hover .google-badge__icon {
  color: var(--c-gold);
}

.google-badge__icon svg {
  width: 100%;
  height: 100%;
}

.google-badge__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.google-badge__stars {
  display: flex;
  gap: 0.2rem;
}

.google-badge__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--c-gold);
}

.google-badge__text {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}

.google-badge__text strong {
  color: var(--c-charcoal);
  font-weight: 700;
}

.google-badge__arrow {
  width: 20px;
  height: 20px;
  color: var(--c-gold);
  transition: transform 0.4s var(--ease-out-expo);
  margin-left: 0.5rem;
}

.google-badge:hover .google-badge__arrow {
  transform: translateX(5px);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  background: var(--c-cream);
  position: relative;
}

.faq__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(3rem, 5vh, 4rem);
}

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

.faq__header .section__label::before {
  display: none;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.faq__item:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--c-charcoal);
  text-align: left;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 400;
}

.faq__question:hover {
  color: var(--c-gold);
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--c-gold);
  transition: transform 0.4s var(--ease-out-expo);
}

.faq__icon::before {
  width: 16px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
  padding: 0 0;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 0 0 1.5rem;
}

.faq__answer p {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--c-mid);
  line-height: 1.85;
}

/* ============================================
   GIFT SECTION
   ============================================ */
.gift {
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-warm-white) 100%);
  position: relative;
  overflow: hidden;
}

.gift__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.gift__visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift__card-mockup {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, var(--c-charcoal) 0%, var(--c-black) 100%);
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.gift__card-mockup::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.gift__card-mockup::after {
  content: 'Geschenkgutschein';
  position: absolute;
  bottom: 30px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--c-gold);
  letter-spacing: 0.05em;
}

.gift__card-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0.5;
}

.gift__card-line {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.gift__card-bg {
  width: 300px;
  height: 180px;
  background: linear-gradient(135deg, var(--c-gold-dark) 0%, var(--c-gold) 50%, var(--c-gold-light) 100%);
  position: absolute;
  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(5deg);
  z-index: -1;
  opacity: 0.3;
}

.gift__content {
  max-width: 480px;
}

.gift__text {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.gift__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  padding: 1.2em 2.5em;
  border: 1px solid var(--c-charcoal);
  transition: all 0.4s var(--ease-out-expo);
}

.gift__cta:hover {
  background: var(--c-charcoal);
  color: var(--c-gold);
}

.gift__cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.4s var(--ease-out-expo);
}

.gift__cta:hover svg {
  transform: translateX(4px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.contact__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.contact__geometric {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  transform: rotate(45deg);
}

.contact__geometric::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201, 169, 110, 0.04);
}

.contact .section__title {
  color: var(--c-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 10rem);
  max-width: 1200px;
  margin: clamp(3rem, 5vh, 5rem) auto 0;
}

.contact__info-group {
  margin-bottom: 2.5rem;
}

.contact__info-label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}

.contact__info-value {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--c-light);
  line-height: 1.7;
}

.contact__info-value a {
  transition: color 0.3s;
}

.contact__info-value a:hover {
  color: var(--c-gold);
}

.contact__form {
  position: relative;
  z-index: 1;
}

.form__group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form__label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}

.form__input,
.form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--c-white);
  transition: border-color 0.4s;
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-bottom-color: var(--c-gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-gold);
  padding: 1.2em 3em;
  margin-top: 1rem;
  transition: all 0.4s var(--ease-out-expo);
}

.form__submit:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
}

.form__submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.4s var(--ease-out-expo);
}

.form__submit:hover svg {
  transform: translateX(4px);
}

/* ============================================
   INSTAGRAM CTA STRIP
   ============================================ */
.instagram-cta {
  background: var(--c-charcoal);
  padding: clamp(2rem, 3.5vh, 3rem) clamp(1.5rem, 6vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.instagram-cta__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--c-gold);
}

.instagram-cta__handle {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--c-light);
  letter-spacing: 0.02em;
}

.instagram-cta__btn {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 0.6em 1.6em;
  transition: all 0.4s var(--ease-out-expo);
  display: inline-block;
}

.instagram-cta__btn:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem clamp(1.5rem, 6vw, 8rem);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.footer__logo span {
  font-style: italic;
  color: var(--c-gold);
  opacity: 0.5;
}

.footer__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer__link {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--c-gold);
}

.footer__copy {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: var(--c-mid);
  margin-top: 2rem;
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-out-expo);
}

.footer__social a:hover {
  border-color: var(--c-gold);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--c-muted);
  transition: fill 0.3s;
}

.footer__social a:hover svg {
  fill: var(--c-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process__timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--c-black);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav__links.open .nav__link {
    color: var(--c-white);
    font-size: 1.1rem;
  }

  .nav__links.open .nav__cta {
    margin-top: 1rem;
  }

  .hero__geometric {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrap {
    aspect-ratio: 3/4;
    max-height: 500px;
  }

  .about__stat-row {
    gap: 2rem;
  }

  .credentials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process__step {
    padding: 0;
  }

  .gift__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gift__visual {
    height: 280px;
  }

  .gift__content {
    max-width: none;
  }

  .press__logos {
    gap: 1.5rem 2.5rem;
  }

  .instagram-cta {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__links {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about__stat-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .booking-cta__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .instagram-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
}