/* ===========================================================
   Pizzeria Il Testo — design system (multi-pagina)
   Font: Zilla Slab (display, tratto uniforme) + Karla (testo)
   =========================================================== */

:root {
  --offwhite: #F3EFE7;
  --cotto: #C0532B;
  --cotto-deep: #9c421f;
  --slate: #6E7B83;
  --slate-soft: #8b969c;
  --ink: #201B17;
  --paper: #EAE3D8;
  --cream: #FBF8F2;
  --hair: rgba(32, 27, 23, 0.16);
  --radius: 6px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grana fissa on-brand */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Zilla Slab", Rockwell, "Courier New", serif;
  font-weight: 600;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--cotto); color: var(--offwhite); }
:focus-visible { outline: 2px solid var(--cotto); outline-offset: 3px; border-radius: var(--radius); }

.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.eyebrow {
  font-family: "Karla", sans-serif;
  text-transform: uppercase; letter-spacing: 0.26em;
  font-size: 0.72rem; font-weight: 600; color: var(--cotto);
  margin: 0 0 1.3rem;
}
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--slate); max-width: 56ch; }

/* ===== WORDMARK ===== */
.brand { display: inline-flex; align-items: center; gap: 0.62rem; white-space: nowrap; line-height: 1; }
.brand .mark { flex: none; display: block; }
.brand .lockup { display: flex; flex-direction: column; gap: 0.14rem; }
.brand .word { font-family: "Zilla Slab", serif; font-weight: 700; font-size: 1.4rem; letter-spacing: 0.005em; line-height: 0.9; text-transform: uppercase; }
.brand .word em { font-style: normal; color: var(--cotto); }
.brand .kicker { font-family: "Karla", sans-serif; font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--slate); font-weight: 600; }

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 239, 231, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
header.scrolled { border-bottom-color: var(--hair); background: rgba(243, 239, 231, 0.95); }
.nav { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; transition: height 0.3s var(--ease); }
header.scrolled .nav { height: 66px; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); position: relative; padding: 0.35rem 0; transition: color 0.18s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1.5px; background: var(--cotto); transform: scaleX(0); transform-origin: left; transition: transform 0.24s var(--ease); }
.nav-links a:hover { color: var(--cotto); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--cotto); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; font-family: "Karla", sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.03em; padding: 0.74rem 1.45rem; border-radius: var(--radius); border: 1.5px solid var(--cotto); background: var(--cotto); color: var(--offwhite); cursor: pointer; transition: transform 0.16s ease-out, background 0.2s var(--ease), border-color 0.2s var(--ease); white-space: nowrap; }
.btn:hover { background: var(--cotto-deep); border-color: var(--cotto-deep); }
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn-ghost:hover { background: transparent; border-color: var(--cotto); color: var(--cotto); }
.nav-cta { display: inline-flex; }

.hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--hair); background: transparent; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; transition: transform 0.16s ease-out; }
.hamburger:active { transform: scale(0.95); }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform 0.26s var(--ease), opacity 0.2s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--hair); background: var(--offwhite); }
.mobile-menu ul { list-style: none; margin: 0; padding: 0.5rem 0 1.4rem; }
.mobile-menu li { border-bottom: 1px solid var(--hair); }
.mobile-menu a { display: block; padding: 1rem clamp(1.25rem, 5vw, 4rem); font-size: 1.05rem; font-weight: 500; }
.mobile-menu a[aria-current="page"] { color: var(--cotto); }
.mobile-menu .btn { margin: 1.2rem clamp(1.25rem, 5vw, 4rem) 0; width: calc(100% - 2 * clamp(1.25rem, 5vw, 4rem)); }

/* ===== PHOTO SYSTEM (fallback elegante) ===== */
.ph { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--g, linear-gradient(150deg, #C0532B, #7a3318)); color: var(--offwhite); isolation: isolate; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: opacity 0.6s var(--ease), transform 0.9s var(--ease); }
.ph img.missing { opacity: 0; }
.ph.cap::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0) 55%); pointer-events: none; }
.ph figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.1rem 1.2rem; font-family: "Zilla Slab", serif; font-style: italic; font-size: 1rem; line-height: 1.2; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.ph figcaption small { display: block; font-family: "Karla", sans-serif; font-style: normal; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.4rem; }

/* ===== SECTION SCAFFOLD ===== */
section { position: relative; z-index: 2; }
.pad { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-head { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 64ch; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.section-num { font-family: "Zilla Slab", serif; font-style: italic; font-size: 1rem; color: var(--cotto); }
.center { margin-inline: auto; text-align: center; }

/* ===== HERO (full screen immersiva) ===== */
.hero { position: relative; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; color: var(--offwhite); margin-top: -80px; min-height: 100vh; min-height: 100dvh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(17,12,9,0.88) 0%, rgba(17,12,9,0.5) 32%, rgba(17,12,9,0.12) 58%, rgba(17,12,9,0.34) 100%),
    linear-gradient(90deg, rgba(17,12,9,0.62) 0%, rgba(17,12,9,0.14) 46%, transparent 66%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.6rem, 6vw, 5.2rem); }
.hero-copy { max-width: 42rem; min-width: 0; }
.hero .chip { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(243,239,231,0.14); border: 1px solid rgba(243,239,231,0.34); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; padding: 0.45rem 0.95rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero .chip .stars { color: #ffce9e; letter-spacing: 0.05em; }
.hero .chip .muted { color: rgba(243,239,231,0.8); font-weight: 500; }
.hero .eyebrow { color: #ffcaa6; }
.hero-title { font-size: clamp(2.9rem, 8.4vw, 6.4rem); line-height: 0.98; letter-spacing: -0.02em; color: #fff; text-shadow: 0 2px 34px rgba(0,0,0,0.3); }
.hero-title em { font-style: italic; font-weight: 500; color: #ffd7ba; }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.5vw, 1.26rem); color: rgba(243,239,231,0.93); max-width: 42ch; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.10); }

/* ===== PAGE HEADER (pagine interne) ===== */
.page-hero { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 0.98; letter-spacing: -0.02em; }
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--cotto); }
.page-hero p { margin-top: 1.2rem; max-width: 58ch; color: var(--slate); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }

/* ===== IMPASTO / TESTO A DUE COLONNE ===== */
.tinted { background: var(--paper); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.col-lead { font-family: "Zilla Slab", serif; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.2; font-weight: 500; margin: 0; }
.col-lead::first-letter { float: left; font-family: "Zilla Slab", serif; font-weight: 700; font-size: 5rem; line-height: 0.7; padding: 0.4rem 0.5rem 0 0; color: var(--cotto); }
.col-body p { color: var(--ink); margin-top: 0; }
.col-body p + p { margin-top: 1.15rem; }
.spec-row { margin-top: 2.3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hair); }
.spec-row div { padding: 1.4rem 1.2rem 0 0; }
.spec-row div + div { padding-left: 1.2rem; border-left: 1px solid var(--hair); }
.spec-row dt { font-family: "Zilla Slab", serif; font-size: 1.7rem; color: var(--cotto); line-height: 1; font-weight: 600; }
.spec-row dd { margin: 0.5rem 0 0; font-size: 0.82rem; color: var(--slate); line-height: 1.35; }

/* ===== PIZZA CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.card { display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(32,27,23,0.45); }
.card .ph { height: 220px; border-radius: 0; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; }
.card-body h3 { font-size: 1.5rem; font-style: italic; font-weight: 500; }
.card-body p { margin: 0.6rem 0 0; font-size: 0.92rem; color: var(--slate); }
.card-tag { display: inline-block; margin-top: 0.9rem; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--cotto); border: 1px solid var(--hair); border-radius: 100px; padding: 0.2rem 0.65rem; font-family: "Karla", sans-serif; font-weight: 600; }

/* ===== REVIEWS ===== */
.reviews { background: var(--ink); color: var(--offwhite); }
.reviews .section-head h2 { color: var(--offwhite); }
.reviews .section-num { color: #e3a071; }
.reviews-band { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.4rem clamp(1.5rem, 4vw, 3rem); margin-bottom: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); border-bottom: 1px solid rgba(243,239,231,0.16); }
.reviews-band .score { font-family: "Zilla Slab", serif; font-size: clamp(3rem, 7vw, 4.6rem); line-height: 0.9; color: #e3a071; font-weight: 700; }
.reviews-band .score sup { font-size: 0.42em; vertical-align: super; opacity: 0.7; }
.reviews-band .meta { text-align: left; }
.reviews-band .stars { color: var(--cotto); font-size: 1.2rem; letter-spacing: 0.12em; }
.reviews-band .meta p { margin: 0.3rem 0 0; color: rgba(243,239,231,0.66); font-size: 0.86rem; max-width: 30ch; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2.2rem); }
.quote { border-left: 2px solid var(--cotto); padding-left: 1.4rem; }
.quote p { font-family: "Zilla Slab", serif; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.42; margin: 0 0 1rem; color: var(--offwhite); font-style: italic; }
.quote cite { font-family: "Karla", sans-serif; font-style: normal; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: #e3a071; font-weight: 600; }

/* ===== PHOTO BAND full-bleed ===== */
.band { position: relative; min-height: clamp(320px, 44vw, 520px); display: flex; align-items: flex-end; color: var(--offwhite); overflow: hidden; }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,16,13,0.72), rgba(20,16,13,0.15) 60%); }
.band .band-in { position: relative; z-index: 2; padding-block: clamp(2.5rem, 5vw, 4rem); }
.band h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--offwhite); }
.band h2 em { font-style: italic; color: #ffd9be; font-weight: 500; }
.band p { margin: 0.8rem 0 1.4rem; max-width: 46ch; color: rgba(243,239,231,0.9); }

/* ===== MENU ===== */
.menu-block { margin-top: clamp(1rem, 3vw, 2rem); }
.menu-cat { display: grid; grid-template-columns: 230px 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; padding-block: clamp(2rem, 3.5vw, 3rem); border-top: 1px solid var(--hair); }
.menu-cat:last-child { border-bottom: 1px solid var(--hair); }
.menu-cat-head h3 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-style: italic; font-weight: 500; }
.menu-cat-head p { margin: 0.8rem 0 0; font-size: 0.88rem; color: var(--slate); max-width: 30ch; }
.menu-list { display: grid; gap: 1.4rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1.5rem; align-items: baseline; }
.menu-item h4 { font-family: "Karla", sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em; }
.menu-item .price { font-family: "Zilla Slab", serif; font-size: 1.1rem; color: var(--cotto); white-space: nowrap; font-weight: 600; }
.menu-item .desc { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; color: var(--slate); line-height: 1.45; }
.menu-item .tag { display: inline-block; margin-top: 0.35rem; font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--cotto); border: 1px solid var(--hair); border-radius: 100px; padding: 0.15rem 0.6rem; }
.menu-foot { margin-top: 1.8rem; font-size: 0.82rem; color: var(--slate); font-style: italic; }

/* ===== GALLERIA ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 13.5vw; gap: clamp(0.8rem, 1.5vw, 1.1rem); }
.gallery-grid .ph { min-height: 180px; }
.g-a { grid-column: span 3; grid-row: span 2; }
.g-b { grid-column: span 3; grid-row: span 1; }
.g-c { grid-column: span 3; grid-row: span 1; }
.g-d { grid-column: span 2; }
.g-e { grid-column: span 2; }
.g-f { grid-column: span 2; }
.g-g { grid-column: span 3; }
.g-h { grid-column: span 3; }

/* ===== NAP / CONTATTI ===== */
.nap-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.nap-card { border: 1px solid var(--hair); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); background: var(--cream); }
.nap-card.map { position: relative; overflow: hidden; color: var(--offwhite); display: flex; flex-direction: column; justify-content: space-between; min-height: 340px; border-color: transparent; }
.nap-card.map::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(120% 90% at 80% 12%, rgba(192,83,43,0.55), transparent 60%), linear-gradient(160deg, #2c2620, #201B17 60%); }
.nap-card.map::after { content: ""; position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(243,239,231,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(243,239,231,0.07) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle at 70% 40%, black, transparent 72%); -webkit-mask-image: radial-gradient(circle at 70% 40%, black, transparent 72%); }
.nap-card.map > * { position: relative; z-index: 2; }
.map-pin { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.6rem; font-family: "Zilla Slab", serif; font-style: italic; font-size: 1.2rem; }
.map-pin .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cotto); box-shadow: 0 0 0 6px rgba(192,83,43,0.28); }
.map-addr { font-family: "Zilla Slab", serif; font-style: italic; font-size: 1.3rem; margin: 0; color: var(--offwhite); }
.map-note { margin: 0.4rem 0 0; color: rgba(243,239,231,0.7); font-size: 0.85rem; }
.nap-card h3 { font-size: 1.7rem; font-style: italic; font-weight: 500; margin-bottom: 1.4rem; }
.nap-line { display: grid; grid-template-columns: 96px 1fr; gap: 0.4rem 1rem; padding-block: 0.85rem; border-top: 1px solid var(--hair); align-items: baseline; }
.nap-line:first-of-type { border-top: 0; padding-top: 0; }
.nap-line dt { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--cotto); font-weight: 600; }
.nap-line dd { margin: 0; font-size: 0.98rem; }
.nap-line dd a { border-bottom: 1px solid transparent; transition: border-color 0.18s var(--ease), color 0.18s var(--ease); }
.nap-line dd a:hover { color: var(--cotto); border-bottom-color: var(--cotto); }
.nap-card .btn { margin-top: 1.8rem; }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; border-top: 1px solid var(--hair); font-size: 0.95rem; }
.hours li:first-child { border-top: 0; }
.hours li.today { color: var(--cotto); font-weight: 600; }
.hours .day { color: var(--slate); }
.hours li.today .day { color: var(--cotto); }
.hours-note { margin-top: 1.2rem; font-size: 0.78rem; color: var(--slate); font-style: italic; }
.hours-card h3 { font-size: 1.7rem; font-style: italic; font-weight: 500; margin-bottom: 1.4rem; }

/* ===== STEPS (asporto) ===== */
.steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.3rem; }
.steps li { display: grid; grid-template-columns: 38px 1fr; gap: 1.1rem; align-items: start; padding-bottom: 1.3rem; border-bottom: 1px solid var(--hair); }
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.steps .n { font-family: "Zilla Slab", serif; font-style: italic; font-size: 1.6rem; color: var(--cotto); line-height: 1; font-weight: 600; }
.steps b { font-weight: 600; display: block; margin-bottom: 0.2rem; }
.steps span.t { color: var(--slate); font-size: 0.92rem; display: block; }

/* ===== CTA STRIP ===== */
.cta-strip { text-align: center; }
.cta-strip h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-strip h2 em { font-style: italic; color: var(--cotto); font-weight: 500; }
.cta-strip p { margin: 1rem auto 2rem; max-width: 46ch; color: var(--slate); }
.cta-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--offwhite); position: relative; z-index: 2; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.foot-brand .brand .word { color: var(--offwhite); font-size: 1.6rem; }
.foot-brand .brand .word em { color: #e3a071; }
.foot-brand .brand .kicker { color: rgba(243,239,231,0.6); }
.foot-brand p { margin-top: 1.4rem; color: rgba(243,239,231,0.62); max-width: 36ch; font-size: 0.92rem; }
.foot-col h4 { font-family: "Karla", sans-serif; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.22em; color: #e3a071; margin-bottom: 1.2rem; font-weight: 600; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.foot-col a, .foot-col address { color: rgba(243,239,231,0.78); font-style: normal; font-size: 0.95rem; line-height: 1.55; }
.foot-col a { border-bottom: 1px solid transparent; transition: color 0.18s var(--ease), border-color 0.18s var(--ease); }
.foot-col a:hover { color: var(--offwhite); border-bottom-color: rgba(243,239,231,0.5); }
.foot-muted { color: rgba(243,239,231,0.5); }
.foot-bottom { border-top: 1px solid rgba(243,239,231,0.14); padding-block: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.76rem; color: rgba(243,239,231,0.5); }
.foot-bottom .atto b { color: rgba(243,239,231,0.78); font-weight: 600; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.hero [data-load] { opacity: 0; transform: translateY(16px) scale(0.985); }
body.loaded .hero [data-load] { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
body.loaded .hero [data-load="1"] { transition-delay: 0.04s; }
body.loaded .hero [data-load="2"] { transition-delay: 0.10s; }
body.loaded .hero [data-load="3"] { transition-delay: 0.16s; }
body.loaded .hero [data-load="4"] { transition-delay: 0.22s; }
body.loaded .hero [data-load="5"] { transition-delay: 0.30s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .gallery-grid { grid-auto-rows: 21vw; }
  .menu-cat { grid-template-columns: 180px 1fr; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .quotes .quote:last-child { grid-column: 1 / -1; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards .card:last-child { grid-column: 1 / -1; }
  .cards .card:last-child .ph { height: 260px; }
}
@media (max-width: 860px) {
  .two-col, .nap-grid { grid-template-columns: 1fr; }
  .two-col > * { min-width: 0; }
  .menu-cat { grid-template-columns: 1fr; gap: 1.1rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
  .quotes, .cards { grid-template-columns: 1fr; }
  .quotes .quote:last-child, .cards .card:last-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 40vw; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h { grid-column: span 1; grid-row: span 1; }
  .g-a { grid-column: span 2; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-row div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--hair); }
  .spec-row div { padding-right: 0; }
  body { font-size: 16px; }
  .eyebrow { font-size: 12.5px; letter-spacing: 0.2em; }
  .brand .kicker { font-size: 11.5px; letter-spacing: 0.16em; }
  .ph figcaption { font-size: 1rem; }
  .ph figcaption small { font-size: 11.5px; }
  .menu-item .desc, .card-body p, .steps span.t { font-size: 14.5px; }
  .hero-title { font-size: clamp(2.7rem, 11vw, 4.2rem); word-break: break-word; hyphens: auto; }
  .hero-actions .btn { flex: 1 1 100%; }
  .btn { min-height: 46px; }
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
  .foot-col li a { display: inline-flex; align-items: center; min-height: 40px; padding-block: 0.25rem; }
  .pad { padding-block: clamp(2.8rem, 9vw, 4rem); }
  .section-head { margin-bottom: 2rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 62vw; }
  .g-a { grid-column: span 1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .reviews-band { flex-direction: column; text-align: center; }
  .reviews-band .meta { text-align: center; }
  .reviews-band .meta p { margin-inline: auto; }
  .nap-line { grid-template-columns: 1fr; gap: 0.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .hero [data-load] { opacity: 1 !important; transform: none !important; }
}
