@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap");

:root {
  --ink: #221b17;
  --muted: #746a5f;
  --paper: #fbf7ef;
  --warm: #efe3d0;
  --wine: #8f2631;
  --wine-dark: #651a22;
  --sage: #65745d;
  --olive: #a8a35d;
  --charcoal: #161412;
  --line: rgba(34, 27, 23, 0.13);
  --shadow: 0 24px 80px rgba(26, 18, 14, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(143, 38, 49, 0.2);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fffaf1;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.82), rgba(15, 12, 10, 0.36));
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.48);
  border-radius: 6px;
  padding: 5px;
  object-fit: contain;
  background: #fffaf1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 250, 241, 0.7);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
  font-size: 14px;
}

.nav-links a {
  color: rgba(255, 250, 241, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

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

.language-toggle {
  display: inline-flex;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 241, 0.35);
  border-radius: 999px;
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(255, 250, 241, 0.72);
  outline: none;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 241, 0.45);
  border-radius: 999px;
  color: #fffaf1;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 148px clamp(20px, 6vw, 82px) 64px;
  overflow: hidden;
  color: #fffaf1;
  background:
    linear-gradient(90deg, rgba(13, 10, 9, 0.95) 0%, rgba(13, 10, 9, 0.78) 38%, rgba(13, 10, 9, 0.2) 72%),
    url("assets/locanda-hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(13, 10, 9, 0.8), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7d081;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.97;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf1;
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(143, 38, 49, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--wine-dark);
}

.button-secondary {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.4);
  background: rgba(255, 250, 241, 0.08);
}

.button-secondary.on-light {
  color: var(--wine-dark);
  border-color: rgba(143, 38, 49, 0.28);
  background: rgba(255, 255, 255, 0.44);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.82);
  background: rgba(255, 250, 241, 0.08);
}

.trust-strip strong {
  color: #fffaf1;
  margin-right: 5px;
}

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

.intro-band article {
  padding: 26px clamp(18px, 4vw, 56px);
  background: #fffaf2;
}

.intro-band span {
  display: block;
  margin-bottom: 4px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  max-width: 420px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 82px);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.about-copy {
  max-width: 780px;
  color: #3b322c;
  font-size: clamp(18px, 2vw, 21px);
}

.feature-panel,
.contact-card,
.menu-card,
.review-summary,
.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 14px 42px rgba(54, 36, 25, 0.08);
}

.feature-panel {
  padding: 28px;
}

.feature-panel h3,
.menu-card h3,
.review-summary h3,
.contact-card h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.feature-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-panel li {
  padding-left: 18px;
  border-left: 3px solid var(--sage);
  color: #3e342e;
}

.hh-menu-section {
  color: #1c1c1c;
  background: #faf8f4;
}

.hh-menu-header {
  display: flex;
  max-width: 1120px;
  align-items: center;
  gap: 28px;
  margin: 0 auto 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.14);
}

.hh-menu-header img {
  width: 90px;
  height: 112px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hh-menu-header h2 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
}

.hh-menu-header > div > p:last-child {
  margin: 0;
  color: #706a63;
  font-size: 16px;
}

.hh-menu-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.hh-menu-category {
  min-width: 0;
  padding: 24px 22px;
  border: 1px solid rgba(28, 28, 28, 0.14);
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(28, 28, 28, 0.06);
}

.hh-menu-category h3 {
  margin-bottom: 5px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 31px);
  line-height: 1;
}

.hh-menu-translation {
  margin-bottom: 24px;
  color: #8b1a1a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hh-menu-item {
  padding: 19px 0 17px;
  border-top: 1px solid rgba(28, 28, 28, 0.14);
}

.hh-menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.hh-menu-item-head strong {
  font-size: 15px;
  line-height: 1.25;
}

.hh-menu-item-head b {
  color: #8b1a1a;
  font-size: 14px;
  font-style: italic;
  white-space: nowrap;
}

.hh-menu-item em {
  display: block;
  margin-bottom: 8px;
  color: #706a63;
  font-size: 13px;
}

.hh-menu-item p {
  margin-bottom: 4px;
  color: #4f4a44;
  font-size: 13px;
  line-height: 1.45;
}

.hh-menu-item small {
  display: block;
  color: #a09a91;
  font-size: 11px;
  font-style: italic;
  line-height: 1.45;
}

.hh-menu-note {
  max-width: 690px;
  margin: 34px auto 0;
  color: #706a63;
  text-align: center;
  font-size: 13px;
  font-style: italic;
}

.hh-menu-note span {
  display: block;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(101, 116, 93, 0.08), rgba(255, 250, 242, 0)),
    #f7efe3;
}

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

.menu-card {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: 26px;
}

.featured-menu {
  border-color: rgba(143, 38, 49, 0.28);
  background: #fff7ec;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-item strong,
.menu-item span {
  display: block;
}

.menu-item strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.menu-item span {
  color: var(--muted);
  font-size: 14px;
}

.menu-item b {
  color: var(--wine-dark);
  font-size: 14px;
}

.gallery-section {
  background: var(--charcoal);
  color: #fffaf1;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: var(--radius);
  background: #27211d;
}

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

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 478px;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 8, 7, 0.78));
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: rgba(255, 250, 241, 0.78);
}

.gallery-card figcaption strong {
  display: block;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.photo-card {
  display: flex;
  background-position: center;
  background-size: cover;
}

.pasta-card {
    background:
    linear-gradient(135deg, rgba(143, 38, 49, 0.15), rgba(19, 15, 13, 0.18)),
    url("assets/locanda-hero.jpg") 64% 62% / 170% auto no-repeat;
}

.wine-card {
    background:
    linear-gradient(135deg, rgba(101, 116, 93, 0.14), rgba(19, 15, 13, 0.12)),
    url("assets/locanda-hero.jpg") 90% 18% / 165% auto no-repeat;
}

.patio-card {
    background:
    linear-gradient(135deg, rgba(168, 163, 93, 0.18), rgba(19, 15, 13, 0.12)),
    url("assets/locanda-hero.jpg") 36% 44% / 150% auto no-repeat;
}

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

.review-summary {
  padding: 28px;
}

.review-summary p {
  color: var(--muted);
}

.positive {
  border-top: 4px solid var(--sage);
}

.caution {
  border-top: 4px solid var(--wine);
}

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

blockquote {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  color: #fffaf1;
  background: var(--sage);
}

blockquote:nth-child(2) {
  background: var(--wine);
}

blockquote:nth-child(3) {
  background: #33302c;
}

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.25;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 38, 49, 0.08), transparent 28%),
    #efe2ce;
}

.booking-copy {
  position: sticky;
  top: 108px;
}

.booking-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.booking-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #5d5147;
  font-size: 19px;
}

.booking-form {
  padding: clamp(22px, 4vw, 36px);
}

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

label {
  display: grid;
  gap: 7px;
  color: #4d4038;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(34, 27, 23, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(143, 38, 49, 0.16);
  border-color: rgba(143, 38, 49, 0.58);
}

.full-field,
.full-button,
.form-message {
  grid-column: 1 / -1;
}

.full-button {
  width: 100%;
  margin-top: 18px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--wine-dark);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card a {
  color: var(--wine-dark);
  font-weight: 800;
}

.hours-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hours-card div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.map-frame {
  height: 360px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 82px);
  color: rgba(255, 250, 241, 0.72);
  background: var(--charcoal);
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-identity img {
  width: 38px;
  height: 38px;
  padding: 5px;
  border-radius: 5px;
  object-fit: contain;
  background: #fffaf1;
}

.footer-identity p {
  color: #fffaf1;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

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

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

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

  .gallery-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

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

  .brand {
    min-width: 0;
  }

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

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 106px 20px 36px;
    background:
      linear-gradient(180deg, rgba(13, 10, 9, 0.68) 0%, rgba(13, 10, 9, 0.92) 72%),
      url("assets/locanda-hero.jpg") 58% center / cover no-repeat;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
    border-radius: var(--radius);
  }

  .intro-band,
  .about-grid,
  .menu-grid,
  .reviews-grid,
  .testimonial-row,
  .booking-section,
  .contact-grid,
  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hh-menu-header {
    align-items: flex-start;
    gap: 18px;
  }

  .hh-menu-header img {
    width: 62px;
    height: 76px;
  }

  .hh-menu-header h2 {
    font-size: 40px;
  }

  .section {
    padding: 56px 20px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .menu-card {
    min-height: auto;
  }

  .gallery-card img {
    min-height: 310px;
  }

  .booking-copy {
    position: static;
  }

  .hours-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

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