:root {
  --bg: #0e0d0b;
  --surface: #171511;
  --surface-2: #211d17;
  --text: #f6f0e6;
  --muted: #b9afa0;
  --accent: #ff6b1a;
  --accent-light: #ffb17d;
  --line: rgba(255,255,255,.12);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .05em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: .85rem;
}
.accent { color: var(--accent); }

nav { display: flex; gap: 26px; align-items: center; }
nav a { font-size: .92rem; color: var(--muted); }
nav a:hover { color: var(--text); }
.nav-button {
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  display: block;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
}
.eyebrow, .section-label, .content-type {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 700;
}
h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.02;
  margin: 16px 0 24px;
}
h1 { font-size: clamp(3.5rem, 7vw, 7.5rem); }
h1 span { color: var(--accent); }
h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
h3 { font-size: 1.5rem; line-height: 1.2; }
.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 650px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
}
.primary { background: var(--accent); color: #111; border-color: var(--accent); }
.primary:hover { background: var(--accent-light); }
.secondary:hover { border-color: var(--accent); }
.hero-stats {
  margin-top: 55px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 48px;
}
.hero-stats div { display: grid; }
.hero-stats strong { font-size: 1.3rem; }
.hero-stats span { color: var(--muted); font-size: .8rem; }

.hero-image {
  background: var(--surface-2);
  padding: 16px;
  position: relative;
  transform: rotate(2deg);
}
.hero-image img { width: 100%; min-height: 560px; object-fit: cover; }
.image-label {
  position: absolute;
  right: -22px;
  bottom: 42px;
  background: var(--accent);
  color: #111;
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  padding: 15px 0;
  transform: rotate(-1deg);
}
.ticker div {
  display: inline-block;
  min-width: 200%;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.large-copy { font-size: 1.25rem; color: var(--muted); padding-top: 45px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}
.section-heading > p { max-width: 380px; color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px;
  min-height: 430px;
  transition: .25s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.service-card.highlighted { background: var(--accent); color: #111; }
.service-card > span { font-size: .78rem; opacity: .65; }
.service-card h3 { margin-top: 90px; font-size: 2rem; }
.service-card p { color: var(--muted); }
.highlighted p { color: rgba(0,0,0,.7); }
.service-card ul { padding-left: 18px; margin-top: 30px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 14px;
}
.video-card h3, .video-card p { padding: 0 10px; }
.video-card p { color: var(--muted); }
.video-wrapper { aspect-ratio: 16 / 9; }
.video-wrapper iframe { width: 100%; height: 100%; border: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid img:first-child { grid-row: 1 / 3; }
.gallery-grid img:last-child { grid-column: 2 / 4; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.content-grid article {
  border-top: 1px solid var(--line);
  padding: 28px 8px;
}
.content-grid article > p:not(.content-type) { color: var(--muted); }
.content-grid a { color: var(--accent); font-weight: 700; }

.booking-section {
  background: var(--surface);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  padding: 100px max(20px, calc((100% - var(--max))/2));
}
.booking-intro > p:not(.section-label) { color: var(--muted); max-width: 520px; }
.payment-box {
  margin-top: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px;
}
.payment-box p { margin: 0; color: var(--muted); }
.payment-box strong { display: block; font-size: 2.6rem; color: var(--accent); margin: 5px 0 20px; }
.payment-box button {
  width: 100%;
  margin: 7px 0 10px;
  min-height: 48px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  text-align: left;
  padding: 0 15px;
  cursor: pointer;
}
.payment-box button span { float: right; color: var(--accent); }

.booking-form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 38px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label { display: grid; gap: 8px; font-size: .86rem; font-weight: 600; margin-bottom: 18px; }
input, select, textarea {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 14px;
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}
.checkbox input { width: auto; margin-top: 5px; }
.full-width { width: 100%; border: 0; }
.form-note { color: var(--muted); font-size: .8rem; text-align: center; }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
footer a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .hero, .two-column, .booking-section { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; }
  .hero-image { max-width: 650px; }
  .card-grid, .video-grid, .content-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; }
  .gallery-grid img:first-child, .gallery-grid img:last-child { grid-row: auto; grid-column: auto; }
}

@media (max-width: 600px) {
  .site-header, .hero, .section, footer { width: min(calc(100% - 24px), var(--max)); }
  h1 { font-size: 3.3rem; }
  .hero { min-height: auto; gap: 30px; }
  .hero-stats { gap: 20px; justify-content: space-between; }
  .hero-image img { min-height: 390px; }
  .section { padding: 80px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-section { padding: 70px 16px; }
  .booking-form { padding: 22px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 280px); }
  footer { flex-direction: column; justify-content: center; text-align: center; padding: 45px 0; }
}
