:root {
  /* Replace with brand colors */
  --ink: #0b0b0b;
  --ink-soft: #f2f2f2;
  --ivory: #ffffff;
  --gold: #0c71c3;
  --gold-deep: #084f88;
  --sage: #6c6f73;
  --clay: #1a1a1a;
  --shadow: rgba(0, 0, 0, 0.18);
  --accent: #0c71c3;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: #ffffff;
  background: #050505;
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
  text-align: left;
}

.brand img {
  width: 140px;
  height: auto;
}

.brand-text span {
  display: block;
  white-space: nowrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links .nav-links-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links .nav-links-list li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 113, 195, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(12, 113, 195, 0.45);
}

.btn-outline {
  border-color: var(--gold);
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(21, 19, 18, 0.12);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #ffffff;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 60;
}

.hero {
  padding: 96px 0 72px;
}

.hero-backdrop {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35)),
    url("../../images/background_ambiance_4.png") center/cover no-repeat;
}

.about-heritage-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.8)),
    url("../../images/image_kneading_dough.jpg") center/cover no-repeat;
}

.about-heritage-section .hero-card {
  background: rgba(0, 0, 0, 0.7);
}


.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 62px);
  margin: 12px 0 18px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-meta {
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}

.hero-card {
  background: linear-gradient(140deg, rgba(14, 14, 14, 0.92), rgba(20, 20, 20, 0.92));
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  background: #0b0b0b;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: none;
}

.hero-home {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.28)),
    url("../../images/background_ambiance_1.png") center/cover no-repeat;
}

.hero-menu {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.22)),
    url("../../images/food_campidanese_pasta.png") center/cover no-repeat;
}

.hero-lunch {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/food_octopus_1.png") center/cover no-repeat;
}

.hero-dinner {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.22)),
    url("../../images/food_octopus_2.png") center/cover no-repeat;
}

.hero-catering {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/food1-300x198.jpg") center/cover no-repeat;
}

.hero-reservations {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/background_ambiance_4.png") center/cover no-repeat;
}

.hero-about {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.18)),
    url("../../images/image_kneading_dough.jpg") center/cover no-repeat;
}

.hero-locations {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/background_ambiance_2.png") center/cover no-repeat;
}

.hero-contact {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.18)),
    url("../../images/background_ambiance_4.png") center/cover no-repeat;
}

.hero-order {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/background_cocktails.png") center/cover no-repeat;
}

.hero-gift {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/background_wine_glasses.png") center/cover no-repeat;
}

.section {
  padding: 72px 0;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
}

.section-kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.card {
  background: rgba(10, 10, 10, 0.9);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.owner-card img {
  width: 100%;
  border-radius: 0;
  margin-bottom: 14px;
}

.hero-card .hero-subtitle + .hero-subtitle {
  margin-top: 16px;
}

.hours-list {
  display: grid;
  gap: 12px;
  font-size: 15px;
}

.hours-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
}

.awards-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.awards-image {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/awards_image_zona_blu.png") center/cover no-repeat;
  border-radius: 0;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.awards-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: none;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 113, 195, 0.15);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.menu-item {
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 6px;
}

.menu-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.menu-item span {
  font-weight: 600;
  color: var(--gold-deep);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.split-panel .image {
  border-radius: 0;
  min-height: 320px;
  background: #0b0b0b;
}

.split-menu {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/food_frutti_di_mare.png") center/cover no-repeat;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #050505;
}

.specials-image-wrap {
  background: transparent;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specials-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.split-chef {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/image_owner_andrea.png") center/cover no-repeat;
}

.location-card {
  background: rgba(10, 10, 10, 0.9);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.map-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 0;
  filter: grayscale(0.1) contrast(1.05);
}

.site-footer {
  margin-top: auto;
  background: #000000;
  color: #ffffff;
  padding: 48px 0 28px;
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer .footer-title,
.site-footer .footer-note {
  color: #ffffff;
}

.site-footer .btn-outline {
  color: #ffffff;
}

.site-footer a.btn.btn-outline {
  color: #ffffff !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-note {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.awards-full {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    url("../../images/awards_image_zona_blu.png") center/cover no-repeat;
  min-height: 360px;
}

.heritage-section {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
    url("../../images/image_traditional_sardinian_dress.jpg") center/cover no-repeat;
  padding: 88px 0;
}

.menu-page {
  background: #ffffff;
  color: #0b0b0b;
}

.menu-page .site-header {
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-page .site-header,
.menu-page .site-header a,
.menu-page .nav-toggle {
  color: #ffffff;
}

.menu-page .hero-card,
.menu-page .card,
.menu-page .menu-item {
  background: #ffffff;
  color: #0b0b0b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.menu-page .hero-subtitle,
.menu-page .menu-item p,
.menu-page .section-kicker {
  color: rgba(0, 0, 0, 0.7);
}

.menu-page .hero-card .hero-kicker {
  color: rgba(0, 0, 0, 0.75);
}

.menu-page .site-header .btn-outline {
  color: #ffffff;
}

.menu-page .btn-outline {
  color: #0b0b0b;
}

.menu-page .btn-primary {
  color: #ffffff;
}

.menu-page .site-footer .btn-outline {
  color: #ffffff;
}

.hero-full {
  min-height: 420px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(12, 113, 195, 0.2)),
    url("../../images/background_ambiance_4.png") center/cover no-repeat;
}

.heritage-section .card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-page-content .container > *:first-child {
  margin-top: 0;
}

.wp-page-content .container > *:last-child {
  margin-bottom: 0;
}

.wp-page-content .wp-block-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .brand img {
    width: 120px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 5, 5, 0.97);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 30px rgba(21, 19, 18, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .nav-links .nav-links-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 110px;
  }
  .hero {
    padding: 72px 0 56px;
  }

  .hero-card {
    padding: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}
