/* ============================================================
   SUNWARD — Bar Gifts & Drinkware
   Design system: "The Pub Backbar"
   Deep oxblood leather · polished brass · cream froth
   Signature: embossed rubber bar-mat texture strips
   ============================================================ */

:root {
  /* Palette */
  --ink: #1F0C0B;          /* near-black oxblood (deepest) */
  --oxblood: #3A0E14;      /* deep burgundy */
  --oxblood-2: #52202A;    /* raised burgundy */
  --wine: #6B2A33;         /* lighter wine for hovers */
  --brass: #C9963F;        /* polished brass */
  --brass-bright: #E8C06A; /* bright brass highlight */
  --brass-dim: #8A6A2E;    /* muted brass for borders */
  --cream: #F3EAD8;        /* beer froth cream */
  --chalk: #FAF5EA;        /* chalk white */
  --chalk-dim: #D8CFBC;    /* dimmed chalk for secondary text */
  --neon: #FF4D6D;         /* neon tube red (used sparingly) */

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --radius: 14px;

  /* Bar-mat texture (embossed rubber diamond pattern) */
  --barmat: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='%23C9963F' stroke-opacity='0.16' stroke-width='1'%3E%3Crect x='4' y='4' width='20' height='20' rx='3'/%3E%3Cpath d='M4 14h20M14 4v20'/%3E%3Crect x='7' y='7' width='14' height='14' rx='2'/%3E%3Cpath d='M7 14h14M14 7v14'/%3E%3C/g%3E%3C/svg%3E");
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Bar-mat divider (signature) ---------- */
.bar-mat {
  height: 42px;
  background: var(--oxblood) var(--barmat);
  border-top: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
  position: relative;
  z-index: 2;
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--oxblood);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dim);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head h2 { margin: 0.6rem 0 1rem; }
.section-head p { color: #6E5548; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-brass {
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(201, 150, 63, 0.35);
}
.btn-brass:hover { box-shadow: 0 8px 26px rgba(201, 150, 63, 0.5); }

.btn-ghost {
  border-color: var(--brass);
  color: var(--brass-bright);
  background: transparent;
}
.btn-ghost:hover { background: rgba(201, 150, 63, 0.12); }

.btn-whatsapp {
  background: #25D366;
  color: #06330F;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5); }

.btn-on-dark.btn-ghost { border-color: var(--brass); color: var(--brass-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 12, 11, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 150, 63, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  color: var(--brass-bright);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  text-decoration: none;
  color: var(--chalk);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover, .nav a.active { color: var(--brass-bright); border-color: var(--brass); }

.header-cta { display: flex; gap: 0.6rem; align-items: center; }
.header-cta .btn { padding: 0.6rem 1.15rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--brass);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--brass-bright); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 150, 63, 0.22), transparent 60%),
    radial-gradient(900px 600px at 0% 110%, rgba(255, 77, 109, 0.10), transparent 55%),
    linear-gradient(180deg, #2A0D11 0%, var(--oxblood) 55%, #4A141D 100%);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.hero-copy .eyebrow { color: var(--brass-bright); }

.hero h1 { color: var(--chalk); margin: 1.2rem 0 1.4rem; }
.hero h1 em {
  font-style: italic;
  color: var(--brass-bright);
}

/* Neon tube word — flickers on once at load */
.neon {
  color: var(--neon);
  text-shadow:
    0 0 6px rgba(255, 77, 109, 0.9),
    0 0 18px rgba(255, 77, 109, 0.65),
    0 0 42px rgba(255, 77, 109, 0.45),
    0 0 90px rgba(255, 77, 109, 0.3);
  animation: neon-on 2.6s steps(1, end) 0.3s both;
}
@keyframes neon-on {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  7%   { opacity: 0.15; }
  11%  { opacity: 1; }
  14%  { opacity: 0.3; }
  16%  { opacity: 1; }
  22%  { opacity: 0.05; }
  25%  { opacity: 1; }
  100% { opacity: 1; }
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--cream);
  opacity: 0.92;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(201, 150, 63, 0.5);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(31, 12, 11, 0.45);
}

/* Hero visual: stacked coasters */
.hero-visual { position: relative; display: flex; justify-content: center; }
.coaster-stack { position: relative; width: min(320px, 78%); aspect-ratio: 1; }
.coaster {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  transition: transform 0.35s ease;
}
.coaster svg { width: 34%; height: auto; }
.coaster-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.coaster-1 {
  background: linear-gradient(160deg, #7A2E3A, var(--oxblood));
  border: 2px solid var(--brass);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 3;
}
.coaster-2 {
  background: linear-gradient(160deg, #2E2A24, #1A1713);
  border: 2px solid var(--brass-dim);
  transform: translate(10%, 7%);
  z-index: 2;
  opacity: 0.9;
}
.coaster-3 {
  background: linear-gradient(160deg, #4E3A22, #332613);
  border: 2px solid rgba(201, 150, 63, 0.5);
  transform: translate(20%, 14%);
  z-index: 1;
  opacity: 0.75;
}
.coaster-stack:hover .coaster-2 { transform: translate(14%, 7%); }
.coaster-stack:hover .coaster-3 { transform: translate(28%, 14%); }

/* ---------- Category tiles ---------- */
.cats { padding-block: var(--section-pad); background: var(--chalk); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.cat-tile {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.cat-tile::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.cat-tile:hover {
  transform: translateY(-5px);
  border-color: var(--brass);
  box-shadow: 0 14px 34px rgba(58, 14, 20, 0.12);
}
.cat-tile:hover::after { transform: scaleX(1); }
.cat-icon {
  width: 52px; height: 52px;
  color: var(--oxblood);
  margin-bottom: 1.1rem;
}
.cat-tile h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.cat-tile p { color: #6E5548; font-size: 0.92rem; line-height: 1.55; }
.cat-tile .mono {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dim);
}

/* ---------- Why us (spec sheet style) ---------- */
.why {
  background: var(--oxblood) var(--barmat);
  color: var(--chalk);
  padding-block: var(--section-pad);
}
.why h2, .why h3 { color: var(--chalk); }
.why .eyebrow { color: var(--brass-bright); }
.why .section-head p { color: var(--chalk-dim); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.spec-card {
  background: rgba(31, 12, 11, 0.55);
  border: 1px solid rgba(201, 150, 63, 0.35);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.spec-card h3 { font-size: 1.15rem; margin-bottom: 0.9rem; color: var(--brass-bright); }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(201, 150, 63, 0.25);
  font-size: 0.93rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt { color: var(--chalk-dim); }
.spec-row dd { font-family: var(--font-mono); font-size: 0.85rem; color: var(--chalk); text-align: right; }

/* ---------- Process ---------- */
.process { padding-block: var(--section-pad); background: var(--chalk); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { color: #6E5548; font-size: 0.92rem; }

/* ---------- Blog teaser ---------- */
.teasers { padding-block: var(--section-pad); background: #EFE7D5; }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(58, 14, 20, 0.12); }
.teaser-cover {
  aspect-ratio: 16/8;
  background: linear-gradient(150deg, var(--oxblood-2), var(--oxblood)) var(--barmat);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-bright);
}
.teaser-cover svg { width: 56px; height: 56px; }
.teaser-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.teaser-body .mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dim);
  margin-bottom: 0.5rem;
}
.teaser-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.teaser-body p { color: #6E5548; font-size: 0.93rem; flex: 1; }
.read-more {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--oxblood-2);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--oxblood) var(--barmat);
  border-top: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
  color: var(--chalk);
}
.cta-band h2 { color: var(--chalk); }
.cta-band p { color: var(--cream); max-width: 40rem; margin: 0.9rem auto 1.8rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--chalk-dim);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.2rem;
  padding-block: 3.5rem 2.5rem;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--brass-bright);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--chalk-dim); text-decoration: none; }
.site-footer a:hover { color: var(--brass-bright); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(201, 150, 63, 0.25);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(201, 150, 63, 0.2), transparent 60%),
    linear-gradient(180deg, #2A0D11, var(--oxblood));
  color: var(--chalk);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero h1 { color: var(--chalk); margin: 0.8rem 0 1rem; }
.page-hero p { color: var(--cream); max-width: 46rem; font-size: 1.08rem; }
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--brass-bright);
}
.crumbs a { color: var(--chalk-dim); text-decoration: none; }
.crumbs a:hover { color: var(--brass-bright); }

/* ---------- Product page ---------- */
.prod-section { padding-block: var(--section-pad); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}
.prod-card {
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(58, 14, 20, 0.12); }
.prod-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--oxblood-2), var(--oxblood)) var(--barmat);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-bright);
}
.prod-visual svg { width: 72px; height: 72px; }
.prod-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.prod-body p { color: #6E5548; font-size: 0.92rem; flex: 1; }
.prod-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}
.prod-meta span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border: 1px solid #E5DCC8;
  border-radius: 999px;
  color: #6E5548;
  background: #FBF7EE;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--oxblood);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform 0.2s;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.4rem 1.3rem; color: #6E5548; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.2rem;
  align-items: start;
}
.contact-ways { display: grid; gap: 1rem; }
.way-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  padding: 1.4rem;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.way-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.way-icon {
  width: 48px; height: 48px; flex: none;
  border-radius: 12px;
  background: var(--oxblood) var(--barmat);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass-bright);
}
.way-icon svg { width: 24px; height: 24px; }
.way-card h3 { font-size: 1.05rem; }
.way-card .mono { font-family: var(--font-mono); font-size: 0.82rem; color: var(--brass-dim); word-break: break-all; }
.way-card p { font-size: 0.88rem; color: #6E5548; }

.inquiry-form {
  background: #fff;
  border: 1px solid #E5DCC8;
  border-radius: var(--radius);
  padding: 1.8rem;
}
.inquiry-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 1rem 0 0.4rem;
  color: var(--oxblood);
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #D8CFBC;
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: #FBF7EE;
  transition: border-color 0.15s;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
}
.inquiry-form .btn { width: 100%; justify-content: center; margin-top: 1.4rem; }
.form-note { font-size: 0.82rem; color: #6E5548; margin-top: 0.8rem; text-align: center; }

/* ---------- Blog article ---------- */
.article { max-width: 760px; margin-inline: auto; padding-block: var(--section-pad); }
.article h2 { margin: 2.2rem 0 0.9rem; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.article h3 { margin: 1.6rem 0 0.6rem; font-size: 1.2rem; }
.article p { margin-bottom: 1.1rem; color: #4A3A34; }
.article ul, .article ol { margin: 0 0 1.1rem 1.4rem; color: #4A3A34; }
.article li { margin-bottom: 0.4rem; }
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.6rem;
  font-size: 0.92rem;
}
.article th, .article td { border: 1px solid #E5DCC8; padding: 0.65rem 0.8rem; text-align: left; }
.article th { background: var(--oxblood); color: var(--chalk); font-weight: 600; }
.article tr:nth-child(even) td { background: #FBF7EE; }
.article-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--brass-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.2rem;
}
.callout {
  background: #FBF7EE;
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin: 1.4rem 0;
  font-size: 0.95rem;
  color: #4A3A34;
}

/* ---------- Floating WhatsApp button ---------- */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }

/* ---------- Utilities ---------- */
.mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: rgba(31, 12, 11, 0.98);
    padding: 1.2rem var(--gutter) 1.6rem;
    gap: 0.2rem;
    border-bottom: 2px solid var(--brass);
  }
  .nav.open a { padding: 0.7rem 0; font-size: 1.05rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .coaster-stack { width: min(240px, 60%); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn { width: auto; }
  .cta-band .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .neon { animation: none; }
}
