/* ===== Fonts ===== */
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay.ttf') format('truetype-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Yesteryear';
  src: url('../assets/fonts/Yesteryear-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../assets/fonts/EBGaramond.ttf') format('truetype-variations');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../assets/fonts/SpaceMono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --ink: #221F1A;
  --ink-raised: #2A2620;
  --paper: #EDEAE2;
  --stone: #86897A;
  --hairline: #38342C;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.eyebrow {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--stone);
  display: block;
  margin-bottom: 16px;
}

/* ===== SD badge (the mark) ===== */
.sd-mark {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
}
.sd-mark.lg { width: 48px; }

/* ===== Nav ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(34,31,26,0.85) 0%, rgba(34,31,26,0) 100%);
}
.site-nav .brand { position: relative; z-index: 101; display: flex; align-items: center; gap: 12px; color: var(--paper); }
.site-nav .brand-name {
  font-family: 'Playfair Display', serif;
  font-variation-settings: 'wght' 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--paper);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { border-color: var(--paper); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--paper);
  color: var(--paper);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  cursor: pointer;
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 13px; }
  .nav-toggle { display: block; z-index: 101; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 45%, rgba(15,13,11,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 48px) clamp(56px, 9vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.hero-script {
  font-family: 'Yesteryear', cursive;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--paper);
}
.hero-descriptor {
  font-family: 'Playfair Display', serif;
  font-variation-settings: 'wght' 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.6vw, 17px);
  color: var(--paper);
  margin-top: -12px;
}
.hero-tagline {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--stone);
  max-width: 46ch;
  margin: 0;
}
.hero-sub {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--stone);
}
.btn {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--ink);
  background: var(--paper);
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid var(--paper);
  margin-top: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: var(--paper); }
.btn-outline {
  background: transparent;
  color: var(--paper);
}
.btn-outline:hover { background: var(--paper); color: var(--ink); }

/* ===== Section shell ===== */
section { position: relative; }
.section-pad { padding: clamp(72px, 10vw, 140px) 0; }
.hairline-top { border-top: 1px solid var(--hairline); }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-variation-settings: 'wght' 700;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 28px;
  text-wrap: balance;
  color: var(--paper);
}
.section-lede {
  font-size: 20px;
  color: var(--paper);
  max-width: 62ch;
  margin: 0 0 0;
}

/* ===== Bio split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
}
.split-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
  background: var(--ink-raised);
}
.split-photo { position: relative; overflow: hidden; min-height: 380px; background: #000; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.split-panel p { color: var(--paper); font-size: 19px; margin: 0 0 18px; }
.split-panel p:last-of-type { margin-bottom: 0; }
.split-panel .location {
  margin-top: 32px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--stone);
}

/* ===== Services cards ===== */
.services-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
}
@media (max-width: 820px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--ink);
  display: flex;
  flex-direction: column;
}
.card-photo { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #000; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.card-body { padding: 30px 28px 36px; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-variation-settings: 'wght' 700;
  font-size: 23px;
  margin: 0 0 12px;
  color: var(--paper);
}
.card-body p { font-size: 16px; color: var(--stone); margin: 0; }

/* ===== Venues ===== */
.venues-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.venue-list {
  columns: 3;
  column-gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .venue-list { columns: 2; } }
@media (max-width: 460px) { .venue-list { columns: 1; } }
.venue-list div {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--paper);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  break-inside: avoid;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-cell { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #000; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: transform 0.5s ease; }
.gallery-cell:hover img { transform: scale(1.04); }

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 820px) { .testimonial-grid { grid-template-columns: 1fr; gap: 40px; } }
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-variation-settings: 'wght' 500;
  font-size: 21px;
  margin: 0 0 18px;
  color: var(--paper);
  text-wrap: balance;
}
.testimonial cite {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--stone);
  font-style: normal;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.faq-item summary {
  font-family: 'Playfair Display', serif;
  font-variation-settings: 'wght' 650;
  font-size: 19px;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  color: var(--stone);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 17px;
  color: var(--stone);
  margin: 14px 0 0;
  max-width: 65ch;
}
.faq-item p a { color: var(--paper); border-bottom: 1px solid var(--hairline); }

/* ===== Booking ===== */
.booking {
  position: relative;
  background: #000;
  overflow: hidden;
}
.booking img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.5;
}
.booking::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,13,11,0.75) 0%, rgba(15,13,11,0.94) 100%);
}
.booking-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 860px) { .booking-inner { grid-template-columns: 1fr; } }
.booking-copy .hero-script { font-size: clamp(48px, 7vw, 80px); text-align: left; }
.booking-contact {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
}
.booking-contact a { color: var(--paper); border-bottom: 1px solid var(--hairline); }

form.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--stone);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--paper);
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  padding: 8px 2px;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--paper); }
.field textarea { resize: vertical; min-height: 90px; }
.field select option { background: var(--ink); color: var(--paper); }
.form-honeypot { position: absolute; left: -9999px; }
.form-status {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone);
  min-height: 18px;
}

/* ===== Footer ===== */
.site-footer {
  padding: 48px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--hairline);
}
.footer-social { display: flex; gap: 22px; }
.footer-social a {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--stone);
}
.footer-social a:hover { color: var(--paper); }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--stone);
}
