:root {
  --ink: #1f1f1c;
  --muted: #6d6860;
  --paper: #fffdf9;
  --soft: #f7f2ea;
  --cream: #efe4d3;
  --gold: #b69564;
  --line: rgba(31, 31, 28, .12);
  --shadow: 0 24px 70px rgba(56, 48, 36, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 20;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  height: 68px;
  overflow: hidden;
}
.brand img {
  width: 112px;
  max-height: 62px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a { color: var(--muted); transition: color .2s ease; }
.main-nav a:hover { color: var(--ink); }
.header-phone {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-toggle { display: none; }

section { padding: 98px 0; }
.section-soft { background: linear-gradient(180deg, var(--soft), #fffdf9); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  font-weight: 600;
}
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(42px, 7vw, 82px); letter-spacing: -.04em; }
h2 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -.035em; }
h3 { font-size: 22px; }
p { margin: 0; color: var(--muted); }

.hero { padding: 64px 0 96px; }
.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { padding-top: 24px; }
.hero-text {
  max-width: 620px;
  margin-top: 24px;
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: rgba(31,31,28,.70); color: #fff; box-shadow: 0 18px 36px rgba(31,31,28,.14); }
.btn-primary:hover { background: rgba(31,31,28,.78); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.58); }
.quick-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-points li {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 14px;
}
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(247,242,234,.25));
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: min(68vh, 680px);
  object-fit: cover;
}
.hero-media picture { display: block; }

.intro-grid, .booking-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.intro-text p + p { margin-top: 18px; }
.signature {
  padding-top: 22px;
  color: var(--ink);
}
.signature span { font-weight: 700; }
.centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card, .detail-card, .price-card, .booking-form {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(56,48,36,.06);
}
.card {
  padding: 28px;
  min-height: 220px;
}
.card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}
.card h3 { margin-top: 18px; }
.card p { margin-top: 14px; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.product-media {
  background: radial-gradient(circle at 50% 25%, #fff 0%, #f4eee3 58%, #eadac4 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-media img { filter: drop-shadow(0 24px 38px rgba(32,25,18,.16)); }
.product-copy p { margin-top: 20px; }
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.feature-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list strong { color: var(--ink); }
.feature-list span { color: var(--muted); }

.section-title-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(56,48,36,.08);
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.pricing-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.pricing-heading p { margin-top: 18px; }
.price-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  padding: 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-card.featured {
  background: linear-gradient(180deg, #fff, #fbf6ee);
  border-color: rgba(182,149,100,.42);
  box-shadow: 0 18px 48px rgba(56,48,36,.11);
}
.price-card.full-day {
  grid-column: 1 / -1;
  min-height: auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: #fffdf9;
}
.price-label {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.price-value {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.04em;
}
.price-card p { margin-top: 22px; }
.price-note {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,.72);
}
.price-note strong { color: var(--ink); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-card { padding: 28px; }
.detail-card p { margin-top: 14px; }
.detail-card a { font-weight: 700; color: var(--ink); }

.booking-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}
.booking-copy { position: sticky; top: 124px; }
.small-note {
  margin-top: 20px;
  font-size: 14px;
}
.form-row { display: grid; gap: 8px; }
.form-row.two-cols {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label { font-weight: 700; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(182,149,100,.13); }
textarea { resize: vertical; }
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}
.checkbox-row input { width: auto; margin-top: 4px; }
.form-submit { width: 100%; border: 0; }
.form-status { font-size: 14px; color: var(--gold); }

.site-footer {
  background: #171713;
  color: #fff;
  padding: 64px 0 32px;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer h3 { font-size: 16px; margin-bottom: 12px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
}
.footer-logo {
  width: 118px;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  margin-bottom: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 38px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.6);
}

.mobile-cta { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,20,16,.88);
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-height: 88vh;
  width: auto;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { height: 74px; }
  .brand { height: 56px; }
  .brand img { width: 86px; max-height: 52px; }
  .header-phone { display: none; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    margin-left: auto;
    background: transparent;
    border: 0;
    padding: 10px;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
  }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: rgba(255,253,249,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; border-radius: 14px; }
  .main-nav a:hover { background: var(--soft); }
  section { padding: 70px 0; }
  .hero { padding: 34px 0 70px; }
  .hero-grid, .intro-grid, .product-grid, .booking-grid, .section-title-row, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-media { order: -1; border-radius: 28px; }
  .hero-media img { height: 54vh; min-height: 360px; }
  .hero-actions .btn { width: 100%; }
  .cards-grid, .details-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .price-options { grid-template-columns: 1fr; }
  .price-card.full-day { grid-template-columns: 1fr; }
  .price-note { flex-direction: column; align-items: stretch; }
  .price-note .btn { width: 100%; }
  .booking-copy { position: static; }
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(255,253,249,.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 8px;
    box-shadow: var(--shadow);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(31,31,28,.70);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
  }
  body { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-text { font-size: 17px; }
  .hero-media img { height: 420px; object-position: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item.large { grid-column: auto; }
  .form-row.two-cols { grid-template-columns: 1fr; }
  .feature-list div { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
