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

:root {
  --cream:      #f7f3ee;
  --sand:       #e8dfd3;
  --warm-white: #fdfaf7;
  --tan:        #c9b49a;
  --terracotta: #b5795a;
  --bark:       #7a5c46;
  --stone:      #9c8c7e;
  --ink:        #2e2620;
  --sage:       #8a9a84;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

/* ─── WAVE TRANSITIONS ─────────────────────────────────────────────── */
/* Wave sits inside each section at the bottom — shares the section's   */
/* own background so the fill colour always matches perfectly.           */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  line-height: 0;
  pointer-events: none;
  z-index: 4;
}
.wave-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── UTILITY ──────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}

.section-heading em {
  font-style: italic;
  color: var(--terracotta);
}

.btn {
  display: inline-block;
  padding: 0.85em 2em;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--bark);
  border-color: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,121,90,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--tan);
}
.btn--ghost:hover {
  background: var(--sand);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1em 2.5em;
  font-size: 0.85rem;
}

.price {
  color: var(--stone);
  font-size: 0.85em;
}

/* ─── NAV ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(247,243,238,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(46,38,32,0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

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

.nav__links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
  text-decoration: none;
}
.nav__links a:hover { color: var(--terracotta); }

.nav__cta {
  background: var(--terracotta) !important;
  color: white !important;
  padding: 0.6em 1.4em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover {
  background: var(--bark) !important;
  transform: translateY(-1px);
  color: white !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* ─── MOBILE MENU ──────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--terracotta); }
.mobile-link--cta {
  background: var(--terracotta);
  color: white !important;
  padding: 0.6em 2em;
  border-radius: 100px;
  font-size: 1rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,180,154,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(181,121,90,0.12) 0%, transparent 60%);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #f7f0e8 0%, #ede5d8 40%, #e0d4c3 100%);
  opacity: 0.6;
}

/* Decorative arch shape */
.hero::after {
  content: '';
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 700px);
  height: min(80vw, 900px);
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(201,180,154,0.25) 0%, rgba(181,121,90,0.1) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
  animation: fadeUp 1.2s ease both;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--stone);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero__rac-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(247,243,238,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__rac-link span {
  color: var(--tan);
  font-style: italic;
}
.hero__rac-link:hover { color: rgba(247,243,238,0.85); }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  animation: fadeUp 1.2s 0.5s ease both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tan), transparent);
  animation: scrollPulse 2s infinite;
}

/* ─── INTRO ─────────────────────────────────────────────────────────── */
.intro {
  position: relative;
  background: var(--sand);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(4rem, 8vw, 7rem) + 90px);
}

.intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.intro__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.intro__salon-arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 8px 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.intro__salon-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.1);
  display: block;
}

.intro__badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 130px; height: 130px;
  flex-shrink: 0;
  z-index: 2;
}

.intro__badge-ring {
  width: 100%; height: 100%;
  animation: rotateSlow 20s linear infinite;
}

.intro__badge-ring text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 3px;
  fill: var(--stone);
}

.intro__badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.intro__copy h2 em { font-style: italic; color: var(--terracotta); }

.intro__copy p {
  color: var(--stone);
  font-size: 0.95rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ─── ABOUT / TEAM ──────────────────────────────────────────────────── */
.about {
  position: relative;
  background: var(--warm-white);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(5rem, 9vw, 8rem) + 90px);
}

.about__header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}

.about__team {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about__person {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about__person--reverse {
  grid-template-columns: 1.4fr 0.65fr;
}

.about__person--reverse .about__person-arch {
  order: 2;
}

.about__person--reverse .about__person-info {
  order: 1;
}

.about__person-arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 8px 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  background: var(--cream);
}

.about__person-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__arch-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, rgba(232,223,211,0.7) 100%);
  pointer-events: none;
}

.about__visual-tag {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--terracotta);
  color: white;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  line-height: 1.3;
  z-index: 5;
}

.about__visual-tag-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
}

.about__visual-tag span:last-child {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.about__person-info {
  display: flex;
  flex-direction: column;
}

.about__person-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.about__person-role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.about__person-info p {
  color: var(--stone);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--sand);
  padding-top: 1.5rem;
}

.about__pillar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.about__pillar-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--terracotta);
  font-style: italic;
  min-width: 24px;
}

/* ─── SERVICES ──────────────────────────────────────────────────────── */
.services {
  position: relative;
  background: var(--cream);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(5rem, 9vw, 8rem) + 90px);
}

.services__header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}

.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid rgba(201,180,154,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.service-card--featured {
  background: linear-gradient(145deg, #f2ebe0 0%, #ede2d3 100%);
  border-color: var(--tan);
}

.service-card__featured-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: white;
  padding: 0.3em 0.8em;
  border-radius: 100px;
}

.service-card__icon {
  width: 44px; height: 44px;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__list {
  list-style: none;
  border-top: 1px solid rgba(201,180,154,0.4);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,180,154,0.2);
}
.service-card__list li:last-child { border-bottom: none; padding-bottom: 0; }

.service-card__book {
  display: block;
  margin-top: auto;
  padding-top: 1.75rem;
  text-align: center;
  padding: 0.7em 1.5em;
  border-radius: 100px;
  border: 1.5px solid var(--tan);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.service-card__book:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.services__note {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--stone);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials {
  position: relative;
  background: var(--warm-white);
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 3.5rem;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonials__stars {
  color: #c9a84c;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonials__score {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}

.testimonials__count {
  font-size: 0.8rem;
  color: var(--stone);
}

.testimonials__carousel {
  position: relative;
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: 1px solid rgba(46,38,32,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.testimonials__arrow:hover { background: var(--cream); border-color: var(--tan); }
.testimonials__arrow--prev { left: 1rem; }
.testimonials__arrow--next { right: 1rem; }

.testimonials__track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.testimonials__track-wrap:active { cursor: grabbing; }

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
  animation: scrollTrack 40s linear infinite;
  width: max-content;
}
.testimonials__track:hover { animation-play-state: paused; }
.testimonials__track.is-paused { animation-play-state: paused; }

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  width: 380px;
  flex-shrink: 0;
  border: 1px solid rgba(201,180,154,0.25);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.testimonial-card__stars {
  color: #c9a84c;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(201,180,154,0.3);
  padding-top: 1.25rem;
}

.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-serif);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.testimonial-card__author span {
  display: block;
  font-size: 0.72rem;
  color: var(--stone);
  margin-top: 0.1rem;
}

.testimonials__cta {
  text-align: center;
  margin-top: 3rem;
  padding: 0 1.5rem;
}

/* ─── EXPERIENCE ────────────────────────────────────────────────────── */
.wave-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 90px;
  line-height: 0; pointer-events: none; z-index: 4;
}
.wave-top svg { display: block; width: 100%; height: 100%; }

.experience {
  position: relative;
  background: linear-gradient(135deg, #3a2e26 0%, #2e2620 100%);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  padding-top: calc(clamp(5rem, 9vw, 8rem) + 90px);
  padding-bottom: calc(clamp(5rem, 9vw, 8rem) + 90px);
}

.experience__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.experience__quote {
  position: relative;
}

.experience__quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--terracotta);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.experience__quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

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

.experience__feat-icon {
  color: var(--terracotta);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.experience__feat h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.experience__feat p {
  font-size: 0.82rem;
  color: rgba(247,243,238,0.6);
  line-height: 1.7;
}

/* ─── GALLERY ───────────────────────────────────────────────────────── */
.gallery {
  position: relative;
  background: var(--warm-white);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(5rem, 9vw, 8rem) + 90px);
}

.gallery__header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
}

.gallery__item {
  border-radius: 16px;
  background: var(--sand);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover .gallery__caption { opacity: 1; }

.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(46,38,32,0.55) 0%, transparent 100%);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__behold {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.gallery__ig {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.gallery__ig a {
  color: var(--terracotta);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── BOOKING ───────────────────────────────────────────────────────── */
.book {
  position: relative;
  background: var(--sand);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(5rem, 9vw, 8rem) + 90px);
}

.book__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.book__content p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 440px;
  margin: 1.5rem 0 2.5rem;
}

.book__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--tan);
  padding-top: 1.5rem;
}

.book__detail {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.book__detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  min-width: 80px;
  padding-top: 0.15em;
}

.book__detail a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.book__card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(201,180,154,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.book__card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.book__card > p {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.book__or {
  display: block;
  font-size: 0.75rem;
  color: var(--stone);
  margin: 1rem 0;
  letter-spacing: 0.1em;
}

.book__note {
  font-size: 0.75rem !important;
  color: var(--stone) !important;
  font-style: italic;
  margin-top: 1.5rem !important;
}

/* ─── ENQUIRY FORM (booking section) ───────────────────────────────── */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.25rem;
}

.enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(46,38,32,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.6);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: var(--stone);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--tan);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 90px;
}

.btn--full {
  width: 100%;
}

.enquiry-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  text-align: center;
}

.enquiry-form__success-icon {
  font-size: 1.5rem;
  color: var(--terracotta);
}

.enquiry-form__success p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
}

@media (max-width: 480px) {
  .enquiry-form__row { grid-template-columns: 1fr; }
}

/* ─── ENQUIRY SECTION ───────────────────────────────────────────────── */
.enquiry {
  background: var(--warm-white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
}

.enquiry__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.enquiry__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--tan);
  margin-bottom: 1rem;
}

.enquiry__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.enquiry__text p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .enquiry__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── GIFT VOUCHERS ─────────────────────────────────────────────────── */
.voucher {
  position: relative;
  background: #cfc0aa;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(5rem, 9vw, 8rem) + 90px);
}

.voucher__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.voucher__content p {
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.voucher__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.voucher__list li {
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.voucher__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.voucher__visual {
  display: flex;
  justify-content: center;
}

.voucher__card {
  background: linear-gradient(145deg, var(--terracotta) 0%, #a0593a 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: white;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1.6 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(160, 89, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.voucher__card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.voucher__card-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}

.voucher__card-name {
  font-family: var(--font-serif);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.voucher__card-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

.voucher__card-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

.voucher__card-footer {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(247,243,238,0.8);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 3rem) 2rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__logo-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(247,243,238,0.5);
  max-width: 240px;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.footer__links a,
.footer__contact a,
.footer__contact p {
  font-size: 0.82rem;
  color: rgba(247,243,238,0.6);
  transition: color 0.2s;
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--cream); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(247,243,238,0.3);
  letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.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; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .experience__inner { grid-template-columns: 1fr; gap: 3rem; }
  .voucher__inner { grid-template-columns: 1fr; gap: 3rem; }
  .voucher__actions { flex-direction: column; align-items: stretch; }
  .voucher__card { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .about__person,
  .about__person--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .about__person--reverse .about__person-arch { order: 0; }
  .about__person--reverse .about__person-info { order: 1; }
  .about__person-arch { aspect-ratio: 4/3; border-radius: 120px 120px 8px 8px; }

  .intro__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .intro__badge { margin: 0 auto; }
  .intro__copy p { margin-left: auto; margin-right: auto; }

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

  .book__inner { grid-template-columns: 1fr; gap: 3rem; }
  .book__content p { max-width: 100%; }

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

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}
