﻿:root {
  --ink: #1f1613;
  --ink-2: #4a3830;
  --paper: #f4ecdd;
  --paper-2: #fbf5e8;
  --paper-3: #ede1cb;
  --olive: #223528;
  --olive-2: #14201a;
  --terracotta: #9a3f2c;
  --terracotta-2: #7f321f;
  --gold: #c9a35a;
  --gold-soft: rgba(201, 163, 90, 0.28);
  --line: rgba(35, 24, 20, 0.14);
  --line-dark: rgba(255, 250, 240, 0.16);
  --white: #fbf6ea;
  --radius: 6px;
  --radius-lg: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Typography ------------------------------------------------------ */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  max-width: 18ch;
  margin-bottom: 20px;
  font-size: clamp(30px, 3.4vw + 12px, 52px);
  font-weight: 600;
  line-height: 1.08;
}

h2 {
  max-width: 22ch;
  margin-bottom: 18px;
  font-size: clamp(24px, 1.6vw + 14px, 36px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin-bottom: 14px;
}

.kicker,
.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  color: var(--gold);
}

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

.tag {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 10.5px;
  letter-spacing: 0.2em;
}

/* --- Header ---------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 3vw, 54px);
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(15, 12, 9, 0.72),
    rgba(15, 12, 9, 0.22) 72%,
    transparent
  );
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(201, 163, 90, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.4vw + 8px, 24px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 32px);
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
  color: rgba(255, 250, 240, 0.92);
  transition: color 0.2s ease;
}

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

/* --- Buttons --------------------------------------------------------- */

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.nav-cta {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 12px;
}

.nav-cta,
.button.primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--terracotta-2);
  border-color: var(--terracotta-2);
}

.button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 240, 0.55);
}

.button.ghost:hover {
  background: rgba(255, 250, 240, 0.12);
  border-color: var(--white);
}

.button.outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 240, 0.4);
}

.button.outline-light:hover {
  background: rgba(255, 250, 240, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Hero ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 84px) 84px;
  color: var(--white);
  background-image: url("assets/02-interior-relax.jpg");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(12, 10, 8, 0.82) 0%,
      rgba(12, 10, 8, 0.5) 42%,
      rgba(12, 10, 8, 0.15) 72%,
      rgba(12, 10, 8, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 10, 8, 0.28) 0%,
      rgba(12, 10, 8, 0.12) 30%,
      rgba(12, 10, 8, 0.55) 100%
    );
}

.hero-copy {
  position: relative;
  max-width: 620px;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.hero-copy .kicker {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.hero-copy .kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero-copy h1 {
  margin-bottom: 20px;
  color: var(--white);
}

.hero-copy .lead {
  max-width: 44ch;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Sections -------------------------------------------------------- */

.intro,
.menu-section,
.visit {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.intro-text h2 {
  max-width: 20ch;
  margin-bottom: 0;
}

.intro-body {
  max-width: 56ch;
  color: rgba(31, 22, 19, 0.78);
  font-size: 16.5px;
}

.intro-body p:last-child {
  margin-bottom: 0;
}

/* --- Menu ------------------------------------------------------------ */

.section-heading {
  max-width: 620px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 16px;
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(35, 24, 20, 0.35);
}

.menu-card.large {
  grid-row: span 2;
}

.menu-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card.large .menu-media {
  aspect-ratio: 4 / 5;
}

.menu-media img {
  transition: transform 0.7s ease;
}

.menu-card:hover .menu-media img {
  transform: scale(1.03);
}

.menu-body {
  padding: 22px 24px 26px;
}

.menu-body h3 {
  margin-bottom: 6px;
}

.menu-body p {
  margin-bottom: 0;
  color: rgba(31, 22, 19, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

/* --- Gallery --------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.2fr;
  grid-auto-rows: 300px;
  gap: 2px;
  padding: 0;
  background: var(--paper-3);
  border-block: 1px solid var(--line);
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-3);
}

.gallery-item img {
  transition: transform 0.9s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* --- Visit ----------------------------------------------------------- */

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--olive);
  color: var(--white);
}

.visit h2,
.visit .contact-title {
  color: var(--white);
}

.hours {
  margin: 24px 0 0;
  padding: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 15px;
}

.hours div:last-child {
  border-bottom: none;
}

.hours dt {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hours dd {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.contact-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.05);
}

.contact-title {
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-sub {
  margin-bottom: 22px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 14.5px;
}

.contact-actions {
  gap: 10px;
}

/* --- Footer ---------------------------------------------------------- */

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 84px) 32px;
  background: var(--olive-2);
  color: rgba(255, 250, 240, 0.7);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.foot-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  color: rgba(255, 250, 240, 0.92);
  letter-spacing: 0.01em;
}

/* --- Mobile bottom bar ---------------------------------------------- */

.mobile-actions {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1.2fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(20, 32, 26, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6);
}

.mobile-actions a {
  padding: 12px 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.mobile-actions a.pri {
  background: var(--terracotta);
}

.mobile-actions a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* --- Focus states --------------------------------------------------- */

a:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 999px;
}

/* --- Tablet ---------------------------------------------------------- */

@media (max-width: 960px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-text h2 {
    max-width: 24ch;
  }

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

  .menu-card.large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .menu-card.large .menu-media {
    aspect-ratio: 16 / 9;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }

  .visit {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile ---------------------------------------------------------- */

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 0.14em;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 90svh;
    padding: 108px 22px 92px;
    background-position: 56% center;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.1;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-copy .lead {
    font-size: 15.5px;
    margin-bottom: 24px;
  }

  .hero-meta {
    font-size: 11px;
    margin-top: 18px;
  }

  h2 {
    font-size: clamp(22px, 5.6vw, 28px);
  }

  h3 {
    font-size: 19px;
  }

  .intro,
  .menu-section,
  .visit {
    padding: 56px 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-card.large {
    grid-column: span 1;
  }

  .menu-media,
  .menu-card.large .menu-media {
    aspect-ratio: 5 / 4;
  }

  .menu-body {
    padding: 18px 20px 22px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .contact-panel {
    padding: 22px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 24px 22px 96px;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 12.5px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

