:root {
  color-scheme: light;
  --ink: #171313;
  --muted: #665f5d;
  --line: #e3ddd7;
  --paper: #fbfaf8;
  --surface: #ffffff;
  --wine: #841f24;
  --wine-dark: #551316;
  --gold: #c99b4a;
  --olive: #46503d;
  --blue: #243d55;
  --shadow: 0 24px 70px rgba(43, 25, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(15, 10, 8, 0.7), rgba(15, 10, 8, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(23, 19, 19, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 72px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
}

.main-nav a,
.header-actions a,
.lang-switch {
  text-decoration: none;
  color: #fff;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-switch,
.icon-link,
.book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.lang-switch {
  width: 44px;
  font: inherit;
  cursor: pointer;
}

.icon-link {
  width: 44px;
  font-size: 1.05rem;
}

.book-link {
  padding: 0 18px;
  background: var(--wine);
  border-color: var(--wine);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(16px, 5vw, 72px) 34px;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.86) 0%, rgba(10, 8, 7, 0.64) 35%, rgba(10, 8, 7, 0.16) 73%),
    linear-gradient(0deg, rgba(10, 8, 7, 0.72), rgba(10, 8, 7, 0.06) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 142px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  overflow-wrap: anywhere;
}

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

h1 {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-cta,
.secondary-cta,
.path-card a,
.feature-card a,
.inquiry-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 850;
}

.primary-cta,
.inquiry-form button {
  background: var(--wine);
  color: #fff;
  border: 1px solid var(--wine);
}

.secondary-cta {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.booking-panel {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 5vw, 72px);
  right: clamp(16px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
}

.booking-panel div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.booking-panel span,
.hours-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-panel a {
  display: block;
  margin-top: 5px;
  font-weight: 850;
  text-decoration: none;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-width: 0;
  padding: 24px clamp(16px, 4vw, 42px);
  background: var(--surface);
}

.quick-strip strong {
  display: block;
  color: var(--wine);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
}

.quick-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(16px, 5vw, 72px);
}

.intro-grid,
.media-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.section-heading {
  max-width: 790px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.media-copy p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.path-selector {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.path-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.path-tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f5f2ee;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.path-tab:last-child {
  border-right: 0;
}

.path-tab.is-active {
  background: var(--wine);
  color: #fff;
}

.path-card {
  padding: clamp(22px, 4vw, 40px);
}

.path-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.path-card a {
  margin-top: 8px;
  color: #fff;
  background: var(--blue);
}

.media-copy {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.image-stack,
.restaurant-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.restaurant-gallery img,
.feature-card img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child,
.restaurant-gallery img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child,
.restaurant-gallery img:last-child {
  aspect-ratio: 1 / 1.08;
}

.reverse {
  background: #f1eee8;
}

.reverse .media-copy {
  order: 2;
}

.cards-section {
  background: var(--ink);
  color: #fff;
}

.cards-section .eyebrow,
.trust-section .eyebrow {
  color: var(--gold);
}

.cards-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
}

.feature-card {
  min-width: 0;
  background: #241d1c;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-card img {
  aspect-ratio: 16 / 10;
  box-shadow: none;
}

.feature-card h3,
.feature-card p,
.feature-card a {
  margin-left: clamp(18px, 3vw, 34px);
  margin-right: clamp(18px, 3vw, 34px);
}

.feature-card h3 {
  margin-top: 28px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card a {
  margin-bottom: 28px;
  color: #fff;
  background: var(--wine);
}

.document-card {
  padding-top: 28px;
}

.document-card a {
  width: calc(100% - clamp(36px, 6vw, 68px));
  justify-content: flex-start;
  margin-top: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hours-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hours-grid {
  margin: 26px 0;
}

.hours-grid div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hours-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--wine);
  font-size: 1.15rem;
}

.text-link {
  font-weight: 850;
  color: var(--wine);
}

.trust-section {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--olive));
}

.review-grid div {
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid strong {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.review-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  color: var(--wine);
  font-weight: 850;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf8;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form button {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(16px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-top: 118px;
  }

  .hero-content {
    padding-bottom: 258px;
  }

  .booking-panel,
  .quick-strip,
  .intro-grid,
  .media-section,
  .feature-grid,
  .hours-grid,
  .review-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reverse .media-copy {
    order: initial;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand img {
    width: 58px;
    height: 36px;
  }

  .brand span {
    display: none;
  }

  .book-link {
    padding: 0 12px;
  }

  .icon-link,
  .lang-switch {
    width: 40px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 16px 18px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 8, 7, 0.9), rgba(10, 8, 7, 0.52)),
      linear-gradient(0deg, rgba(10, 8, 7, 0.8), rgba(10, 8, 7, 0.02) 55%);
  }

  .hero-content {
    padding-bottom: 326px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .booking-panel div {
    padding: 13px 14px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .path-tabs {
    grid-template-columns: 1fr;
  }

  .path-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-stack,
  .restaurant-gallery {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child,
  .restaurant-gallery img:first-child,
  .image-stack img:last-child,
  .restaurant-gallery img:last-child {
    aspect-ratio: 16 / 11;
  }

  .site-footer {
    flex-direction: column;
  }
}
