
:root {
  --black: #080808;
  --black-2: #0d0d0d;
  --charcoal: #111111;
  --graphite: #1c1c1c;
  --white: #ffffff;
  --warm-white: #f5f3f0;
  --body: #cfc8c3;
  --muted: #8f8a86;
  --rose: #e6b8a6;
  --blush: #f4d3dd;
  --border: rgba(255,255,255,.08);
  --border-accent: rgba(230,184,166,.25);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --glow: 0 0 60px rgba(230,184,166,.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--warm-white);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.section { border-top: 1px solid var(--border); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.025em;
}
.accent {
  color: var(--rose);
  text-shadow: 0 0 28px rgba(230,184,166,.12);
}
.spark-line { display: flex; align-items: center; gap: 10px; color: var(--rose); margin: 18px 0; }
.spark-line::before { content: "✦"; font-size: 17px; }
.spark-line::after { content: ""; width: 54px; height: 1px; background: var(--rose); opacity: .65; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.brand { display: inline-flex; align-items: center; justify-content: flex-start; line-height: 0; transform: translateX(-10px); }
.brand img { width: 218px; height: auto; display: block; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
.nav a { position: relative; color: var(--warm-white); opacity: .9; }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width .25s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta {
  padding: 12px 20px;
  border: 1px solid var(--rose);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.nav-cta:hover { background: rgba(230,184,166,.08); box-shadow: var(--glow); }
.menu-toggle { display: none; border: 0; background: transparent; color: white; width: 42px; height: 42px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px auto; }

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.83) 34%, rgba(8,8,8,.15) 70%, rgba(8,8,8,.45) 100%);
  pointer-events: none;
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.04);
  will-change: transform;
}
.page-home .hero-image {
  background-image: url("assets/home-hero.png");
  background-image: -webkit-image-set(url("assets/home-hero.webp") 1x, url("assets/home-hero.png") 1x);
  background-image: image-set(url("assets/home-hero.webp") type("image/webp"), url("assets/home-hero.png") type("image/png"));
}
.page-services .hero-image {
  background-image: url("assets/services-hero.png");
  background-image: -webkit-image-set(url("assets/services-hero.webp") 1x, url("assets/services-hero.png") 1x);
  background-image: image-set(url("assets/services-hero.webp") type("image/webp"), url("assets/services-hero.png") type("image/png"));
}
.hero-content { position: relative; z-index: 2; width: 50%; padding-top: 72px; }
.hero h1 { font-size: clamp(62px, 7vw, 105px); margin: 0; max-width: 560px; }
.hero p { max-width: 420px; margin: 0 0 34px; color: var(--body); font-size: 17px; }
.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--blush), var(--rose));
  box-shadow: 0 18px 45px rgba(230,184,166,.14);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.primary-btn:hover { transform: translateY(-1px); filter: brightness(1.03); box-shadow: 0 22px 55px rgba(230,184,166,.18); }

.scroll-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 90px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--body);
}
.scroll-label::after { content: ""; display: inline-block; width: 1px; height: 40px; background: var(--body); margin-top: 12px; opacity: .5; }

.about { padding: 88px 0; background: var(--black-2); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-copy h2, .gallery-head h2, .booking-copy h2 { font-size: clamp(48px, 5vw, 72px); margin: 0 0 26px; }
.services-hero h1 { font-size: clamp(58px, 6vw, 88px); margin: 0; }
.about-copy p { color: var(--body); max-width: 430px; }
.signature-image {
  display: block;
  width: 150px;
  height: auto;
  margin-top: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(230,184,166,.12));
}
.about-image { position: relative; width: 100%; max-width: 610px; justify-self: end; }
.about-image picture { display: block; width: 100%; }
.about-image::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--border-accent); z-index: 0; }
.about-image img { position: relative; z-index: 1; width: 100%; height: clamp(390px, 31vw, 455px); object-fit: cover; object-position: center; box-shadow: var(--shadow); }

.values { padding: 54px 0; background: var(--black); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.value { text-align: center; padding: 0 12px; display: flex; flex-direction: column; align-items: center; }
.value-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 16px; flex: 0 0 82px; overflow: hidden; }
.value-icon img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.value h3 { font-family: Inter, sans-serif; font-size: 13px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.value p { font-size: 12px; line-height: 1.55; color: var(--body); margin: 0; min-height: 42px; padding-top: 2px; }

.gallery { padding: 82px 0 90px; background: var(--black-2); }
.gallery-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 34px; }
.gallery-head h2 { margin-bottom: 0; }
.secondary-btn {
  border: 1px solid var(--rose);
  color: var(--rose);
  background: transparent;
  padding: 13px 23px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, box-shadow .25s ease;
}
.secondary-btn:hover { background: rgba(230,184,166,.08); box-shadow: var(--glow); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-card { aspect-ratio: .82; overflow: hidden; background: #111; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .5s ease, filter .5s ease; }
.gallery-card:nth-child(1) img { object-position: 75% center; }
.gallery-card:nth-child(2) img { object-position: 61% center; transform: scale(1.08); }
.gallery-card:nth-child(3) img { object-position: 78% center; transform: scale(1.18); }
.gallery-card:nth-child(4) img { object-position: 69% center; transform: scale(1.3); }
.gallery-card:hover img { transform: scale(1.1); filter: grayscale(.15); }

.cta-strip { min-height: 360px; position: relative; display: flex; align-items: center; overflow: hidden; }
.cta-strip > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-strip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.77) 47%, rgba(8,8,8,.18) 100%); }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-content { position: relative; z-index: 2; width: 45%; }
.cta-content h2 { font-size: clamp(45px, 5vw, 68px); margin: 0 0 20px; }
.cta-content p { color: var(--body); max-width: 430px; margin: 0 0 26px; }

.services-hero { min-height: 625px; }
.services-hero .hero-image { inset: 0; background-position: 68% center; }
.services-hero .hero-content { width: 48%; }
.services-list { padding: 24px 0 72px; background: var(--black); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 110px;
  align-items: center;
  gap: 18px;
  min-height: 120px;
  border-bottom: 1px solid var(--border);
}
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; overflow: visible; flex: 0 0 58px; background: transparent; }
.service-icon img { width: 58px; height: 58px; display: block; object-fit: contain; background: transparent; }
.service-info h3 { margin: 0 0 3px; font-size: 25px; }
.service-info p { margin: 0; color: var(--body); font-size: 13px; line-height: 1.4; max-width: 250px; }
.service-rule { height: 1px; background: linear-gradient(90deg, var(--rose), transparent); opacity: .8; }
.service-price { color: var(--rose); font-family: "Cormorant Garamond", Georgia, serif; font-size: 36px; text-align: right; }

.booking { padding: 100px 0; background: var(--black-2); }
.booking-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.booking-copy p { max-width: 330px; color: var(--body); }
.booking-form { border: 1px solid var(--border); padding: 36px; background: rgba(17,17,17,.55); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field label { display: block; margin-bottom: 8px; font-size: 11px; }
.field input, .field select { width: 100%; height: 52px; border: 1px solid var(--border); background: #0d0d0d; color: var(--warm-white); padding: 0 15px; outline: none; }
.field input:focus, .field select:focus { border-color: var(--rose); }
.field.full { grid-column: 1 / -1; }
.booking-form .primary-btn { width: 100%; margin-top: 26px; }
.form-message { min-height: 24px; margin: 14px 0 0; color: #5dbb7a; font-size: 13px; }

.services-cta {
  position: relative;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 1024 / 242;
}
.services-cta picture { display: block; width: 100%; height: 100%; }
.services-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  display: block;
}
.services-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
  pointer-events: none;
}

.footer { padding: 58px 0 26px; background: var(--black); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr 1fr; gap: 72px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; transform: translateX(-4px); }
.footer-brand img { width: 214px; height: auto; margin: 0 0 18px; display: block; }
.footer-brand p { margin: 0 0 0 4px; }
.footer p, .footer a { color: var(--body); font-size: 13px; }
.footer h3 { font-family: Inter, sans-serif; color: var(--rose); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.footer-links { display: grid; gap: 8px; }
.contact-list { display: grid; gap: 12px; }
.contact-list a, .contact-list p { display: flex; align-items: center; gap: 10px; margin: 0; }
.contact-icon { width: 20px; height: 20px; flex: 0 0 20px; display: inline-flex; align-items: center; justify-content: center; }
.contact-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.socials { display: flex; gap: 18px; margin-top: 18px; color: var(--rose); font-weight: 600; }
.copyright { margin-top: 42px; padding-top: 22px; text-align: center; border-top: 1px solid var(--border); color: var(--muted); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

.preload .site-header { opacity: 0; transform: translateY(-20px); }
.loaded .site-header { animation: fadeDown .9s ease forwards; }
.preload .hero-image { transform: scale(1.08); }
.loaded .hero-image { animation: heroZoom 2.2s ease forwards; }
.preload .hero-intro > * { opacity: 0; transform: translateY(28px); }
.loaded .hero-intro > * { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) forwards; }
.loaded .hero-intro > *:nth-child(1) { animation-delay: .2s; }
.loaded .hero-intro > *:nth-child(2) { animation-delay: .38s; }
.loaded .hero-intro > *:nth-child(3) { animation-delay: .52s; }
.loaded .hero-intro > *:nth-child(4) { animation-delay: .66s; }
.loaded .hero h1 .accent, .loaded .booking-copy .accent, .loaded .about-copy .accent {
  animation: accentPulse 3.8s ease-in-out infinite 1.1s;
}

@keyframes fadeDown {
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
@keyframes accentPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(230,184,166,0); }
  50% { text-shadow: 0 0 26px rgba(230,184,166,.18); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 40px, var(--container)); }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 84vw);
    background: #0b0b0b;
    padding: 100px 32px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 30;
    transition: right .3s ease;
    box-shadow: -30px 0 80px rgba(0,0,0,.45);
  }
  .nav.open { right: 0; }
  .hero { min-height: 760px; align-items: end; padding-bottom: 70px; }
  .hero-image { inset: 0; background-position: 64% center; }
  .hero::after { background: linear-gradient(0deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.78) 45%, rgba(8,8,8,.16) 100%); }
  .hero-content, .services-hero .hero-content { width: 100%; padding-top: 160px; }
  .hero h1 { max-width: 640px; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 52px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { width: 65%; }
  .service-row { grid-template-columns: 60px minmax(0, 1fr) 90px; }
  .service-rule { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .services-cta { aspect-ratio: 3 / 1; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 30px, var(--container)); }
  .site-header { padding: 18px 0; }
  .brand { transform: translateX(-5px); }
  .brand img { width: 180px; }
  .hero { min-height: 710px; }
  .hero h1 { font-size: 59px; }
  .hero p { font-size: 15px; }
  .scroll-label { display: none; }
  .about, .gallery, .booking { padding: 68px 0; }
  .about-image { max-width: 100%; justify-self: stretch; }
  .about-image img { height: min(105vw, 430px); }
  .about-copy h2, .gallery-head h2, .booking-copy h2 { font-size: 48px; }
  .signature-image { width: 120px; margin-top: 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 30px 15px; }
  .gallery-head { align-items: flex-start; gap: 20px; flex-direction: column; }
  .gallery-grid { gap: 8px; }
  .cta-strip { min-height: 420px; align-items: end; padding-bottom: 58px; }
  .cta-content { width: 100%; }
  .services-hero { min-height: 610px; }
  .service-row { grid-template-columns: 48px minmax(0, 1fr) auto; min-height: 112px; gap: 12px; }
  .service-icon { width: 46px; height: 46px; padding: 8px; flex-basis: 46px; }
  .service-icon img { width: 100%; height: 100%; }
  .service-info h3 { font-size: 22px; }
  .service-info p { font-size: 11px; }
  .service-price { font-size: 29px; }
  .booking-form { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-brand { transform: none; }
  .footer-brand img { width: 190px; }
  .footer-brand p { margin-left: 0; }
  .services-cta { aspect-ratio: 4 / 3; }
  .services-cta picture { display: block; width: 100%; height: 100%; }
.services-cta img { object-position: 42% center; }

  .hero-image { inset: 0; width: 100%; height: 100%; background-size: cover; }
  .page-home .hero-image { background-position: 68% center; }
  .page-services .services-hero .hero-image { background-position: 72% center; }
}


/* Cross-browser rendering and performance safeguards */
input, select, button { -webkit-appearance: none; appearance: none; border-radius: 0; }
img { -webkit-user-drag: none; }
.hero, .cta-strip, .services-cta { -webkit-transform: translateZ(0); transform: translateZ(0); }
@supports (content-visibility: auto) {
  .about, .values, .gallery, .booking, .footer { content-visibility: auto; contain-intrinsic-size: 800px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .preload .site-header, .preload .hero-image, .preload .hero-intro > * { opacity: 1; transform: none; }
}

.error-page { min-height: 100vh; display: grid; place-items: center; overflow-x: hidden; }
.error-shell { width: min(760px, calc(100% - 40px)); text-align: center; padding: 70px 20px; }
.error-logo { display: inline-block; margin-bottom: 44px; }
.error-logo img { width: 220px; height: auto; }
.error-shell h1 { font-size: clamp(64px, 10vw, 112px); margin: 0 0 24px; }
.error-shell > p:not(.eyebrow) { color: var(--body); margin: 0 auto 32px; max-width: 520px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
