:root {
  color-scheme: light;
  --cream: #e3d9a6;
  --paper: #f5edcf;
  --ink: #263322;
  --olive: #35442a;
  --olive-2: #56633e;
  --gold: #a87935;
  --line: rgba(38, 51, 34, 0.2);
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 250, 240, 0.2);
  background: rgba(53, 68, 42, 0.96);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links a {
  padding: 8px 0;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--olive);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(24, 31, 21, 0.86), rgba(24, 31, 21, 0.42)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero .section-inner {
  position: relative;
  padding: 92px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: none;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.5rem);
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  color: var(--olive);
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section.dark {
  background: var(--olive);
  color: var(--paper);
}

.section.dark h2,
.section.dark h3 {
  color: var(--cream);
}

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

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

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.lead {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--olive);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.copy p {
  margin: 0 0 18px;
}

.feature-image {
  min-height: 420px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(38, 51, 34, 0.24);
}

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

.detail {
  min-height: 185px;
  padding: 26px;
  background: rgba(245, 237, 207, 0.68);
}

.detail strong {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: none;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: none;
}

.button.secondary {
  background: transparent;
  color: var(--olive);
}

.button.light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--olive);
}

.menu-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.menu-note {
  max-width: 720px;
  margin: 0;
}

.menu-section {
  margin-top: 46px;
  border-top: 2px solid var(--olive);
  padding-top: 28px;
}

.menu-section h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.menu-item {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(38, 51, 34, 0.16);
}

.menu-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
}

.menu-name {
  font-weight: 850;
  text-transform: none;
}

.price {
  color: var(--gold);
  font-weight: 850;
  white-space: nowrap;
}

.menu-desc {
  margin: 0;
  color: rgba(38, 51, 34, 0.76);
  font-size: 0.94rem;
}

.reservation-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.reservation-panel > div {
  padding: clamp(28px, 5vw, 48px);
  background: var(--paper);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reserve;
}

.steps li {
  position: relative;
  min-height: 70px;
  padding: 0 0 24px 56px;
  border-bottom: 1px solid rgba(38, 51, 34, 0.15);
}

.steps li + li {
  padding-top: 24px;
}

.steps li::before {
  counter-increment: reserve;
  content: counter(reserve);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-weight: 800;
}

.steps li + li::before {
  top: 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  border: 1px solid rgba(38, 51, 34, 0.16);
  background: rgba(245, 237, 207, 0.72);
}

.faq-item h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--olive);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  background: #212b1e;
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-inner h2,
.footer-inner h3 {
  color: var(--cream);
}

.footer-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.footer-inner h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  margin-bottom: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: none;
}

.footer-inner p,
.footer-inner ul {
  margin: 0;
  padding: 0;
}

.footer-inner ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-inner a {
  color: var(--paper);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal {
  border-top: 1px solid rgba(227, 217, 166, 0.18);
  padding: 18px 0;
  color: rgba(245, 237, 207, 0.72);
  font-size: 0.85rem;
}

@media (max-width: 820px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 360px;
  }

  .split,
  .split.reverse,
  .reservation-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .feature-image {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero .section-inner {
    padding: 70px 0 54px;
  }

  .section {
    padding: 48px 0;
  }

  .buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #e4d9a4;
  --paper: #f7efcf;
  --paper-soft: #fbf7e7;
  --ink: #243020;
  --olive: #344229;
  --olive-deep: #1f2a1d;
  --gold: #a87935;
  --gold-soft: #d4b36f;
  --line: rgba(36, 48, 32, 0.2);
}

body {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.48;
}

.site-header {
  z-index: 40;
  border-bottom: 1px solid rgba(212, 179, 111, 0.32);
  background: rgba(31, 42, 29, 0.96);
}

.nav-shell {
  min-height: 82px;
}

.brand,
h1,
h2,
h3,
.lead,
.faq-item h3,
.footer-inner h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.brand {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 700;
}

.nav-links {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  text-transform: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.section.dark,
.site-footer {
  background: var(--olive-deep);
}

.section.luxe {
  background: var(--paper-soft);
}

.feature-image {
  border: 1px solid rgba(168, 121, 53, 0.35);
  box-shadow: 0 22px 60px rgba(31, 42, 29, 0.12);
}

.button {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

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

.menu-name,
.price,
.contact-list a {
  font-weight: 700;
}

.menu-name {
  text-transform: none;
}

.faq-item h3,
.footer-inner h3 {
  font-size: 1.16rem;
  letter-spacing: 0;
  text-transform: none;
}

.gallery-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.gallery-intro p {
  max-width: 500px;
  margin: 0;
  color: rgba(36, 48, 32, 0.72);
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  grid-auto-rows: minmax(170px, 16vw);
  gap: clamp(12px, 1.8vw, 22px);
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(168, 121, 53, 0.24);
  box-shadow: 0 18px 46px rgba(31, 42, 29, 0.12);
}

.editorial-gallery img:nth-child(1) {
  grid-row: span 2;
}

.editorial-gallery img:nth-child(4) {
  grid-column: span 2;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-band .band-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 86px);
  background: var(--olive-deep);
  color: var(--paper);
}

.image-band h2 {
  color: var(--paper);
}

.image-band p {
  max-width: 540px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2.5vw, 30px);
  bottom: clamp(16px, 2.5vw, 30px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 999px;
  background: #214f2e;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(31, 42, 29, 0.25);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-float::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: #7bd88f;
  box-shadow: 0 0 0 4px rgba(123, 216, 143, 0.16);
}

.whatsapp-float:hover {
  background: #2f6b3d;
}

@media (max-width: 820px) {
  .nav-links {
    font-size: 1rem;
  }

  .editorial-gallery,
  .image-band {
    grid-template-columns: 1fr;
  }

  .editorial-gallery {
    grid-auto-rows: auto;
  }

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

  .gallery-intro {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 12px 15px;
    font-size: 0.96rem;
  }
}
