/* ═══════════════════════════════════════════════
   SLAYY BY CHE — Premium Stylesheet
   3-Color Brand Palette
   Linen    #F5F1EA  — backgrounds, page surfaces
   Camel    #B2967D  — accent, icons, labels, highlights
   Espresso #4A342A  — headings, dark sections, primary
   ═══════════════════════════════════════════════ */

:root {
  /* ── 3 SOURCE BRAND TOKENS ── */
  --linen:    #F5F1EA;
  --camel:    #B2967D;
  --espresso: #4A342A;
  --white:    #FFFFFF;

  /* ── DERIVED UTILITIES (computed from the 3 sources) ── */
  --khaki:  #D7C9B8;  /* camel lightened toward linen  — borders, fills */
  --cocoa:  #7D5A44;  /* camel deepened toward espresso — body text, mid tones */

  /* ── ALIASES → all map back to 3 source tokens ── */
  --cream:       var(--linen);
  --cream-light: var(--linen);
  --cream-dark:  var(--khaki);
  --tan:         var(--khaki);
  --tan-light:   var(--khaki);
  --tan-dark:    var(--camel);
  --brown:       var(--cocoa);
  --brown-light: var(--camel);
  --dark:        var(--espresso);
  --dark-soft:   var(--espresso);
  --rose:        var(--camel);
  --rose-light:  var(--khaki);
  --off-white:   var(--linen);
  --accent:      var(--camel);

  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow: 0 4px 30px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 16px 60px rgba(44, 24, 16, 0.12);
  --shadow-xl: 0 24px 80px rgba(44, 24, 16, 0.16);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 80px; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cocoa);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
li { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--espresso);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.section { padding: 100px 0; position: relative; }

/* ── CUSTOM CURSOR ── */
.cursor, .cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--white);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-follower.hover {
  width: 56px; height: 56px;
  border-color: var(--tan);
}

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.preloader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo + shimmer wrapper */
.preloader__logo-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
}

.preloader__text {
  display: block;
  width: clamp(260px, 45vw, 420px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0s;
}

/* Shimmer sweep */
.preloader__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(178, 150, 125, 0.3) 48%,
    rgba(255, 255, 255, 0.15) 52%,
    transparent 75%
  );
  transform: translateX(-100%);
  pointer-events: none;
}

/* Progress bar */
.preloader__bar-wrap {
  width: clamp(200px, 34vw, 320px);
  height: 2.5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4a342a, #b2967d, #d7c9b8);
  border-radius: 2px;
}

/* Tagline */
.preloader__sub {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(178, 150, 125, 0.6);
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
}

/* ── TYPOGRAPHY ── */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 16px;
}

.section__label--light { color: var(--rose-light); }

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

h3, h3.wp-block-heading {
  font-size: 1.375rem;
  line-height: 1.3;
}

/* Inner page H1s (Services, FAQ, Gallery, Contact, About) */
h1:not(.hero__title) {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--cocoa);
  max-width: 540px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header .section__desc { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn > span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; }

.btn--primary {
  background: var(--brown);
  color: var(--white);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
  border-radius: 50px;
}
.btn--primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--primary:hover { box-shadow: var(--shadow-lg); }

.btn--outline {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
  border-radius: 50px;
}
.btn--outline:hover { color: var(--white); }
.btn--outline:hover::before { transform: scaleX(1); transform-origin: left; }

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #ffffff;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover {
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--nav { padding: 10px 24px; font-size: 11px; min-height: 44px; }
.btn--full { width: 100%; }

/* Magnetic effect handled by JS */
.btn--magnetic { transition: transform 0.3s var(--ease); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.admin-bar .nav { top: 32px; }
.nav.scrolled {
  background: rgba(245, 241, 234, 0.95);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 2px 20px rgba(74, 52, 42, 0.08);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav__logo-text { color: var(--dark); }

.nav__logo-img {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease), width 0.4s var(--ease), opacity 0.3s;
}
@media (max-width: 768px) {
  a.nav__logo {
    width: 120px !important;
	}
}
.nav__logo-img:hover { opacity: 0.85; }
.nav.scrolled .nav__logo-img {
  filter: none;
  width: 140px;
}

.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--espresso); }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--tan);
  transition: width 0.4s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__links .btn {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}
.nav__links .btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.nav.scrolled .nav__links .btn {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.nav__toggle {
  display: none;
  flex-direction: column; gap: 6px;
  width: 26px; z-index: 1001;
}
.nav__toggle .bar {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.nav.scrolled .nav__toggle .bar { background: var(--dark); }
.nav__toggle.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  background: url('/wp/wp-content/uploads/2026/04/hero-portrait-1.jpg') center top/cover no-repeat;
  transform: scale(1.02);
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.15) 0%,
    rgba(44, 24, 16, 0.35) 30%,
    rgba(44, 24, 16, 0.6) 55%,
    rgba(44, 24, 16, 0.8) 100%
  );
}

.hero__ribbon {
  position: absolute; top: 0; height: 100%; width: 80px;
  z-index: 1;
}
.hero__ribbon--left { left: 5%; }
.hero__ribbon--right { right: 5%; }

.hero__content { position: relative; z-index: 2; padding: 60px 24px 120px; }

.hero__label {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  width: fit-content; margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase;
  /* compensate for trailing letter-spacing so text is visually centred */
  padding-left: 4px;
  color: var(--white);
}
.hero__label::before,
.hero__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 6.5rem);
}
.hero__title-line--italic em {
  font-style: italic;
  color: var(--camel);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  text-decoration: underline;
  text-decoration-color: var(--camel);
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 44px;
}

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.hero__actions .btn--primary { background: var(--tan); color: var(--dark); }
.hero__actions .btn--primary::before { background: var(--white); }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
}
.hero__scroll:hover { opacity: 0.7; }
.hero__scroll-dot {
  width: 20px; height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}
.hero__scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--tan);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}
.hero__scroll span {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.4);
}

.hero__badge {
  position: absolute;
  bottom: 80px; right: 8%;
  z-index: 2;
  animation: rotateBadge 20s linear infinite;
}
@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero__badge-inner {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 16px;
  color: var(--camel);
}

/* ── MARQUEE ── */
.marquee {
  padding: 20px 0;
  background: var(--dark);
  overflow: hidden;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__content {
  display: flex; align-items: center; gap: 40px;
  padding: 0 20px;
  flex-shrink: 0;
}
.marquee__content span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--khaki);
  white-space: nowrap;
  letter-spacing: 1px;
}

/* ── IMAGE RUNNER ── */
.img-runner-section { overflow: hidden; }
.img-runner {
  overflow: hidden;
  padding: 24px 0;
  pointer-events: none;
  user-select: none;
}
.img-runner__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: imgRunnerScroll 40s linear infinite;
}
@keyframes imgRunnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.img-runner__item {
  flex-shrink: 0;
  width: 260px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
}
.img-runner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
}

/* ── BOOKING SECTION — Homepage ── */
section.booking {
  position: relative;
  padding: 96px 0 108px;
  background: var(--linen);
  overflow: hidden;
}

section.booking .section__header {
  text-align: center;
  margin-bottom: 56px;
}

/* 3-Step Row */
.booking__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 60px;
  position: relative;
}

/* Thin connector line between circles */
.booking__steps::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% - 220px);
  width: 440px;
  height: 1px;
  background: rgba(125, 90, 68, 0.18);
  z-index: 0;
}

.booking__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  box-shadow: none;
  background: none;
  border: none;
}

.booking__step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(125, 90, 68, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(74, 52, 42, 0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.booking__step:hover .booking__step-circle {
  box-shadow: 0 8px 28px rgba(74, 52, 42, 0.14);
  transform: translateY(-2px);
}

/* Step number badge */
.booking__step-circle::before {
  content: attr(data-num);
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  text-align: center;
}

.booking__step-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--espresso);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking__step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.booking__step-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.4px;
  display: block;
  text-align: center;
}

.booking__step-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(74, 52, 42, 0.5);
  display: block;
  text-align: center;
}

/* CTA area */
.booking__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Book button */
.booking__book-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 17px 56px !important;
  border-radius: 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.booking__book-btn::before {
  border-radius: 4px !important;
}

.booking__btn-arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.booking__book-btn:hover .booking__btn-arrow {
  transform: translateX(3px);
}

/* Trust row */
.booking__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.booking__trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(125, 90, 68, 0.3);
  flex-shrink: 0;
}

.booking__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(74, 52, 42, 0.55);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.booking__trust-item svg {
  width: 13px;
  height: 13px;
  stroke: rgba(125, 90, 68, 0.6);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn--large { padding: 20px 48px; font-size: 1.05rem; }

/* ── ABOUT ── */
.about { overflow: hidden; padding-bottom: 40px; }
.why.section { padding-top: 40px; }

.about__dots {
  position: absolute;
  top: 60px; right: 60px;
  opacity: 0.5;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images { position: relative; }

.about__img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img--main {
  position: relative;
  box-shadow: var(--shadow-xl);
}
.about__img--main img {
  width: 100%; height: 560px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about__img--main:hover img { transform: scale(1.03); }

.about__img-frame {
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid var(--tan);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__img--accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 2;
}
.about__img--accent img {
  width: 100%; height: 260px;
  object-fit: cover;
}

.about__exp-badge {
  position: absolute;
  top: -16px; left: -16px;
  width: 100px; height: 100px;
  background: var(--brown);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.about__exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about__exp-text {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--espresso);
  font-size: 0.95rem;
}
.about__text p strong { color: var(--dark); }

.about__divider { margin-bottom: 24px; }

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream);
}

.about__feature {
  display: flex; align-items: flex-start; gap: 16px;
}
.about__feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--brown);
}
.about__feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.about__feature p {
  font-size: 0.85rem;
  color: var(--cocoa);
  margin-bottom: 0;
}

/* ── SERVICES ── */
.services { background: var(--linen); }

.services__tabs {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 44px;
  align-items: center;
}

.tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  color: var(--brown);
  background: var(--linen);
  border: 1.5px solid var(--khaki);
  transition: all 0.35s var(--ease);
}
.tab svg { opacity: 0.5; transition: opacity 0.3s; }
.tab:hover { color: var(--brown); border-color: var(--camel); }
.tab:hover svg { opacity: 0.8; }
.tab.active {
  background: var(--brown); color: var(--white);
  box-shadow: var(--shadow);
}
.tab.active svg { opacity: 1; stroke: var(--white); }

.services__panel {
  display: none;
}
.services__panel.active { display: block; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  background: var(--linen);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--khaki);
  border-left: 3px solid transparent;
  transition: all 0.35s var(--ease);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-left-color: var(--tan);
}

.price-card__info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--dark);
}
.price-card__info p {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-top: 2px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
  margin-left: 20px;
}

.services__cta { text-align: center; margin-top: 48px; }

/* ── Service Category Header ── */

.svc-cat-header {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-cat-header__img-wrap {
  height: 300px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.svc-cat-header__body {
  padding: 36px 36px 36px 0;
}

.svc-cat-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.svc-cat-header__intro {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.svc-cat-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.svc-cat-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--brown);
  background: var(--linen);
  border-radius: 20px;
  padding: 6px 14px;
  border: 1px solid var(--tan);
}

@media (max-width: 900px) {
  .svc-cat-header {
    grid-template-columns: 1fr;
  }
  .svc-cat-header__img-wrap {
    height: 220px;
    width: 100%;
  }
  .svc-cat-header__body {
    padding: 24px;
  }
}

/* ── GALLERY ── */
.gallery { background: var(--linen); }
.gallery .section__label { color: var(--camel); }
.gallery .section__label svg { stroke: var(--camel); }
.gallery .section__title { color: var(--espresso); }
.gallery .section__desc { color: var(--espresso); }

.gallery__filters {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter {
  padding: 10px 24px;
  min-height: 44px;
  font-size: 13px; font-weight: 500;
  border-radius: 50px;
  color: var(--brown-light);
  border: 1.5px solid var(--cream-dark);
  transition: all 0.35s var(--ease);
}
.filter:hover { border-color: var(--camel); color: var(--linen); }
.filter.active {
  background: var(--brown); color: var(--white);
  border-color: var(--brown);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, transparent 50%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 4px;
  margin-top: 0;
}
.gallery__overlay h4,
.gallery__overlay .wp-block-heading {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.gallery__item.hidden {
  display: none;
}

.gallery__cta { text-align: center; margin-top: 48px; }

/* ── POLICIES ── */
.policies { background: var(--linen); }

.policies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.policy-card {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--khaki);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.policy-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.policy-card:hover::before { transform: scaleX(1); }

.policy-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.policy-card:hover .policy-card__number { color: var(--tan); }

.policy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.policy-card p {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ── WHY CHOOSE US ── */
.why { background: var(--linen); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why__card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--khaki);
  box-shadow: 0 2px 12px rgba(74,52,42,0.06);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why__card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--rose));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__card:hover::after { transform: scaleX(1); }

.why__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(178, 150, 125, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
}

.why__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.why__card p {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   ABOUT STORY — dark cinematic (about page only)
   ══════════════════════════════════════════ */

.about-story {
  background: var(--espresso);
  color: var(--linen);
  overflow: hidden;
}

/* Header */
.about-story__header {
  text-align: center;
  padding: 100px 40px 72px;
}
.about-story__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 20px;
}
.about-story__label svg { opacity: 0.6; }
.about-story__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--linen);
  margin: 0;
}
.about-story__title em {
  font-style: italic;
  color: var(--camel);
}

/* Hero wrapper — bg image + overlay */
.about-story__hero {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 92vh;
}
.about-story__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30,16,10,0.18) 0%,
    rgba(44,24,16,0.55) 50%,
    rgba(44,24,16,0.92) 100%
  );
  pointer-events: none;
}

/* Split */
.about-story__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 92vh;
  align-items: stretch;
}

.about-story__portrait {
  position: relative;
  overflow: hidden;
}

.about-story__portrait-img {
  width: 100%; height: 100%;
  overflow: hidden;
}
.about-story__portrait-img img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.about-story__portrait:hover .about-story__portrait-img img { transform: scale(1.04); }

.about-story__accent {
  position: absolute;
  bottom: 48px;
  right: -28px;
  width: 185px;
  z-index: 5;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 3px rgba(178,150,125,0.35);
}
.about-story__accent img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 12px;
}

.about-story__badge {
  position: absolute;
  bottom: 40px;
  left: 24px;
  background: rgba(44,24,16,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(178,150,125,0.3);
  padding: 14px 20px;
  border-radius: 12px;
}
.about-story__badge-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-story__badge-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 5px;
}

/* Right panel */
.about-story__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 52px 60px 56px;
  gap: 0;
  overflow-y: visible;
  background: linear-gradient(
    to right,
    rgba(44,24,16,0.65) 0%,
    rgba(44,24,16,0.80) 35%,
    rgba(44,24,16,0.90) 100%
  );
}

.about-story__panel::before {
  content: "✦  ABOUT THE ARTIST  ✦";
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 18px;
  opacity: 0.9;
}

.about-story__page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1px;
  margin: 0 0 28px 0;
}

.about-story__page-h1::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--camel), transparent);
  margin-top: 16px;
  border-radius: 2px;
}

.about-story__quote {
  border-left: 3px solid var(--camel);
  padding: 6px 0 6px 22px;
  margin: 0 0 30px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(245,241,234,0.88);
}
.about-story__quote cite {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--camel);
  margin-top: 10px;
}

.about-story__bio p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245,241,234,0.92);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.about-story__bio p:last-child { display: block; margin-bottom: 0; }
.about-story__bio p:first-child { margin-top: 0; }

.about-story__mission {
  display: block;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(178,150,125,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  animation: sbc-fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.72s both;
}
.about-story__mission-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 8px;
  opacity: 0.85;
}
.about-story__mission-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--camel);
  opacity: 0.6;
  flex-shrink: 0;
}
.about-story__mission p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(245,241,234,0.72);
  margin: 0;
}

.about-story__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--linen);
}
.btn--outline-white:hover {
  background: var(--linen);
  color: var(--espresso);
  border-color: var(--linen);
}

/* Stats strip */
.about-story__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #3a2820;
  border-top: 1px solid rgba(178,150,125,0.18);
}
.about-story__stat {
  text-align: center;
  padding: 38px 20px;
  border-right: 1px solid rgba(178,150,125,0.15);
  transition: background 0.3s ease;
}
.about-story__stat:hover { background: rgba(255,255,255,0.04); }
.about-story__stat:last-child { border-right: none; }
.about-story__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -1px;
}
.about-story__stat-lbl {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--camel);
  margin-top: 6px;
  opacity: 0.85;
}

/* Numbered features */
.about-story__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.about-story__feature {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s var(--ease);
}
.about-story__feature:last-child { border-right: none; }
.about-story__feature:hover { background: rgba(255,255,255,0.04); }
.about-story__feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(178,150,125,0.35);
  line-height: 1;
}
.about-story__feat-icon {
  color: var(--camel);
  opacity: 0.85;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(178,150,125,0.12);
  border-radius: 50%;
}
.about-story__feat-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--linen);
  letter-spacing: -0.2px;
  margin: 0;
}
.about-story__feat-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(245,241,234,0.58);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-story__split { grid-template-columns: 1fr 1fr; }
  .about-story__features { grid-template-columns: 1fr 1fr; }
  .about-story__features .about-story__feature:nth-child(2) { border-right: none; }
  .about-story__features .about-story__feature:nth-child(3),
  .about-story__features .about-story__feature:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 768px) {
  .about-story__header { padding: 72px 24px 48px; }
  .about-story__split { grid-template-columns: 1fr; }
  .about-story__portrait-img img { min-height: 260px; }
  .about-story__accent { right: 16px; bottom: 16px; width: 140px; }
  .about-story__accent img { height: 180px; }
  .about-story__panel { padding: 40px 24px; }
  .about-story__stats { grid-template-columns: 1fr 1fr; }
  .about-story__stat:nth-child(2) { border-right: none; }
  .about-story__stat:nth-child(3),
  .about-story__stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .about-story__features { grid-template-columns: 1fr 1fr; }
  .about-story__feature { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .about-story__stats { grid-template-columns: 1fr 1fr; }
  .about-story__features { grid-template-columns: 1fr; }
  .about-story__feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .about-story__feature:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE — editorial redesign
   ══════════════════════════════════════════ */

.about-page {
  background: var(--linen);
  overflow: visible;
  padding-bottom: 100px;
}

.about-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Media column ── */
.about-page__media { position: relative; }

.about-page__img-primary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-page__img-primary img {
  width: 100%; height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-page__img-border {
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 2px solid var(--camel);
  border-radius: var(--radius-lg);
  opacity: 0.5;
}

.about-page__img-secondary {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 2;
}
.about-page__img-secondary img {
  width: 100%; height: 280px;
  object-fit: cover;
  display: block;
}

.about-page__badge {
  position: absolute;
  top: -20px; left: -20px;
  width: 110px; height: 110px;
  background: var(--cocoa);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 4;
  box-shadow: var(--shadow-lg);
}
.about-page__badge-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-page__badge-title {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--khaki);
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
  padding: 0 8px;
}

.about-page__stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  background: var(--espresso);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-page__stat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-page__stat:last-child { border-right: none; }
.about-page__stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--camel);
  line-height: 1;
}
.about-page__stat-lbl {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--khaki);
  margin-top: 6px;
}

/* ── Content column ── */
.about-page__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
  margin: 12px 0 20px;
}
.about-page__title em {
  font-style: italic;
  color: var(--camel);
}

.about-page__divider { margin-bottom: 28px; }

.about-page__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--espresso);
  margin-bottom: 18px;
}

.about-page__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
  padding-top: 32px;
  border-top: 1px solid var(--khaki);
}
.about-page__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--khaki);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(74,52,42,0.05);
}
.about-page__feature-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--khaki);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--cocoa);
}
.about-page__feature-text h4 {
  font-size: 0.88rem; font-weight: 700;
  color: var(--espresso);
  margin-bottom: 3px;
}
.about-page__feature-text p {
  font-size: 0.82rem;
  color: var(--cocoa);
  margin: 0;
  line-height: 1.5;
}

.about-page__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   TIMELINE BLOCK
   ══════════════════════════════════════════ */

.slayy-timeline {
  background: var(--linen);
  padding: 100px 0 120px;
}

.slayy-timeline__track {
  position: relative;
  margin-top: 72px;
}

.slayy-timeline__line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--camel) 10%, var(--camel) 90%, transparent);
  transform: translateX(-50%);
}

.slayy-timeline__item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}
.slayy-timeline__item:last-child { margin-bottom: 0; }

/* Left items: card on left column, dot in centre */
.slayy-timeline__item--left .slayy-timeline__card { grid-column: 1; grid-row: 1; text-align: right; padding-right: 48px; }
.slayy-timeline__item--left .slayy-timeline__dot  { grid-column: 2; grid-row: 1; }

/* Right items: dot in centre, card on right column */
.slayy-timeline__item--right .slayy-timeline__dot  { grid-column: 2; grid-row: 1; }
.slayy-timeline__item--right .slayy-timeline__card { grid-column: 3; grid-row: 1; text-align: left; padding-left: 48px; }

.slayy-timeline__card {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--khaki);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.slayy-timeline__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.slayy-timeline__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--khaki);
  border-radius: 50%;
  color: var(--cocoa);
  margin-bottom: 14px;
}
.slayy-timeline__item--left .slayy-timeline__card-icon { margin-left: auto; }

.slayy-timeline__year {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--camel);
  line-height: 1;
  margin-bottom: 6px;
}

.slayy-timeline__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0 0 10px;
}

.slayy-timeline__card-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--cocoa);
  margin: 0;
}

.slayy-timeline__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  position: relative;
  z-index: 2;
}
.slayy-timeline__dot-inner {
  width: 18px; height: 18px;
  background: var(--camel);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--camel);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .slayy-timeline__line { left: 24px; }
  .slayy-timeline__item {
    grid-template-columns: 48px 1fr;
    margin-bottom: 40px;
  }
  .slayy-timeline__item--left .slayy-timeline__card,
  .slayy-timeline__item--right .slayy-timeline__card {
    grid-column: 2; grid-row: 1;
    text-align: left;
    padding: 24px 24px 24px 20px;
  }
  .slayy-timeline__item--left .slayy-timeline__dot,
  .slayy-timeline__item--right .slayy-timeline__dot {
    grid-column: 1; grid-row: 1;
  }
  .slayy-timeline__item--left .slayy-timeline__card-icon { margin-left: 0; }
  .slayy-timeline__year { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════
   CREDENTIALS BLOCK
   ══════════════════════════════════════════ */

.slayy-credentials {
  background: var(--espresso);
  padding: 100px 0 120px;
}
.slayy-credentials .section__label { color: var(--camel); }
.slayy-credentials .section__label svg { stroke: var(--camel); }
.slayy-credentials .section__title { color: var(--linen); }
.slayy-credentials .section__desc { color: var(--khaki); }

.slayy-credentials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.slayy-credentials__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(178,150,125,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.slayy-credentials__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--camel);
  transform: translateY(-4px);
}

.slayy-credentials__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slayy-credentials__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(178,150,125,0.15);
  border-radius: 50%;
  color: var(--camel);
  flex-shrink: 0;
}

.slayy-credentials__year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(178,150,125,0.4);
  line-height: 1;
}

.slayy-credentials__badge-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100px;
}
.slayy-credentials__badge-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.slayy-credentials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--linen);
  margin: 0;
  line-height: 1.3;
}

.slayy-credentials__issuer {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--camel);
  margin: 0;
}

.slayy-credentials__seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--khaki);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  margin-top: auto;
}
.slayy-credentials__seal svg { color: var(--camel); flex-shrink: 0; }

@media (max-width: 768px) {
  .slayy-credentials__grid { grid-template-columns: 1fr; }
}

/* ── WHY PAGE — dark editorial layout ── */
.why-page {
  background: var(--espresso);
  padding: 100px 0;
}
.why-page__inner { width: 100%; }

.why-page__header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 64px;
}
.why-page__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 16px;
}
.why-page__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.why-page__subtitle {
  font-size: 1rem;
  color: var(--khaki);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-page__card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  transition: background 0.3s var(--ease);
  border: 1px solid rgba(255,255,255,0.05);
}
.why-page__card:hover { background: rgba(255,255,255,0.07); }

.why-page__card-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(178,150,125,0.15);
  border-radius: 50%;
  color: var(--camel);
  margin-bottom: 24px;
}
.why-page__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-page__card-text {
  font-size: 0.9rem;
  color: var(--khaki);
  line-height: 1.75;
}

/* ── Responsive: About Page ── */
@media (max-width: 1024px) {
  .about-page__grid { gap: 56px; }
}
@media (max-width: 768px) {
  .about-page__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-page__img-primary img { height: 420px; }
  .about-page__img-secondary { display: none; }
  .about-page__badge { width: 88px; height: 88px; }
  .about-page__badge-name { font-size: 1.2rem; }
  .about-page__features { grid-template-columns: 1fr; gap: 12px; }
  .about-page__actions { flex-direction: column; }
  .why-page__grid { grid-template-columns: 1fr; }
  .why-page__card { padding: 36px 24px; }
  .why-page__header { margin-bottom: 40px; }
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--espresso); }
.testimonials .section__label { color: var(--camel); }
.testimonials .section__label svg { stroke: var(--camel); }
.testimonials .section__title { color: var(--linen); }
.testimonial { border: 1px solid rgba(255,255,255,0.08); }
.testimonial__text { color: var(--khaki); }
.testimonial__name { color: var(--linen); }
.testimonial__service { color: var(--camel); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial__stars {
  display: flex; gap: 3px;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--camel);
}

.testimonial__avatar {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-weight: 700; font-size: 0.88rem;
  color: var(--white);
}
.testimonial__service {
  font-size: 0.85rem;
  color: var(--camel);
  font-weight: 500;
}

/* ── PROCESS ── */
.process { background: var(--linen); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.process__line {
  position: absolute;
  top: 32px; left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--tan), var(--cream-dark));
  z-index: 1;
}

.process__step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.process__step p {
  font-size: 0.83rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ── POLICIES (compact) ── */
.policies { background: var(--espresso); padding: 100px 0; }

.policies__layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.policies__header .section__label { color: var(--camel); }
.policies__header .section__label svg { stroke: var(--camel); }
.policies__header .section__title { color: var(--linen); margin-bottom: 12px; }
.policies__header .section__desc { color: var(--camel); }

.policies__list {
  display: flex; flex-direction: column;
  gap: 0;
}

.policy-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(200, 168, 130, 0.2);
  transition: all 0.3s var(--ease);
}
.policy-row:first-child { padding-top: 0; }
.policy-row:last-child { border-bottom: none; }
.policy-row:hover { padding-left: 8px; }

.policy-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--camel);
  min-width: 28px;
  line-height: 1.7;
  margin: 0;
}

.policy-row__text {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}
.policy-row__text strong {
  color: var(--linen);
  font-weight: 600;
}

/* ══ Booking Info — Process + Policies ══ */

.booking-info {
  background: var(--linen);
  padding: 100px 0;
}

/* Two-column split */
.booking-info__wrap {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  align-items: start;
}

/* Vertical gradient divider */
.bi-divider {
  width: 1px;
  align-self: stretch;
  min-height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--tan) 20%,
    var(--tan) 80%,
    transparent 100%
  );
}

/* ── Column shared ── */
.bi-col { min-width: 0; }

.bi-col__header { margin-bottom: 40px; }

.bi-col__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem; /* 13px — matches .section__label */
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.bi-col__line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.bi-col__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
  line-height: 1.25;
}

.bi-col__subtitle {
  font-size: 0.85rem;
  color: var(--cocoa);
  margin-top: 6px;
  font-style: italic;
}

/* ── Steps (left) ── */
.bi-steps {
  list-style: none;
  margin: 0; padding: 0;
}

.bi-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.bi-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.bi-step__bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(74, 52, 42, 0.18);
}

.bi-step__connector {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 4px;
}

.bi-step__right {
  padding-bottom: 32px;
  padding-top: 10px;
}

.bi-step:last-child .bi-step__right { padding-bottom: 0; }

.bi-step__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: 0.2px;
}

.bi-step__desc {
  font-size: 0.875rem;
  color: var(--cocoa);
  line-height: 1.7;
  margin: 0;
}

/* ── Policies (right) ── */
.bi-policies {
  list-style: none;
  margin: 0; padding: 0;
}

.bi-policy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(178, 150, 125, 0.18);
  transition: transform 0.2s var(--ease);
}
.bi-policy:first-child { padding-top: 0; }
.bi-policy:last-child  { border-bottom: none; padding-bottom: 0; }
.bi-policy:hover       { transform: translateX(4px); }

.bi-policy__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 32px;
  line-height: 1.6;
  flex-shrink: 0;
}

.bi-policy__text {
  font-size: 0.875rem;
  color: var(--cocoa);
  line-height: 1.75;
}

.bi-policy__text strong {
  color: var(--dark);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .booking-info__wrap {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .bi-divider { display: none; }
}

/* ── FAQ ── */
.faq { background: var(--khaki); padding-bottom: 40px; }
.booking.section { padding-top: 40px; }

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

.faq__item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s;
  gap: 16px;
}
.faq__question:hover { color: var(--cocoa); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--cocoa);
  transition: transform 0.35s var(--ease);
}
.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq__item.open .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--espresso);
  line-height: 1.7;
}

/* ── BOOKING ── */
.booking { background: var(--linen); }
.booking .section__label { color: var(--cocoa); }
.booking .section__label svg { stroke: var(--cocoa); }
.booking .section__title { color: var(--espresso); }
.booking .section__desc { color: var(--cocoa); }

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.booking__grid .booking__step {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  align-items: stretch;
}

.booking__step-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}

.booking__step-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.booking__step-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--linen);
}

/* Service buttons */
.booking__services {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.booking__services::-webkit-scrollbar { width: 4px; }
.booking__services::-webkit-scrollbar-track { background: var(--cream-light); border-radius: 4px; }
.booking__services::-webkit-scrollbar-thumb { background: var(--tan-light); border-radius: 4px; }

.booking__service-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: var(--cream-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  text-align: left;
}
.booking__service-btn:hover {
  border-color: var(--tan-light);
  background: var(--cream);
}
.booking__service-btn.active {
  border-color: var(--brown);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(107, 66, 38, 0.12);
}

.booking__service-name {
  font-weight: 600; font-size: 0.9rem; color: var(--dark);
}
.booking__service-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--brown);
}

/* Calendar */
.booking__calendar {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 20px;
}

.cal__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}

.cal__month {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--dark);
}

.cal__nav {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--camel);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
}
.cal__nav:hover { background: var(--camel); color: var(--linen); }

.cal__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.cal__weekdays span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--camel);
  padding: 6px 0;
}

.cal__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal__day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 500;
  border-radius: 50%;
  color: var(--dark);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: none; background: none;
  font-family: 'Montserrat', sans-serif;
}
.cal__day:hover:not(.cal__day--disabled):not(.cal__day--empty) {
  background: var(--tan-light);
  color: var(--white);
}
.cal__day--today {
  background: var(--cream);
  font-weight: 700;
  color: var(--brown);
}
.cal__day--selected {
  background: var(--brown) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(107, 66, 38, 0.3);
}
.cal__day--disabled {
  color: var(--cream-dark);
  cursor: not-allowed;
  opacity: 0.4;
}
.cal__day--empty {
  cursor: default;
}

/* Time slots */
.booking__times {
  margin-top: 20px;
  display: none;
}
.booking__times.visible { display: block; }

.booking__times-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 12px;
}

.booking__time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.booking__time-btn {
  padding: 10px 8px;
  background: var(--cream-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  color: var(--dark);
  transition: all 0.25s var(--ease);
  font-family: 'Montserrat', sans-serif;
}
.booking__time-btn:hover {
  border-color: var(--tan-light);
  background: var(--cream);
}
.booking__time-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Summary */
.booking__summary-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 24px;
}

.booking__summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
}

.booking__summary-label {
  font-size: 0.85rem; font-weight: 500;
  color: var(--brown-light);
}

.booking__summary-value {
  font-weight: 600; font-size: 0.92rem;
  color: var(--dark);
}

.booking__summary-row--total .booking__summary-label {
  font-weight: 700; color: var(--dark);
}
.booking__summary-row--total .booking__summary-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--brown);
}

.booking__summary-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 4px 0;
}

.booking__summary-note {
  font-size: 0.78rem;
  color: var(--khaki);
  line-height: 1.5;
  margin: 16px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--camel);
}

.booking__confirm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking__confirm-btn:disabled::before { display: none; }

/* ── CTA ── */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2b1a13 0%, var(--espresso) 50%, #6b3d28 100%);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,163,115,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,163,115,0.6), transparent);
  z-index: 0;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.92), rgba(107, 66, 38, 0.84));
}

.cta__ribbon { display: none; }

.cta__content {
  position: relative;
  z-index: 2;
  padding: 70px 24px;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta__content::before {
  content: '✦';
  display: block;
  font-size: 14px;
  color: rgba(212,163,115,0.7);
  letter-spacing: 10px;
  margin-bottom: 2px;
}

.cta__text { text-align: center; width: 100%; }

.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.cta__title em {
  font-style: italic;
  background: linear-gradient(90deg, #f5c27a, #e8916a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__desc {
  font-size: 0.9rem;
  color: rgba(215,201,184,0.88);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

/* ── CONTACT ── */
.contact {
  background: var(--linen);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Grid: info sidebar | form panel */
.contact__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

/* ─ Info column ─ */
.contact__info { display: flex; flex-direction: column; gap: 40px; color: var(--espresso); }

.contact__info-header { display: flex; flex-direction: column; gap: 12px; }

.contact__info-header .section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--camel);
}
.contact__info-header .section__label svg { stroke: var(--camel); }

.contact__info-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
  margin: 0;
}
.contact__info-title em { color: var(--camel); font-style: italic; }

.contact__info-sub {
  font-size: 0.9rem;
  color: var(--espresso);
  line-height: 1.65;
  margin: 0;
}

/* ─ Info list ─ */
.contact__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(178, 150, 125, 0.15);
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(178, 150, 125, 0.15);
  transition: padding-left 0.25s var(--ease);
}
.contact__item:hover { padding-left: 4px; }

.contact__item-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(178, 150, 125, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--camel);
}

.contact__item-body {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}

.contact__item-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--camel);
}

.contact__item-value {
  display: block;
  font-size: 0.9rem;
  color: var(--espresso) !important;
  text-decoration: none;
  word-break: break-word;
}
a.contact__item-value:hover { color: var(--camel); }

/* ─ Quote ─ */
.contact__quote {
  padding: 24px 28px;
  background: rgba(178, 150, 125, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--camel);
  margin: 0;
}
.contact__quote-mark {
  fill: var(--camel);
  opacity: 0.25;
  display: block;
  margin-bottom: 10px;
}
.contact__quote p {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--espresso);
  margin: 0 0 10px;
  line-height: 1.6;
}
.contact__quote cite {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--camel);
  font-style: normal;
}

/* ─ Form panel ─ */
.contact__form-panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(178, 150, 125, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 40px 44px;
}

.contact__form-header { margin-bottom: 28px; }

.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0 0 6px;
}

.contact__form-desc {
  font-size: 0.85rem;
  color: var(--espresso);
  margin: 0;
}

/* ─ Form fields ─ */
.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 8px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid rgba(178, 150, 125, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--linen);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--camel);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(178, 150, 125, 0.14);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(213, 200, 184, 0.35); }
.contact__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B2967D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact__form select option { background: #2c1810; color: var(--linen); }
.contact__form textarea { resize: vertical; min-height: 110px; }

/* ── CONTACT FORM 7 — styled to match design ── */

.contact__cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Strip default p margins at top level of form */
.contact__cf7 .wpcf7-form > p {
  margin: 0;
}

/* Form wrap background */
.contact__form-wrap {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--khaki);
}

/* Row layouts from CF7 custom markup */
.contact__cf7 .cf7-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact__cf7 .cf7-row--2 {
  grid-template-columns: 1fr 1fr;
}

.contact__cf7 .cf7-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CF7 wraps label+input in <p> — strip its margin */
.contact__cf7 .cf7-group p,
.contact__cf7 .cf7-group > p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Standalone cf7-group not in a row — full width */
.contact__cf7 > .cf7-group {
  width: 100%;
}

/* Labels */
.contact__cf7 .cf7-group p br { display: none; }
.contact__cf7 label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cocoa);
}
.contact__cf7 label abbr {
  color: var(--camel);
  text-decoration: none;
  margin-left: 3px;
}

/* Inputs, selects, textareas */
.contact__cf7 input[type="text"],
.contact__cf7 input[type="email"],
.contact__cf7 input[type="tel"],
.contact__cf7 select,
.contact__cf7 textarea {
  width: 100%;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--khaki);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--espresso);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
  box-sizing: border-box;
}
.contact__cf7 input:focus,
.contact__cf7 select:focus,
.contact__cf7 textarea:focus {
  border-color: var(--camel);
  box-shadow: 0 0 0 4px rgba(178,150,125,0.15);
}
.contact__cf7 input::placeholder,
.contact__cf7 textarea::placeholder { color: var(--khaki); }

/* Select arrow */
.contact__cf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B2967D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* Submit button */
.contact__cf7 input[type="submit"],
.contact__cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--espresso);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
  width: 100%;
}
.contact__cf7 input[type="submit"]:hover,
.contact__cf7 .wpcf7-submit:hover {
  background: var(--cocoa);
  transform: translateY(-2px);
}

/* Validation messages */
.contact__cf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}
.contact__cf7 .wpcf7-response-output {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  border: 1.5px solid var(--khaki);
}
.contact__cf7 .wpcf7-mail-sent-ok {
  background: rgba(178,150,125,0.1);
  border-color: var(--camel);
  color: var(--cocoa);
}
.contact__cf7 .wpcf7-validation-errors,
.contact__cf7 .wpcf7-mail-sent-ng {
  background: rgba(192,57,43,0.06);
  border-color: #c0392b;
  color: #c0392b;
}

/* Spinner */
.contact__cf7 .wpcf7-spinner {
  margin-left: 12px;
}

@media (max-width: 600px) {
  .contact__cf7 .cf7-row--2 { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--white);
  margin-bottom: 8px;
}
.footer__logo em { color: var(--tan); font-style: italic; }

.footer__subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.88rem; margin-bottom: 14px; opacity: 0.8; }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.footer__social-link:hover { color: var(--tan); }

.footer__logo-link { text-decoration: none; display: inline-block; margin-bottom: 12px; }
.footer__logo-img { display: block; height: 80px; width: auto; object-fit: contain; }
.footer__connect-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.88);
  min-height: 44px;
  transition: color 0.3s;
}
.footer__connect-link:hover { color: var(--camel); }
.footer__connect-link svg { flex-shrink: 0; opacity: 0.7; }

.footer__links h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__links ul { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer__links li { margin-bottom: 0; }
.footer__links a {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--tan); }

.footer__divider { padding: 0; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
}
.footer__credit { color: rgba(255, 255, 255, 0.75); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(44, 24, 16, 0.94);
  backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox__img {
  position: relative;
  z-index: 2001;
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox__close {
  position: fixed; top: 24px; right: 24px;
  z-index: 2100;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about__grid { gap: 48px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__line { display: none !important; }
  .policies__layout { grid-template-columns: 1fr; gap: 32px; }
  .booking-info__grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-info__divider { display: none; }
  .booking__grid { grid-template-columns: 1fr 1fr; }
  .booking__grid .booking__step:last-child { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__badge { display: none; }
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__form-panel { padding: 32px 28px 36px; }
  .contact__info-title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .booking-info { padding: 80px 0; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--linen);
    flex-direction: column;
    justify-content: center;
    gap: 24px; padding: 40px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: right 0.5s var(--ease);
  }
  .nav__links.open { right: 0; }
  .nav__links a { color: var(--brown) !important; font-size: 14px; }
  .nav__links .btn {
    background: var(--brown) !important;
    color: var(--white) !important;
    border-color: var(--brown) !important;
  }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img--main img { height: 420px; }
  .about__img--accent { right: 10px; bottom: -16px; width: 160px; }
  .about__img--accent img { height: 200px; }
  .about__dots { display: none; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial:last-child { max-width: none; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .booking__grid { grid-template-columns: 1fr; }
  .booking__time-grid { grid-template-columns: repeat(4, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__form-panel { padding: 28px 24px 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__ribbon { display: none; }
  .cta__ribbon { display: none; }
  .cta__content { flex-direction: column; text-align: center; padding: 36px 20px; gap: 20px; }
  .cta__text { text-align: center; }
  .price-grid { grid-template-columns: 1fr !important; }

  .marquee__content span { font-size: 0.95rem; }
  .marquee__content { gap: 28px; }
}

@media (max-width: 480px) {
  .hero__title-line { font-size: 2.5rem; }
  .hero__title-line--italic em { font-size: 3rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__features { gap: 16px; }
  .policies__grid { grid-template-columns: 1fr; }
  .services__tabs { gap: 6px; justify-content: center; }
  .tab    { padding: 10px 16px; font-size: 12px; flex: 0 1 auto; text-align: center; }
  .filter { padding: 8px 12px;  font-size: 12px; }

  /* Booking steps — stack on mobile */
  .booking__steps { flex-direction: column; align-items: center; gap: 28px; }
  .booking__steps::after { display: none; }
  .booking__book-btn { padding: 15px 36px !important; }
  .booking__trust { gap: 16px; }
  .booking__trust-sep { display: none; }
}

@media (max-width: 768px) {
  .page-hero__figure { object-position: center 9%; }
  .page-hero--gradient .page-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(44, 24, 16, 0.40) 0%,
      rgba(44, 24, 16, 0.58) 25%,
      rgba(44, 24, 16, 0.72) 55%,
      rgba(44, 24, 16, 0.85) 85%,
      rgba(44, 24, 16, 0.90) 100%
    );
  }
}

@media (max-width: 480px) {
  .page-hero__figure { object-position: center 9%; }
}

/* ══════════════════════════════════════════
   PAGE HERO — Inner page hero header
   ══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 16.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

/* Gradient mode — used when a transparent PNG figure is set */
.page-hero--gradient {
  background: var(--espresso);
}
.page-hero__bg--gradient {
  background: linear-gradient(
    180deg,
    rgba(74, 52, 42, 0.15) 0%,
    rgba(74, 52, 42, 0.35) 25%,
    rgba(74, 52, 42, 0.60) 50%,
    rgba(74, 52, 42, 0.80) 75%,
    rgba(74, 52, 42, 0.92) 100%
  );
}
.page-hero__figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 9%;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
}
.page-hero--gradient .page-hero__overlay {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.40) 0%,
    rgba(44, 24, 16, 0.58) 25%,
    rgba(44, 24, 16, 0.72) 55%,
    rgba(44, 24, 16, 0.85) 85%,
    rgba(44, 24, 16, 0.90) 100%
  );
}
.page-hero--gradient .page-hero__content h1,
.page-hero--gradient .page-hero__content h2,
.page-hero--gradient .page-hero__content [class*="heading"],
.page-hero--gradient .page-hero__content p,
.page-hero--gradient .page-hero__content span {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}
.page-hero--gradient .page-hero__content { z-index: 3; }

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.40) 0%,
    rgba(44, 24, 16, 0.58) 25%,
    rgba(44, 24, 16, 0.72) 55%,
    rgba(44, 24, 16, 0.85) 85%,
    rgba(44, 24, 16, 0.90) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 20px;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero__divider {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── NAV SCROLL BTN (for home page section scrolling) ── */
.nav__scroll-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  transition: color 0.3s;
}
.nav.scrolled .nav__scroll-btn { color: var(--espresso); }
.nav__scroll-btn::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tan);
  transition: width 0.4s var(--ease);
}
.nav__scroll-btn:hover::after { width: 100%; }

/* ── FOOTER ANCHOR BUTTONS ── */
.footer-anchor-btn {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  transition: color 0.3s;
}
.footer-anchor-btn:hover { color: var(--tan); }

/* ── ABOUT PAGE SPECIFIC ── */
.about-page .about__grid {
  grid-template-columns: 1fr 1fr;
}

/* ── SERVICES PAGE SPECIFIC ── */
.services-page .services__tabs {
  justify-content: flex-start;
}

/* ── FAQ PAGE SPECIFIC ── */
.faq-page .faq__list {
  max-width: none;
}

/* ── ACTIVE NAV LINK ── */
.nav__links a.active:not(.btn)::after,
.nav__links a[aria-current="page"]:not(.btn)::after {
  width: 100%;
}
.nav.scrolled .nav__links a.active:not(.btn) { color: var(--espresso); }
.nav__links a.active:not(.btn) { color: var(--tan-light); }

/* ── NAV BOOK CTA ── */
.nav__links a[href*="book-appointment"] {
  white-space: nowrap;
  padding: 7px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav__links a[href*="book-appointment"]::after { display: none !important; }
.nav__links a[href*="book-appointment"]:hover {
  background: var(--white);
  color: var(--dark) !important;
  border-color: var(--white);
}
.nav.scrolled .nav__links a[href*="book-appointment"] {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white) !important;
}
.nav.scrolled .nav__links a[href*="book-appointment"]:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--white) !important;
}

/* ── RESPONSIVE PAGE HERO ── */
@media (max-width: 768px) {
  .page-hero { min-height: 13.5vh; }
  .page-hero__title { font-size: 2rem; }
  .about-page .about__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SERVICES PAGE — Tab Price Menu
══════════════════════════════════════════ */
.sp-intro { background: var(--cream-light); }

.sp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.sp-intro__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown-light);
  margin-bottom: 16px;
}

.sp-intro__detail-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: rgba(255,255,255,0.75);
}

.sp-intro__detail-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--camel);
  margin-bottom: 20px;
}

.sp-intro__detail-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-intro__detail-card li {
  padding-left: 16px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
}

.sp-intro__detail-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tan);
}

.sp-menu { background: var(--linen); }

/* Tabs */
.sp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 0;
}

.sp-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(107, 66, 38, 0.2);
  background: transparent;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.sp-tab:hover {
  border-color: var(--tan);
  color: var(--tan-dark);
}

.sp-tab.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* Panel */
.sp-panel {
  margin-top: 32px;
}

.sp-panel__note {
  font-size: 0.9rem;
  color: var(--tan-dark);
  font-style: italic;
  margin-bottom: 28px;
  padding: 14px 20px;
  background: rgba(200,168,130,0.1);
  border-left: 3px solid var(--tan);
  border-radius: 0 6px 6px 0;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sp-price-card {
  background: var(--cream-light);
  border: 1px solid rgba(107,66,38,0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.sp-price-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.sp-price-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.sp-price-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.sp-price-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
  flex-shrink: 0;
}

.sp-price-card__desc {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sp-price-card__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(107,66,38,0.5);
  font-weight: 500;
}

.sp-cta {
  text-align: center;
  margin-top: 56px;
}

/* What to Expect */
.sp-expect { background: var(--cream-dark); }

.sp-expect__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.sp-expect__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--camel);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.sp-expect__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.sp-expect__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--brown-light);
}

@media (max-width: 1024px) {
  .sp-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-expect__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-expect__grid { grid-template-columns: 1fr; }
  .sp-tabs { gap: 6px; }
  .sp-tab { padding: 8px 16px; font-size: 0.75rem; }
}

/* ── Page CTA label (inside the shared CTA section) ── */
.page-cta__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   WORDPRESS FSE / BLOCK THEME OVERRIDES
   ═══════════════════════════════════════════════ */

/* Remove WP site-blocks default padding */
.wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Reset wp-block-group margins */
.wp-block-group {
  margin-block: 0;
}

/* Prevent WP from adding extra spacing around template parts */
.wp-block-template-part {
  display: contents;
}

/* Editor body background alignment */
body.wp-admin {
  background: var(--cream-light);
}

/* Ensure hero background image path resolves correctly from WP theme */
.hero__bg-img {
  background-image: url('/wp/wp-content/uploads/2026/04/hero-portrait-1.jpg');
}


/* Block editor alignment */
.editor-styles-wrapper {
  font-family: 'Montserrat', sans-serif;
  color: var(--brown);
  background: var(--cream-light);
}

/* Prevent WP adding top margin to first block */
.wp-block-post-content > *:first-child {
  margin-top: 0;
}

/* Cormorant Garamond alias for preloader/headings */
.preloader__text,
.hero__title,
.section__title,
.footer__logo,
.booking__step-header h3,
.cal__month,
.process__step h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

/* ── PER-PAGE HERO POSITIONING ── */
.page-id-7 .page-hero__bg  { background-position: center 1%; background-size: 32% } /* Services  */
.page-id-8 .page-hero__bg  { background-position: center 12%; background-size: 21%; } /* Gallery   */
.page-id-9 .page-hero__bg  { background-position: center 26%; background-size: 47%; } /* FAQ       */
.page-id-10 .page-hero__bg { background-position: 53% 50%; background-size: 21%; } /* Contact   */
.page-id-6 .page-hero__bg  { background-position: center 18%; } /* About     */
.page-id-151 .page-hero      { min-height: 16.5vh; }
.page-id-151 .page-hero__bg  { background-position: center top; background-size: 35%; }

@media (max-width: 768px) {
.page-id-7 .page-hero__bg  { background-position: center 0%; background-size: 130% } /* Services  */
.page-id-8 .page-hero__bg  { background-position: center 25%; background-size: 80%; } /* Gallery   */
.page-id-9 .page-hero__bg  { background-position: center 36%; background-size: 100%; } /* FAQ       */
.page-id-10 .page-hero__bg { background-position: 53% 50%; background-size: 93%; } /* Contact   */
.page-id-6 .page-hero__bg  { background-position: center 18%; } /* About     */
.page-id-151 .page-hero         { min-height: 13.5vh; }
.page-id-151 .page-hero__content { padding-top: 41px; padding-bottom: 41px; }
.page-id-151 .page-hero__bg  { background-position: center top; background-size: 100%; }
}

/* For Ipad */
@media only screen 
and (min-width: 768px) 
and (max-width: 1024px) 
and (-webkit-min-device-pixel-ratio: 1) {
    .page-id-8 .page-hero__bg {
        background-position: center 94%;
        background-size: 27%;
    }
	.page-id-7 .page-hero__bg {
		background-position: center 3%;
		background-size: 63%;
	}
	.page-id-10 .page-hero__bg {
		background-size: 46%;
	}
	.page-id-151 .page-hero__content { padding-top: 41px; padding-bottom: 41px; }
	.page-id-151 .page-hero__bg      { background-position: center top; background-size: 45%; }
}

/* For 1152 - 1536 */
/* iPad Pro M4 Portrait + Landscape */
@media only screen 
and (min-width: 1024px) 
and (max-width: 1366px) 
and (pointer: coarse) {

    .page-id-10 .page-hero__bg {
        background-position: 53% 50%;
        background-size: 29% !important;
    }
}

@media (min-width: 740px) and (max-width: 760px) {
 .page-id-10 .page-hero__bg {
        background-position: 53% 50%;
        background-size: 29% !important;
    }
}
/* @media only screen 
and (min-width: 1152px) 
	and (max-width: 1536px)  {
	.page-id-10 .page-hero__bg {
		background-position: 53% 50%;
		background-size: 29%!important;
	}
} */


/* =============================================
   FOOTER REDESIGN
   ============================================= */

footer.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.88);
  padding: 0;
}

.footer__main {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 0;
  padding: 54px 64px 46px;
  box-sizing: border-box;
  width: 100%;
}

.footer__col {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  box-sizing: border-box;
}
.footer__col:first-child { padding-left: 0; }
.footer__col:last-child  { border-right: none; padding-right: 0; }

.footer__col--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo-link { display: block; margin-bottom: 16px; text-decoration: none; }
.footer__logo-img  { height: 76px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.88; }

.footer__tagline {
  font-size: 13px;
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 22px;
  line-height: 1.65;
  max-width: 190px;
  font-weight: 400;
}

.footer__cta-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(215,201,184,0.65);
  color: var(--tan);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-weight: 600;
  white-space: nowrap;
}
.footer__cta-btn:hover { background: var(--tan); color: var(--dark); border-color: var(--tan); }

.footer__col-title {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__nav-list li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer__nav-list li a:hover { color: var(--tan); padding-left: 5px; }

.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.footer__contact-icon { font-size: 13px; opacity: 0.8; flex-shrink: 0; margin-top: 1px; }
.footer__contact-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  transition: color 0.25s;
}
.footer__contact-link:hover { color: var(--tan); }

.footer__social-row {
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.footer__social-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s;
}
.footer__social-icon svg { flex-shrink: 0; }
.footer__social-icon:hover { color: var(--tan); }

.footer__divider-line {
  height: 1px;
  background: rgba(183,150,125,0.15);
  margin: 0 64px;
}

.footer__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy, .footer__credit {
  font-size: 12px;
  opacity: 0.4;
  margin: 0;
}
.footer__legal-links { display: flex; align-items: center; gap: 10px; }
.footer__legal-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.25s;
}
.footer__legal-links a:hover { color: var(--tan); }
.footer__sep { color: rgba(255,255,255,0.2); font-size: 12px; }

@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: 44px 36px 36px;
  }
  .footer__col { padding: 0; border-right: none; }
  .footer__col--brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer__tagline { max-width: 300px; text-align: center; }
  .footer__divider-line { margin: 0 36px; }
  .footer__bottom-bar  { padding: 16px 36px; }
}

@media (max-width: 540px) {
  .footer__main { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px 28px; }
  .footer__col--brand { grid-column: 1; align-items: center; text-align: center; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer__logo-img { height: 62px; }
  .footer__tagline { max-width: 260px; text-align: center; }
  .footer__col { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 28px; }
  .footer__col:last-child { border-bottom: none; padding-bottom: 0; }
  .footer__divider-line { margin: 0 24px; }
  .footer__bottom-bar { flex-direction: column; align-items: center; text-align: center; padding: 16px 24px; gap: 6px; }
}
/* ── END FOOTER REDESIGN ── */

/* ── END hero highlight ── */

/* ═══════════════════════════════════════════
   ABOUT PAGE — keyframe animations
═══════════════════════════════════════════ */
@keyframes sbc-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes sbc-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sbc-lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}
@keyframes sbc-ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(178,150,125,0); }
  50%      { box-shadow: 0 0 0 8px rgba(178,150,125,0.18); }
}

@keyframes barShine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes pulseRing {
  0%   { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.preloader__logo-wrap .pulse-ring {
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(178, 150, 125, 0.35);
  border-radius: 12px;
  pointer-events: none;
  animation: pulseRing 1s ease-out forwards;
}

/* About panel label animation */
.about-story__panel::before {
  animation: sbc-fadeIn 0.5s ease-out 0.1s both;
}

/* Page H1 slide-up + underline grow */
.about-story__page-h1 {
  animation: sbc-fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}
.about-story__page-h1::after {
  animation: sbc-lineGrow 0.5s cubic-bezier(0.22,1,0.36,1) 0.65s both;
  width: 0;
}

/* Quote, bio staggered */
.about-story__quote {
  animation: sbc-fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.42s both;
}
.about-story__bio {
  animation: sbc-fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.58s both;
}

/* CTA button */
.sbc-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 4px;
  padding: 13px 26px;
  background: var(--camel);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  animation: sbc-fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.85s both,
             sbc-ctaPulse 3s ease-in-out 1.4s infinite;
}
.sbc-panel-cta:hover {
  background: var(--linen);
  color: var(--espresso);
  transform: translateY(-2px);
}
.sbc-panel-cta svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.sbc-panel-cta:hover svg {
  transform: translateX(4px);
}
