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

:root {
  --ivory: #FAF8F5;
  --ivory-dark: #F2EDE6;
  --charcoal: #1A1916;
  --charcoal-mid: #252320;
  --gold: #C9A96E;
  --gold-light: #DFC99A;
  --gold-pale: #F5EDD8;
  --warm-gray: #8A8480;
  --warm-gray-light: #B5B0AA;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --nav-h: 88px;
  --pad: clamp(80px, 10vw, 140px);
  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.35s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.7; color: var(--charcoal); background: var(--ivory); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font-family: var(--font-sans); }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
.eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; }

/* ─── Layout ─── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--pad); }
.section--sm { padding-block: clamp(48px, 6vw, 88px); }

/* ─── NAV ─── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled { background: var(--ivory); box-shadow: 0 1px 0 rgba(0,0,0,0.07); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter);
}
.nav__logo { line-height: 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); transition: color var(--t);
}
.nav.scrolled .nav__links a { color: var(--charcoal); }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  padding: 9px 22px; border: 1px solid var(--gold); border-radius: 2px;
  color: var(--gold) !important; transition: background var(--t), color var(--t) !important;
}
.nav__cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--t); border-radius: 2px; }
.nav.scrolled .nav__burger span { background: var(--charcoal); }
.nav__mobile {
  display: none; position: fixed; inset: 0; background: var(--charcoal); z-index: 190;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-serif); font-size: 32px; color: var(--white); transition: color var(--t); }
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close { position: absolute; top: 24px; right: var(--gutter); color: var(--white); font-size: 28px; cursor: pointer; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-sans); font-size: 12px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; transition: var(--t); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,169,110,0.28); }
.btn-outline-w { border: 1px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-w:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-d { border: 1px solid var(--charcoal); color: var(--charcoal); }
.btn-outline-d:hover { background: var(--charcoal); color: var(--ivory); }

/* ─── Hero ─── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center 30%;
  transform: scale(1.06); transition: transform 8s var(--ease);
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(26,25,22,0.78) 0%, rgba(26,25,22,0.48) 55%, rgba(26,25,22,0.62) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter);
  padding-top: var(--nav-h);
}
.hero__eyebrow { color: var(--gold); margin-bottom: 24px; }
.hero__title {
  font-family: var(--font-serif); font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300; color: var(--white); line-height: 1.04; letter-spacing: -0.025em;
  margin-bottom: 24px; max-width: 820px;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,0.72);
  max-width: 460px; margin-bottom: 48px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Trust bar ─── */
.trust-bar { background: var(--charcoal-mid); padding: 32px 0; }
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 5vw, 72px); flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item__num { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.trust-item__lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; display: block; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ─── Section header ─── */
.sec-hdr { margin-bottom: clamp(40px, 5vw, 64px); }
.sec-hdr--c { text-align: center; }
.sec-title { font-size: clamp(32px, 4.5vw, 56px); margin-top: 14px; }
.sec-sub { font-size: 16px; color: var(--warm-gray); max-width: 520px; margin-top: 16px; line-height: 1.65; }
.sec-hdr--c .sec-sub { margin-inline: auto; }

/* ─── Services grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card {
  padding: 48px 40px; background: var(--white); position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.08); }
.svc-card__icon { font-size: 28px; color: var(--gold); margin-bottom: 22px; display: block; }
.svc-card__title { font-size: 22px; margin-bottom: 12px; }
.svc-card__body { font-size: 14px; color: var(--warm-gray); line-height: 1.7; }

/* ─── About split ─── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.about-split__img { position: relative; overflow: hidden; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease); }
.about-split__img:hover img { transform: scale(1.04); }
.about-split__body {
  background: var(--charcoal); padding: clamp(48px, 7vw, 100px);
  display: flex; flex-direction: column; justify-content: center; color: var(--white);
}
.about-split__quote {
  font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic; font-weight: 300; line-height: 1.55;
  color: var(--gold-light); margin-bottom: 36px;
}
.about-split__name { font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.about-split__role { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 5px; }
.about-split__creds {
  display: flex; flex-direction: column; gap: 10px; margin-top: 40px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.about-cred { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.55); }
.about-cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); min-width: 5px; }

/* ─── Packages ─── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pkg-card {
  border: 1px solid var(--gold-light); padding: 48px 36px; position: relative;
  background: var(--white); transition: var(--t);
}
.pkg-card:hover { border-color: var(--gold); box-shadow: 0 28px 56px rgba(0,0,0,0.09); transform: translateY(-6px); }
.pkg-card--feat { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.pkg-card--feat:hover { border-color: var(--gold); box-shadow: 0 28px 56px rgba(0,0,0,0.22); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--charcoal); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 18px; border-radius: 2px; white-space: nowrap;
}
.pkg-tier { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.pkg-name { font-size: 26px; margin-bottom: 8px; }
.pkg-card--feat .pkg-name { color: var(--white); }
.pkg-duration { font-size: 13px; color: var(--warm-gray); margin-bottom: 24px; }
.pkg-card--feat .pkg-duration { color: rgba(255,255,255,0.45); }
.pkg-rule { height: 1px; background: var(--gold-light); margin: 24px 0; }
.pkg-card--feat .pkg-rule { background: rgba(255,255,255,0.12); }
.pkg-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 40px; }
.pkg-feat { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--warm-gray); line-height: 1.5; }
.pkg-card--feat .pkg-feat { color: rgba(255,255,255,0.65); }
.pkg-feat-check { width: 16px; min-width: 16px; height: 16px; margin-top: 2px; }

/* ─── Testimonials ─── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testi-card { background: var(--white); padding: 44px; position: relative; }
.testi-card::before {
  content: '\201C'; position: absolute; top: 20px; left: 36px;
  font-family: var(--font-serif); font-size: 88px; line-height: 1;
  color: var(--gold-pale); pointer-events: none;
}
.testi-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card__text {
  font-family: var(--font-serif); font-size: 18px; font-style: italic;
  font-weight: 300; line-height: 1.62; color: var(--charcoal); margin-bottom: 28px; margin-top: 32px;
}
.testi-card__name { font-size: 12px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.testi-card__date { font-size: 12px; color: var(--warm-gray-light); margin-top: 4px; }

/* ─── Gallery preview ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gal-item { overflow: hidden; position: relative; background: var(--charcoal-mid); }
.gal-item--wide { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item__overlay {
  position: absolute; inset: 0; background: rgba(26,25,22,0);
  transition: background var(--t); display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-item__overlay { background: rgba(26,25,22,0.32); }
.gal-item__plus { color: var(--white); font-size: 24px; opacity: 0; transform: scale(0.7); transition: var(--t); }
.gal-item:hover .gal-item__plus { opacity: 1; transform: scale(1); }

/* ─── CTA banner ─── */
.cta-band {
  background: var(--charcoal); padding: clamp(72px, 10vw, 120px) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,169,110,0.07) 0%, transparent 70%);
}
.cta-band__inner { position: relative; }
.cta-band__title { font-size: clamp(32px, 4.5vw, 56px); color: var(--white); margin-bottom: 16px; }
.cta-band__sub { color: rgba(255,255,255,0.5); font-size: 16px; margin-bottom: 44px; max-width: 420px; margin-inline: auto; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Award badges ─── */
.awards-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.award-item img { height: 96px; width: auto; transition: var(--t); }
.award-item:hover img { transform: scale(1.06); }

/* ─── Footer ─── */
.footer { background: var(--charcoal); border-top: 1px solid rgba(201,169,110,0.15); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer__logo img { height: 34px; width: auto; margin-bottom: 20px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 240px; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 15px; transition: var(--t);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-head { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.48); transition: color var(--t); }
.footer__links a:hover { color: var(--white); }
.footer__contact-line { font-size: 14px; color: rgba(255,255,255,0.48); margin-bottom: 10px; display: block; }
.footer__contact-line a { color: rgba(255,255,255,0.48); transition: color var(--t); }
.footer__contact-line a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__abn { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── Page hero (inner pages) ─── */
.page-hero {
  background: var(--charcoal); text-align: center; color: var(--white);
  padding: calc(var(--nav-h) + clamp(56px, 7vw, 96px)) 0 clamp(56px, 7vw, 96px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.page-hero__inner { position: relative; }
.page-hero__title { font-size: clamp(40px, 5.5vw, 68px); color: var(--white); margin-top: 14px; }
.page-hero__sub { color: rgba(255,255,255,0.5); margin-top: 14px; font-size: 16px; max-width: 480px; margin-inline: auto; }

/* ─── Contact form ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info__item { margin-bottom: 32px; }
.contact-info__lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.contact-info__val { font-size: 16px; color: var(--charcoal); }
.contact-info__val a { color: var(--charcoal); transition: color var(--t); }
.contact-info__val a:hover { color: var(--gold); }
.form-wrap { background: var(--white); padding: 56px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-col { display: flex; flex-direction: column; gap: 6px; }
.form-col--full { grid-column: span 2; }
.form-lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; background: var(--ivory); border: 1px solid var(--gold-light);
  border-radius: 2px; font-size: 15px; color: var(--charcoal);
  transition: border-color var(--t); outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: var(--white); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--warm-gray); cursor: pointer; }
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.form-submit { margin-top: 12px; }

/* ─── Music page ─── */
.mixes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.mix-card { background: var(--white); padding: 32px; border-bottom: 2px solid transparent; transition: var(--t); }
.mix-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.07); }
.mix-card__num { font-family: var(--font-serif); font-size: 42px; font-weight: 300; color: var(--gold-pale); line-height: 1; margin-bottom: 8px; }
.mix-card__title { font-size: 15px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 6px; }
.mix-card__sub { font-size: 13px; color: var(--warm-gray); }

/* ─── Reviews page ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.review-card { background: var(--white); padding: 40px; }
.review-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.review-card__text { font-family: var(--font-serif); font-size: 18px; font-style: italic; font-weight: 300; line-height: 1.65; margin-bottom: 28px; }
.review-card__reviewer { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.review-card__date { font-size: 12px; color: var(--warm-gray-light); margin-top: 4px; }

/* ─── Review marquee carousel ─── */
.reviews-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewScroll 60s linear infinite;
}
.reviews-marquee-track:hover { animation-play-state: paused; }
@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-card {
  width: 360px;
  min-width: 360px;
  background: var(--white);
  padding: 36px 36px 32px;
  position: relative;
  flex-shrink: 0;
}
.marquee-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}
.marquee-card__stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.marquee-card__text {
  font-family: var(--font-serif);
  font-size: 17px; font-style: italic; font-weight: 300;
  line-height: 1.62; color: var(--charcoal);
  margin-top: 28px; margin-bottom: 24px;
}
.marquee-card__name { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.marquee-card__date { font-size: 11px; color: var(--warm-gray-light); margin-top: 3px; }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── Services page ─── */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-block: clamp(60px, 8vw, 100px); }
.svc-detail--flip { direction: rtl; }
.svc-detail--flip > * { direction: ltr; }
.svc-detail__img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.svc-detail__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 5s var(--ease); }
.svc-detail__img:hover img { transform: scale(1.04); }
.svc-detail__title { font-size: clamp(28px, 3.5vw, 44px); margin: 14px 0 20px; }
.svc-detail__body { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 32px; }
.svc-detail-rule { border: none; border-top: 1px solid rgba(201,169,110,0.2); }

/* ─── About page ─── */
.bio-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.bio-img-wrap { position: sticky; top: calc(var(--nav-h) + 40px); }
.bio-img { aspect-ratio: 3/4; overflow: hidden; }
.bio-img img { width: 100%; height: 100%; object-fit: cover; }
.bio-body__lead { font-family: var(--font-serif); font-size: clamp(20px, 2vw, 26px); font-weight: 300; line-height: 1.55; color: var(--charcoal); margin-bottom: 32px; }
.bio-body p { font-size: 15px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 20px; }
.bio-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; padding-top: 44px; border-top: 1px solid rgba(201,169,110,0.2); }
.bio-stat__num { font-family: var(--font-serif); font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; display: block; }
.bio-stat__lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--warm-gray); margin-top: 6px; display: block; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { min-height: 360px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-img-wrap { position: static; }
  .bio-img { aspect-ratio: 16/9; max-height: 400px; }
  .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail--flip { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gal-item--wide { grid-column: span 1; }
  .gallery-grid .gal-item { height: 200px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__tagline { max-width: 100%; }
  .trust-sep { display: none; }
  .trust-bar__inner { gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-col--full { grid-column: span 1; }
  .form-wrap { padding: 32px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
