/* ============================================================
   Trattoria Nonna Vera — Rustic Italian family trattoria
   Palette: terracotta #9E3B2E · cream #F4ECDD · olive #6B7141 · tomato #C64A32
   Type: Playfair Display · Libre Franklin · Caveat
   ============================================================ */

:root {
  --terracotta: #9E3B2E;
  --terracotta-deep: #7d2c22;
  --cream: #F4ECDD;
  --cream-warm: #efe4cf;
  --paper: #FBF6EC;
  --olive: #6B7141;
  --olive-deep: #545930;
  --tomato: #C64A32;
  --ink: #2c211c;
  --ink-soft: #55463d;
  --gold: #c9922e;

  --shadow-soft: 0 18px 40px -24px rgba(44, 33, 28, 0.55);
  --shadow-lift: 0 30px 60px -30px rgba(44, 33, 28, 0.6);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Libre Franklin", "Segoe UI", system-ui, sans-serif;
  --hand: "Caveat", "Segoe Script", cursive;

  --wrap: 1180px;
  --radius: 6px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(158, 59, 46, 0.05), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(107, 113, 65, 0.06), transparent 45%);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.08; margin: 0; color: var(--terracotta); font-weight: 700; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 1200;
  background: var(--terracotta);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Focus ---------- */
:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; border-radius: 3px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.section { padding-block: clamp(3.6rem, 8vw, 6.4rem); }
.eyebrow {
  font-family: var(--hand);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
  color: var(--tomato);
  line-height: 1;
  transform: rotate(-2.5deg);
  display: inline-block;
}
.section-title { font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem); margin-top: 0.3rem; letter-spacing: -0.5px; }
.lede { max-width: 60ch; color: var(--ink-soft); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); }

/* gingham divider */
.gingham-rule {
  height: 14px;
  border: none;
  margin: 0;
  background-image:
    linear-gradient(45deg, rgba(198, 74, 50, 0.35) 25%, transparent 25%, transparent 75%, rgba(198, 74, 50, 0.35) 75%),
    linear-gradient(45deg, rgba(198, 74, 50, 0.35) 25%, transparent 25%, transparent 75%, rgba(198, 74, 50, 0.35) 75%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
  background-color: rgba(198, 74, 50, 0.14);
  opacity: 0.9;
}

/* ============================================================ Buttons ============================================================ */
.btn {
  --btn-bg: var(--terracotta);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  box-shadow: 0 10px 22px -14px rgba(158, 59, 46, 0.8);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--terracotta); border-color: rgba(158, 59, 46, 0.4); box-shadow: none; }
.btn--ghost:hover { background: rgba(158, 59, 46, 0.08); border-color: var(--terracotta); }
.btn--olive { --btn-bg: var(--olive); box-shadow: 0 10px 22px -14px rgba(107, 113, 65, 0.9); }
.btn--wide { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--onwarm { --btn-bg: var(--paper); --btn-fg: var(--terracotta); border-color: var(--paper); }

/* ============================================================ Header ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 236, 221, 0.82);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(158, 59, 46, 0.16);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(44, 33, 28, 0.5); background: rgba(244, 236, 221, 0.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.7rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--terracotta); }
.brand svg { display: block; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.28rem; letter-spacing: 0.01em; }
.brand-tag { font-family: var(--hand); font-size: 1.05rem; color: var(--olive); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.5rem 0.8rem;
  border-radius: 50px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.8rem; right: 0.8rem; bottom: 0.34rem;
  height: 2px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(158, 59, 46, 0.3);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span { height: 2.5px; background: var(--terracotta); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    background: var(--paper);
    padding: 5.2rem 1.4rem 2rem;
    box-shadow: -20px 0 50px -30px rgba(44, 33, 28, 0.7);
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 4px solid var(--tomato);
  }
  .nav.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.1rem; }
  .nav-links a { padding: 0.85rem 0.6rem; font-size: 1.1rem; border-bottom: 1px dashed rgba(158, 59, 46, 0.2); border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 1rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  body.nav-open { overflow: hidden; }
  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(44, 33, 28, 0.45);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ============================================================ Hero ============================================================ */
.hero { position: relative; padding-block: clamp(2.4rem, 5vw, 4rem) clamp(3.2rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-benvenuti {
  font-family: var(--hand);
  color: var(--tomato);
  font-size: clamp(2.6rem, 1.6rem + 5vw, 4.6rem);
  line-height: 0.9;
  transform: rotate(-4deg);
  display: inline-block;
  margin-bottom: 0.3rem;
}
.hero h1 { font-size: clamp(2.6rem, 1.6rem + 5.4vw, 4.6rem); letter-spacing: -1px; margin: 0.2rem 0 1rem; }
.hero h1 em { font-style: italic; color: var(--olive-deep); }
.hero-sub { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.28rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-meta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 0.92rem; color: var(--ink-soft); }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; }
.hero-meta svg { color: var(--olive); flex: none; }

/* Hero photo — taped polaroid feel */
.hero-figure { position: relative; margin: 0; justify-self: center; width: 100%; }
.hero-photo-frame {
  position: relative;
  padding: 12px 12px 60px;
  background: var(--paper);
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
  transform: rotate(1.6deg);
  transition: transform 0.5s ease;
}
.hero-photo-frame:hover { transform: rotate(0deg); }
.hero-photo-frame::before, .hero-photo-frame::after {
  content: "";
  position: absolute;
  top: -14px;
  width: 96px;
  height: 30px;
  background: rgba(198, 74, 50, 0.35);
  border: 1px dashed rgba(158, 59, 46, 0.5);
}
.hero-photo-frame::before { left: 26px; transform: rotate(-6deg); }
.hero-photo-frame::after { right: 26px; transform: rotate(5deg); }
.hero-photo-frame img { width: 100%; height: auto; aspect-ratio: 1200 / 760; object-fit: cover; border-radius: 3px; }
.hero-photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  text-align: center;
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--terracotta);
  transform: rotate(-1.5deg);
}
.hero-stamp {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: clamp(92px, 14vw, 128px);
  height: clamp(92px, 14vw, 128px);
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(-8deg);
  z-index: 3;
}
.hero-stamp b { font-family: var(--serif); font-size: 1.5rem; line-height: 1; display: block; }
.hero-stamp small { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 480px; }
  .hero-stamp { right: 4px; }
}

/* ============================================================ Story ============================================================ */
.story { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: center; }
.story-photos { position: relative; min-height: 360px; }
.story-photos img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.story-photo-1 { width: 74%; aspect-ratio: 4 / 5; object-fit: cover; transform: rotate(-2deg); border: 6px solid var(--paper); }
.story-photo-2 {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: rotate(3deg);
  border: 6px solid var(--paper);
}
.story-note { position: absolute; left: 42%; top: -14px; font-family: var(--hand); font-size: 1.6rem; color: var(--tomato); transform: rotate(-6deg); }
.story-copy p { color: var(--ink-soft); }
.story-copy p + p { margin-top: 1rem; }
.signature { font-family: var(--hand); font-size: 2rem; color: var(--terracotta); margin-top: 1rem; line-height: 1; }
.signature small { display: block; font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.3rem; }
.story-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.story-values li { background: var(--paper); border: 1px solid rgba(158, 59, 46, 0.14); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-soft); }
.story-values b { display: block; font-family: var(--serif); color: var(--terracotta); font-size: 1.05rem; }
.story-values span { font-size: 0.86rem; color: var(--ink-soft); }
@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-photos { min-height: 320px; max-width: 420px; }
  .story-values { grid-template-columns: 1fr; }
}

/* ============================================================ Menu ============================================================ */
.menu { position: relative; }
.menu-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.menu-head .lede { margin-inline: auto; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
.menu-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--terracotta);
  position: relative;
}
.menu-card:nth-child(2) { border-top-color: var(--olive); }
.menu-card:nth-child(3) { border-top-color: var(--tomato); }
.menu-card:nth-child(4) { border-top-color: var(--gold); }
.menu-card h3 { font-size: 1.6rem; display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.menu-card h3 .cat-it { font-family: var(--hand); font-size: 1.4rem; color: var(--olive); font-weight: 400; }
.menu-card > p { margin: 0.2rem 0 1.2rem; font-size: 0.9rem; color: var(--ink-soft); }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; column-gap: 0.6rem; padding: 0.7rem 0; border-bottom: 1px dashed rgba(158, 59, 46, 0.2); }
.menu-item:last-child { border-bottom: none; }
.menu-item .mi-name { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 1.06rem; }
.menu-item .mi-price { font-family: var(--serif); font-weight: 700; color: var(--terracotta); white-space: nowrap; }
.menu-item .mi-desc { grid-column: 1 / -1; font-size: 0.88rem; color: var(--ink-soft); margin-top: 2px; }
.veg { display: inline-block; width: 12px; height: 12px; border: 1.5px solid var(--olive); border-radius: 2px; position: relative; margin-left: 0.35rem; vertical-align: middle; }
.veg::after { content: ""; position: absolute; inset: 2px; background: var(--olive); border-radius: 50%; }
.menu-note { text-align: center; margin-top: 2rem; font-size: 0.86rem; color: var(--ink-soft); }
.menu-note .veg { transform: translateY(2px); }
@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; } }

/* ============================================================ Cellar / Wine ============================================================ */
.cellar {
  background:
    linear-gradient(rgba(44, 33, 28, 0.86), rgba(44, 33, 28, 0.9)),
    radial-gradient(circle at 30% 20%, rgba(158, 59, 46, 0.5), transparent 55%);
  background-color: #2c211c;
  color: var(--cream);
}
.cellar h2, .cellar h3 { color: var(--cream); }
.cellar .eyebrow { color: #e6a760; }
.cellar-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.cellar-figure { position: relative; margin: 0; }
.cellar-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.cellar-figure figcaption {
  position: absolute;
  left: -10px; bottom: 22px;
  background: var(--tomato);
  color: var(--paper);
  font-family: var(--hand);
  font-size: 1.4rem;
  padding: 0.2rem 1rem;
  border-radius: 4px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-soft);
}
.wine-list { margin-top: 1.6rem; }
.wine-group + .wine-group { margin-top: 1.4rem; }
.wine-group h3 { font-size: 1.15rem; letter-spacing: 0.14em; text-transform: uppercase; color: #e6a760; font-family: var(--sans); font-weight: 700; margin-bottom: 0.5rem; }
.wine-row { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem; padding: 0.55rem 0; border-bottom: 1px dashed rgba(244, 236, 221, 0.18); }
.wine-row:last-child { border-bottom: none; }
.wine-row .w-name { font-family: var(--serif); font-size: 1.05rem; }
.wine-row .w-name small { display: block; font-family: var(--sans); font-size: 0.8rem; color: rgba(244, 236, 221, 0.62); }
.wine-row .w-price { font-family: var(--serif); color: #e6a760; white-space: nowrap; }
@media (max-width: 820px) {
  .cellar-grid { grid-template-columns: 1fr; }
  .cellar-figure { max-width: 420px; }
}

/* ============================================================ Gallery ============================================================ */
.gallery-head { text-align: center; margin-bottom: 2.4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.9rem; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(44, 33, 28, 0.28)); opacity: 0; transition: opacity 0.4s ease; }
.gallery-grid figure:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}

/* ============================================================ Chef ============================================================ */
.chef { background: linear-gradient(180deg, var(--cream), var(--paper)); }
.chef-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.chef-figure { position: relative; margin: 0; justify-self: center; max-width: 420px; }
.chef-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); border: 8px solid var(--paper); box-shadow: var(--shadow-lift); transform: rotate(-1.5deg); }
.chef-figure .badge {
  position: absolute;
  right: -12px; top: 18px;
  background: var(--terracotta);
  color: var(--paper);
  font-family: var(--hand);
  font-size: 1.4rem;
  padding: 0.2rem 1rem;
  border-radius: 4px;
  transform: rotate(4deg);
  box-shadow: var(--shadow-soft);
}
.chef-copy blockquote { margin: 0 0 1.2rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem); color: var(--terracotta); line-height: 1.3; }
.chef-name { font-family: var(--serif); font-size: 1.5rem; color: var(--olive-deep); }
.chef-role { font-size: 0.92rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }
.chef-copy p { color: var(--ink-soft); margin-top: 1rem; }
@media (max-width: 760px) { .chef-grid { grid-template-columns: 1fr; } }

/* ============================================================ Testimonials ============================================================ */
.reviews-head { text-align: center; margin-bottom: 2.6rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.review-card { background: var(--paper); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-soft); position: relative; border-bottom: 4px solid var(--tomato); }
.review-card:nth-child(2) { border-bottom-color: var(--olive); }
.review-card:nth-child(3) { border-bottom-color: var(--gold); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.review-card blockquote { margin: 0.6rem 0 1.2rem; font-family: var(--serif); font-size: 1.08rem; color: var(--ink); line-height: 1.5; }
.review-card .who { display: flex; align-items: center; gap: 0.7rem; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-content: center; background: var(--terracotta); color: var(--paper); font-family: var(--serif); font-weight: 700; flex: none; }
.review-card:nth-child(2) .avatar { background: var(--olive); }
.review-card:nth-child(3) .avatar { background: var(--gold); }
.review-card .who b { display: block; font-family: var(--serif); color: var(--terracotta); }
.review-card .who span { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ============================================================ Visit + Contact ============================================================ */
.visit { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.visit-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.info-block { margin-top: 1.6rem; }
.info-block h3 { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive-deep); margin-bottom: 0.4rem; }
.info-block p { margin: 0; color: var(--ink); }
.hours-list { margin-top: 0.3rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; border-bottom: 1px dashed rgba(158, 59, 46, 0.18); font-size: 0.95rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink-soft); }
.hours-list .time { font-weight: 600; color: var(--ink); }
.hours-list li.today .day, .hours-list li.today .time { color: var(--terracotta); font-weight: 700; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* Form */
.reserve-card { background: var(--paper); border-radius: 10px; padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-lift); border-top: 6px solid var(--terracotta); }
.reserve-card h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.reserve-card p.form-intro { color: var(--ink-soft); margin: 0.3rem 0 1.4rem; font-size: 0.96rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--tomato); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(158, 59, 46, 0.25);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(158, 59, 46, 0.16); }
.form-reassure { font-size: 0.82rem; color: var(--ink-soft); margin: 0.9rem 0 0; display: flex; align-items: center; gap: 0.5rem; }
.form-reassure svg { color: var(--olive); flex: none; }
.form-actions { margin-top: 1.2rem; }
.or-row { display: flex; align-items: center; gap: 0.8rem; margin: 1.4rem 0; color: var(--ink-soft); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; }
.or-row::before, .or-row::after { content: ""; height: 1px; flex: 1; background: rgba(158, 59, 46, 0.2); }
.quick-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.btn--whatsapp { --btn-bg: #1f8f4e; box-shadow: 0 10px 22px -14px rgba(31, 143, 78, 0.9); }
@media (max-width: 760px) {
  .visit-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quick-contact { grid-template-columns: 1fr; }
}

/* Contact page hero */
.contact-hero {
  background:
    linear-gradient(rgba(158, 59, 46, 0.9), rgba(125, 44, 34, 0.94)),
    radial-gradient(circle at 80% 10%, rgba(198, 74, 50, 0.6), transparent 55%);
  background-color: var(--terracotta);
  color: var(--cream);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.contact-hero .eyebrow { color: #f4d9a5; }
.contact-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 1.4rem + 3.6vw, 3.6rem); }
.contact-hero p { max-width: 56ch; margin: 1rem auto 0; color: rgba(244, 236, 221, 0.9); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.contact-aside .info-block:first-child { margin-top: 0; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }

/* ============================================================ Footer ============================================================ */
.site-footer { background: #241a15; color: rgba(244, 236, 221, 0.8); padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { max-width: 34ch; font-size: 0.92rem; margin-top: 0.8rem; }
.footer-hand { font-family: var(--hand); color: #e6a760; font-size: 1.6rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: #e6a760; margin-bottom: 0.9rem; }
.footer-col a, .footer-col p { color: rgba(244, 236, 221, 0.8); text-decoration: none; font-size: 0.94rem; display: block; padding: 0.22rem 0; }
.footer-col a:hover { color: var(--cream); }
.socials { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.socials a { width: 42px; height: 42px; display: grid; place-content: center; border: 1px solid rgba(244, 236, 221, 0.25); border-radius: 50%; color: var(--cream); transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.socials a:hover { background: var(--tomato); border-color: var(--tomato); transform: translateY(-2px); }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(244, 236, 221, 0.14); display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a { color: #e6a760; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.studio-credit { color: rgba(244, 236, 221, 0.72); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ============================================================ Thank-you page ============================================================ */
.ty-wrap {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at 50% 0%, rgba(158, 59, 46, 0.08), transparent 60%), var(--cream);
}
.ty-card { max-width: 560px; background: var(--paper); border-radius: 12px; padding: clamp(2rem, 5vw, 3.4rem); box-shadow: var(--shadow-lift); border-top: 6px solid var(--olive); }
.ty-mark { width: 84px; height: 84px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--olive); color: var(--paper); display: grid; place-content: center; }
.ty-card .eyebrow { color: var(--tomato); }
.ty-card h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin: 0.2rem 0 0.8rem; }
.ty-card p { color: var(--ink-soft); }
.ty-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }

/* ============================================================ Reveal animation ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-photo-frame, .gallery-grid img, .btn { transition: none !important; }
}
