/* ============================================================
   MARTINI LOUNGE CAFFÈ — style.css
   Aesthetic: Editorial Luxury / Dark Lounge
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;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 {
  /* Palette */
  --bg:           #0d0b0f;
  --bg-alt:       #131118;
  --bg-card:      #1a1723;
  --brand:        #4a2d5a;
  --brand-light:  #6b4480;
  --gold:         #c9a84c;
  --gold-light:   #e0c278;
  --cream:        #f0ead8;
  --text:         #e8e0d4;
  --text-muted:   #9b8fa3;
  --text-dim:     #6b6070;
  --border:       #2a2333;
  --border-gold:  rgba(201,168,76,0.3);

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

  /* Spacing */
  --section-pad:  clamp(4rem, 8vw, 8rem);
  --container:    1280px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
}

/* Light mode override — same palette but inverted for readability */
@media (prefers-color-scheme: light) {
  :root {
    --bg:           #f5f0eb;
    --bg-alt:       #ede5da;
    --bg-card:      #ffffff;
    --text:         #1a1320;
    --text-muted:   #4a3d55;
    --text-dim:     #7a6a85;
    --border:       #ddd6cc;
    --border-gold:  rgba(120,90,30,0.25);
    --gold:         #7a5c18;
    --gold-light:   #8a6820;
    --cream:        #1a1320;
    --brand-light:  #3d2150;
  }
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-xl {
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.display-lg {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-md {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: -0.015em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.8; }

/* ── GOLD RULE ──────────────────────────────────────────── */
.gold-rule {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  display: block;
}
.gold-rule--lg { width: 5rem; }

/* ── NAV ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(13,11,15,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 1002;
}
.nav-logo span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cream);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ── HAMBURGER ──────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  position: fixed;
  top: 1.1rem;
  right: var(--gutter);
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.nav-hamburger .bar {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE OVERLAY ─────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13,11,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 0.3rem 1rem;
  transition: color 0.2s;
  line-height: 1.15;
}
.nav-overlay-links a:hover,
.nav-overlay-links a[aria-current="page"] {
  color: var(--gold);
}
.nav-overlay-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.nav-overlay-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2.5rem;
  font-family: var(--font-body);
}

html.menu-open { overflow: hidden; }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-overlay { display: flex; }
}
@media (min-width: 768px) {
  .nav-hamburger { display: none !important; }
  .nav-overlay { display: none !important; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(13,11,15,0.35) 65%, transparent 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 7rem);
  z-index: 2;
}
.hero-inner { max-width: 720px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hero-title {
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
  color: var(--cream);
}
.hero-title em {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  margin-top: 1.5rem;
  color: var(--text-muted);
  max-width: 38ch;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp 0.9s var(--ease-out) 0.65s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: fadeIn 1.2s var(--ease-out) 1s both;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  font-family: var(--font-body);
}
.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 767px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media {
    grid-column: 1;
    position: absolute;
    inset: 0;
  }
  .hero-media::after {
    background: linear-gradient(to top, rgba(13,11,15,0.96) 35%, rgba(13,11,15,0.4) 100%);
  }
  .hero-content { padding-bottom: clamp(4rem, 12vh, 7rem); }
  .hero-scroll { display: none; }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--gold);
  color: #0d0b0f;
  border-color: var(--gold);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,234,216,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ── INTRO STRIP ────────────────────────────────────────── */
.intro-strip {
  background: #111111;
  padding: 2.5rem var(--gutter);
  overflow: hidden;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--container);
  margin-inline: auto;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.intro-strip-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.intro-strip-item .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b8fa3;
  line-height: 1.35;
}
.intro-sep {
  width: 1px;
  height: 2.5rem;
  background: #2a2333;
  flex-shrink: 0;
}
@media (max-width: 599px) {
  .intro-strip-inner { flex-wrap: wrap; gap: 1.5rem 2rem; }
  .intro-sep { display: none; }
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-title { color: var(--cream); }

/* ── ABOUT STRIP (index) ────────────────────────────────── */
.about-index {
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}
.about-index-media { position: relative; }
.about-index-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-index-media::before {
  content: '';
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid var(--border-gold);
  z-index: -1;
}
.about-index-text { padding: 1rem 0; }
.about-index-text p { color: var(--text-muted); margin-top: 1.25rem; }
.about-index-text .btn { margin-top: 2rem; }
@media (max-width: 767px) {
  .about-index { grid-template-columns: 1fr; }
  .about-index-media::before { display: none; }
}

/* ── FEATURES GRID ──────────────────────────────────────── */
.features {
  padding: var(--section-pad) var(--gutter);
  background: var(--bg-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: var(--container);
  margin-inline: auto;
}
.feature-card {
  background: var(--bg-alt);
  padding: 2.5rem;
  transition: background 0.3s;
}
.feature-card:hover { background: var(--bg-card); }
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.review-text {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  font-family: var(--font-display);
  font-weight: 300;
}
.review-author {
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── IMAGE SPLIT ────────────────────────────────────────── */
.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
}
.image-split-panel {
  position: relative;
  overflow: hidden;
}
.image-split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.image-split-panel:hover img { transform: scale(1.04); }
.image-split-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,15,0.5);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.image-split-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream);
}
@media (max-width: 599px) {
  .image-split { grid-template-columns: 1fr; min-height: auto; }
  .image-split-panel { min-height: 55vw; }
}

/* ── DRINKS PAGE ────────────────────────────────────────── */
.drinks-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.drinks-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.drinks-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,15,1) 10%, rgba(13,11,15,0.55) 55%, transparent 100%);
}
.drinks-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(3rem, 7vh, 6rem);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}
.drinks-section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
}
.drinks-section + .drinks-section { padding-top: 0; }
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.drink-card {
  background: var(--bg);
  padding: 2rem 2.25rem;
  transition: background 0.25s;
}
.drink-card:hover { background: var(--bg-card); }
.drink-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.drink-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.drink-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.6rem;
}

/* ── ORARI TABLE ────────────────────────────────────────── */
.orari-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.orari-table tr { border-bottom: 1px solid var(--border); }
.orari-table tr:last-child { border-bottom: none; }
.orari-table td {
  padding: 0.75rem 0;
  color: var(--text-muted);
}
.orari-table td:first-child {
  color: var(--text);
  font-weight: 400;
  text-transform: capitalize;
  width: 50%;
}
.orari-table tr.today td { color: var(--gold); font-weight: 500; }

/* ── ABOUT / PAGE HERO ──────────────────────────────────── */
.page-hero {
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-inline: var(--gutter);
  padding-bottom: var(--section-pad);
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}
.page-hero-text { max-width: 540px; }
.page-hero-text p { color: var(--text-muted); margin-top: 1.25rem; line-height: 1.9; }
.page-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-block {
  border-left: 1px solid var(--border-gold);
  padding-left: 1.5rem;
}
.stat-block .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-block .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: clamp(5rem, 12vh, 8rem);
  }
}

/* ── GALLERY (about) ────────────────────────────────────── */
.gallery {
  padding: 0 var(--gutter) var(--section-pad);
  max-width: var(--container);
  margin-inline: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-grid > *:first-child {
  grid-row: span 2;
  min-height: 400px;
}
.gallery-grid > *:not(:first-child) { min-height: 190px; }
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid > *:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 250px;
  }
}
@media (max-width: 479px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid > *:first-child {
    grid-column: auto;
    min-height: 200px;
  }
}

/* ── VALUES (about) ─────────────────────────────────────── */
.values {
  background: var(--bg-alt);
  padding: var(--section-pad) var(--gutter);
}
.values-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 2.5rem;
}
.value-item .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.value-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-inline: var(--gutter);
  padding-bottom: var(--section-pad);
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}
@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
    padding-top: clamp(5rem, 12vh, 8rem);
  }
}
.contact-info-block { margin-top: 2rem; }
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-row-icon {
  width: 1.5rem;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
  font-size: 1rem;
}
.contact-row-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.contact-row-value {
  color: var(--text);
  font-size: 0.95rem;
}
.contact-row-value a {
  color: var(--text);
  transition: color 0.2s;
}
.contact-row-value a:hover { color: var(--gold); }
.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(0.9);
}
.orari-contact { margin-top: 3rem; }

/* ── SERVICE FLAGS ──────────────────────────────────────── */
.services-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.7rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 1.75rem var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.site-footer a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── UTILITIES ──────────────────────────────────────────── */
.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;
}
.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
