/* ============================================================
   Granite Nation Countertops: marketing site
   UX: full-screen "pages" that snap into view while scrolling.
   ============================================================ */

:root {
  --ink: #1b1814;
  --ink-2: #241f19;
  --ink-3: #332c24;
  --paper: #f7f3ec;
  --paper-2: #efe9dd;
  --accent: #b4834e;
  --accent-2: #c99a63;
  --accent-dark: #96693a;
  --text: #4a443b;
  --text-soft: #6b6357;
  --white: #fff;
  --line: rgba(27, 24, 20, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px -18px rgba(27, 24, 20, 0.35);
  --container: 1180px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

/* Full-screen page snapping.
   Proximity snap everywhere: pages still align as you stop, but you can
   scroll freely, which lets the hero's seam-cut effect play out
   instead of being skipped by a fast mandatory snap. */
html {
  scroll-snap-type: y proximity;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Subtle stone-grain texture over every page */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 30; pointer-events: none;
  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.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  opacity: 0.14;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.4em;
  font-weight: 600;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 10px 24px -10px rgba(180, 131, 78, 0.7); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(27, 24, 20, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: 11px; color: var(--white); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 38px; height: 38px; color: var(--accent-2); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.brand-text small { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }

.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  color: var(--white); font-size: 15px; font-weight: 500; opacity: 0.9;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent-2); transition: width 0.25s ease;
}
.nav-links a:hover { text-decoration: none; opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 12px; margin-left: auto; flex: none;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); margin: 5px 0; border-radius: 2px; transition: 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 49;
  background: var(--ink); padding: 12px 24px 28px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.6);
}
.mobile-menu a { color: var(--white); padding: 13px 6px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line-light); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Pages ---------- */
.page {
  min-height: 100vh; min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 14px) 0 28px;
  overflow: hidden;
}
.page-alt { background: var(--paper-2); }
.page-dark { background: var(--ink); color: #d8d2c8; }
.page-dark .page-title { color: var(--white); }
.page-dark .page-sub { color: rgba(255, 255, 255, 0.72); }
.page-dark .kicker { color: var(--accent-2); }

.page-inner { width: 100%; }

.page-head { max-width: 640px; margin: 0 auto 20px; text-align: center; }
.page-head.left { text-align: left; margin-left: 0; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-dark); margin: 0 0 10px;
}
.page-title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.page-sub { font-size: 17px; margin: 0; color: var(--text-soft); }
.page-dark .page-sub { color: rgba(255, 255, 255, 0.7); }

/* ---------- Page entrance animation ---------- */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.page .page-inner > * { opacity: 0; }
.page.is-active .page-inner > * { animation: pageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.page.is-active .page-inner > *:nth-child(2) { animation-delay: 0.08s; }
.page.is-active .page-inner > *:nth-child(3) { animation-delay: 0.16s; }

/* staggered children inside grids */
.page .cards-grid > *, .page .steps > *,
.page .review-cards > *, .page .review-platforms > * { opacity: 0; }
.page.is-active .cards-grid > *, .page.is-active .steps > *,
.page.is-active .review-cards > *, .page.is-active .review-platforms > * { animation: pageIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.page.is-active .cards-grid > *:nth-child(1) { animation-delay: 0.10s; }
.page.is-active .cards-grid > *:nth-child(2) { animation-delay: 0.16s; }
.page.is-active .cards-grid > *:nth-child(3) { animation-delay: 0.22s; }
.page.is-active .cards-grid > *:nth-child(4) { animation-delay: 0.28s; }
.page.is-active .steps > *:nth-child(1) { animation-delay: 0.12s; }
.page.is-active .steps > *:nth-child(2) { animation-delay: 0.20s; }
.page.is-active .steps > *:nth-child(3) { animation-delay: 0.28s; }
.page.is-active .review-platforms > *:nth-child(1) { animation-delay: 0.10s; }
.page.is-active .review-platforms > *:nth-child(2) { animation-delay: 0.16s; }
.page.is-active .review-platforms > *:nth-child(3) { animation-delay: 0.22s; }
.page.is-active .review-platforms > *:nth-child(4) { animation-delay: 0.28s; }
.page.is-active .review-cards > *:nth-child(1) { animation-delay: 0.18s; }
.page.is-active .review-cards > *:nth-child(2) { animation-delay: 0.26s; }
.page.is-active .review-cards > *:nth-child(3) { animation-delay: 0.34s; }
.page.is-active .extras > * { animation: pageIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.page.is-active .extras > *:nth-child(1) { animation-delay: 0.20s; }
.page.is-active .extras > *:nth-child(2) { animation-delay: 0.26s; }
.page.is-active .extras > *:nth-child(3) { animation-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .page .page-inner > *, .page .cards-grid > *, .page .steps > *,
  .page .review-cards > *, .page .review-platforms > *, .page .extras > * { opacity: 1; }
  .page.is-active .page-inner > *, .page.is-active .cards-grid > *,
  .page.is-active .steps > *, .page.is-active .review-cards > *,
  .page.is-active .review-platforms > *, .page.is-active .extras > * { animation: none; }
  .card, .review-card, .review-platforms a { transition: none; }
}

/* ---------- Dot navigation (removed) ---------- */

/* ---------- Hero ---------- */
.page-hero { padding: 0; align-items: stretch; color: var(--white); }
/* The granite slab */
.hero-media {
  position: absolute; inset: 0;
  background-image: url("../images/hero.jpg");
  background-size: cover; background-position: center;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27, 24, 20, 0.72) 0%, rgba(27, 24, 20, 0.5) 45%, rgba(27, 24, 20, 0.85) 100%);
}

.hero-inner {
  position: relative; z-index: 2; max-width: 800px;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100vh; min-height: 100svh;
  padding-bottom: 64px;
}
.hero-eyebrow {
  display: inline-block; margin: 0 0 18px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2);
}
.hero-title {
  color: var(--white); font-size: clamp(42px, 6.5vw, 78px); line-height: 1.02;
  margin-bottom: 20px; font-weight: 500;
}
.hero-title em { font-style: italic; color: var(--accent-2); }
.hero-sub {
  font-size: clamp(17px, 2vw, 21px); max-width: 540px;
  color: rgba(255, 255, 255, 0.88); margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0; padding: 0; list-style: none; }
.hero-badges li { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.85); position: relative; padding-left: 24px; }
.hero-badges li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-2); font-weight: 700;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 2; display: block; padding: 6px; opacity: 0.85; transition: opacity 0.25s ease;
}
.scroll-hint:hover { opacity: 1; }
.scroll-mouse {
  display: block; width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.8); border-radius: 14px;
  position: relative; transition: border-color 0.25s ease;
}
.scroll-hint:hover .scroll-mouse { border-color: var(--white); }
.scroll-wheel {
  position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: var(--accent-2);
  animation: wheelDrop 1.6s ease-in-out infinite;
}
@keyframes wheelDrop {
  0%   { opacity: 0; transform: translateY(0); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

/* ---------- Material cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 16px 20px 20px; }
.card-body h3 { font-size: 20px; margin-bottom: 6px; }
.card-body p { margin: 0 0 12px; font-size: 14px; }
.card-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent-dark); background: rgba(180, 131, 78, 0.14);
  padding: 4px 11px; border-radius: 999px;
}

/* ---------- Steps (How It Works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--accent);
  display: block; line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 14px; }

.extras { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.extras-label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-right: 6px; }
.extra-chip {
  font-size: 14px; font-weight: 600; color: var(--accent-dark);
  background: rgba(180, 131, 78, 0.14); border: 1px solid rgba(180, 131, 78, 0.25);
  padding: 8px 16px; border-radius: 999px; transition: background 0.2s ease, transform 0.2s ease;
}
.extra-chip:hover { background: var(--accent); color: var(--white); text-decoration: none; transform: translateY(-2px); }

/* ---------- Gallery (live Instagram embeds) ---------- */
.gallery-strip {
  display: flex; align-items: flex-start; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 4px 4px 8px; scrollbar-width: thin;
}
.gallery-strip::-webkit-scrollbar { height: 8px; }
.gallery-strip::-webkit-scrollbar-thumb { background: rgba(180, 131, 78, 0.4); border-radius: 99px; }
.insta-embed {
  flex: none; scroll-snap-align: center;
  width: 340px; height: 440px; overflow: hidden; border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.insta-embed iframe {
  width: 340px; height: 480px; border: 0; display: block;
  pointer-events: none;
}
.page-dark .page-sub a { color: var(--accent-2); font-weight: 600; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; }
.about-media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: min(58vh, 480px); object-fit: cover; }
.about-content p { font-size: 15.5px; margin-bottom: 12px; }
.about-content .page-head { margin-bottom: 10px; }
.about-sign { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.sign-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--ink), var(--ink-3)); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
}
.about-sign strong { display: block; color: var(--ink); font-size: 15px; }
.about-sign span { font-size: 13px; color: var(--text-soft); }

/* ---------- Reviews ---------- */
.review-platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.review-platforms a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 12px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-platforms a:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); }
.platform-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); }
.platform-stars { color: var(--accent); font-weight: 700; letter-spacing: 0.05em; font-size: 16px; }
.platform-note { font-size: 12px; color: var(--text-soft); }

.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 24px 20px; display: flex; flex-direction: column;
}
.review-stars { color: var(--accent); letter-spacing: 0.08em; margin-bottom: 10px; }
.review-card p {
  margin: 0 0 16px; font-size: 15px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card footer strong { display: block; color: var(--ink); font-size: 14px; }
.review-card footer span { font-size: 12px; color: var(--text-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; }
.contact-list { list-style: none; margin: 0 0 18px; padding: 0; }
.contact-list li { display: flex; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); align-items: center; }
.contact-list li:first-child { padding-top: 0; }
.contact-ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(180, 131, 78, 0.14); color: var(--accent-dark);
}
.contact-list strong { display: block; color: var(--ink); font-size: 14px; }
.contact-list a { color: var(--text); font-size: 15px; font-weight: 500; }
.contact-list a:hover { color: var(--accent-dark); }
.contact-list div span { font-size: 14px; }
.contact-info .page-head { margin-bottom: 12px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--ink); transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }

/* ---------- Form ---------- */
.quote-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow);
}
.form-head { margin-bottom: 12px; }
.form-head h3 { font-size: 23px; margin-bottom: 4px; }
.form-head p { margin: 0; font-size: 14px; color: var(--text-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 11px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 3px rgba(180, 131, 78, 0.2);
}
.form-field textarea { resize: vertical; }
.form-note { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--accent-dark); }
.form-note[hidden] { display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #c0392b; }
.field-error { color: #c0392b; font-size: 12px; margin-top: 4px; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 22px 24px; font-size: 13px;
}
.footer-inner p { margin: 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); }
.footer-links a:hover { color: var(--accent-2); }

/* The footer lives inside the Contact page: pin it to the page bottom and
   keep the contact content clear of it. */
.page#contact { padding-top: var(--nav-h); padding-bottom: 0; }
.page#contact .page-inner { padding-bottom: 56px; }
.page#contact .site-footer {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line-light);
}
.page#contact .site-footer .footer-inner { padding: 12px 24px; }

/* ---------- Fallbacks for very short screens ---------- */
@media (max-height: 680px) {
  .page { padding-top: var(--nav-h); }
  .page-head { margin-bottom: 16px; }
  .insta-embed { height: 400px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .step { padding: 22px 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-media img { height: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  html { scroll-snap-type: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .page {
    min-height: auto; overflow: visible;
    padding: calc(var(--nav-h) + 10px) 0 32px;
    align-items: flex-start;
  }
  .page-hero { min-height: 100svh; padding: 0; align-items: center; }
  .hero-inner { min-height: 100svh; padding: calc(var(--nav-h) + 8px) 0 56px; }
  .page-head { margin-bottom: 22px; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 22px 20px; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { margin-bottom: 0; }
  .extras { margin-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-form { padding: 22px 18px; }
  .review-platforms { grid-template-columns: repeat(2, 1fr); }
  .review-cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 8px; }
  .review-card { flex: none; width: 80%; scroll-snap-align: center; }
  .footer-inner { justify-content: center; text-align: center; flex-direction: column; }
  .page#contact .page-inner { padding-bottom: 130px; }
  .hero-title { font-size: 40px; }
  .scroll-hint { bottom: 14px; }
}
