/* =========================================================
   Cedar Ridge Labradors — shared stylesheet
   Palette: warm cedar / cream, espresso ink, copper + sage accents
   Type: Newsreader (editorial serif) + Hanken Grotesque (clean sans)
   ========================================================= */

:root {
  /* surfaces */
  --cream:      #f6f0e6;
  --cream-2:    #efe6d7;
  --paper:      #fffdf8;
  --espresso:   #2f231a;
  --ink:        #38291d;
  --muted:      #806f60;
  --soft:       #a2917f;

  /* accents (shared chroma, varied hue) */
  --copper:     #b06a2c;
  --copper-d:   #97581f;
  --copper-t:   #f3e2d0;
  --sage:       #74854f;
  --sage-d:     #5c6c3c;
  --sage-t:     #e6e9d8;

  /* coat tints (used by photo placeholders) */
  --coat-black:    #3a342f;
  --coat-yellow:   #e3c081;
  --coat-choc:     #6b4a31;
  --coat-foxred:   #c07a3e;

  /* lines + shadows */
  --line:    #e6dac6;
  --line-2:  #ddcdb4;
  --shadow-s: 0 2px 8px rgba(63, 45, 28, .06);
  --shadow-m: 0 14px 34px -16px rgba(63, 45, 28, .28);
  --shadow-l: 0 30px 70px -28px rgba(63, 45, 28, .40);

  /* shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 38px;

  --maxw: 1180px;
  --nav-h: 76px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.copper { color: var(--copper); }
.sage { color: var(--sage-d); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--copper);
  border-radius: 2px;
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.65; }

.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--copper);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s;
  box-shadow: 0 10px 24px -12px rgba(176,106,44,.8);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(176,106,44,.85); background: var(--copper-d); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

.btn-ghost {
  --bg: transparent;
  --fg: var(--espresso);
  border-color: var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--paper); border-color: var(--copper); color: var(--copper-d); box-shadow: var(--shadow-s); }

.btn-sage { --bg: var(--sage); box-shadow: 0 10px 24px -12px rgba(116,133,79,.8); }
.btn-sage:hover { background: var(--sage-d); }

.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(246,240,230,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-s); background: rgba(248,243,234,.92); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: radial-gradient(120% 120% at 30% 20%, var(--copper) 0%, var(--copper-d) 60%, #7c451a 100%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-s), inset 0 1px 0 rgba(255,255,255,.25);
  flex: none;
}
.brand .mark svg { width: 24px; height: 24px; }
.brand .name { display: flex; flex-direction: column; line-height: 1; }
.brand .name b { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--espresso); letter-spacing: -.01em; white-space: nowrap; }
.brand .name span { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--copper); font-weight: 700; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  font-weight: 600; font-size: 15px;
  padding: 9px 15px; border-radius: 100px;
  color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--copper);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover { color: var(--copper-d); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--copper-d); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel { font-weight: 700; font-size: 14.5px; color: var(--espresso); display: inline-flex; gap: 8px; align-items: center; }
.nav-tel:hover { color: var(--copper-d); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: .3s; }
.burger span + span { margin-top: 6px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 55;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  transform: translateY(-130%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  padding: 14px 28px 28px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; padding: 14px 4px; font-weight: 600; font-size: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- photo placeholder system ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.10) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, var(--c1, #cbb79c), var(--c2, #a98e6f));
  display: grid; place-items: center;
  color: rgba(255,255,255,.92);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(0,0,0,.28);
  padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(2px);
}
.ph .paw { position: absolute; opacity: .22; }
/* real photo overlay — covers the placeholder; reverts to placeholder if it fails to load */
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.ph:has(.ph-img)::after { display: none; }
.ph:has(.ph-img) .paw { display: none; }
.ph.coat-black  { --c1:#5a524a; --c2:#33302c; }
.ph.coat-yellow { --c1:#ecd09a; --c2:#cda863; }
.ph.coat-choc   { --c1:#8a6446; --c2:#5d3f29; }
.ph.coat-foxred { --c1:#d2935a; --c2:#a86532; }

/* paw motif (built only from ellipses/circles) */
.paw-svg { display: inline-block; }

/* ---------- cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}

/* puppy card */
.pup {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.pup:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); border-color: var(--line-2); }
.pup .pup-photo { aspect-ratio: 4/3.2; }
.pup:hover .pup-photo .ph { transform: scale(1.04); }
.pup-photo { position: relative; overflow: hidden; }
.pup-photo .ph { position: absolute; inset: 0; transition: transform .5s ease; }
.pup-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: var(--paper); color: var(--sage-d);
  box-shadow: var(--shadow-s);
}
.pup-badge.reserved { color: var(--copper-d); }
.pup-badge.sold { color: var(--soft); }
.pup-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center;
  border: 0; cursor: pointer; box-shadow: var(--shadow-s);
  transition: transform .2s, background .2s;
}
.pup-fav:hover { transform: scale(1.12); }
.pup-fav.on { background: var(--copper); }
.pup-fav.on svg { fill: #fff; stroke: #fff; }
.pup-fav svg { width: 18px; height: 18px; fill: none; stroke: var(--copper-d); stroke-width: 2; transition: .2s; }
.pup-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pup-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pup-name { font-family: var(--serif); font-size: 1.5rem; color: var(--espresso); }
.pup-price { font-weight: 800; color: var(--copper-d); font-size: 1.05rem; white-space: nowrap; }
.pup-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-black { background: var(--coat-black); }
.dot-yellow { background: var(--coat-yellow); }
.dot-choc { background: var(--coat-choc); }
.dot-foxred { background: var(--coat-foxred); }
.pup-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 4px; }
.pup-link { font-weight: 700; color: var(--copper-d); font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.pup:hover .pup-link .arr { transform: translateX(4px); }
.pup-link .arr { transition: transform .25s; }

/* ---------- scroll reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .marquee-inner, .collage .frame, .collage-badge, .blob, .paw-trail .p, .d-status .pulse { animation: none !important; }
}

/* ---------- footer ---------- */
.footer { background: var(--espresso); color: #ece2d4; padding: 80px 0 30px; position: relative; }
.footer a { color: #d7c9b6; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.6fr; gap: 44px; }
.footer .brand .name b { color: #fff; }
.footer .brand .name span { color: var(--copper); }
.footer-blurb { color: #b8a896; margin: 20px 0 22px; max-width: 32ch; }
.footer h4 { color: #fff; font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 15px; }
.footer-contact li { display: flex; gap: 11px; font-size: 14.5px; color: #c9b9a6; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 3px; opacity: .8; }
.news-form { display: flex; gap: 8px; margin-top: 16px; }
.news-form input { flex: 1; min-width: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #fff; padding: 13px 16px; border-radius: 100px; font-family: var(--sans); font-size: 14.5px; }
.news-form input::placeholder { color: #9c8c79; }
.news-form input:focus { outline: none; border-color: var(--copper); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: .25s; }
.footer-socials a:hover { background: var(--copper); border-color: var(--copper); transform: translateY(-3px); }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #9c8c79; font-size: 13.5px; }
.footer-bottom a { font-size: 13.5px; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 13.5px; color: var(--espresso); letter-spacing: .01em; }
.field label .req { color: var(--copper); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm); padding: 13px 15px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(176,106,44,.12);
}
.field.err input, .field.err select, .field.err textarea { border-color: #c0492f; box-shadow: 0 0 0 4px rgba(192,73,47,.1); }
.field .hint { font-size: 12.5px; color: var(--soft); }
.field .error-msg { font-size: 12.5px; color: #c0492f; font-weight: 600; display: none; }
.field.err .error-msg { display: block; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

.form-note { font-size: 13px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }

/* success state */
.success-card { text-align: center; padding: 44px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-s); }
.success-ico { width: 70px; height: 70px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; animation: pop .5s cubic-bezier(.2,1.3,.4,1) both; }
.success-ico svg { width: 34px; height: 34px; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- accordion (FAQ) ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc + .acc { margin-top: 14px; }
.acc.open { box-shadow: var(--shadow-m); border-color: var(--line-2); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--serif); font-size: 1.18rem; color: var(--espresso); }
.acc-ico { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; transition: .35s; position: relative; }
.acc-ico::before, .acc-ico::after { content: ""; position: absolute; background: var(--copper-d); border-radius: 2px; }
.acc-ico::before { width: 13px; height: 2.4px; }
.acc-ico::after { width: 2.4px; height: 13px; transition: transform .35s; }
.acc.open .acc-ico { background: var(--copper); }
.acc.open .acc-ico::before, .acc.open .acc-ico::after { background: #fff; }
.acc.open .acc-ico::after { transform: rotate(90deg); opacity: 0; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-a-inner { padding: 0 24px 24px; color: var(--muted); }

/* ---------- misc ---------- */
.divider-wave { display: block; width: 100%; height: 60px; }
.tag-soft { display: inline-flex; align-items: center; gap: 8px; background: var(--copper-t); color: var(--copper-d); font-weight: 700; font-size: 13px; padding: 7px 15px; border-radius: 100px; }
.tag-soft.sage { background: var(--sage-t); color: var(--sage-d); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

/* ---------- carousel ---------- */
.carousel { position: relative; }
.car-track {
  display: flex; gap: 26px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 22px;
  scrollbar-width: none;
  cursor: grab;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { scroll-snap-align: start; flex: 0 0 clamp(280px, 31%, 360px); }
.car-nav { display: flex; align-items: center; gap: 12px; }
.car-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--line-2);
  display: grid; place-items: center; cursor: pointer;
  color: var(--espresso); transition: .25s;
  box-shadow: var(--shadow-s);
}
.car-arrow:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-2px); }
.car-arrow svg { width: 20px; height: 20px; }
.car-dots { display: flex; gap: 9px; align-items: center; justify-content: center; margin-top: 6px; }
.car-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line-2); cursor: pointer; transition: .25s; padding: 0; }
.car-dot.on { background: var(--copper); width: 26px; border-radius: 100px; }

/* ---------- feature / step / value blocks ---------- */
.feature { padding: 30px 28px; }
.feature .f-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: var(--copper-t); color: var(--copper-d); }
.feature.sage .f-ico { background: var(--sage-t); color: var(--sage-d); }
.feature h3 { font-size: 1.4rem; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 15.5px; margin: 0; }
.feature svg { width: 28px; height: 28px; }

.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { flex: none; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem; color: #fff; background: var(--copper); box-shadow: var(--shadow-s); }
.step:nth-child(even) .step-num { background: var(--sage); }
.step h3 { font-size: 1.3rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- stat ---------- */
.stat { text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--espresso); line-height: 1; }
.stat span { font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* ---------- testimonial ---------- */
.quote { padding: 34px 32px; }
.quote .stars { color: var(--copper); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.quote p { font-family: var(--serif); font-size: 1.22rem; color: var(--espresso); line-height: 1.5; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.quote .who b { font-family: var(--sans); font-weight: 800; font-size: 14.5px; color: var(--espresso); display: block; }
.quote .who span { font-size: 13px; color: var(--muted); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: clamp(54px, 8vw, 96px) 0 clamp(40px, 5vw, 64px); background: linear-gradient(180deg, var(--cream-2), var(--cream)); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .crumbs { font-size: 13.5px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.page-hero .crumbs a:hover { color: var(--copper-d); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-tel { display: none; }
  .nav-right { display: none; }            /* CTA lives in the mobile menu instead */
  .burger { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  /* collapse any inline two-column section splits to a single column */
  .wrap[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .section { padding: clamp(52px, 9vw, 90px) 0; }
  .page-hero { padding: clamp(40px, 7vw, 72px) 0 clamp(28px, 4vw, 48px); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .h-xl { font-size: clamp(2.05rem, 8.5vw, 2.7rem); }
  .h-lg { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .btn, .btn-lg { padding: 14px 24px; font-size: 15px; }
  /* long emails / URLs must never force horizontal scroll on narrow cards */
  .footer-contact a, .footer-contact li, .info-item .v { overflow-wrap: anywhere; }
  /* full-width primary actions are easier to tap */
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  /* carousel shows one card with a peek of the next */
  .car-track > * { flex: 0 0 84%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .brand .name b { font-size: 17.5px; }
  .brand .mark { width: 38px; height: 38px; }
  .acc-q { font-size: 1.05rem; padding: 18px 18px; }
}
