:root {
  /* Fraunces: soft editorial serif — strong character without script */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
  /* Warm paper + ink — fine-dining sites favor cream over cold grey */
  --bg: #f7f5f1;
  --text: #161e28;
  --text-muted: #5c6570;
  /* Primary royal blue — used across UI */
  --brand: #005a9c;
  --brand-dark: #004170;
  --brand-hover: #004a82;
  --brand-soft: rgba(0, 90, 156, 0.07);
  --brand-muted: rgba(0, 90, 156, 0.12);
  --accent: #005a9c;
  --card: #fffcfa;
  --line: #e8e4dc;
  /* Subtle champagne accent for hairlines (pairs with blue) */
  --lux-gold: #b8a060;
  --lux-gold-soft: rgba(184, 160, 96, 0.35);
  --shadow-soft: 0 24px 48px rgba(20, 28, 38, 0.07);
  --shadow-header: 0 1px 0 rgba(0, 65, 112, 0.06), 0 18px 42px rgba(15, 35, 55, 0.06);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 252, 250, 0.94);
  border-bottom: 1px solid rgba(0, 65, 112, 0.07);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0 auto;
  max-width: min(200px, 40%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--lux-gold-soft),
    var(--lux-gold),
    var(--lux-gold-soft),
    transparent
  );
  opacity: 0.85;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.85rem 0.75rem 0.85rem 0.5rem;
  min-height: 5rem;
  gap: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav-aside {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

/* Custom language control: country flag image + language name only */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem 0.4rem 0.5rem;
  border: 1px solid rgba(0, 65, 112, 0.15);
  border-radius: 4px;
  background: var(--card);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher-btn:hover,
.lang-switcher-btn[aria-expanded="true"] {
  border-color: var(--brand-muted);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.lang-switcher-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.lang-switcher-current {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.lang-switcher-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-switcher-name {
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.lang-switcher-chevron {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.1rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--brand-dark);
  opacity: 0.85;
  flex-shrink: 0;
}

.lang-switcher-list {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  z-index: 40;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  min-width: 11rem;
  background: var(--card);
  border: 1px solid rgba(0, 65, 112, 0.12);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.lang-switcher-list[hidden] {
  display: none !important;
}

.lang-switcher-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.85rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
  transition: background 0.15s ease;
}

.lang-switcher-option:hover,
.lang-switcher-option:focus-visible {
  background: var(--brand-soft);
  outline: none;
}

.lang-switcher-option.is-active {
  background: rgba(0, 90, 156, 0.1);
}

.lang-switcher-option .lang-switcher-flag {
  width: 24px;
  height: 18px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  transition: opacity 0.25s var(--ease-out);
}

.brand:hover {
  opacity: 0.88;
}

.brand img {
  display: block;
  height: 76px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.35rem);
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.main-nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease-out);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.35s var(--ease-out);
}

.main-nav a:hover {
  color: var(--brand-dark);
}

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

.main-nav a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 4px;
  padding: 0.45rem 0.65rem;
  font-size: 1.1rem;
  color: var(--brand-dark);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  border-color: var(--brand-muted);
  background: var(--brand-soft);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      105deg,
      rgba(12, 18, 28, 0.78) 0%,
      rgba(12, 18, 28, 0.42) 48%,
      rgba(0, 0, 0, 0.22) 100%
    ),
    url("./Images/IMG_4134.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-content {
  max-width: 720px;
  padding: 5.5rem 0 6rem;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.35rem;
  margin-top: 0;
  min-width: 168px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Hero: primary = solid brand blue; secondary = white outline only */
.hero-actions .btn:not(.btn-hero-ghost) {
  background: var(--brand);
  border: 2px solid var(--brand);
  color: #ffffff;
}

.hero-actions .btn:not(.btn-hero-ghost):hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.hero-actions .btn-hero-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
  box-shadow: none;
}

.hero-actions .btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 600;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  margin: 0 0 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hero-content h1 {
  font-weight: 500;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.hero-content > p {
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  max-width: 38em;
  color: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--brand-soft) 0%, rgba(247, 245, 241, 0.5) 100%);
}

.section-head {
  margin-bottom: 1.25rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(0, 65, 112, 0.08);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  border-left: 2px solid var(--brand);
  padding-left: 1rem;
  text-wrap: balance;
}

.section-head p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.015em;
  line-height: 1.6;
}

/* Buttons: one primary (solid blue), one secondary (outline blue) */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-sans);
  background: var(--brand);
  color: #ffffff;
  border: 1px solid var(--brand);
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.8rem;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
    color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
  box-shadow: 0 2px 12px rgba(0, 90, 156, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 90, 156, 0.28);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
}

.btn-secondary:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-dark);
}

.btn-secondary-light {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

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

.menu-link-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.menu-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 56px rgba(20, 28, 38, 0.1);
}

.menu-link-card-greek {
  background: linear-gradient(145deg, #fffcfa 0%, var(--brand-soft) 100%);
}

.menu-link-card-drinks {
  background: linear-gradient(145deg, #f7f2ea 0%, #fff8ef 100%);
}

.menu-link-preview {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0.3rem;
}

.menu-type {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.menu-type-head {
  margin-bottom: 0.9rem;
}

.menu-type-head h3 {
  margin: 0;
}

.menu-type-head p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

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

.menu-type-grid img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

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

.page-hero {
  padding-bottom: 2rem;
}

.menu-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

.menu-hero-content {
  position: relative;
  z-index: 1;
}

.menu-hero-content h1 {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

.menu-hero-italian {
  background-image: url("./Images/IMG_4043.webp");
}

.menu-hero-greek {
  background-image: url("./Images/IMG_4054.webp");
}

.menu-hero-drinks {
  background-image: url("./Images/drinks-hero.png");
}

.menu-pages-stack {
  display: grid;
  gap: 1rem;
}

.menu-pages-stack img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
  background: #fff;
}

.page-eyebrow {
  background: var(--brand-soft);
  border-color: var(--brand-muted);
  color: var(--brand-dark);
}

.menu-hero .page-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

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

.menu-visual-grid {
  display: grid;
  gap: 1rem;
}

.menu-visual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.menu-visual-image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #2f3339;
}

.menu-category-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.menu-category-card-dark {
  background: #191d23;
  border-color: #2f3339;
  color: #f7f8fa;
}

.menu-category-card h3 {
  margin: 0 0 0.6rem;
}

.menu-category-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-category-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  border-top: 1px dashed var(--line);
  padding: 0.65rem 0;
}

.menu-category-card li span {
  color: var(--text);
}

.menu-category-card li strong {
  white-space: nowrap;
  color: var(--brand-dark);
}

.menu-category-card-dark li {
  border-top-color: #323842;
}

.menu-category-card-dark li span {
  color: #f5f7fa;
}

.menu-category-card-dark li strong {
  color: #9ec9f0;
}

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

.menu-gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.gallery-carousel {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #111;
  box-shadow: var(--shadow-soft);
}

.gallery-track {
  position: relative;
  aspect-ratio: 16 / 9;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 280ms ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(17, 24, 39, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn-prev {
  left: 10px;
}

.carousel-btn-next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--brand);
  border-color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Hidden until stakeholders decide on reviews approach — delete this rule (and optional class on #guest-reviews) to show */
.section-reviews-pending {
  display: none;
}

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

.review-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 28px rgba(20, 28, 38, 0.05);
}

.review-card p:not(.review-stars):not(.review-author) {
  color: var(--text-muted);
  line-height: 1.65;
}

.review-stars {
  margin: 0 0 0.45rem;
  color: #d39a2c;
  letter-spacing: 0.08em;
}

.review-author {
  margin: 0.65rem 0 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
}

#google-reviews.section {
  padding: 2.25rem 0 4rem;
}

#google-reviews .section-head {
  margin-bottom: 1.25rem;
}

.google-review-meta {
  margin-top: 0.15rem !important;
  font-size: 0.85rem;
  color: #5f6368 !important;
}

.google-review-text-preview {
  margin-top: 0.45rem !important;
  color: #3c4043 !important;
}

.google-review-text-full {
  margin-top: 0.45rem !important;
  color: #3c4043 !important;
}

.google-review-toggle {
  margin-top: 0.55rem;
  border: none;
  background: transparent;
  color: #1a73e8;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.google-location-ratings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.google-rating-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 10px rgba(32, 33, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.google-rating-card h3 {
  margin: 0;
  font-size: 1.05rem;
  min-height: 2.6em;
}

.google-rating-line {
  margin: 0.25rem 0 0.15rem;
  color: #d39a2c !important;
  font-weight: 700;
}

.google-rating-line span {
  color: var(--text-muted);
  font-weight: 500;
}

.google-inline-review {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(60, 64, 67, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.google-inline-review .review-stars {
  margin: 0;
  line-height: 1;
}

.google-rating-card > .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.google-inline-review .google-review-meta,
.google-inline-review .google-review-text-preview,
.google-inline-review .google-review-text-full {
  margin: 0 !important;
}

.google-inline-review .google-review-toggle {
  align-self: flex-start;
  margin-top: 0.1rem;
}

.google-inline-review .google-review-text-preview {
  display: block;
  overflow: visible;
  line-height: 1.6;
  padding-bottom: 0;
  min-height: 0;
}

.google-inline-review .google-review-text-full[hidden] + .google-review-toggle,
.google-inline-review .google-review-toggle {
  margin-bottom: 0.05rem;
}

.google-review-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 0.45rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.google-review-photos {
  position: relative;
  margin-top: 0.45rem;
}

.google-review-photos .google-review-photo {
  display: none;
  margin-top: 0;
}

.google-review-photos .google-review-photo.is-active {
  display: block;
}

.google-review-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(17, 24, 39, 0.55);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  font-size: 1.2rem;
  z-index: 2;
}

.google-review-photo-prev {
  left: 8px;
}

.google-review-photo-next {
  right: 8px;
}

.contact-details-top {
  margin: 0 0 1.5rem;
}

.contact-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
}

.location-card-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.location-card-address {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.98rem;
  min-height: 4.5rem;
}

.contact-details p {
  margin: 0.55rem 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-details strong {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reservation-section {
  background: var(--brand-soft);
}

.reservation-title {
  margin: 0.5rem 0 0.8rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  font-optical-sizing: auto;
}

.reservation-intro {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-sans);
  border-radius: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.reservation-field-phone {
  min-width: 0;
}

.reservation-form .iti {
  width: 100%;
  display: block;
}

.reservation-form .iti__flag-container {
  border-right: 1px solid var(--line);
}

.reservation-form .iti input[type="tel"],
.reservation-form .iti input[type="text"] {
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.35;
  border-radius: 3px;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form select {
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.reservation-field {
  min-width: 0;
}

.reservation-form .reservation-field--full {
  grid-column: 1 / -1;
}

.reservation-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.field-required {
  margin-left: 0.2em;
  color: #b42318;
  font-weight: 700;
  letter-spacing: 0;
}

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
  color-scheme: light;
  accent-color: var(--brand);
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

.reservation-form input[type="date"]::-webkit-calendar-picker-indicator,
.reservation-form input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  width: 1.35rem;
  height: 1.35rem;
}

.reservation-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 150px;
  padding: 0.9rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.reserve-btn {
  justify-self: start;
  margin-top: 0.3rem;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 1rem 2.25rem;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0, 90, 156, 0.22);
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.reserve-btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 90, 156, 0.28);
}

.res-success-banner {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 4px;
  border: 1px solid rgba(34, 139, 34, 0.35);
  background: linear-gradient(180deg, #f4fff4 0%, #e8f7e8 100%);
  color: #1a4d1a;
  font-size: 0.98rem;
  line-height: 1.5;
  box-shadow: 0 2px 12px rgba(34, 139, 34, 0.12);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  min-height: 320px;
  border: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.map-wrap {
  position: relative;
  flex: 0 0 auto;
  min-height: 320px;
}

.site-footer {
  border-top: 1px solid rgba(0, 65, 112, 0.08);
  padding: 2.5rem 0 2.75rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fffcfa 0%, #f7f5f1 100%);
}

.site-footer p {
  margin: 0;
}

.contact-socials {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 20px rgba(10, 20, 35, 0.18);
}

.contact-social-link.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.contact-social-link.facebook {
  background: #1877f2;
}

.contact-social-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.contact-social-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.contact-social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-social-link.facebook svg {
  width: 1.15rem;
  height: 1.15rem;
  padding: 0.18rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.contact-social-link span {
  line-height: 1;
}

@media (max-width: 860px) {
  .section {
    padding: 3rem 0;
  }

  .section-head {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  #google-reviews.section {
    padding: 1.75rem 0 3rem;
  }

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

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

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

  .contact-locations-grid {
    grid-template-columns: 1fr;
  }

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

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

  .menu-visual-image {
    min-height: 260px;
  }

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

  .reservation-form {
    grid-template-columns: 1fr;
  }

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

  .google-location-ratings {
    grid-template-columns: 1fr;
  }

  .google-review-photo {
    height: 200px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .nav-right {
    flex: 0 0 auto;
    gap: 0.5rem;
  }

  .lang-switcher-btn {
    padding: 0.32rem 0.45rem;
    font-size: 0.6875rem;
  }

  .lang-switcher-name {
    max-width: 7.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lang-switcher-list {
    min-width: 10rem;
    right: 0;
    left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    background: rgba(255, 252, 250, 0.98);
    border: 1px solid rgba(0, 65, 112, 0.1);
    border-radius: 4px;
    padding: 1rem 1.15rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    min-width: 220px;
    box-shadow: var(--shadow-soft);
    flex: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
    padding: 0.55rem 0.25rem;
  }

  .main-nav a::after {
    display: none;
  }

  .gallery-track {
    aspect-ratio: 16 / 9;
  }

  .menu-type-grid,
  .menu-type-greek .menu-type-grid,
  .menu-category-grid {
    grid-template-columns: 1fr;
  }
}
