*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0c0a;
  --panel: #151512;
  --panel-soft: rgba(10, 10, 8, 0.78);
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --text: #f2ede6;
  --muted: rgba(242,237,230,.58);
  --accent: #c8a97e;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --shadow: 0 28px 90px rgba(0,0,0,.4);
}

html { scroll-behavior: smooth; scroll-padding-top: 104px; max-width: 100%; overflow-x: hidden; }
body {
  background: #0e0e0c;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  max-width: 100%;
  overflow-x: hidden;
}
body.modal-open,
body.mobile-nav-open { overflow: hidden; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.btn-reset { font: inherit; color: inherit; background: none; border: 0; }

#bg-canvas,
#bg-scrim,
#bg-grain {
  position: fixed;
  inset: 0;
}
#bg-canvas { z-index: 0; background: #0e0e0c; }
.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) saturate(.12) brightness(.58) contrast(1.08);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1), transform 12s linear;
}
.bg-layer.visible {
  opacity: 1;
  transform: scale(1);
}
#bg-scrim {
  z-index: 1;
  background: rgba(7,7,6,.48);
  transition: background .8s ease;
  pointer-events: none;
}
#bg-grain {
  z-index: 2;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

#page {
  position: relative;
  z-index: 3;
  overflow-x: clip;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  transition: background .5s, padding .4s, backdrop-filter .5s;
}
nav.scrolled {
  background: rgba(14,14,12,.82);
  backdrop-filter: blur(14px);
  padding: 16px 52px;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-left a,
.nav-right a,
.nav-right button {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: none;
  border: 0;
  transition: color .3s;
}
.nav-left a:hover,
.nav-right a:hover,
.nav-right button:hover { color: var(--accent); }
.nav-logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
}
.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}
.mobile-nav-toggle {
  position: relative;
  z-index: 220;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-nav-toggle span {
  width: 16px;
  height: 1px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-nav-toggle.active span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.mobile-nav-toggle.active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(7,7,6,.84);
  backdrop-filter: blur(18px);
  padding: 92px 18px 24px;
}
.mobile-nav-panel.open {
  display: block;
}
.mobile-nav-inner {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,17,14,.96), rgba(12,12,10,.96));
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 10px;
}
.mobile-nav-link,
.mobile-nav-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.84);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.mobile-nav-book {
  margin-top: 4px;
  border-color: rgba(200,169,126,.38);
  background: rgba(200,169,126,.12);
  color: var(--accent);
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  background: transparent;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(7,7,6,.82));
  pointer-events: none;
}
.hero-eyebrow,
.section-label,
.testi-eyebrow,
.cta-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-eyebrow { margin-bottom: 22px; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(10px, 1.1vw, 12.5px);
  font-weight: 300;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-top: 20px;
  color: rgba(255,255,255,.6);
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 28px auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.hero-cta,
.hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background .3s, border-color .3s, color .3s, transform .28s ease, box-shadow .28s ease;
}
.hero-cta {
  background: var(--accent);
  color: #181612;
  border: 1px solid var(--accent);
  box-shadow: 0 16px 34px rgba(200,169,126,.12);
}
.hero-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.hero-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.68);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.hero-cta:hover {
  background: #d8b489;
  border-color: #d8b489;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(200,169,126,.18);
}
.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 0;
  transition: background .3s, transform .3s;
}
.dot.active { background: var(--accent); transform: scale(1.4); }
.slide-counter {
  position: absolute;
  bottom: 44px;
  right: 52px;
  z-index: 4;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  padding: 20px;
  font-size: 24px;
  color: rgba(255,255,255,.45);
}
.arrow:hover { color: var(--accent); }
.arrow-left { left: 24px; }
.arrow-right { right: 24px; }
.scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 52px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s infinite;
}

.section-wrap { position: relative; }

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}
.philosophy-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.phil-img-wrap { overflow: hidden; }
.phil-img-wrap:nth-child(1) { grid-row: 1 / 3; }
.phil-img-wrap:nth-child(2) {
  align-self: end;
  margin-bottom: 32px;
  margin-left: -48px;
  position: relative;
  z-index: 2;
}
.phil-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transition: transform .7s ease;
}
.phil-img-wrap:hover .phil-img { transform: scale(1.03); }
.philosophy-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: rgba(10,10,8,.72);
  color: #fff;
}
.philosophy-text h2,
.section-header h2,
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.philosophy-text h2 { color: #fff; }
.philosophy-copy,
.section-header p,
.pricing-card li,
.footer-copy,
.footer-social a,
.testi-service,
.cta-banner p {
  color: rgba(255,255,255,.62);
  line-height: 1.9;
}
.philosophy-copy {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  font-size: 14px;
}
.btn-outline {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 4px;
}
.btn-outline:hover { color: var(--accent); border-color: var(--accent); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header p {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 12px;
}

.works {
  padding: 110px 48px;
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: 920px;
}
.works .section-header h2 { color: #fff; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 86px;
  grid-auto-flow: dense;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}
.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
  grid-column: span 4;
  grid-row: span 5;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.work-item.wide {
  grid-column: span 8;
  grid-row: span 5;
}
.work-item:nth-child(6n + 4):not(.wide),
.work-item:nth-child(6n + 5):not(.wide) {
  grid-row: span 4;
}
.work-item:nth-child(6n + 6):not(.wide) {
  grid-row: span 6;
}
.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88);
  transition: transform .85s ease, filter .4s ease;
}
.work-item:hover .work-img {
  transform: scale(1.07);
  filter: brightness(.7);
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-label {
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .07em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}
.work-item:hover .work-label {
  opacity: 1;
  transform: translateY(0);
}
.work-label-wrap {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 8px;
  z-index: 2;
}
.work-link,
.spec-link,
.pricing-cta {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.work-link {
  color: rgba(255,255,255,.6);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s, color .3s;
}
.work-item:hover .work-link {
  opacity: 1;
  transform: translateY(0);
  color: var(--accent);
}

@media (min-width: 861px) {
  .work-item:first-child.wide {
    grid-column: 1 / span 8;
  }
  .work-item:nth-child(2) {
    grid-column: 9 / span 4;
  }
  .work-item:nth-child(3) {
    grid-column: 1 / span 4;
  }
  .work-item:nth-child(4) {
    grid-column: 5 / span 4;
  }
  .work-item:last-child.wide {
    grid-column: 5 / span 8;
  }
}

.specialisations {
  padding: 110px 48px;
  background: rgba(10,10,8,.78);
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 64px;
}
.spec-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
}
.spec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
  transition: transform .7s ease, filter .5s;
}
.spec-card:hover .spec-img {
  transform: scale(1.08);
  filter: brightness(.45);
}
.spec-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
}
.spec-tag {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.spec-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}
.spec-link {
  margin-top: 14px;
  display: inline-flex;
  color: rgba(255,255,255,.64);
  transition: color .3s ease, transform .3s ease;
}
.spec-card:hover .spec-link {
  color: var(--accent);
  transform: translateX(4px);
}

.testimonial {
  padding: 120px 48px;
  text-align: center;
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: 840px;
}
.testimonial-inner { position: relative; z-index: 1; }
.testi-track { position: relative; }
.testi-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: testiIn .7s ease both;
}
.testi-slide.active { display: flex; }
.testi-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 20px;
}
.testi-star {
  font-size: 14px;
  color: var(--accent);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.92);
}
.testimonial blockquote::before {
  content: "\201C";
  display: block;
  font-size: 72px;
  line-height: .7;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: .5;
}
.testimonial-rule {
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin: 20px auto;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  font-style: normal;
}
.testi-service {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot,
.testi-arrow {
  border: none;
  background: none;
}
.testi-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: background .3s, transform .3s;
}
.testi-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}
.testi-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.testi-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing {
  padding: 110px 48px;
  background: rgba(10,10,8,.82);
  content-visibility: auto;
  contain-intrinsic-size: 920px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.pricing-card.featured {
  border-color: rgba(200,169,126,.42);
  background: linear-gradient(180deg, rgba(200,169,126,.12), rgba(255,255,255,.02));
}
.pricing-card:hover,
.pricing-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(200,169,126,.44);
  background: linear-gradient(180deg, rgba(200,169,126,.12), rgba(255,255,255,.03));
  box-shadow:
    0 32px 90px rgba(0,0,0,.44),
    0 0 32px rgba(200,169,126,.16);
}
.pricing-card:focus-visible {
  outline: 0;
}
.pricing-badge {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid rgba(200,169,126,.24);
  background: rgba(200,169,126,.08);
  color: var(--accent);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.pricing-tier {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-amount {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.pricing-card ul {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  list-style: none;
  flex: 1;
}
.pricing-cta {
  margin-top: 26px;
  display: inline-flex;
  color: var(--accent);
  transition: letter-spacing .28s ease, transform .28s ease, color .28s ease;
}
.pricing-card:hover .pricing-cta,
.pricing-card:focus-visible .pricing-cta {
  letter-spacing: .28em;
  transform: translateX(4px);
}
.pricing-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

.cta-banner {
  margin: 0 48px 110px;
  padding: 40px 44px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-copy-wrap {
  display: grid;
  gap: 12px;
  max-width: 720px;
}
.cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #181612;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cta-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200,169,126,.18);
}

.footer {
  padding: 0 48px 54px;
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}
.footer-inner {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: start;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.footer-copy {
  max-width: 460px;
  font-size: 13px;
}
.footer-social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-social a {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-social a:hover { color: var(--accent); }

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5,5,4,.82);
  backdrop-filter: blur(12px);
}
.booking-overlay.open { display: flex; }
.booking-modal {
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,12,10,.98), rgba(18,18,15,.97));
  box-shadow: var(--shadow);
  position: relative;
  scrollbar-width: thin;
}
.booking-modal::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,.24), var(--accent), rgba(200,169,126,.24), transparent);
}
.booking-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
}
.booking-close:hover { color: var(--accent); }
.booking-header {
  padding: 34px 34px 26px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: .03em;
}
.booking-subtitle,
.booking-note,
.booking-success p {
  color: rgba(243,238,231,.72);
  font-size: 14px;
  line-height: 1.8;
}
.booking-body {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
}
.booking-body.success-mode {
  grid-template-columns: 1fr;
  min-height: 520px;
  align-items: stretch;
}
.booking-body.success-mode .booking-summary,
.booking-body.success-mode .booking-form { display: none; }
.booking-body.success-mode .booking-success {
  display: grid !important;
  width: min(100%, 680px);
  min-height: 320px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  align-content: center;
  align-self: center;
  justify-self: center;
  justify-items: start;
}
.booking-summary {
  border-right: 1px solid var(--line);
  padding: 30px;
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
}
.booking-summary-card,
.booking-package-card,
.booking-chip,
.booking-form,
.booking-success {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.booking-success[hidden],
.booking-form[hidden],
.booking-error[hidden],
.booking-learning[hidden],
.booking-availability[hidden] {
  display: none !important;
}
.booking-summary-card { padding: 20px; display: grid; gap: 16px; }
.booking-summary-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.booking-chip-grid,
.booking-package-grid { display: grid; gap: 12px; }
.booking-chip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-chip,
.booking-package-card {
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.booking-chip {
  padding: 12px 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  text-align: left;
}
.booking-package-card {
  padding: 16px;
  display: grid;
  gap: 6px;
  text-align: left;
}
.booking-package-card.active,
.booking-chip.active,
.booking-package-card:hover,
.booking-chip:hover {
  border-color: rgba(200,169,126,.46);
  background: rgba(200,169,126,.08);
  color: #fff;
  transform: translateY(-1px);
}
.booking-package-name {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
}
.booking-package-price {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
}
.booking-package-detail {
  color: rgba(243,238,231,.64);
  font-size: 12px;
  line-height: 1.6;
}
.booking-form,
.booking-success { padding: 30px; }
.booking-form { display: grid; gap: 0; min-width: 0; }
.field { min-width: 0; margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--text);
  outline: none;
  appearance: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 136px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(243,238,231,.42); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(200,169,126,.48);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 3px rgba(200,169,126,.12);
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: rgba(208,96,96,.48);
  background: rgba(208,96,96,.05);
  box-shadow: 0 0 0 3px rgba(208,96,96,.12);
}
.field input[readonly] {
  background: rgba(200,169,126,.08);
  border-color: rgba(200,169,126,.2);
  color: rgba(243,238,231,.88);
  cursor: default;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(243,238,231,.7) 50%),
    linear-gradient(135deg, rgba(243,238,231,.7) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field select option { background: #161511; color: var(--text); }
.booking-learning {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(200,169,126,.24);
  background: rgba(200,169,126,.08);
  color: rgba(243,238,231,.8);
  font-size: 12px;
  line-height: 1.7;
}
.booking-error {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(208,96,96,.34);
  background: rgba(208,96,96,.1);
  color: rgba(255,220,220,.92);
  font-size: 12px;
  line-height: 1.7;
}
.booking-form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.booking-form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.booking-availability {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(200,169,126,.22);
  background: rgba(200,169,126,.08);
  color: rgba(243,238,231,.78);
  font-size: 12px;
  line-height: 1.7;
}
.booking-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}
.booking-note-wrap {
  display: grid;
  gap: 8px;
}
.booking-policy-link {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.booking-submit {
  flex-shrink: 0;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #171510;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 600;
}
.booking-success {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 100%;
}
.booking-success-mark {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.booking-success h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
}

.empty-state {
  color: rgba(255,255,255,.52);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

@keyframes testiIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .philosophy,
  .pricing-grid,
  .footer-inner,
  .booking-body {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-left,
  .nav-right { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .hero {
    min-height: 100svh;
    padding: 108px 20px 44px;
    justify-content: center;
  }
  .hero-title {
    width: min(100%, 11ch);
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(24px, 7.8vw, 34px);
    line-height: .98;
    letter-spacing: .025em;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  .hero-subtitle {
    font-size: 9px;
    letter-spacing: .22em;
  }
  .hero-actions,
  .booking-submit-row,
  .footer-social {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions {
    width: min(100%, 320px);
  }
  .hero-cta,
  .hero-ghost {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .works,
  .specialisations,
  .testimonial,
  .pricing,
  .footer,
  .cta-banner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cta-banner { margin-left: 18px; margin-right: 18px; }
  .works-grid,
  .spec-grid,
  .booking-chip-grid,
  .booking-form-grid-2 {
    grid-template-columns: 1fr;
  }
  .work-item,
  .work-item.wide,
  .work-item.wide:first-child,
  .work-item.wide:last-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
  .works-grid {
    grid-auto-rows: auto;
    gap: 10px;
  }
  .work-label-wrap {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .work-overlay,
  .work-label,
  .work-link {
    opacity: 1;
    transform: none;
  }
  .work-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.76) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
  }
  .work-label {
    font-size: 21px;
  }
  .work-link {
    color: var(--accent);
  }
  .philosophy {
    min-height: auto;
  }
  .philosophy-images {
    min-height: 420px;
  }
  .philosophy-text {
    padding: 44px 20px;
  }
  .phil-img-wrap:nth-child(2) {
    margin-left: 0;
    margin-bottom: 16px;
  }
  .slide-counter,
  .scroll-hint {
    display: none;
  }
  .arrow-left { left: 4px; }
  .arrow-right { right: 4px; }
  .booking-overlay { padding: 12px; }
  .booking-modal {
    width: 100%;
    max-height: calc(100vh - 24px);
  }
  .booking-header,
  .booking-summary,
  .booking-form,
  .booking-success { padding: 22px; }
  .pricing-card {
    padding: 26px 22px;
  }
  .pricing-card:hover,
  .pricing-card:focus-visible {
    transform: none;
  }
}
