/* Midnight Noir — dark editorial: near-black, silver accent, Fraunces */

:root {
  --black: #0d0c0a;
  --panel: #14120f;
  --text: #eae3d8;
  --muted: #9a9184;
  --hairline: rgba(234, 227, 216, 0.16);
  --silver: #c4c9d1;
  --silver-bright: #e8ebf0;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 460;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 340;
  color: var(--silver-bright);
}

p { margin: 0; }

/* ---------- shared ---------- */

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--silver);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-silver {
  background: var(--silver);
  color: #15171b;
}
.button-silver:hover { background: var(--silver-bright); }

.button-outline {
  border-color: var(--hairline);
  color: var(--text);
  background: transparent;
}
.button-outline:hover { border-color: var(--silver); color: var(--silver-bright); }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.lead {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 17px;
  color: var(--muted);
}

/* ---------- nav ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(13, 12, 10, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 20px;
}
.brand span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav-links { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }
.nav-links a:not(.button) {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a:not(.button):hover { color: var(--silver-bright); }
.nav-links .button { padding: 10px 22px; }

@media (max-width: 760px) {
  .nav-links a:not(.button) { display: none; }
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(120px, 16vh, 180px) clamp(20px, 4vw, 56px) clamp(56px, 9vh, 100px);
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { font-size: clamp(48px, 6.4vw, 92px); }

.hero-media {
  position: relative;
  margin: 0;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.28) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(198, 203, 212, 0.45);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: clamp(96px, 14vh, 130px);
  }
  .hero-media { order: -1; }
}

/* ---------- sections ---------- */

.section,
.booking {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 56px);
}

.section-marker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-marker span:first-child { color: var(--silver); }

.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  margin-bottom: clamp(36px, 5vw, 56px);
}

/* about */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.split-copy h2 { font-size: clamp(34px, 4.2vw, 54px); }
.split-copy p {
  margin-top: 22px;
  max-width: 54ch;
  color: var(--muted);
  font-size: 17px;
}

.portrait { margin: 0; position: relative; }
.portrait img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.04);
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 203, 212, 0.4);
  pointer-events: none;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

/* services — editorial rows */

.service-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.service-rows li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(24px, 3.4vw, 38px) 4px;
  border-bottom: 1px solid var(--hairline);
  transition: background-color 160ms ease;
}
.service-rows li:hover { background: var(--panel); }

.row-index {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--silver);
}
.service-rows h3 { font-size: clamp(22px, 2.6vw, 30px); }
.service-rows p { color: var(--muted); }

@media (max-width: 720px) {
  .service-rows li { grid-template-columns: 44px minmax(0, 1fr); }
  .service-rows p { grid-column: 2; }
}

/* gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.gallery figure.tall { grid-row: span 2; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.03);
  transition: transform 400ms ease, filter 400ms ease;
}
.gallery figure:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1.03); }

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 12px;
  background: rgba(13, 12, 10, 0.72);
  backdrop-filter: blur(6px);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-bright);
}

@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 200px; }
}

/* booking */

.booking-inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) 0;
}
.booking-inner h2 { font-size: clamp(38px, 5vw, 64px); }
.booking-inner .lead { margin: 22px auto 30px; }

.book-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 480px;
  text-align: left;
  border-top: 1px solid var(--hairline);
}
.book-menu li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--hairline);
}
.bm-name {
  color: var(--text);
  font-size: 15.5px;
}
.bm-meta {
  color: var(--silver);
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.book-cta { margin-top: 34px; }

/* reviews */

.reviews-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.stars {
  color: var(--silver-bright);
  font-size: 24px;
  letter-spacing: 8px;
  padding-left: 8px;
}
.reviews-headline {
  margin-top: 20px;
  font-size: clamp(30px, 4.2vw, 52px);
}
.reviews-sub {
  margin: 20px auto 28px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 17px;
}
.reviews-link {
  display: inline-block;
  color: var(--silver);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(198, 203, 212, 0.4);
}
.reviews-link:hover { color: var(--silver-bright); border-color: var(--silver-bright); }

/* footer */

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.footer-col { display: flex; flex-direction: column; gap: 5px; }
.footer-name {
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
}
.footer-contact { font-style: normal; }
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--silver); }
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: center;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-ig svg { display: block; }
.footer-ig:hover { color: var(--silver-bright); }

/* booking popup */

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 4, 3, 0.78);
}
.booking-overlay[hidden] { display: none; }

.booking-modal {
  width: min(680px, 100%);
  height: min(760px, 100%);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
  overflow: hidden;
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}
.booking-modal-actions { display: flex; align-items: center; gap: 8px; }
.booking-modal-actions a {
  color: var(--silver);
  font-size: 12px;
  text-decoration: none;
  padding: 8px 10px;
}
.booking-modal-actions a:hover { text-decoration: underline; }
.booking-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.booking-close:hover { background: rgba(234, 227, 216, 0.12); color: var(--silver-bright); }
.booking-modal iframe { flex: 1; width: 100%; border: 0; background: #fff; }
