@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --background: #090807;
  --surface: #11100f;
  --surface-2: #171513;
  --foreground: #f7f0e6;
  --muted: #a89c8d;
  --soft: #efe6d8;
  --paper: #fbf6ee;
  --ink: #17120e;
  --line: rgba(155, 128, 74, 0.18);
  --gold: #9b804a;
  --gold-light: #c2a365;
  --cream-line: #e2d6c3;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--foreground);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(9, 8, 7, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.brand-sub {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(247, 240, 230, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--foreground);
}

.nav-book {
  padding: 13px 18px;
  color: var(--background) !important;
  background: var(--gold);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 240, 230, 0.28);
  color: var(--foreground);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.95), rgba(9, 8, 7, 0.66) 42%, rgba(9, 8, 7, 0.2)),
    linear-gradient(0deg, var(--background), rgba(9, 8, 7, 0.12) 48%, rgba(9, 8, 7, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
}

h1 span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-inner > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(247, 240, 230, 0.64);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions,
.center-action,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--background);
  background: var(--gold);
}

.button.primary:hover {
  background: var(--gold-light);
}

.button.dark {
  color: var(--foreground);
  background: var(--background);
}

.button.light {
  color: var(--ink);
  border-color: var(--cream-line);
  background: var(--paper);
}

.button.outline-light {
  color: var(--foreground);
  border-color: rgba(247, 240, 230, 0.22);
  background: rgba(247, 240, 230, 0.04);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: rgba(247, 240, 230, 0.55);
  font-size: 13px;
}

.stars {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 15, 0.96);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.trust-item p {
  margin: 0;
  color: rgba(247, 240, 230, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 126px) 0;
}

.compact-section {
  padding-top: 46px;
}

.section-inner,
.page-hero,
.about-hero,
.contact-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.split,
.reviews-layout,
.about-hero,
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
}

h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.intro-section {
  background: var(--surface);
}

.split > p,
.reviews-layout > div > p,
.booking-card p,
.about-hero p,
.contact-page > div > p,
.page-hero p {
  margin: 0;
  color: rgba(247, 240, 230, 0.62);
  font-size: 18px;
  line-height: 1.78;
  font-weight: 300;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.featured-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-tile,
.value-grid article,
blockquote {
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-tile {
  min-height: 230px;
  padding: 26px;
}

.service-tile.is-featured {
  background: linear-gradient(145deg, rgba(155, 128, 74, 0.22), rgba(17, 16, 15, 0.98));
  box-shadow: var(--shadow);
}

.service-tile span,
.value-grid span,
.menu-list span {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}

.service-tile p,
.value-grid p,
blockquote p,
.menu-list p,
.hours-panel dd {
  color: rgba(247, 240, 230, 0.6);
  line-height: 1.7;
}

.center-action {
  justify-content: center;
}

.dark-section,
.reviews-section {
  background: var(--background);
}

.team-section {
  background: var(--paper);
  color: var(--ink);
}

.team-section .eyebrow {
  color: var(--gold);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--cream-line);
  background: #fffaf2;
  box-shadow: 0 18px 70px rgba(23, 18, 14, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(23, 18, 14, 0.16);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}

.team-grid h3,
.team-grid p,
.team-grid span {
  margin-left: 22px;
  margin-right: 22px;
}

.team-grid p {
  margin-bottom: 24px;
  color: #756958;
  line-height: 1.65;
}

.team-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value-grid article {
  min-height: 250px;
  padding: 26px;
}

.gallery-preview {
  background: var(--paper);
  color: var(--ink);
}

.gallery-preview .eyebrow,
.page-hero .eyebrow,
.about-hero .eyebrow,
.contact-page .eyebrow {
  color: var(--gold);
}

.gallery-preview .section-heading {
  color: var(--ink);
}

.image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.image-grid img,
.full-gallery img,
.about-hero img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow: 0 20px 80px rgba(23, 18, 14, 0.14);
}

.image-grid img:first-child {
  min-height: 520px;
}

.reviews-layout {
  align-items: start;
}

.review-stack {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 26px;
}

blockquote p {
  margin: 0 0 18px;
}

cite {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.booking-section {
  background: var(--paper);
  color: var(--ink);
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--foreground);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-card h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.page-main {
  min-height: 100vh;
  padding-top: 76px;
  background: var(--background);
}

.page-hero {
  padding: clamp(72px, 10vw, 124px) 0 24px;
}

.page-hero h1,
.about-hero h1,
.contact-page h1 {
  max-width: 900px;
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.menu-list article.featured {
  border-color: rgba(194, 163, 101, 0.45);
  background: linear-gradient(90deg, rgba(155, 128, 74, 0.2), rgba(17, 16, 15, 0.98));
}

.menu-list h3 {
  margin-top: 0;
}

.menu-list p {
  margin: 0;
}

.menu-list small {
  color: rgba(247, 240, 230, 0.45);
}

.page-booking {
  margin-top: 22px;
}

.about-hero,
.contact-page {
  padding: clamp(72px, 10vw, 124px) 0;
}

.about-hero img {
  min-height: 500px;
}

.about-hero .button {
  margin-top: 30px;
}

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

.full-gallery img {
  aspect-ratio: 1 / 1.05;
  min-height: 0;
}

.full-gallery img:nth-child(1),
.full-gallery img:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 1.7 / 1;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hours-panel {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hours-panel dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
  text-align: right;
}

.booking-features {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(155, 128, 74, 0.1);
}

.booking-features p {
  margin: 0;
  color: rgba(247, 240, 230, 0.66);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 56px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--background);
}

.site-footer strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.site-footer p,
.site-footer a {
  color: rgba(247, 240, 230, 0.58);
}

.site-footer nav,
.site-footer div:last-child {
  display: grid;
  gap: 12px;
}

.social-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-light) !important;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px;
  }

  .trust-bar,
  .featured-grid,
  .value-grid,
  .team-grid,
  .image-grid,
  .split,
  .reviews-layout,
  .about-hero,
  .contact-page,
  .full-gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-grid img,
  .image-grid img:first-child {
    min-height: 360px;
  }

  .booking-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-list article {
    grid-template-columns: 1fr;
  }

  .full-gallery img:nth-child(1),
  .full-gallery img:nth-child(5) {
    grid-column: auto;
    aspect-ratio: 1 / 1.05;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand-main {
    font-size: 24px;
  }

  .brand-sub {
    max-width: 180px;
    line-height: 1.25;
  }

  .hero {
    min-height: 790px;
  }

  .hero-inner,
  .section-inner,
  .page-hero,
  .about-hero,
  .contact-page {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .rating-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-tile,
  .value-grid article,
  blockquote,
  .hours-panel,
  .menu-list article {
    padding: 20px;
  }

  .hours-panel div {
    flex-direction: column;
    gap: 5px;
  }

  dd {
    text-align: left;
  }
}
