/* ==========================================================================
   The Only Dog — design system
   One stylesheet, shared across every page. Warm, premium, dog-loving.
   No framework. Fraunces (display) + system sans (body). Degrades gracefully
   if the web font fails to load.
   ========================================================================== */

:root {
  /* palette — warm home, not clinical kennel */
  --cream:      #fdf8f1;
  --cream-2:    #f6ecde;
  --paper:      #ffffff;
  --ink:        #2b2422;   /* near-black warm */
  --ink-soft:   #5c5048;
  --nose:       #3a302c;   /* dog-nose dark for footers */
  --tan:        #b5743a;   /* primary caramel */
  --tan-deep:   #99602e;
  --tan-tint:   #f3e2cf;
  --sage:       #5b7a5a;   /* trust / "yes" green */
  --sage-tint:  #e7efe5;
  --gold:       #d8a657;
  --line:       #e7dccd;
  --shadow:     0 12px 40px -18px rgba(58, 48, 44, 0.45);
  --shadow-sm:  0 6px 20px -12px rgba(58, 48, 44, 0.4);
  --radius:     18px;
  --radius-lg:  28px;
  --maxw:       1140px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--tan-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink-soft); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: clamp(48px, 8vw, 96px) 0; }
.eyebrow { font-family: var(--sans); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--tan-deep); margin: 0 0 .8rem; }
.center { text-align: center; }
.measure { max-width: 720px; }
.center .measure { margin-left: auto; margin-right: auto; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: .55em; font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  padding: .85em 1.6em; border-radius: 999px; border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease; line-height: 1; }
.btn-primary { background: var(--tan); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--tan-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--tan); color: var(--tan-deep); }
.btn-lg { font-size: 1.12rem; padding: 1em 1.9em; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---- header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(253,248,241,.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: .6em; font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); text-decoration: none; }
.brand svg { width: 34px; height: 34px; flex: none; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .96rem; padding: .5em .75em; border-radius: 10px; }
.nav a:hover { color: var(--ink); background: var(--cream-2); }
.nav .btn { padding: .6em 1.15em; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---- hero ---- */
.hero { position: relative; background:
    radial-gradient(1200px 520px at 80% -10%, var(--tan-tint), transparent 60%),
    radial-gradient(900px 480px at 0% 110%, var(--sage-tint), transparent 55%),
    var(--cream); padding: clamp(40px, 7vw, 84px) 0 clamp(48px, 8vw, 92px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 span.u { color: var(--tan-deep); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.pill { display: inline-flex; align-items: center; gap: .5em; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em; font-size: .9rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.pill svg { width: 18px; height: 18px; color: var(--sage); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: .95rem; color: var(--ink-soft); margin-top: 14px; }

/* hero visual card */
.hero-card { position: relative; background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 14px; border: 1px solid var(--line); }
.hero-card .photo { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background:
    linear-gradient(160deg, var(--tan-tint), var(--sage-tint)); display: grid; place-items: center; }
.hero-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float { position: absolute; left: -18px; bottom: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 260px; }
.hero-float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px var(--sage-tint); flex: none; }
.hero-float small { display: block; color: var(--ink-soft); font-size: .8rem; }
.hero-float strong { font-size: .98rem; }

/* ---- the one-dog promise strip ---- */
.promise { background: var(--nose); color: #f6ece0; }
.promise .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.promise .stat .n { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold); display: block; line-height: 1; }
.promise .stat .l { font-size: .92rem; color: #d8cbbd; margin-top: 8px; }

/* ---- generic cards / grids ---- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.card h3 { margin-top: .2em; }
.card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--tan-tint); color: var(--tan-deep); display: grid; place-items: center; margin-bottom: 16px; }
.card .ico svg { width: 26px; height: 26px; }
.card.sage .ico { background: var(--sage-tint); color: var(--sage); }

.alt { background: var(--cream-2); }
.dark { background: var(--nose); color: #efe3d6; }
.dark h2, .dark h3 { color: #fff; }
.dark .eyebrow { color: var(--gold); }

/* ---- day in the life timeline ---- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.t-item { position: relative; padding: 0 0 26px 64px; }
.t-item .time { position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--tan); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .82rem; box-shadow: var(--shadow-sm); }
.t-item h3 { margin: 4px 0 4px; font-size: 1.2rem; }
.t-item p { margin: 0; color: var(--ink-soft); }

/* ---- gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .shot { aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; background: linear-gradient(160deg, var(--tan-tint), var(--sage-tint)); position: relative; }
.gallery .shot:nth-child(3n) { background: linear-gradient(160deg, var(--sage-tint), var(--cream-2)); }
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; }
.gallery .shot .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--tan-deep); opacity: .55; }
.gallery .wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ---- pricing ---- */
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); position: relative; }
.price-card.feature { border-color: var(--tan); box-shadow: var(--shadow); }
.price-card .tag { position: absolute; top: -13px; left: 34px; background: var(--tan); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35em .9em; border-radius: 999px; }
.price-card .amt { font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--ink); }
.price-card .amt small { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.price-list { list-style: none; padding: 0; margin: 20px 0 26px; }
.price-list li { padding: .5em 0 .5em 30px; position: relative; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.price-list li::before { content: ""; position: absolute; left: 0; top: .85em; width: 18px; height: 18px; border-radius: 50%; background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b7a5a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---- FAQ ---- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; padding: 0 22px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.6rem; color: var(--tan); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 20px; color: var(--ink-soft); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---- trust badges ---- */
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.trust-badge { display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); font-weight: 600; font-size: .95rem; }
.trust-badge svg { width: 24px; height: 24px; color: var(--sage); flex: none; }

/* ---- quote / review ---- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.quote p { font-size: 1.05rem; color: var(--ink); }
.quote .who { font-weight: 700; color: var(--ink); margin-top: 14px; }
.quote .who small { display: block; font-weight: 500; color: var(--ink-soft); }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(140deg, var(--tan), var(--tan-deep)); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 6vw, 64px); text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #fbeede; }
.cta-band .btn-primary { background: #fff; color: var(--tan-deep); }
.cta-band .btn-primary:hover { background: var(--cream); }

/* ---- booking ---- */
.booking { max-width: 760px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(22px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .98rem; }
.field .hint { font-weight: 500; color: var(--ink-soft); font-size: .85rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; padding: .8em .9em; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tan); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.summary { background: var(--cream-2); border-radius: 16px; padding: 22px; margin: 8px 0 22px; }
.summary .line { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-soft); }
.summary .line.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 1.3rem; font-weight: 700; color: var(--ink); font-family: var(--serif); }
.summary .line.total span:last-child { color: var(--tan-deep); }
.gate-msg { padding: 12px 16px; border-radius: 12px; font-size: .92rem; font-weight: 600; margin-top: 8px; }
.gate-ok { background: var(--sage-tint); color: #34503a; }
.gate-no { background: #fbe6e0; color: #8a3b28; }
.extras-list label { display: flex; align-items: flex-start; gap: 12px; background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 10px; cursor: pointer; font-weight: 600; }
.extras-list input { width: auto; margin-top: 3px; }
.extras-list .x-sub { font-weight: 500; color: var(--ink-soft); font-size: .9rem; }
.extras-list .x-price { margin-left: auto; color: var(--tan-deep); font-weight: 700; white-space: nowrap; }
.err { color: #b3402a; font-weight: 600; font-size: .92rem; margin-top: 10px; }

/* ---- breadcrumbs / town page ---- */
.crumbs { font-size: .85rem; color: var(--ink-soft); padding: 16px 0 0; }
.crumbs a { color: var(--ink-soft); }
.area-hero { background: radial-gradient(900px 400px at 90% -20%, var(--tan-tint), transparent 60%), var(--cream); padding: 30px 0 0; }
.area-cols { display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; align-items: start; }
.area-aside { position: sticky; top: 92px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.chip { background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: .4em .85em; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }

/* ---- footer ---- */
.site-footer { background: var(--nose); color: #cdbfb1; padding: 60px 0 30px; }
.site-footer a { color: #e9ddcf; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 8px; font-size: .95rem; }
.foot-brand { display: flex; align-items: center; gap: .5em; font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.foot-brand svg { width: 30px; height: 30px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: .82rem; color: #a99c8e; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }

/* ---- misc ---- */
.notice { background: var(--sage-tint); border: 1px solid #cfe0cc; border-radius: 14px; padding: 16px 20px; color: #34503a; font-size: .95rem; }
.notice.warn { background: #fdf0e3; border-color: #f0d8b8; color: #7a4f1e; }
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li { padding: .45em 0 .45em 34px; position: relative; }
.tick-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 22px; height: 22px; border-radius: 50%; background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b7a5a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; margin: 0 auto; }
  .area-cols { grid-template-columns: 1fr; }
  .area-aside { position: static; }
  .grid-4, .gallery { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .promise .wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav { position: fixed; inset: 72px 0 auto; flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px 22px 22px; align-items: stretch; gap: 4px; transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .8em .6em; }
  .nav .btn { margin-top: 8px; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .price-cards, .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .wide { grid-column: span 2; }
}
/* ---- 3-tier pricing ---- */
@media (min-width: 761px) { .price-cards.tri { grid-template-columns: repeat(3, 1fr); } }

/* ---- tier selector (booking) ---- */
.tier-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.tier-opt { position: relative; }
.tier-opt input { position: absolute; opacity: 0; pointer-events: none; }
.tier-opt label { display: block; cursor: pointer; background: var(--cream); border: 2px solid var(--line); border-radius: 16px; padding: 16px; height: 100%; transition: border-color .15s, background .15s; }
.tier-opt label:hover { border-color: var(--tan-tint); }
.tier-opt input:checked + label { border-color: var(--tan); background: #fff; box-shadow: var(--shadow-sm); }
.tier-opt input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }
.tier-opt .t-name { font-weight: 700; font-family: var(--serif); font-size: 1.1rem; }
.tier-opt .t-price { color: var(--tan-deep); font-weight: 700; margin-top: 2px; }
.tier-opt .t-desc { font-size: .85rem; color: var(--ink-soft); margin-top: 4px; line-height: 1.4; }
.tier-opt.enquire input:checked + label { border-color: var(--nose); }

/* ---- Airbnb-style calendar ---- */
.cal { background: var(--cream); border: 1.5px solid var(--line); border-radius: 18px; padding: 16px 18px 20px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cal-nav { background: #fff; border: 1px solid var(--line); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: .15s; }
.cal-nav:hover:not(:disabled) { border-color: var(--tan); color: var(--tan-deep); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-nav svg { width: 18px; height: 18px; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cal-month h4 { text-align: center; font-family: var(--serif); font-size: 1.1rem; margin: 0 0 10px; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.cal-dow span { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-cell { aspect-ratio: 1/1; border: 0; background: none; font: inherit; font-size: .92rem; font-weight: 600; color: var(--ink); cursor: pointer; border-radius: 10px; position: relative; display: grid; place-items: center; transition: background .12s; }
.cal-cell.empty { visibility: hidden; }
.cal-cell:hover:not(.disabled):not(.sel) { background: var(--tan-tint); }
.cal-cell.disabled { color: #c9bcab; cursor: not-allowed; text-decoration: line-through; text-decoration-thickness: 1px; }
.cal-cell.booked { color: #c9a99a; }
.cal-cell.in-range { background: var(--tan-tint); border-radius: 0; }
.cal-cell.sel { background: var(--tan); color: #fff; border-radius: 10px; z-index: 1; }
.cal-cell.range-start { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.cal-cell.range-end { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
.cal-cell .peak-dot { position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.cal-cell.sel .peak-dot { background: #fff; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; font-size: .8rem; color: var(--ink-soft); }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend .sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.cal-summary { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .95rem; }
.cal-summary b { color: var(--ink); }
.cal-summary .clear { margin-left: auto; background: none; border: 0; color: var(--tan-deep); font: inherit; font-weight: 600; cursor: pointer; text-decoration: underline; }

@media (max-width: 620px) {
  .cal-months { grid-template-columns: 1fr; gap: 20px; }
  .tier-select { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
