/* ==========================================================================
   Shannon Storage — Design System
   Palette: deep forest green + warm gold on warm paper.
   Type: Fraunces (display) + Inter (text).
   ========================================================================== */

:root {
  --green-950: #0a2820;
  --green-900: #103428;
  --green-800: #175040;
  --green-700: #1e6450;
  --gold-500: #c0903a;
  --gold-400: #d4ac5c;
  --gold-tint: #f4ead4;
  --ink: #14201a;
  --muted: #5d6b63;
  --paper: #f9f7f2;
  --cream: #f1ecdf;
  --white: #ffffff;
  --line: #e6e0d3;
  --line-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 4px 14px rgba(16, 32, 26, 0.07);
  --shadow: 0 16px 44px rgba(16, 32, 26, 0.12);
  --shadow-lg: 0 28px 70px rgba(16, 32, 26, 0.2);

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold-400);
  color: var(--green-950);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4, blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.04;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.on-dark .eyebrow,
.eyebrow.on-dark {
  color: var(--gold-400);
}

/* ---------- Layout primitives ---------- */

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

.section--tight {
  padding-block: clamp(56px, 7vw, 88px);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--primary {
  color: var(--green-950);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 10px 26px rgba(192, 144, 58, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 14px 32px rgba(192, 144, 58, 0.45);
}

.btn--dark {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 10px 26px rgba(16, 52, 40, 0.28);
}

.btn--dark:hover {
  background: var(--green-800);
}

.btn--outline {
  color: var(--green-900);
  border-color: rgba(16, 52, 40, 0.3);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--green-900);
  background: rgba(16, 52, 40, 0.05);
}

.btn--ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--lg {
  min-height: 56px;
  padding: 0 32px;
  font-size: 16px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-800);
  font-weight: 600;
  font-size: 15px;
}

.text-link svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.site-header {
  color: var(--white);
}

.site-header.is-scrolled,
.site-header.is-solid {
  color: var(--ink);
  background: rgba(249, 247, 242, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 30px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1.15;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-name small {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  opacity: 0.92;
  transition: background 160ms ease, opacity 160ms ease;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
}

.is-scrolled .nav-desktop a:hover,
.is-solid .nav-desktop a:hover,
.is-scrolled .nav-desktop a[aria-current="page"],
.is-solid .nav-desktop a[aria-current="page"] {
  background: rgba(16, 52, 40, 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta .btn {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.header-cta .btn--outline {
  color: var(--green-900);
  background: var(--white);
  border-color: rgba(16, 52, 40, 0.18);
  box-shadow: 0 10px 24px rgba(10, 40, 32, 0.1);
}

.header-cta .btn--outline:hover {
  color: var(--green-950);
  border-color: rgba(16, 52, 40, 0.28);
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(10, 40, 32, 0.14);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms 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-nav {
  position: fixed;
  top: 78px;
  left: 14px;
  right: 14px;
  z-index: 75;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--paper);
}

.mobile-nav .mobile-nav-cta {
  margin-top: 8px;
  justify-content: center;
  color: var(--green-950);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  border-radius: 999px;
}

/* ---------- Hero (homepage) ---------- */

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(94vh, 880px);
  padding: 150px 0 110px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Cinematic Ken Burns drift: transform-only (GPU composited), alternating
   so the loop reverses instead of jumping back to the start. */
@keyframes ken-burns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.05) translate3d(-0.4%, -0.4%, 0);
  }
}

.hero-media img,
.page-hero-media img {
  will-change: transform;
  backface-visibility: hidden;
  animation: ken-burns 25s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(10, 40, 32, 0.16), rgba(10, 40, 32, 0.16)),
    linear-gradient(78deg, rgba(10, 40, 32, 0.93) 8%, rgba(10, 40, 32, 0.72) 45%, rgba(10, 40, 32, 0.25) 90%),
    linear-gradient(0deg, rgba(10, 40, 32, 0.85) 0%, rgba(10, 40, 32, 0) 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 13.5px;
  font-weight: 600;
}

.hero-badge svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
}

.hero h1 {
  max-width: 640px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-points svg {
  width: 17px;
  height: 17px;
  color: var(--gold-400);
  flex: none;
}

/* Hero quick-quote card */

.quote-card {
  padding: 30px 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-card > strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.quote-card > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14.5px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.quote-form select,
.quote-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease;
}

.quote-form select:focus,
.quote-form input:focus {
  outline: none;
  border-color: var(--green-800);
}

.quote-form .btn {
  width: 100%;
  margin-top: 4px;
}

.quote-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--green-950);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  display: grid;
  gap: 4px;
  padding: 34px 28px;
  border-left: 1px solid var(--line-dark);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}

.trust-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Cards: unit sizes ---------- */

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.unit-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.unit-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.unit-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.unit-card:hover figure img {
  transform: scale(1.05);
}

.unit-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 40, 32, 0.85);
  backdrop-filter: blur(4px);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unit-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  padding: 24px;
}

.unit-card-body .dims {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.04em;
}

.unit-card-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.unit-card-body .fits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.unit-card-body .fits span {
  padding: 5px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.unit-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Feature grid (why choose) ---------- */

.why {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 144, 58, 0.45);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: var(--green-900);
  border-radius: 14px;
  color: var(--gold-400);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Security split ---------- */

.security {
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
}

.security .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.security-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.security-figure img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.security-figure figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(249, 247, 242, 0.95);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 13.5px;
  font-weight: 700;
}

.security-figure figcaption svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

.security .lede {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.check-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  color: var(--gold-400);
}

.check-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15.5px;
}

.check-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Size advisor ---------- */

.advisor-section {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.advisor-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.advisor-section .lede {
  margin-bottom: 0;
}

.advisor {
  display: grid;
  gap: 20px;
  padding: 32px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.advisor label {
  font-size: 15.5px;
  font-weight: 700;
}

.advisor input[type="range"] {
  width: 100%;
  accent-color: var(--gold-500);
  cursor: pointer;
}

.advisor-scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.advisor-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.advisor-output strong {
  font-family: var(--font-display);
  font-size: 22px;
}

.advisor-output span {
  color: var(--green-800);
  font-weight: 700;
  font-size: 14.5px;
  text-align: right;
}

/* ---------- Process steps ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: 34px 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-500);
}

.process-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-500);
}

.stars svg {
  width: 17px;
  height: 17px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.45;
  font-weight: 500;
}

.testimonial-card footer {
  margin-top: auto;
  display: grid;
  gap: 2px;
}

.testimonial-card footer strong {
  font-size: 14.5px;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 13px;
}

.review-note {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.review-note a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Service area ---------- */

.area {
  background: var(--paper);
}

.area .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.area-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.town-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.town-list svg {
  width: 14px;
  height: 14px;
  color: var(--gold-500);
}

/* ---------- Contact strip ---------- */

.contact-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.contact-card .feature-icon {
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 8px;
}

.contact-card > a {
  margin-top: auto;
  color: var(--green-800);
  font-weight: 700;
  font-size: 16px;
}

.contact-card > a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hours-table {
  width: 100%;
  margin-top: 6px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.hours-table td {
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-table tr:last-child td {
  border-bottom: 0;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}

.faq-list details[open] {
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px 24px;
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-500);
  font-size: 20px;
  font-weight: 500;
  transition: transform 200ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  padding-block: clamp(80px, 10vw, 130px);
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(192, 144, 58, 0.22), transparent 60%),
    var(--green-950);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta h2 {
  max-width: 700px;
  margin-inline: auto;
  font-size: clamp(32px, 4.6vw, 54px);
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold-400);
}

.final-cta p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.final-cta .btn-row {
  justify-content: center;
}

.final-cta small {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14.5px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(52px, 6vw, 76px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand img {
  width: 38px;
  height: 48px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
  border-radius: 10px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.footer-about p {
  max-width: 320px;
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-col address {
  font-style: normal;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Mobile sticky CTA ---------- */

.mobile-cta {
  display: none;
}

/* ---------- Inner pages ---------- */

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 460px;
  padding: 150px 0 64px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(10, 40, 32, 0.16), rgba(10, 40, 32, 0.16)),
    linear-gradient(80deg, rgba(10, 40, 32, 0.94) 10%, rgba(10, 40, 32, 0.6) 60%, rgba(10, 40, 32, 0.3) 100%),
    linear-gradient(0deg, rgba(10, 40, 32, 0.75) 0%, rgba(10, 40, 32, 0) 50%);
}

.page-hero h1 {
  max-width: 740px;
  font-size: clamp(36px, 5vw, 56px);
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs a:hover {
  color: var(--gold-400);
}

.breadcrumbs svg {
  width: 13px;
  height: 13px;
  opacity: 0.6;
}

.breadcrumbs [aria-current] {
  color: var(--gold-400);
}

/* Two-column page layout with sticky aside */

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.content-panel {
  display: grid;
  gap: 8px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.content-panel ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}

.content-panel ul li {
  display: flex;
  gap: 12px;
}

.content-panel ul svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  color: var(--gold-500);
}

.content-panel li strong {
  color: var(--ink);
}

.side-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding: 28px 26px;
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.side-panel strong.side-title {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.2;
}

.side-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
}

.side-panel .btn {
  width: 100%;
}

.side-panel hr {
  border: 0;
  border-top: 1px solid var(--line-dark);
  margin: 6px 0;
}

.side-panel .side-contact {
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.side-panel .side-contact a {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 17px;
}

/* Size table */

.size-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.size-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.size-table th,
.size-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.size-table thead th {
  background: var(--green-950);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-table tbody tr:last-child td {
  border-bottom: 0;
}

.size-table tbody tr:hover {
  background: var(--paper);
}

.size-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
}

.size-table .size-class {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-tint);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.size-table td .muted {
  color: var(--muted);
}

/* Info cards used across inner pages */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.info-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- Request form ---------- */

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.request-form {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.request-form fieldset {
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.request-form legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
}

.legend-step {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-500);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.request-form label {
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.request-form textarea {
  min-height: 140px;
  padding-block: 14px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(23, 80, 64, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.request-aside {
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.aside-card h2,
.aside-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.aside-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.aside-card p {
  color: var(--muted);
  font-size: 14.5px;
}

.aside-card .btn {
  width: 100%;
}

.aside-card--dark {
  background: var(--green-950);
  border-color: transparent;
  color: var(--white);
}

.aside-card--dark h3 {
  color: var(--white);
}

.aside-card--dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img,
  .page-hero-media img {
    animation: none;
    will-change: auto;
  }

  .btn,
  .unit-card,
  .feature-card,
  .contact-card,
  .info-card {
    transition: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1060px) {
  .nav-desktop {
    display: none;
  }
}

@media (max-width: 920px) {
  .header-cta .btn--outline-header,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner,
  .security .container,
  .advisor-section .container,
  .area .container {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 130px 0 64px;
  }

  .trust-bar .container {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding: 26px 20px;
  }

  .trust-item:nth-child(-n+2) {
    border-top: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid var(--line-dark);
  }

  .unit-grid,
  .feature-grid,
  .process-grid,
  .testimonial-grid,
  .contact-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px; /* room for sticky mobile CTA */
  }

  .brand-name small {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .btn-row .btn {
    flex: 1 1 100%;
  }

  .hero-points {
    display: grid;
    gap: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .advisor-output {
    flex-direction: column;
    align-items: flex-start;
  }

  .advisor-output span {
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 400px;
    padding-top: 130px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(16, 32, 26, 0.12);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
    background: var(--white);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--green-900);
  }

  .mobile-cta a svg {
    width: 17px;
    height: 17px;
    color: var(--gold-500);
  }

  .mobile-cta a.is-accent {
    background: var(--green-900);
    color: var(--white);
  }

  .mobile-cta a.is-accent svg {
    color: var(--gold-400);
  }
}
