:root {
  --ink: #101820;
  --muted: #646b73;
  --paper: #fffaf2;
  --line: rgba(16, 24, 32, 0.13);
  --radius: 8px;
  --container: 1160px;
  --accent: #bd8832;
  --accent-2: #d8b26c;
  --dark: #071521;
  --soft: #f5eee3;
  --hero-image: url("https://images.unsplash.com/photo-1515669097368-22e68427d265?auto=format&fit=crop&w=2200&q=84");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.tapas {
  --accent: #d16a3a;
  --accent-2: #f0b071;
  --dark: #121416;
  --soft: #f7eee8;
  --hero-image: url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=2200&q=84");
}

body.italiano {
  --accent: #9f2f27;
  --accent-2: #d7a45a;
  --dark: #151a13;
  --soft: #f5efe5;
  --hero-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?auto=format&fit=crop&w=2200&q=84");
}

body.cafe {
  --accent: #9a6a3d;
  --accent-2: #d7b98d;
  --dark: #17201d;
  --soft: #f3ece3;
  --hero-image: url("https://images.unsplash.com/photo-1495474472287-4d71dcb5a06f?auto=format&fit=crop&w=2200&q=84");
}

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

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

.example-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--container));
  min-height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.91);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 196px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: #071521;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 0.95;
  white-space: nowrap;
}

.brand-name span:last-child {
  color: #bd8832;
}

.brand-mark {
  width: 70px;
  height: 9px;
  display: block;
  margin: 3px 0 0 52px;
  background:
    linear-gradient(#071521, #071521) left 4px top 4px / 26px 1.5px no-repeat,
    radial-gradient(circle at center, #bd8832 0 3px, transparent 3.5px),
    linear-gradient(#071521, #071521) right 4px top 4px / 26px 1.5px no-repeat;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #15202b;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-cta {
  margin-left: auto;
  gap: 9px;
  color: #fffaf2;
  background: var(--accent);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
}

.button-primary {
  color: #fffaf2;
  background: var(--accent);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--accent) 32%, transparent);
}

.button-secondary {
  color: #fffaf2;
  border: 1px solid rgba(255, 250, 242, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.example-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf2;
  background: var(--dark);
}

.example-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 42%),
    var(--hero-image) center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 130px 0 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: 5.8rem;
  line-height: 0.92;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.12rem;
  line-height: 1.8;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-tags span {
  border: 1px solid rgba(255, 250, 242, 0.25);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 250, 242, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

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

.section-heading h2 {
  color: var(--dark);
  font-size: 3.65rem;
  line-height: 1;
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.menu-card,
.experience-card,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.07);
}

.menu-card {
  min-height: 210px;
  padding: 24px;
}

.menu-card p {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 1.2rem;
}

.menu-card span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.menu-card strong {
  display: block;
  margin-top: 18px;
  color: var(--dark);
  font-size: 1.14rem;
}

.experience {
  background: var(--soft);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.experience-image {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 76px rgba(16, 24, 32, 0.14);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card {
  padding: 34px;
  display: grid;
  align-content: center;
}

.experience-card h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 3.2rem;
  line-height: 1;
}

.experience-card p {
  color: var(--muted);
  line-height: 1.8;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--dark);
  font-weight: 800;
}

.detail-list svg {
  color: var(--accent);
}

.booking {
  background: var(--dark);
  color: #fffaf2;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent),
    var(--dark);
  border-color: rgba(255, 255, 255, 0.18);
}

.booking-panel h2 {
  margin-bottom: 10px;
  color: #fffaf2;
  font-size: 3rem;
  line-height: 1;
}

.booking-panel p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.74);
  line-height: 1.7;
}

.example-footer {
  padding: 34px 0;
  color: rgba(255, 250, 242, 0.7);
  background: #050d14;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner a {
  color: var(--accent-2);
  font-weight: 900;
}

@media (max-width: 920px) {
  .example-nav {
    gap: 12px;
  }

  .brand {
    min-width: 160px;
    padding-right: 10px;
  }

  .brand-name {
    font-size: 1.32rem;
  }

  .brand-mark {
    width: 58px;
    margin-left: 42px;
    background:
      linear-gradient(#071521, #071521) left 4px top 4px / 21px 1.5px no-repeat,
      radial-gradient(circle at center, #bd8832 0 2.5px, transparent 3px),
      linear-gradient(#071521, #071521) right 4px top 4px / 21px 1.5px no-repeat;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: 4.1rem;
  }

  .menu-grid,
  .experience-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .example-nav {
    top: 12px;
    min-height: 62px;
  }

  .brand {
    min-width: 142px;
    border-right: 0;
  }

  .brand-name {
    font-size: 1.14rem;
    gap: 4px;
  }

  .brand-mark {
    margin-left: 34px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0;
  }

  .nav-cta svg {
    margin: 0;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--container));
    padding: 108px 0 56px;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 0.98;
  }

  .hero-copy,
  .section-heading p {
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .container,
  .footer-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .experience-card h2,
  .booking-panel h2 {
    font-size: 2.45rem;
  }

  .experience-image {
    min-height: 340px;
  }

  .experience-card,
  .booking-panel {
    padding: 24px;
  }
}
