:root {
  --navy: #0f2447;
  --navy-deep: #0a1a33;
  --gold: #b8843a;
  --gold-light: #d6a55a;
  --cream: #f4ede0;
  --cream-soft: #faf6ed;
  --cream-warm: #f7efde;
  --ink: #1a1f2e;
  --muted: #5a6478;
  --line: #e6dfcf;
  --line-soft: #efe7d4;
  --danger: #b3261e;
  --success: #2e7d32;
  --shadow-sm: 0 2px 8px rgba(15, 36, 71, 0.06);
  --shadow: 0 14px 40px rgba(15, 36, 71, 0.10);
  --shadow-lift: 0 22px 60px rgba(15, 36, 71, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --display: "Fraunces", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper-grain texture across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0 0.3 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--cream); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ------------------ Header ------------------ */
.site-header {
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(247, 240, 222, 0.78);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { height: 60px; width: auto; }
.brand .wordmark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand .tag {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
}
nav.primary {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.primary > a:not(.btn) {
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
nav.primary > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
nav.primary > a:not(.btn):hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-deep); color: white; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10, 26, 51, 0.28); }
.btn-gold { background: var(--gold); color: white; box-shadow: 0 4px 14px rgba(184, 132, 58, 0.28); }
.btn-gold:hover { background: var(--gold-light); color: white; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(184, 132, 58, 0.34); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.site-header .btn-primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 14px rgba(184, 132, 58, 0.28);
  padding: 12px 22px;
  font-size: 14px;
}
.site-header .btn-primary:hover { background: var(--gold-light); color: white; }

/* ------------------ Hero ------------------ */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(214, 165, 90, 0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(15, 36, 71, 0.06), transparent 50%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream-soft) 100%);
}
.hero::after {
  /* Decorative paw print bottom-right */
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%230f2447'><circle cx='32' cy='42' r='14'/><ellipse cx='14' cy='28' rx='6' ry='9'/><ellipse cx='50' cy='28' rx='6' ry='9'/><ellipse cx='22' cy='14' rx='5' ry='7'/><ellipse cx='42' cy='14' rx='5' ry='7'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--navy);
  font-size: clamp(54px, 7.4vw, 92px);
  margin: 0 0 22px;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero .lead {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 500px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .meta {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}
.hero-actions .meta::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.16);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.16); }
  50% { box-shadow: 0 0 0 8px rgba(46, 125, 50, 0.05); }
}

.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-img {
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .hero-img { transform: rotate(0deg); }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  z-index: -1;
  transform: rotate(1deg);
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.hero-badge .stars {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-badge .stars-row { display: flex; gap: 1px; color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.hero-badge .review-text {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero-badge .review-text strong { color: var(--navy); font-weight: 700; }

/* ------------------ Trust marquee strip ------------------ */
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.trust-strip .marquee {
  display: flex;
  gap: 56px;
  animation: scroll-left 40s linear infinite;
  white-space: nowrap;
  align-items: center;
  width: max-content;
}
.trust-strip .item {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9;
}
.trust-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ------------------ Sections ------------------ */
.section { padding: 110px 0; position: relative; }
.section.alt { background: var(--cream); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.section-head .eyebrow::before { display: inline-block; }
.section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 56px);
  margin: 0 0 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section .lead-c {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}

/* ------------------ Services / Cards ------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.card:hover::before { transform: scaleX(1); }
.card .num {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.card h3 {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.card p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--ink);
}
.card .feature-list li {
  padding: 6px 0 6px 22px;
  position: relative;
}
.card .feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1.5px;
  background: var(--gold);
}

/* ------------------ Pricing — restaurant menu style ------------------ */
.price-table {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-table::before, .price-table::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23b8843a'><circle cx='32' cy='42' r='10'/><ellipse cx='17' cy='30' rx='5' ry='7'/><ellipse cx='47' cy='30' rx='5' ry='7'/><ellipse cx='24' cy='18' rx='4' ry='5'/><ellipse cx='40' cy='18' rx='4' ry='5'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.65;
}
.price-table::before { top: -16px; background-color: var(--cream-soft); }
.price-table::after { display: none; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  font-size: 16.5px;
  border-bottom: 1px solid transparent;
}
.price-row .name { color: var(--ink); font-weight: 500; }
.price-row .name .muted { color: var(--muted); font-weight: 400; font-size: 14px; }
.price-row .leader {
  flex: 1;
  border-bottom: 2px dotted rgba(15, 36, 71, 0.22);
  margin: 0 8px;
  transform: translateY(-3px);
}
.price-row .price {
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-row .price .muted { color: var(--muted); font-weight: 400; font-size: 14px; margin-left: 4px; }
.price-row.price-head {
  border-bottom: 1.5px solid var(--navy);
  margin-bottom: 8px;
  padding-bottom: 12px;
}
.price-row.price-head .name,
.price-row.price-head .price {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.price-row.price-head .leader { display: none; }
.price-row.price-head .price { color: var(--navy); }
.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 28px auto 0;
  max-width: 640px;
  font-style: italic;
}

/* ------------------ About — magazine pull ------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  isolation: isolate;
}
.about-img-wrap img {
  border-radius: 22px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  transition: transform 0.6s var(--ease);
}
.about-img-wrap:hover img { transform: rotate(0deg); }
.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.4;
}
.about-text h2 { text-align: left; }
.about-text .lead-c { font-size: 18px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; text-align: left; max-width: none; }
.pull {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 22px;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  line-height: 1.45;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.badge svg { width: 14px; height: 14px; color: var(--gold); }

/* ------------------ CTA strip ------------------ */
.cta-strip {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184, 132, 58, 0.28), transparent 55%),
    var(--navy);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23f4ede0' opacity='0.08'/></svg>");
  pointer-events: none;
}
.cta-strip > .container { position: relative; z-index: 2; }
.cta-strip h2 {
  color: var(--cream);
  margin: 0 0 16px;
  text-align: center;
  font-style: italic;
}
.cta-strip .eyebrow { color: var(--gold-light); justify-content: center; }
.cta-strip .eyebrow::before { background: var(--gold-light); }
.cta-strip p { color: rgba(244, 237, 224, 0.82); margin: 0 0 30px; font-size: 17px; max-width: 560px; margin-inline: auto; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-strip .btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(244, 237, 224, 0.4);
  color: var(--cream);
}
.cta-strip .btn-ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* ------------------ Footer ------------------ */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 64px 0 0;
  font-size: 14px;
  position: relative;
}
.site-footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.site-footer .brand .wordmark { color: var(--cream); }
.site-footer .brand img { filter: brightness(0) invert(0.95); height: 50px; }
.site-footer h4 { color: var(--gold-light); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 16px; font-weight: 700; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer p { margin: 0 0 8px; line-height: 1.7; }
.site-footer .copyright { border-top: 1px solid rgba(244, 237, 224, 0.10); padding-top: 18px; margin-top: 48px; opacity: 0.6; font-size: 12px; }
.site-footer .tagline-strip {
  background: var(--gold);
  color: white;
  padding: 18px 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 12px;
  margin-top: 48px;
  text-transform: uppercase;
}

/* ------------------ Form ------------------ */
.form-shell {
  max-width: 780px;
  margin: 60px auto 80px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.form-header {
  background:
    radial-gradient(ellipse at 80% 100%, rgba(184, 132, 58, 0.28), transparent 55%),
    var(--navy);
  color: var(--cream);
  padding: 44px 44px 36px;
}
.form-header .eyebrow { color: var(--gold-light); }
.form-header .eyebrow::before { background: var(--gold-light); }
.form-header h1 {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
  margin: 0 0 8px;
  font-size: 44px;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.form-header p { margin: 0; opacity: 0.82; font-size: 16px; }
.form-body { padding: 36px 44px 40px; }

fieldset {
  border: none;
  padding: 0 0 14px;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--line);
}
fieldset:last-of-type { border-bottom: none; }
legend {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 22px;
  padding: 0;
  text-transform: uppercase;
}

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.row.three { grid-template-columns: 1fr 1fr 1fr; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 7px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
label .req { color: var(--danger); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--cream-soft);
  color: var(--ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(184, 132, 58, 0.15);
}
textarea { min-height: 90px; resize: vertical; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  background: var(--cream-soft);
  transition: all 0.16s var(--ease);
}
.radio-group input[type="radio"] { accent-color: var(--gold); margin: 0; }
.radio-group label:has(input:checked) { background: var(--cream); border-color: var(--gold); color: var(--navy); font-weight: 700; }

.check-ack {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream-warm);
  padding: 18px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
}
.check-ack input { margin-top: 4px; accent-color: var(--gold); }

.submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.submit-row .note { font-size: 13px; color: var(--muted); }

.flash {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: 15px;
  display: none;
}
.flash.error { background: #fdecec; color: var(--danger); border: 1px solid #f5c6c6; display: block; }
.flash.success { background: #e8f5e9; color: var(--success); border: 1px solid #c8e6c9; display: block; }

/* ------------------ Reveal animations ------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.46s; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .trust-strip .marquee { animation: none; }
}

/* ------------------ Mobile ------------------ */
@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .hero .grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-badge { left: 0; bottom: -16px; }
  .cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap { max-width: 440px; margin: 0 auto; }
  .row, .row.three { grid-template-columns: 1fr; }
  .price-row { flex-wrap: wrap; gap: 4px; }
  .price-row .leader { display: none; }
  .price-row .price { margin-left: auto; }
  .price-table { padding: 32px 24px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 32px; }
  nav.primary > a:not(.btn) { display: none; }
  .form-header, .form-body { padding: 28px; }
  .section { padding: 70px 0; }
  .container { padding: 0 22px; }
}
