:root {
  --ink: #211711;
  --muted: #725d4f;
  --cream: #fff4df;
  --paper: #f8ead0;
  --red: #b41f18;
  --lava: #ee4b22;
  --green: #174a2d;
  --gold: #e2b35b;
  --shadow: 0 24px 70px rgba(33, 23, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(33, 23, 17, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  padding-block: 12px;
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover,
.header-cta:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/ovesuvio-10.jpg") center / cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 12, 8, 0.88), rgba(33, 12, 8, 0.58) 44%, rgba(33, 12, 8, 0.2)),
    radial-gradient(circle at 85% 20%, rgba(238, 75, 34, 0.52), transparent 32%),
    linear-gradient(0deg, rgba(33, 23, 17, 0.78), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  padding: clamp(130px, 18vh, 190px) clamp(20px, 6vw, 84px) 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lava);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(76px, 12vw, 172px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

h1 span {
  color: var(--gold);
  text-shadow: 5px 5px 0 var(--red);
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(180, 31, 24, 0.36);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 44px;
  z-index: 3;
  width: min(320px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 22px;
  background: rgba(33, 23, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  color: #fff;
}

.intro-band div {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-band span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.85;
}

.intro-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(180, 31, 24, 0.07) 25%, transparent 25%) 0 0 / 34px 34px,
    var(--paper);
}

.section-copy h2,
.section-heading h2,
.booking-copy h2,
.contact-card h2 {
  margin-bottom: 24px;
  max-width: 760px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.section-copy p:not(.eyebrow),
.booking-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.photo-stack {
  position: relative;
  min-height: 580px;
}

.photo-stack img {
  position: absolute;
  object-fit: cover;
  border: 10px solid var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-stack img:first-child {
  right: 0;
  width: 72%;
  height: 460px;
}

.photo-stack img:last-child {
  left: 0;
  bottom: 0;
  width: 52%;
  height: 320px;
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

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

.menu-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-grid div {
  padding: 22px;
}

.menu-grid p {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-grid h3 {
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.95;
}

.menu-grid span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.menu-category {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(226, 179, 91, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.menu-category-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.menu-category-head p {
  margin: 0;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-category-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

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

.menu-category li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.35;
}

.menu-category li::after {
  content: "";
  flex: 1;
  min-width: 24px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.16);
}

.quote-band {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 84px);
  background: var(--red);
  color: #fff;
}

.quote-band p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 6vw, 86px);
  font-style: italic;
  line-height: 1.02;
  text-align: center;
}

.gallery-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid .wide {
  grid-column: span 2;
  grid-row: span 2;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(33, 23, 17, 0.78), rgba(33, 23, 17, 0.84)),
    url("assets/images/ovesuvio-06.jpg") center / cover fixed;
  color: #fff;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.phone-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
}

.booking-form {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(33, 23, 17, 0.16);
  border-radius: 8px;
  padding: 15px 14px;
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
  background: var(--paper);
}

.contact-card,
.hours-card {
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.hours-card h3 {
  margin-bottom: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  font-weight: 400;
}

.hours-card dl {
  margin: 0;
}

.hours-card div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(33, 23, 17, 0.12);
}

.hours-card dt {
  color: var(--red);
  font-weight: 900;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .intro-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    position: fixed;
    top: 18px;
    left: min(330px, calc(100vw - 62px));
    z-index: 31;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    border-radius: 8px;
    padding: 18px;
    background: rgba(33, 23, 17, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -42px 20px 40px;
  }

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

  .split,
  .booking-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 12px;
  }

  .photo-stack img,
  .photo-stack img:first-child,
  .photo-stack img:last-child {
    position: static;
    width: 100%;
    height: 330px;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 66px;
  }

  .hero-copy {
    max-width: 310px;
    font-size: 18px;
  }

  .intro-band,
  .menu-grid,
  .menu-board,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-category-head {
    display: block;
  }

  .menu-category-head span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .intro-band div {
    min-height: 116px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img,
  .photo-stack img:first-child,
  .photo-stack img:last-child {
    height: 280px;
  }

  .phone-link {
    font-size: 40px;
  }

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