/* ============================================================
   RISTORANTE PESCHERIA BELVGA — style.css
   Aesthetic: Luxury editorial / deep ocean
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Brand: #1a4a5a deep ocean blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand scale — H:198 S:55% */
  --brand-950: #0a1e25;
  --brand-900: #102c38;
  --brand-800: #1a4a5a;
  --brand-700: #235e72;
  --brand-600: #2d7a96;
  --brand-500: #3693b3;
  --brand-400: #5aaecb;
  --brand-300: #8acade;
  --brand-200: #b8e0ec;
  --brand-100: #daf0f6;
  --brand-50:  #f0f9fc;

  /* Accent gold */
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #9a7a48;

  /* Surfaces — light mode */
  --bg:          #f8f4ed;
  --bg-alt:      #fffdf9;
  --surface:     #ffffff;
  --text:        #0d1f26;
  --text-muted:  #3d5a66;
  --text-light:  #5a7e8c;
  --border:      #d4e8ef;
  --divider:     #e8eff2;

  /* Nav */
  --nav-bg:      #1a4a5a;
  --nav-text:    #f0f9fc;
  --nav-active:  #c9a96e;

  /* Overlay (hamburger) */
  --overlay-bg:  #0a1e25;
  --overlay-text:#f0f9fc;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --max-w: 72rem;
  --max-w-wide: 88rem;
  --section-py: 5rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  260ms;
}

/* ── Dark mode ─────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0a1e25;
    --bg-alt:      #102c38;
    --surface:     #102c38;
    --text:        #eef6f9;
    --text-muted:  #8acade;
    --text-light:  #5aaecb;
    --border:      #1e4a5e;
    --divider:     #1a3d4e;

    --nav-bg:      #0a1e25;
    --nav-text:    #eef6f9;

    --overlay-bg:  #0a1e25;
    --overlay-text:#eef6f9;
  }
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

html.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--brand-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover { color: var(--gold-dark); }

a:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { max-width: 68ch; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.container--wide {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: var(--section-py);
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--dark {
  background-color: var(--brand-800);
  color: var(--brand-100);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--brand-50);
}

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--nav-bg);
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.site-nav__inner {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--brand-100) !important;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}

.site-nav__brand span:last-child {
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold-light) !important;
  text-transform: uppercase;
}

.site-nav__links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-text);
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.site-nav__links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .site-nav__links { display: flex; }
  .site-nav__hamburger { display: none !important; }
}

/* ── Hamburger ─────────────────────────────────────────────── */
.site-nav__hamburger {
  position: fixed;
  top: 10px;
  right: 1rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}

.site-nav__hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.site-nav__hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #daf0f6;   /* brand-100 — on nav-bg #0a1e25 or #1a4a5a: ~9:1 */
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 200ms var(--ease), width 200ms var(--ease);
  transform-origin: center;
}

.site-nav__hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.site-nav__hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile overlay ────────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background-color: var(--overlay-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-overlay.is-open {
  display: flex;
}

.mobile-overlay__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-overlay__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--overlay-text);   /* #f0f9fc on #0a1e25: ~15:1 */
  letter-spacing: 0.02em;
  display: block;
  transition: color var(--dur) var(--ease);
}

.mobile-overlay__links a:hover,
.mobile-overlay__links a.active {
  color: var(--gold);
}

.mobile-overlay__links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── Page offset ───────────────────────────────────────────── */
.page-wrap { padding-top: 64px; }

/* ── Split Hero ────────────────────────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 64px);
}

@media (min-width: 768px) {
  .split-hero { grid-template-columns: 45% 55%; }
}

.split-hero__left {
  background-color: var(--brand-800);
  color: var(--brand-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.split-hero__left::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.12);
  pointer-events: none;
}

.split-hero__left::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.07);
  pointer-events: none;
}

.split-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);   /* on #1a4a5a: ~6:1 */
  margin-bottom: 1.25rem;
}

.split-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  color: var(--brand-50);    /* on #1a4a5a: ~9:1 */
  margin-bottom: 0.3em;
}

.split-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.split-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--brand-200);   /* on #1a4a5a: ~5.5:1 */
  margin-bottom: 2rem;
  line-height: 1.55;
  max-width: 38ch;
}

.split-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2.5rem;
}

.split-hero__meta-item {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--brand-200);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.split-hero__meta-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

.split-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.split-hero__right {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

@media (max-width: 767px) {
  .split-hero__right { min-height: 280px; }
}

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

.split-hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,74,90,0.25) 0%, transparent 60%);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--gold);
  color: #0d1f26;    /* 8.2:1 on gold */
  border-color: var(--gold);
}
.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: #0d1f26;
}

.btn--ghost {
  background-color: transparent;
  color: var(--brand-100);
  border-color: rgba(201,169,110,0.5);
}
.btn--ghost:hover {
  background-color: rgba(201,169,110,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--outline {
  background-color: transparent;
  color: var(--brand-800);
  border-color: var(--brand-700);
}
.btn--outline:hover {
  background-color: var(--brand-800);
  color: var(--brand-50);
}

/* ── Intro strip — hardcoded #111111 per spec ──────────────── */
.intro-strip {
  background: #111111;
  padding-block: 1.4rem;
}

.intro-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.intro-strip__item {
  font-family: var(--font-body);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a96e;    /* gold on #111: ~8.7:1 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intro-strip__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(201,169,110,0.4);
}

/* ── Rating badge ──────────────────────────────────────────── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--gold);
  color: #0d1f26;    /* 8.2:1 */
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.rating-badge .stars { color: #7a5a1e; font-size: 0.72rem; }

/* ── Section headers ───────────────────────────────────────── */
.section-header {
  margin-bottom: 3rem;
}

.section-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.75rem;
}

.section--dark .section-header__eyebrow {
  color: var(--gold-light);
}

.section-header__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 54ch;
}

.section--dark .section-header__subtitle {
  color: var(--brand-300);
}

/* ── Feature cards ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.feature-card:hover {
  border-color: var(--brand-400);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,74,90,0.12);
}

@media (prefers-color-scheme: dark) {
  .feature-card { background-color: var(--brand-900); }
  .feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
}

.feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.feature-card__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
}

@media (prefers-color-scheme: dark) {
  .review-card { background-color: var(--brand-900); border-color: var(--brand-800); }
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
  quotes: "\201C" "\201D";
}

.review-card__quote::before {
  content: open-quote;
  font-size: 1.5em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
}

.review-card__author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── Photo mosaic ──────────────────────────────────────────── */
.photo-mosaic {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.photo-mosaic__item {
  overflow: hidden;
  border-radius: var(--r-sm);
  aspect-ratio: 4/3;
}

.photo-mosaic__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.photo-mosaic__item:hover img { transform: scale(1.04); }

@media (max-width: 600px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
  .photo-mosaic__item--tall { grid-row: span 1; }
}

/* ── Hours table ───────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--divider);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.6rem 0;
  color: var(--text);
}

.hours-table td:first-child {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-muted);
  width: 45%;
}

.hours-table .closed td {
  color: var(--text-light);
}

.hours-table .closed td:first-child {
  color: var(--text-light);
  font-style: italic;
  font-weight: 300;
}

/* ── Service badges ────────────────────────────────────────── */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background-color: var(--bg-alt);
}

@media (prefers-color-scheme: dark) {
  .service-badge {
    background-color: var(--brand-900);
    border-color: var(--brand-700);
    color: var(--brand-300);
  }
}

/* ── Menu page hero ────────────────────────────────────────── */
.menu-page-hero {
  background-color: var(--brand-800);
  padding-block: clamp(3rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.08);
  pointer-events: none;
}

.menu-page-hero h1 { color: var(--brand-50); }

.menu-page-hero .hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-200);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  max-width: 52ch;
  margin-inline: auto;
}

.menu-disclaimer {
  background-color: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 65ch;
}

.menu-section { margin-bottom: 3.5rem; }

.menu-section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-800);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
  .menu-section__title { color: var(--brand-200); border-color: var(--brand-700); }
}

.menu-item {
  padding-block: 0.55rem;
  border-bottom: 1px dotted var(--divider);
}

.menu-item:last-child { border-bottom: none; }

.menu-item__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--text);
}

.menu-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.1rem;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background-color: var(--brand-800);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.1);
  pointer-events: none;
}

.page-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.page-hero h1 { color: var(--brand-50); }

.page-hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-200);
  font-size: 1.15rem;
  margin-top: 0.5rem;
  max-width: 50ch;
}

/* ── About split ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-split__img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact layout ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 36px;
  height: 36px;
  background-color: var(--brand-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (prefers-color-scheme: dark) {
  .contact-info__icon { background-color: var(--brand-800); }
}

.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.contact-info__value {
  color: var(--text);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Divider ornament ──────────────────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1rem;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

.ornament-divider__symbol {
  color: var(--gold);
  font-size: 1rem;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--brand-950);
  padding-block: 1.25rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.74rem;
  color: rgba(240,249,252,0.45);
  max-width: none;
  letter-spacing: 0.04em;
}

.site-footer a {
  color: rgba(201,169,110,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover { color: var(--gold-light); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 700ms var(--ease) both; }
.fade-up--d1 { animation-delay: 80ms; }
.fade-up--d2 { animation-delay: 180ms; }
.fade-up--d3 { animation-delay: 300ms; }
.fade-up--d4 { animation-delay: 420ms; }
.fade-up--d5 { animation-delay: 540ms; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand-300); border-radius: 3px; }

/* ── Selection ─────────────────────────────────────────────── */
::selection { background-color: var(--brand-800); color: var(--brand-50); }
