/* ============================================================
   The Pasta Factory — Avondale, AZ
   Italian red + cream + olive · serif display · 2026 mobile-first
   ============================================================ */

:root {
  --red-900: #4d0c0f;
  --red-800: #7e1418;
  --red-700: #a31f24;
  --red-600: #c0282d;
  --olive:   #5d6b3a;
  --olive-dk:#454f2a;
  --gold:    #c79a4f;
  --gold-lt: #f0d9a8;
  --cream:   #fbf3e4;
  --cream-2: #f4e8d2;
  --ink:     #2b1a14;
  --white:   #ffffff;
  --muted:   #7a6256;
  --line:    rgba(43,26,20,.12);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --shadow: 0 18px 50px -22px rgba(77,12,15,.40);
  --shadow-lg: 0 30px 80px -28px rgba(77,12,15,.50);

  --ease: cubic-bezier(.22,1,.36,1);
  --max: 1180px;
  --header-h: 78px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 11vw, 132px); }

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1200;
  background: var(--gold); color: var(--red-900); font-weight: 700;
  padding: 10px 16px; border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ============ OPENING ANIMATION ============ */
.intro {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--red-700) 0%, var(--red-800) 45%, var(--red-900) 100%);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.intro.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-skip {
  position: absolute; top: 18px; right: 18px;
  background: rgba(251,243,228,.12); color: var(--cream);
  border: 1px solid rgba(251,243,228,.3); border-radius: 999px;
  font: 600 .85rem/1 var(--sans); padding: 9px 18px; cursor: pointer;
  transition: background .2s var(--ease);
}
.intro-skip:hover { background: rgba(251,243,228,.22); }
.intro-stage { text-align: center; padding: 24px; }
.intro-svg { margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,.4)); }

.plate-shadow { fill: rgba(0,0,0,.28); }
.plate-base { fill: #e9d3a4; }
.plate-rim { fill: var(--cream); }
.plate-well { fill: #efddb6; }
.pasta-nest path { fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 240; stroke-dashoffset: 240; animation: pastaDraw .9s var(--ease) .35s forwards; }
.pasta-nest path:nth-child(2) { animation-delay: .5s; }
.pasta-nest path:nth-child(3) { animation-delay: .65s; }
.meatball { fill: var(--red-600); opacity: 0; animation: pop .4s var(--ease) 1s forwards; }
.meatball:nth-of-type(2) { animation-delay: 1.12s; }
@keyframes pastaDraw { to { stroke-dashoffset: 0; } }
@keyframes pop { 0%{opacity:0;transform:scale(.2)} 100%{opacity:1;transform:scale(1)} }

.fork { transform-origin: 200px 70px; animation: forkTwirl 2s var(--ease) forwards; }
.fork rect { fill: var(--gold-lt); }
@keyframes forkTwirl {
  0% { transform: translate(196px,70px) rotate(28deg); opacity: 0; }
  25% { opacity: 1; }
  60% { transform: translate(150px,72px) rotate(-340deg); }
  100% { transform: translate(150px,72px) rotate(-360deg); opacity: 0; }
}
.intro-steam .steam { fill: none; stroke: rgba(251,243,228,.6); stroke-width: 3; stroke-linecap: round;
  opacity: 0; animation: steamRise 2.2s ease-in-out 1.1s infinite; }
.intro-steam .s2 { animation-delay: 1.35s; }
.intro-steam .s3 { animation-delay: 1.55s; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(8px); }
  40% { opacity: .8; }
  100% { opacity: 0; transform: translateY(-14px); }
}
.intro-word {
  font-family: var(--serif); font-weight: 800; color: var(--cream);
  font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing: -.01em; margin-top: 14px;
  opacity: 0; animation: introIn .6s var(--ease) 1.1s forwards;
}
.intro-tag {
  color: var(--gold-lt); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  font-size: .8rem; margin-top: 6px; opacity: 0; animation: introIn .6s var(--ease) 1.35s forwards;
}
@keyframes introIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

/* ============ BUTTONS ============ */
.btn {
  --shine: -150%;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; padding: 0 24px; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: .1px;
  border-radius: 999px; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn-lg { min-height: 54px; padding: 0 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: linear-gradient(135deg, var(--red-600), var(--red-800)); color: var(--cream); box-shadow: 0 14px 34px -14px rgba(163,31,36,.85); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(163,31,36,.95); }

.btn-ghost { background: rgba(251,243,228,.1); color: var(--cream); border: 1.5px solid rgba(251,243,228,.4); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(251,243,228,.2); transform: translateY(-3px); }

.btn-ghost-dark { background: transparent; color: var(--cream); border: 1.5px solid rgba(251,243,228,.5); }
.btn-ghost-dark:hover { background: rgba(251,243,228,.12); transform: translateY(-3px); }

.btn-call { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--red-900); }
.btn-call:hover { transform: translateY(-2px); }

.btn-shine {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(var(--shine)); transition: transform .7s var(--ease);
}
.btn:hover .btn-shine { --shine: 150%; }

.btn-ping {
  width: 9px; height: 9px; border-radius: 50%; background: #2a8f4e; position: relative;
  box-shadow: 0 0 0 0 rgba(42,143,78,.7); animation: ping 2.2s infinite var(--ease);
}
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(42,143,78,.7)} 70%{box-shadow:0 0 0 9px rgba(42,143,78,0)} 100%{box-shadow:0 0 0 0 rgba(42,143,78,0)} }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  height: 64px; background: rgba(77,12,15,.9);
  backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 8px 30px -16px rgba(0,0,0,.6); border-bottom: 1px solid rgba(251,243,228,.1);
}
.header-inner { display: flex; align-items: center; gap: 18px; width: 100%; }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--cream); }
.logo-mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); transition: transform .4s var(--ease); }
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.08); }
.logo-text { font-family: var(--serif); font-weight: 800; font-size: 1.24rem; letter-spacing: -.01em; line-height: 1; }
.logo-text-sub { color: var(--gold-lt); }

.main-nav { display: none; margin-left: auto; gap: 26px; }
.main-nav a { position: relative; color: rgba(251,243,228,.86); font-weight: 600; font-size: .96rem; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold-lt); transition: width .3s var(--ease); }
.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { width: 100%; }

.header-call { margin-left: auto; font-size: .85rem; padding: 0 16px; min-height: 42px; }

@media (min-width: 920px) {
  .main-nav { display: flex; }
  .header-call { margin-left: 0; font-size: .92rem; padding: 0 20px; min-height: 46px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 24px); padding-bottom: 64px;
  background: radial-gradient(120% 90% at 80% -10%, var(--red-600) 0%, var(--red-700) 45%, var(--red-900) 100%);
  color: var(--cream); overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 18% 22%, rgba(199,154,79,.35), transparent 70%),
    radial-gradient(45% 45% at 82% 72%, rgba(93,107,58,.5), transparent 70%);
  filter: blur(12px); animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift { 0%{transform:translate3d(0,0,0) scale(1)} 100%{transform:translate3d(2%,-2%,0) scale(1.08)} }
.hero-checks {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .06;
  background-image: linear-gradient(45deg, var(--cream) 25%, transparent 25%, transparent 75%, var(--cream) 75%),
    linear-gradient(45deg, var(--cream) 25%, transparent 25%, transparent 75%, var(--cream) 75%);
  background-size: 40px 40px; background-position: 0 0, 20px 20px;
}

.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem;
  color: rgba(251,243,228,.9); background: rgba(251,243,228,.08); border: 1px solid rgba(251,243,228,.18);
  padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(6px); margin-bottom: 22px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #54c97e; box-shadow: 0 0 0 0 rgba(84,201,126,.7); animation: ping 2.2s infinite var(--ease); flex: none; }

.hero-title {
  font-family: var(--serif); font-size: clamp(2.7rem, 9vw, 5.6rem); line-height: 1.02; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 22px;
}
.grad-word {
  background: linear-gradient(120deg, var(--gold-lt), var(--gold) 55%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 700;
}
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.32rem); color: rgba(251,243,228,.86); max-width: 56ch; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-cta .btn { flex: 1 1 auto; min-width: 210px; }
@media (max-width:480px){ .hero-cta .btn{ flex:1 1 100%; } }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; }
.hero-trust li { font-size: .98rem; color: rgba(251,243,228,.72); }
.hero-trust strong { display: block; font-size: 1.4rem; color: var(--gold-lt); font-weight: 800; font-family: var(--serif); }

.hero-steam { position: absolute; bottom: 60px; right: clamp(20px, 8vw, 120px); width: 60px; height: 120px; z-index: 1; display: none; }
@media (min-width: 760px){ .hero-steam { display: block; } }
.hero-steam span { position: absolute; bottom: 0; width: 8px; height: 70px; border-radius: 8px; background: linear-gradient(0deg, rgba(251,243,228,.5), transparent); filter: blur(3px); animation: heroSteam 3.4s ease-in-out infinite; }
.hero-steam span:nth-child(1){ left: 6px; animation-delay: 0s; }
.hero-steam span:nth-child(2){ left: 26px; animation-delay: .7s; height: 90px; }
.hero-steam span:nth-child(3){ left: 46px; animation-delay: 1.3s; }
@keyframes heroSteam { 0%{opacity:0;transform:translateY(10px) scaleY(.8)} 40%{opacity:.7} 100%{opacity:0;transform:translateY(-26px) scaleY(1.2)} }

/* ============ MARQUEE ============ */
.marquee { background: var(--olive); color: var(--cream); overflow: hidden; border-block: 3px solid var(--olive-dk); }
.marquee-track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; padding: 14px 0; font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-track .dot { color: var(--gold-lt); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ STATS ============ */
.stats { background: var(--red-900); color: var(--cream); padding-block: clamp(48px, 8vw, 84px); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 5vw, 48px); }
@media (min-width: 760px){ .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 6.5vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; background: linear-gradient(120deg, #fff, var(--gold-lt)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.05; }
.stat-label { display: block; margin-top: 10px; color: rgba(251,243,228,.7); font-size: .95rem; font-weight: 500; }

/* ============ SECTION HEADS ============ */
.section-head { max-width: 720px; margin-bottom: clamp(34px, 6vw, 60px); }
.kicker { display: inline-block; font-weight: 800; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red-700); margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 5.5vw, 3.4rem); line-height: 1.07; font-weight: 800; letter-spacing: -.015em; color: var(--ink); }
.section-lede { margin-top: 16px; font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--muted); max-width: 60ch; }

/* ============ MENU ============ */
.menu { background: var(--cream); }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px){ .card-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .card-grid { grid-template-columns: repeat(3,1fr); } }

.dish-card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(199,154,79,.5); }
.dish-icon { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; color: var(--red-700); background: linear-gradient(160deg, #fbeede, #f3dcc0); margin-bottom: 16px; box-shadow: inset 0 0 0 1px rgba(199,154,79,.3); }
.dish-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.dish-card h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; letter-spacing: -.01em; }
.dish-price { font-family: var(--serif); font-weight: 800; font-size: 1.3rem; color: var(--olive); flex: none; }
.dish-card p { color: var(--muted); font-size: 1rem; }
.dish-card-feature { background: linear-gradient(160deg, var(--red-700), var(--red-900)); color: var(--cream); border-color: rgba(251,243,228,.12); }
.dish-card-feature .dish-icon { background: rgba(199,154,79,.22); color: var(--gold-lt); }
.dish-card-feature p { color: rgba(251,243,228,.82); }
.dish-card-feature .dish-price { color: var(--gold-lt); }
.dish-call { display: inline-block; margin-top: 14px; font-weight: 800; color: var(--gold-lt); }
.dish-call:hover { color: #fff; }
.menu-foot { margin-top: 28px; font-size: 1rem; color: var(--muted); }
.menu-foot a { color: var(--red-700); font-weight: 700; }

/* ============ WHY ============ */
.why { background: var(--cream-2); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card { position: relative; padding: 36px 30px 30px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); box-shadow: var(--shadow); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-num { font-family: var(--serif); font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--gold); margin-bottom: 14px; opacity: .9; }
.why-card h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--muted); }

/* ============ SHOWCASE ============ */
.showcase { background: var(--cream); }
.showcase-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 6vw, 64px); align-items: center; }
@media (min-width: 880px){ .showcase-inner { grid-template-columns: .9fr 1.1fr; } }
.showcase-art { position: relative; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.showcase-badge { position: absolute; left: 18px; bottom: 18px; background: var(--gold-lt); color: var(--red-900); font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow); }
.showcase-copy p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.showcase-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.showcase-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.showcase-list li span { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--olive); color: var(--cream); font-size: .85rem; }
.showcase-copy .btn { margin-top: 26px; }

.flame { transform-origin: center bottom; animation: flicker 1.4s ease-in-out infinite alternate; }
.flame.f2 { animation-delay: .4s; }
@keyframes flicker { 0%{transform:scaleY(.92) translateY(2px); opacity:.85} 100%{transform:scaleY(1.06) translateY(-2px); opacity:1} }
.ksteam { stroke-dasharray: 60; animation: kSteam 3s ease-in-out infinite; opacity: .6; }
.ksteam.ks2 { animation-delay: .6s; }
.ksteam.ks3 { animation-delay: 1.1s; }
@keyframes kSteam { 0%{opacity:0;transform:translateY(6px)} 50%{opacity:.7} 100%{opacity:0;transform:translateY(-10px)} }

/* ============ REVIEWS ============ */
.reviews { background: var(--red-800); color: var(--cream); }
.reviews .section-title { color: var(--cream); }
.reviews .section-lede { color: rgba(251,243,228,.78); }
.reviews .kicker { color: var(--gold-lt); }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px){ .review-grid { grid-template-columns: repeat(3,1fr); } }
.review-card { background: rgba(251,243,228,.06); border: 1px solid rgba(251,243,228,.12); border-radius: var(--r-lg); padding: 28px 26px; transition: transform .35s var(--ease), background .35s var(--ease); }
.review-card:hover { transform: translateY(-6px); background: rgba(251,243,228,.1); }
.stars { color: var(--gold-lt); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 12px; }
.review-card p { color: rgba(251,243,228,.9); font-size: 1.04rem; font-style: italic; }
.review-tag { display: inline-block; margin-top: 16px; font-size: .85rem; font-weight: 700; color: var(--gold-lt); }
.review-note { margin-top: 24px; font-size: .9rem; color: rgba(251,243,228,.55); }

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); margin-bottom: 12px; overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item[open] { border-color: rgba(199,154,79,.5); box-shadow: var(--shadow); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 700; font-size: 1.08rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--red-700); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-plus::before { width: 20px; height: 2.5px; }
.faq-plus::after { width: 2.5px; height: 20px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 22px 22px; color: var(--muted); }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(135deg, var(--olive), var(--olive-dk)); color: var(--cream); padding-block: clamp(56px, 9vw, 96px); }
.cta-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-title { font-family: var(--serif); font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 800; letter-spacing: -.01em; }
.cta-sub { margin-top: 14px; font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: rgba(251,243,228,.86); }
.cta-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-actions .btn { min-width: 220px; }
@media (max-width:480px){ .cta-actions .btn{ flex:1 1 100%; } }

/* ============ CONTACT ============ */
.contact { background: linear-gradient(160deg, var(--red-800), var(--red-900)); color: var(--cream); }
.contact .section-title { color: var(--cream); }
.contact .kicker { color: var(--gold-lt); }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 6vw, 56px); align-items: start; }
@media (min-width: 880px){ .contact-inner { grid-template-columns: 1fr 1fr; } }
.contact-copy p { color: rgba(251,243,228,.82); font-size: 1.08rem; margin-top: 16px; }
.contact-phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 800; color: var(--gold-lt); letter-spacing: -.01em; }
.contact-phone:hover { color: #fff; }
.contact-meta { list-style: none; margin-top: 26px; display: grid; gap: 8px; color: rgba(251,243,228,.78); }
.contact-meta strong { color: var(--cream); }

.contact-form { background: rgba(251,243,228,.06); border: 1px solid rgba(251,243,228,.14); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); backdrop-filter: blur(8px); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; color: rgba(251,243,228,.9); }
.field input, .field textarea { width: 100%; font: inherit; color: var(--cream); background: rgba(251,243,228,.06); border: 1.5px solid rgba(251,243,228,.2); border-radius: var(--r-sm); padding: 13px 15px; min-height: 48px; transition: border-color .25s var(--ease), background .25s var(--ease); }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(251,243,228,.45); }
.field input:focus, .field textarea:focus { border-color: var(--gold-lt); background: rgba(251,243,228,.1); outline: none; }
.form-status { margin-top: 14px; font-weight: 700; min-height: 1.2em; }
.form-status.ok { color: #8fe0a8; }
.form-status.err { color: #ffb0b0; }
.form-fineprint { margin-top: 14px; font-size: .92rem; color: rgba(251,243,228,.65); }
.form-fineprint a { color: var(--gold-lt); font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer { background: var(--red-900); color: rgba(251,243,228,.72); padding-top: clamp(50px, 8vw, 80px); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 40px; }
@media (min-width: 820px){ .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo-text { color: var(--cream); font-size: 1.34rem; }
.footer-brand p { margin-top: 12px; max-width: 34ch; font-size: .96rem; }
.footer-col h4 { color: var(--cream); font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; font-size: .96rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-call { font-size: 1.2rem !important; font-weight: 800; color: var(--gold-lt) !important; font-family: var(--serif); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid rgba(251,243,228,.1); padding-block: 22px; font-size: .88rem; }
.footer-credit a { color: var(--gold-lt); font-weight: 700; }
.footer-credit a:hover { text-decoration: underline; }

/* ============ STICKY MOBILE ACTION BAR ============ */
.action-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: flex; gap: 10px; padding: 8px; border-radius: 999px;
  background: rgba(77,12,15,.96); backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.6); border: 1px solid rgba(251,243,228,.12);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.action-bar.show { transform: translateY(0); }
.action-call, .action-quote { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; border-radius: 999px; font-weight: 800; font-size: 1rem; }
.action-call { flex: 0 0 auto; padding: 0 22px; background: rgba(251,243,228,.12); color: var(--cream); }
.action-icon { display: grid; place-items: center; }
.action-quote { flex: 1; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--red-900); }
@media (min-width: 920px){ .action-bar { display: none; } }
@media (max-width: 919px){ .site-footer { padding-bottom: 90px; } }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-mesh, .marquee-track, .pulse-dot, .btn-ping, .hero-steam span, .flame, .ksteam { animation: none !important; }
  .action-bar { transform: translateY(0); }
  .intro { display: none !important; }
}
