/* ==========================================================================
   Ryder Mini Storage & Warehouse — design system
   Palette is taken from the facility itself: the orange roll-up doors and
   bollards, against the concrete and asphalt of the property.
   ========================================================================== */

:root {
  /* Ink */
  --ink:          #10151b;
  --ink-2:        #2c353f;
  --ink-3:        #56616e;
  --ink-4:        #8b959f;

  /* Surface */
  --bg:           #ffffff;
  --bg-2:         #f6f7f8;
  --bg-3:         #eceef0;
  --line:         #dfe3e7;

  /* Brand — the door orange */
  --accent:       #e35a1f;
  --accent-hot:   #f26a2b;
  --accent-deep:  #b8431a;  /* passes AA on white for text */
  --accent-wash:  #fdf1ea;

  /* Support */
  --steel:        #1f3a54;
  --steel-wash:   #eef3f7;
  --good:         #1a7f52;
  --good-wash:    #e9f5ef;
  --warn:         #a8660a;
  --warn-wash:    #fdf4e3;

  /* Type */
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Scale — fluid, clamps at both ends */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.10rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.44rem);
  --step-2:  clamp(1.44rem, 1.30rem + 0.72vw, 1.94rem);
  --step-3:  clamp(1.73rem, 1.49rem + 1.20vw, 2.60rem);
  --step-4:  clamp(2.07rem, 1.68rem + 1.95vw, 3.50rem);
  --step-5:  clamp(2.49rem, 1.86rem + 3.10vw, 4.60rem);

  /* Space */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;

  --radius:    10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16,21,27,.06), 0 1px 3px rgba(16,21,27,.05);
  --shadow:    0 4px 12px rgba(16,21,27,.07), 0 2px 4px rgba(16,21,27,.04);
  --shadow-lg: 0 18px 40px rgba(16,21,27,.12), 0 4px 12px rgba(16,21,27,.06);

  --wrap: 1180px;
  --wrap-narrow: 760px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
/* Inline icons default to text size. Context-specific rules below override
   this by specificity (.card-icon svg, .stars svg, .feature-list svg). */
.ico { width: 1.15em; height: 1.15em; flex: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 var(--sp-4); font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: var(--step-5); letter-spacing: -0.035em; }
h2 { font-size: var(--step-3); letter-spacing: -0.028em; }
h3 { font-size: var(--step-1); letter-spacing: -0.018em; }
h4 { font-size: var(--step-0); letter-spacing: -0.01em; }
p  { margin: 0 0 var(--sp-4); }
a  { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25em; }
li { margin-bottom: var(--sp-2); }
strong { color: var(--ink); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-7) 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--radius) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sp-8); }
.section-lg { padding-block: var(--sp-9); }
.section-tint { background: var(--bg-2); }
.section-ink { background: var(--ink); color: #c7ced6; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink a { color: var(--accent-hot); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.stack > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.center .measure { margin-inline: auto; }

.eyebrow {
  font-size: var(--step--1); font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-deep); margin-bottom: var(--sp-3);
}
.section-ink .eyebrow { color: var(--accent-hot); }
.lede { font-size: var(--step-1); color: var(--ink-3); line-height: 1.5; }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .82em 1.5em; border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--step-0); line-height: 1;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-hot); color: #fff; box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-2); }
.btn-on-dark { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-on-dark:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-sm { padding: .6em 1.1em; font-size: var(--step--1); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.center .btn-row { justify-content: center; }

/* -------------------------------------------------------------- header -- */
.promo-bar {
  background: var(--ink); color: #fff; text-align: center;
  font-size: var(--step--1); font-weight: 600; padding: var(--sp-2) var(--sp-4);
}
.promo-bar strong { color: var(--accent-hot); font-weight: 800; }
.promo-bar a { color: #fff; text-decoration-color: rgba(255,255,255,.5); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: var(--sp-5); min-height: 68px; }
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo svg { height: 34px; width: auto; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: var(--sp-5); }
.site-nav ul { display: flex; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
.site-nav li { margin: 0; }
.site-nav a {
  color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: var(--step--1);
  padding: var(--sp-2) 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
/* The nav carries its own CTA for the mobile drawer; on desktop the one in
   .header-cta is the real button, so hide the duplicate. */
.site-nav > .btn { display: none; }
.header-cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .4em; font-weight: 800;
  color: var(--ink); text-decoration: none; white-space: nowrap; font-size: var(--step--1);
}
.header-phone:hover { color: var(--accent-deep); }
.nav-toggle { display: none; background: none; border: 0; padding: var(--sp-2); cursor: pointer; color: var(--ink); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: #fff; border-left: 1px solid var(--line); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 0; padding: var(--sp-7) var(--sp-5);
    transform: translateX(100%); transition: transform .22s ease; overflow-y: auto;
  }
  .site-nav[data-open="true"] { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { display: block; padding: var(--sp-4) 0; font-size: var(--step-0); border-bottom: 0; }
  .header-cta .btn { display: none; }
  .site-nav > .btn { display: inline-flex; margin-top: var(--sp-5); }
}
@media (max-width: 460px) { .header-phone span { display: none; } }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(16,21,27,.45);
  opacity: 0; pointer-events: none; transition: opacity .22s ease; z-index: 49;
}
.nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

/* ---------------------------------------------------------------- hero -- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(16,21,27,.94) 0%, rgba(16,21,27,.78) 46%, rgba(16,21,27,.42) 100%);
}
.hero-inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: var(--sp-5); }
.hero .lede { color: #ccd3da; margin-bottom: var(--sp-6); }
.hero-proof { display: flex; flex-wrap: wrap; gap: var(--sp-5); margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,.16); }
.hero-proof div { flex: 1 1 150px; }
.hero-proof dt { font-size: var(--step--1); color: #9aa5b1; margin-bottom: var(--sp-1); }
.hero-proof dd { margin: 0; font-size: var(--step-1); font-weight: 800; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5em; margin-bottom: var(--sp-5);
  background: rgba(227,90,31,.16); border: 1px solid rgba(242,106,43,.4);
  color: #ffb894; padding: .45em 1em; border-radius: var(--radius-pill);
  font-size: var(--step--1); font-weight: 700;
}

/* --------------------------------------------------------------- cards -- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-6); box-shadow: var(--shadow-sm);
  transition: box-shadow .16s ease, transform .16s ease, border-color .16s ease;
}
.card > :last-child { margin-bottom: 0; }
a.card, .card-link { text-decoration: none; color: inherit; display: block; }
a.card:hover, .card-link:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--ink-4); }
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--ink-3); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-wash);
  color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.card-icon svg { width: 22px; height: 22px; }
.card-more { display: inline-flex; align-items: center; gap: .35em; font-weight: 700; color: var(--accent-deep); margin-top: var(--sp-3); font-size: var(--step--1); }

/* -------------------------------------------------------- price / units -- */
.unit-grid { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
.unit {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-5); text-decoration: none; color: inherit;
  transition: box-shadow .16s ease, transform .16s ease, border-color .16s ease;
}
.unit:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--accent); }
.unit-size { font-size: var(--step-2); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.unit-sqft { font-size: var(--step--1); color: var(--ink-4); margin-top: var(--sp-1); }
.unit-fit { color: var(--ink-3); font-size: var(--step--1); margin: var(--sp-4) 0; flex-grow: 1; line-height: 1.5; }
.unit-price { display: flex; align-items: baseline; gap: .3em; margin-top: auto; }
.unit-price .amt { font-size: var(--step-2); font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.unit-price .per { font-size: var(--step--1); color: var(--ink-4); }
.unit-cta { margin-top: var(--sp-4); }
.unit-flag {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .3em .7em; border-radius: var(--radius-pill);
}
.flag-low  { background: var(--warn-wash); color: var(--warn); }
.flag-open { background: var(--good-wash); color: var(--good); }
.flag-none { background: var(--bg-3); color: var(--ink-3); }
.unit[data-available="false"] { opacity: .62; }

.price-note { font-size: var(--step--1); color: var(--ink-4); margin-top: var(--sp-5); }
.price-note code { background: var(--bg-2); padding: .1em .4em; border-radius: 4px; }

/* --------------------------------------------------------------- table -- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: var(--sp-5); }
table { width: 100%; border-collapse: collapse; font-size: var(--step--1); min-width: 520px; }
th, td { text-align: left; padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--line); }
th { font-weight: 800; color: var(--ink); background: var(--bg-2); white-space: nowrap; }
tbody tr:hover { background: var(--bg-2); }
td strong { color: var(--ink); }

/* ---------------------------------------------------------------- FAQ --- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: var(--sp-5) var(--sp-6) var(--sp-5) 0; position: relative;
  font-weight: 700; color: var(--ink); font-size: var(--step-0); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: var(--sp-2); top: 50%;
  width: 10px; height: 10px; border-right: 2px solid var(--ink-4); border-bottom: 2px solid var(--ink-4);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--accent-deep); }
.faq-body { padding: 0 var(--sp-6) var(--sp-5) 0; color: var(--ink-3); }
.faq-body > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- reviews -- */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3);
}
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.review blockquote { margin: 0; color: var(--ink-2); font-size: var(--step-0); line-height: 1.55; }
.review cite { font-style: normal; font-size: var(--step--1); color: var(--ink-4); margin-top: auto; }
.review cite b { color: var(--ink-2); font-weight: 700; }

.rating-badge { display: inline-flex; align-items: center; gap: var(--sp-3); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: var(--sp-2) var(--sp-5); }
.rating-badge .score { font-size: var(--step-1); font-weight: 800; color: var(--ink); }

/* --------------------------------------------------------------- steps -- */
.steps { counter-reset: step; display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { position: relative; padding-top: var(--sp-6); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: var(--step--1);
}
.step h3 { margin-top: var(--sp-3); }
.step p { color: var(--ink-3); margin-bottom: 0; }

/* ------------------------------------------------------------ features -- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.feature-list li { display: flex; gap: var(--sp-3); align-items: flex-start; margin: 0; color: var(--ink-2); font-size: var(--step--1); }
.feature-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--good); margin-top: 1px; }

/* ---------------------------------------------------------------- info -- */
.info-panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-6); }
.info-panel h3 { font-size: var(--step-0); margin-bottom: var(--sp-4); }
.hours-list { list-style: none; padding: 0; margin: 0 0 var(--sp-5); }
.hours-list li { display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-2) 0; border-bottom: 1px solid var(--line); font-size: var(--step--1); margin: 0; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list dt, .hours-list .d { color: var(--ink-3); }
.hours-list .t { font-weight: 700; color: var(--ink); white-space: nowrap; }

.callout {
  border-left: 4px solid var(--accent); background: var(--accent-wash);
  padding: var(--sp-5); border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: var(--sp-5);
}
.callout > :last-child { margin-bottom: 0; }
.callout-steel { border-left-color: var(--steel); background: var(--steel-wash); }

/* ---------------------------------------------------------------- form -- */
.form-field { margin-bottom: var(--sp-4); }
.form-field label { display: block; font-weight: 700; font-size: var(--step--1); color: var(--ink); margin-bottom: var(--sp-2); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: var(--sp-3) var(--sp-4); font: inherit; font-size: var(--step-0);
  color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); outline: 2px solid var(--accent-wash); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { padding: var(--sp-4); border-radius: var(--radius); font-size: var(--step--1); font-weight: 600; margin-top: var(--sp-4); }
.form-status[data-state="ok"]   { background: var(--good-wash); color: var(--good); }
.form-status[data-state="err"]  { background: #fdecea; color: #b3261e; }
.form-status[hidden] { display: none; }

/* ------------------------------------------------------------ location -- */
.map-embed { border: 0; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); background: var(--bg-3); }
.dir-list { list-style: none; padding: 0; margin: 0; }
.dir-list li { padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); margin: 0; }
.dir-list li:last-child { border-bottom: 0; }
.dir-list b { display: block; color: var(--ink); margin-bottom: var(--sp-1); }
.dir-list span { font-size: var(--step--1); color: var(--ink-3); }

/* --------------------------------------------------------------- media -- */
.photo { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-3); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.split { display: grid; gap: var(--sp-7); align-items: center; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- final -- */
.cta-band { background: var(--ink); color: #c7ced6; border-radius: var(--radius-lg); padding: var(--sp-8) var(--sp-6); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #aab3bd; max-width: 52ch; margin-inline: auto; }

/* ------------------------------------------------------------ breadcrumb */
.breadcrumb { font-size: var(--step--1); color: var(--ink-4); padding-top: var(--sp-5); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5em; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; display: flex; gap: .5em; align-items: center; }
.breadcrumb li + li::before { content: "/"; color: var(--ink-4); }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); text-decoration: underline; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #97a1ac; padding-block: var(--sp-8) var(--sp-6); font-size: var(--step--1); }
.site-footer h4 { color: #fff; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--sp-4); }
.site-footer a { color: #97a1ac; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1.4fr repeat(auto-fit, minmax(150px, 1fr)); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: var(--sp-2); }
.footer-brand svg { height: 32px; width: auto; margin-bottom: var(--sp-4); }
.footer-brand address { font-style: normal; line-height: 1.8; }
.footer-brand address a { color: #fff; font-weight: 700; }
.footer-bottom { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; color: #6f7a86; }
.footer-bottom nav { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* --------------------------------------------------------------- utils -- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--sp-6); } .mb-6 { margin-bottom: var(--sp-6); }
.pill {
  display: inline-block; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .3em .9em; font-size: var(--step--1);
  font-weight: 600; color: var(--ink-2); margin: 0 var(--sp-2) var(--sp-2) 0;
}

/* ------------------------------------------------------- size guide -- */
/* One row per unit size: dimensions and price on the left, the "what
   fits" description in the middle, reserve CTA on the right. */
.size-guide { display: flex; flex-direction: column; gap: var(--sp-4); }
.size-row {
  display: grid;
  grid-template-columns: 11rem 1fr auto;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-5);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius, 12px);
}
.size-row p { margin: 0; color: var(--ink-2); }
.size-dims { display: flex; flex-direction: column; gap: 2px; }
.size-name { font-size: var(--step-2); font-weight: 800; color: var(--ink); }
.size-sqft { color: var(--ink-3); font-size: var(--step--1); }
@media (max-width: 700px) {
  .size-row { grid-template-columns: 1fr; }
  .size-row .btn { justify-self: start; }
}

/* ------------------------------------------------- discounted prices -- */
/* Struck-through regular rate beside a promotional rate. The deal price
   uses the accent so the discount reads as deliberate, not an error. */
.unit-price .was, .was-rate { color: var(--ink-4); font-weight: 600; }
.unit-price .was { font-size: var(--step-0); margin-right: .35em; }
.unit-price .was + .amt { color: var(--accent-deep); }
