/* Astra Staging — mobile-first design system */
:root {
  --bg: #f8f3ef;
  --surface: #ffffff;
  --surface-2: #fbf4f3;
  --text: #262226;
  --muted: #71686b;
  --faint: #9d9295;
  --border: #eadde1;
  --line: rgba(213, 90, 106, .15);
  --accent: #d55a6a;
  --accent-dark: #702438;
  --accent-hover: #702438;
  --accent-soft: #fbf4f3;
  --accent-light: #efc8cf;
  --ink: #262226;
  --ok: #6b705c;
  --ok-soft: #f2f1ea;
  --danger: #b91c1c;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 12px 32px rgba(28, 25, 23, 0.06);
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --nav-h: 72px;
  --mobile-header-h: 72px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --max: 1120px;
}

/* Shared Google review bar. */
.google-review-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 7px 18px;
  border-bottom: 1px solid rgba(122, 34, 57, .14);
  background: #f7f5f4;
  color: #241f21;
  font-family: Arial, Helvetica, sans-serif;
}
.google-review-bar-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  white-space: nowrap;
}
.google-review-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}
.google-blue { color: #4285f4; }
.google-red { color: #ea4335; }
.google-yellow { color: #fbbc05; }
.google-green { color: #34a853; }
.google-review-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1;
}
.google-review-count,
.google-review-claim {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.google-review-count { color: #751b32; }
.google-review-claim-mobile { display: none; }
.google-review-divider {
  width: 1px;
  height: 16px;
  flex: 0 0 1px;
  background: rgba(117, 27, 50, .24);
}

/* Unified inner-page header: exactly matches the homepage header. */
.site-header {
  height: 76px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: rgba(250, 247, 244, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  transition: none;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: none;
}
.site-header .nav {
  width: 100%;
  max-width: none;
  height: 76px;
  margin: 0;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.site-header .logo { justify-self: start; }
.site-header .logo .astra-brand-logo { gap: 10px; }
.site-header .logo .brand-symbol { width: 52px; height: 52px; }
.site-header .logo .brand-wordmark {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  letter-spacing: .08em;
}
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
}
.site-header .nav-links a {
  padding: 10px 0;
  border-radius: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.site-header .nav-links a[href="/"] { display: none; }
.site-header .nav-links a:hover,
.site-header .nav-links a.active { color: var(--accent-dark); }
.site-header .nav-cta {
  justify-self: end;
  gap: 14px;
}
.site-header .nav-phone {
  display: inline-flex;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}
.site-header .nav-cta .btn-primary {
  min-height: 0;
  height: auto;
  padding: 12px 17px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: white;
  color: var(--accent);
  box-shadow: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}
.site-header .menu-btn,
.site-header .mobile-drawer { display: none; }

@media (max-width: 900px) {
  .google-review-bar { min-height: 34px; padding: 6px 7px; }
  .google-review-bar-inner { gap: 6px; }
  .google-review-wordmark { font-size: 13px; }
  .google-review-stars { font-size: 11px; letter-spacing: .045em; }
  .google-review-count { font-size: 9.5px; }
  .google-review-claim { font-size: 9.5px; }
  .google-review-divider { height: 13px; }
  .site-header { height: 60px; }
  .site-header .nav {
    width: 100%;
    height: 60px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
    padding: 0 7px;
  }
  .site-header .logo {
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .site-header .logo .astra-brand-logo { height: 42px; gap: 5px; }
  .site-header .logo .brand-symbol { width: 36px; height: 36px; }
  .site-header .logo .brand-wordmark { font-size: 13px; letter-spacing: .045em; }
  .site-header .nav-links { display: none; }
  .site-header .nav-cta { height: 100%; gap: 4px; min-width: 0; align-items: center; }
  .site-header .nav-phone,
  .site-header .nav-cta .btn-primary {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .site-header .nav-phone { font-size: 13px; }
  .site-header .nav-cta .btn-primary {
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }
  .site-header .menu-btn {
    position: relative;
    width: 32px;
    height: 36px;
    margin: 0;
    padding: 7px;
    border: 0;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
  }
  .site-header .menu-btn span,
  .site-header .menu-btn span::before,
  .site-header .menu-btn span::after {
    width: 18px;
    height: 2px;
    background: var(--text);
  }
  .site-header .menu-btn span { position: relative; }
  .site-header .menu-btn.is-open span { background: transparent; }
  .site-header .menu-btn.is-open span::before,
  .site-header .menu-btn.is-open span::after {
    top: 0;
    background: var(--text);
  }
  .site-header .menu-btn.is-open span::before { transform: rotate(45deg); }
  .site-header .menu-btn.is-open span::after { transform: rotate(-45deg); }
  .site-header .mobile-drawer {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
    height: auto;
    padding: 8px 18px 18px;
    overflow: visible;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(27,25,26,.12);
  }
  .site-header .mobile-drawer.open {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .site-header .mobile-drawer a {
    padding: 13px 2px;
    border-bottom: 0;
    font-size: 15px;
    font-weight: 750;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .google-review-claim-desktop { display: none; }
  .google-review-claim-mobile { display: inline; }
}

@media (max-width: 900px) {
  .google-review-bar { padding-inline: 5px; }
  .google-review-bar-inner { gap: 4px; }
  .google-review-wordmark { font-size: 12px; }
  .google-review-stars { font-size: 10px; }
  .google-review-count { font-size: 8.7px; }
  .google-review-claim { font-size: 8.2px; }
  .site-header .nav { gap: 3px; padding-inline: 5px; }
  .site-header .nav-cta { gap: 3px; }
  .site-header .logo .brand-symbol { width: 31px; height: 31px; }
  .site-header .logo .brand-wordmark { font-size: 11px; letter-spacing: .035em; }
  .site-header .nav-phone,
  .site-header .nav-cta .btn-primary { font-size: 11px; }
  .site-header .nav-cta .btn-primary { padding-inline: 5px; }
}

@media (min-width: 901px) {
  .site-header .logo { display: block; }
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 0 28px;
}
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.04);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: min(100% - 8px, var(--max));
}
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}
.logo .astra-brand-logo { display: inline-flex; align-items: center; gap: 6px; min-width: 0; white-space: nowrap; }
.logo .brand-symbol { width: 36px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.logo .brand-wordmark {
  color: #3f4143;
  font-family: var(--font);
  font-size: clamp(.84rem, 3.5vw, .95rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); background: transparent; }
.nav-cta { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.nav-cta .btn {
  display: inline-flex;
  min-height: 40px;
  padding: 0 10px;
  font-size: clamp(.8rem, 3.5vw, .95rem);
}
.nav-phone {
  display: inline;
  color: var(--muted);
  font-size: clamp(.8rem, 3.5vw, .95rem);
  font-weight: 700;
  white-space: nowrap;
}
.menu-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  background: var(--surface);
}
.menu-btn span {
  display: block; width: 18px; height: 2px; background: var(--text); position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }
.menu-btn.is-open span { background: transparent; }
.menu-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-btn.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-header-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 8px;
}

@media (max-width: 900px) {
  .nav { width: min(100% - 6px, var(--max)); gap: 3px; }
  .logo .brand-symbol { width: 36px; height: 36px; }
  .logo .brand-wordmark { font-size: clamp(.76rem, 3.5vw, .84rem); letter-spacing: .045em; }
  .nav-cta { gap: 3px; }
  .nav-phone { font-size: clamp(.76rem, 3.5vw, .84rem); }
  .nav-cta .btn {
    min-height: 36px;
    padding: 0 7px;
    font-size: clamp(.76rem, 3.5vw, .84rem);
  }
  .menu-btn { width: 34px; height: 34px; border-radius: 8px; }
}
@media (max-width: 900px) {
  .logo .brand-symbol { width: 36px; height: 36px; }
  .nav-phone { font-size: clamp(.84rem, 3.5vw, .95rem); }
  .nav-cta .btn {
    min-height: 40px;
    padding: 0 10px;
    font-size: clamp(.84rem, 3.5vw, .95rem);
  }
  .menu-btn { width: 38px; height: 38px; }
}
.mobile-header-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: clamp(.74rem, 3.5vw, .86rem);
  font-weight: 700;
  white-space: nowrap;
}
.mobile-header-phone {
  border: 1px solid var(--border);
  background: var(--surface);
}
.mobile-header-quote {
  border: 1px solid var(--accent);
  background: var(--surface);
  color: var(--accent);
}

.nav-cta .btn-primary {
  border: 1px solid var(--accent);
  background: var(--surface);
  color: var(--accent);
}
.nav-cta .btn-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - var(--mobile-header-h));
  background: var(--bg);
  z-index: 120;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 16px 4px;
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer .drawer-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 24px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,9,0.15) 0%, rgba(12,10,9,0.72) 100%),
    url('/static/images/banner_hero.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 48px 0 40px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  max-width: 14ch;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 32rem;
  margin: 0 0 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 22px 0 20px;
}
.hero-proof > div {
  padding: 10px 12px;
  border-left: 2px solid rgba(255,255,255,.7);
  background: rgba(10,8,7,.28);
  backdrop-filter: blur(6px);
}
.hero-proof strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  line-height: 1.25;
}
.hero-proof span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.76);
  font-size: .78rem;
  line-height: 1.35;
}

.realtor-intro { max-width: 780px; }

.quote-intro-note {
  max-width: 650px;
  margin: 14px 0 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: var(--accent-soft);
  color: var(--text);
  font-size: .94rem;
}

@media (max-width: 900px) {
  .home-page .hero .hero-actions { display: none; }
  .home-page .hero {
    color: var(--text);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .home-page .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(250,248,245,.02) 0%,
        rgba(250,248,245,.12) 28%,
        rgba(250,248,245,.82) 52%,
        rgba(250,248,245,.98) 72%,
        var(--bg) 100%
      ),
      url('/static/images/banner_hero.jpg') 58% center/cover no-repeat;
  }
  .home-page .hero-content {
    padding-top: 36px;
    padding-bottom: 30px;
    text-shadow: none;
  }
  .home-page .hero .eyebrow {
    color: var(--accent-hover) !important;
  }
  .home-page .hero h1 {
    color: var(--text);
  }
  .home-page .hero-proof > div {
    border: 1px solid rgba(213,90,106,.28);
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,.76);
    box-shadow: 0 8px 24px rgba(60,45,30,.07);
    backdrop-filter: blur(10px);
  }
  .home-page .hero-proof strong {
    color: var(--text);
  }
  .home-page .hero-proof span {
    color: var(--muted);
  }
}

/* About page */
.about-page main {
  overflow: hidden;
}
.about-hero {
  position: relative;
  min-height: clamp(560px, 72vw, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(68px, 9vw, 110px) 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.about-hero-image,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-hero-image {
  object-fit: cover;
  object-position: center 54%;
}
.about-hero-shade {
  background: linear-gradient(90deg, rgba(22,19,18,.78) 0%, rgba(22,19,18,.53) 42%, rgba(22,19,18,.1) 80%);
}
.about-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}
.about-hero h1,
.about-statement h2,
.about-cta h2 {
  font-family: var(--serif);
  letter-spacing: -.035em;
}
.about-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: var(--type-hero);
  font-weight: 750;
  line-height: 1.1;
}
.about-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.06rem, 1.9vw, 1.28rem);
  line-height: 1.65;
}
.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2.7vw, 30px);
  background: #ece7e5;
  box-shadow: 0 24px 64px rgba(28, 25, 23, .11);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-fleet-photo {
  aspect-ratio: 16 / 9;
}
.about-fleet-photo img {
  object-position: center 62%;
}
.about-proof {
  background: var(--accent);
  color: white;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
.about-proof-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0 12px;
}
.about-proof-grid > div {
  flex: 0 0 auto;
  width: max-content;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 16px;
  text-align: center;
}
.about-proof-grid > div + div { border-left: 1px solid rgba(255,255,255,.14); }
.about-proof strong {
  color: white;
  font-size: 25px;
  line-height: 1;
  letter-spacing: normal;
}
.about-proof span {
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-proof .proof-gta { display: inline; }
.about-proof .proof-dot { display: inline; }
.about-proof-summary {
  margin: 0;
  padding: 14px 18px 16px;
  color: rgba(255,255,255,.92);
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
}
.about-recognition {
  padding: 22px max(5vw, 24px) 0;
  overflow: hidden;
  background: #f3e8e7;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
.about-recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 18px;
}
.about-award-card {
  min-height: 156px;
  padding: 18px 24px;
  border: 1px solid rgba(213,90,106,.18);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.66);
}
.about-award-card > img {
  width: auto;
  height: 118px;
  max-width: min(38%, 190px);
  object-fit: contain;
}
.about-award-copy { min-width: 0; }
.about-award-copy p {
  margin: 0 0 7px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.about-award-copy > strong {
  display: block;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.about-award-years {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.about-award-years span {
  min-width: 62px;
  padding: 7px 10px 6px;
  border: 1px solid rgba(213,90,106,.35);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-align: center;
}
.about-press-card {
  width: 100%;
  min-height: 156px;
  padding: 18px 20px;
  border: 1px solid rgba(170,41,79,.16);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: #f1dde1;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(80,45,55,.08);
}
.about-press-card > span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about-press-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.about-press-outlet {
  min-width: 0;
  height: 70px;
  padding: 10px 14px;
  overflow: hidden;
  border: 1px solid rgba(170,41,79,.14);
  border-radius: 13px;
  display: grid;
  place-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-press-outlet:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(80,45,55,.12);
}
.about-press-outlet img {
  width: 100%;
  height: 42px;
  object-fit: contain;
}
.about-press-best { background: #b55169; }
.about-press-redfin { padding: 0 14px; background: white; }
.about-press-redfin img {
  height: 34px;
  object-fit: contain;
}
.about-client-marquee {
  width: auto;
  margin: 22px max(-5vw, -24px) 0;
  padding: 20px max(5vw, 24px) 24px;
  overflow: hidden;
  background: white;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.about-client-track {
  width: max-content;
  display: flex;
  animation: about-client-logo-scroll 34s linear infinite;
  will-change: transform;
}
.about-client-group {
  display: flex;
  gap: 8px;
  padding-right: 8px;
}
.about-client-logo {
  width: clamp(152px, 13vw, 190px);
  height: 86px;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: white;
}
.about-client-logo img {
  width: auto;
  height: auto;
  max-width: 98%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .82;
  transform: scale(1.24);
}
.about-client-marquee:hover .about-client-track { animation-play-state: paused; }
@keyframes about-client-logo-scroll { to { transform: translateX(-50%); } }
.about-structure {
  padding-block: clamp(64px, 9vw, 112px);
  background: #fff;
}
.about-statement {
  max-width: 870px;
  margin: 0 auto clamp(48px, 8vw, 96px);
  text-align: center;
}
.about-statement h2 {
  margin: 0 0 24px;
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
}
.about-statement > p {
  max-width: 730px;
  margin: 0 auto;
  color: #5f5855;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}
.about-story-copy {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}
.about-story-copy p {
  margin: 0;
  color: #5f5855;
  font-size: clamp(1.02rem, 1.65vw, 1.16rem);
  line-height: 1.72;
}
.about-designers {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  max-width: 1000px;
  margin: 0 auto clamp(64px, 9vw, 112px);
}
.about-designers-copy h2 {
  max-width: 560px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.about-designers-copy p {
  max-width: 590px;
  margin: 0 0 14px;
  color: #5f5855;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.7;
}
.about-designers-copy p:last-child {
  margin-bottom: 0;
}
.about-designers-photo {
  aspect-ratio: 3 / 4;
}
.about-designers-photo img {
  object-position: center;
}
.about-movers {
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) minmax(300px, .9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  max-width: 1120px;
  margin: 0 auto clamp(64px, 9vw, 112px);
  padding: clamp(24px, 4vw, 46px);
  border-radius: clamp(22px, 3vw, 34px);
  background: var(--accent-soft);
}
.about-movers-photo {
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 44px rgba(28, 25, 23, .08);
}
.about-movers-photo img {
  object-position: center;
}
.about-movers-copy h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.about-movers-copy p {
  margin: 0 0 13px;
  color: #5f5855;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.68;
}
.about-movers-copy p:last-child {
  margin-bottom: 0;
}
.about-collection {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  max-width: 1120px;
  margin-inline: auto;
}
.about-team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: 0 22px 54px rgba(28, 25, 23, .09);
}
.about-team-photo img {
  object-position: center 35%;
}
.about-warehouse-photo img {
  object-position: center;
}
.about-warehouse-photo {
  aspect-ratio: 4 / 3;
}
.about-collection > p {
  position: relative;
  margin: 0;
  padding-top: 30px;
  color: #3f3936;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.025em;
}
.about-collection > p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  border-radius: 99px;
  background: var(--accent);
}
.about-review-section {
  padding-block: clamp(62px, 8vw, 96px);
  background: var(--bg);
}
.about-review-wrap {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(440px, 1.25fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}
.about-review-heading h2 {
  max-width: 480px;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.about-review-card {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(213,90,106,.24);
  border-radius: 26px;
  background: white;
  box-shadow: 0 20px 56px rgba(28,25,23,.08);
}
.about-review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.about-review-meta img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.about-review-meta span {
  color: #f5a623;
  letter-spacing: .12em;
}
.about-review-card blockquote {
  margin: 0 0 22px;
  color: #2e2927;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.about-review-card figcaption {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.about-review-card figcaption a {
  border-bottom: 1px solid currentColor;
}
.about-clients {
  padding: clamp(48px, 6vw, 72px) 0;
  background: white;
  text-align: center;
}
.about-clients h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.about-logo-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #fff;
}
.about-logo-track {
  width: max-content;
  display: flex;
  animation: about-logo-scroll 38s linear infinite;
}
.about-logo-group {
  display: flex;
}
.about-logo-group > span {
  width: 150px;
  height: 82px;
  display: grid;
  place-items: center;
  padding: 17px 22px;
  border-right: 1px solid var(--border);
}
.about-logo-group img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
}
@keyframes about-logo-scroll {
  to { transform: translateX(-50%); }
}
.about-cta {
  padding: clamp(68px, 9vw, 104px) 0;
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}
.about-cta .eyebrow {
  color: var(--accent);
}
.about-cta h2 {
  margin: 0 0 14px;
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
}
.about-cta p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}
.about-page .site-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 570px;
    padding: 56px 0 44px;
    align-items: flex-end;
  }
  .about-hero-image {
    object-position: 58% center;
  }
  .about-hero-shade {
    background: linear-gradient(0deg, rgba(22,19,18,.88) 0%, rgba(22,19,18,.5) 48%, rgba(22,19,18,.08) 78%);
  }
  .about-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }
  .about-hero p {
    font-size: 1rem;
    line-height: 1.62;
  }
  .about-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 12px;
  }
  .about-proof-grid > div {
    width: auto;
    min-height: 62px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 12px 8px 10px;
  }
  .about-proof-grid > div + div { border-left: 0; }
  .about-proof-grid > div:nth-child(even) { border-left: 1px solid rgba(255,255,255,.14); }
  .about-proof-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .about-proof strong {
    min-height: 24px;
    display: flex;
    align-items: center;
    font-size: 20px;
    white-space: nowrap;
  }
  .about-proof span {
    max-width: none;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }
  .about-proof .proof-gta { display: block; }
  .about-proof .proof-dot { display: none; }
  .about-proof-summary {
    padding: 12px 18px 15px;
    font-size: 12px;
  }
  .about-recognition { padding: 18px 18px 0; }
  .about-recognition-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-award-card {
    min-height: 0;
    padding: 17px;
    gap: 14px;
  }
  .about-award-card > img { height: 108px; max-width: 34%; }
  .about-award-copy p { margin-bottom: 6px; font-size: 10px; }
  .about-award-copy > strong { font-size: 21px; }
  .about-award-years { gap: 5px; margin-top: 9px; }
  .about-award-years span { min-width: 48px; padding: 6px 6px 5px; font-size: 10px; }
  .about-press-card {
    min-height: 0;
    padding: 16px;
    gap: 10px;
    border-radius: 16px;
  }
  .about-press-card > span { font-size: 10px; }
  .about-press-links { gap: 8px; }
  .about-press-outlet { height: 62px; padding: 9px 10px; border-radius: 11px; }
  .about-press-outlet img { height: 38px; }
  .about-press-redfin { padding: 0 10px; }
  .about-press-redfin img { height: 30px; }
  .about-client-marquee {
    margin: 18px -18px 0;
    padding: 18px 18px 22px;
  }
  .about-client-track { animation-duration: 42s; }
  .about-client-group { gap: 6px; padding-right: 6px; }
  .about-client-logo { width: 44vw; max-width: 178px; height: 76px; padding: 6px; border-radius: 10px; }
  .about-client-logo img { max-width: 100%; max-height: 52px; }
  .about-structure {
    padding-block: 62px;
  }
  .about-statement {
    margin-bottom: 42px;
    text-align: left;
  }
  .about-statement h2 {
    font-size: var(--type-section);
  }
  .about-statement > p {
    font-size: 1rem;
  }
  .about-story-copy {
    gap: 14px;
  }
  .about-designers {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 62px;
  }
  .about-designers-copy h2 {
    margin-bottom: 18px;
    font-size: var(--type-section);
  }
  .about-designers-copy p {
    font-size: 1rem;
  }
  .about-designers-photo {
    aspect-ratio: 3 / 4;
  }
  .about-movers {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 62px;
    padding: 18px 18px 28px;
    border-radius: 22px;
  }
  .about-movers-photo {
    aspect-ratio: 16 / 9;
  }
  .about-movers-copy h2 {
    margin-bottom: 17px;
    font-size: var(--type-section);
  }
  .about-movers-copy p {
    font-size: 1rem;
  }
  .about-collection {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-team-photo {
    aspect-ratio: 4 / 5;
  }
  .about-warehouse-photo {
    aspect-ratio: 4 / 3;
  }
  .about-collection > p {
    padding-top: 24px;
    font-size: clamp(1.55rem, 7.8vw, 2.15rem);
  }
  .about-review-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-review-card {
    padding: 26px 22px;
    border-radius: 20px;
  }
  .about-review-card blockquote {
    font-size: 1.12rem;
  }
  .about-clients {
    padding-block: 48px;
    text-align: left;
  }
  .about-clients h2 {
    margin-bottom: 22px;
  }
  .about-logo-group > span {
    width: 125px;
    height: 72px;
    padding: 14px 18px;
  }
  .about-cta {
    padding: 64px 0 84px;
    text-align: left;
  }
  .about-cta h2 {
    font-size: var(--type-section);
  }
  .about-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-logo-track {
    animation-play-state: paused;
  }
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  padding: 28px 0;
}
.trust-strip img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.2s;
}
.trust-strip img:hover { filter: none; }

/* Cards / grids */
.grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; font-size: 1.1rem; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 1rem; }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
}
.price-card h3 { margin: 0; font-size: 1.15rem; }
.price-card .price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 4px 0;
}
.price-card .price span { font-size: 0.95rem; color: var(--muted); font-family: var(--font); font-weight: 500; }
.price-card ul { margin: 8px 0 16px; flex: 1; }
.price-card li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--muted);
  font-size: 0.98rem;
}
.price-card li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Pricing page */
.pricing-page .page-hero {
  padding-bottom: 32px;
}
.pricing-page .page-hero p {
  max-width: 48rem;
}
.pricing-vacant-section {
  padding-top: 28px;
}
.pricing-vacant-shell {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.pricing-section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.pricing-vacant-shell .pricing-section-heading {
  margin-bottom: 18px;
  text-align: left;
}
.pricing-vacant-shell .pricing-section-heading .section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--type-section);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.pricing-section-heading .section-sub {
  max-width: 820px;
  margin: 0 auto;
}
.pricing-promotion {
  width: min(100%, 1120px);
  margin: 0 auto 22px;
  padding: 15px 18px;
  border: 1px solid rgba(213, 90, 106, .28);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  background: #fbf4f3;
  color: var(--text);
}
.pricing-promotion strong { color: var(--accent-dark); white-space: nowrap; }
.pricing-promotion span { color: var(--muted); }
.pricing-property-grid {
  align-items: stretch;
}
.pricing-property-card {
  min-height: 390px;
  padding: 26px 22px 22px;
  gap: 0;
  overflow: visible;
}
.pricing-card-top {
  min-height: 76px;
}
.pricing-property-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.pricing-card-top p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
  margin: 0;
}
.pricing-card-price {
  margin: 8px 0 18px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.pricing-card-price small {
  color: var(--muted);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
}
.pricing-card-range {
  flex: 1;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  display: grid;
  align-content: start;
  gap: 5px;
  margin-bottom: 22px;
}
.pricing-card-range strong { font-size: .94rem; line-height: 1.4; }
.pricing-card-range span { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.pricing-card-factors {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding: 17px 0 18px;
}
.pricing-card-factors p {
  display: grid;
  gap: 2px;
  margin: 0;
}
.pricing-card-factors strong {
  font-size: .82rem;
  line-height: 1.3;
}
.pricing-card-factors span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}
.pricing-property-card .price {
  font-size: clamp(1.72rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin: auto 0 22px;
  white-space: nowrap;
}
.pricing-swipe-hint { display: none; }
.pricing-property-card .price small,
.pricing-info-price small {
  color: var(--muted);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
}
.pricing-determines {
  max-width: 860px;
  margin: 30px auto 0;
  padding: 26px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-determines > h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 1.8rem);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 18px;
  text-align: center;
}
.pricing-determines-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.pricing-determines-grid > div + div {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.pricing-determines h4 {
  font-size: 1rem;
  margin: 0 0 7px;
}
.pricing-determines p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.pricing-secondary-section {
  background: var(--surface-2);
}
.pricing-split-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.pricing-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}
.pricing-info-card h2,
.pricing-terms h2 {
  font-family: var(--serif);
  font-size: var(--type-card);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.pricing-final-cta h2 {
  font-family: var(--serif);
  font-size: var(--type-section);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.pricing-info-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 4px 0 12px;
}
.pricing-range-label {
  display: block;
  color: var(--text);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  margin: 5px 0 3px;
  text-transform: uppercase;
}
.pricing-occupied-card .pricing-info-price { margin-top: 0; }
.occupied-pricing-rows { margin: 16px 0 18px; display: grid; gap: 8px; }
.occupied-pricing-rows > div { padding: 12px 13px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.occupied-pricing-rows strong { font-size: 15px; }
.occupied-pricing-rows b { color: var(--astra-pink-dark); font-size: 15px; white-space: nowrap; }
.occupied-pricing-rows small { font-size: 10px; }
.pricing-info-card > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.pricing-info-card .pricing-note {
  background: var(--accent-soft);
  border-radius: 10px;
  color: var(--text);
  padding: 11px 13px;
}
.pricing-info-card > .pricing-final-note {
  font-size: .88rem;
  line-height: 1.5;
  margin: 12px 0 0;
}
.pricing-info-card > .pricing-addon-intro {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}
.pricing-addon-group {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}
.pricing-addon-group + .pricing-addon-group { margin-top: 14px; }
.pricing-addon-feature {
  padding: 17px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px 20px;
  background: var(--accent-soft);
}
.pricing-addon-feature h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.25;
}
.pricing-addon-feature p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}
.pricing-addon-feature > strong { white-space: nowrap; font-size: .96rem; }
.pricing-addon-feature > strong small { color: var(--muted); font-size: .74rem; }
.pricing-listing-media-group > h3 {
  margin: 0;
  padding: 14px 18px 11px;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.2;
}
.pricing-media-list {
  border-top: 1px solid var(--border);
  margin: 0;
  padding: 0 18px;
}
.pricing-media-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.pricing-media-list > div:last-child { border-bottom: 0; }
.pricing-media-list span {
  color: var(--muted);
}
.pricing-media-list strong {
  flex: 0 0 auto;
  font-size: .95rem;
}
.pricing-terms-section {
  background: #fff;
}
.pricing-terms {
  max-width: 860px;
}
.pricing-terms h2 {
  font-size: 1.5rem;
}
.pricing-terms p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
  margin: 0 0 9px;
}
.pricing-final-cta-section {
  padding-top: 40px;
}
.pricing-final-cta {
  background: var(--ink);
  border-radius: 24px;
  color: #fff;
  padding: 42px 24px;
  text-align: center;
}
.pricing-final-cta .eyebrow {
  color: var(--accent-light);
}
.pricing-final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}
.pricing-final-cta p {
  color: rgba(255,255,255,.72);
  margin: 0 auto 22px;
  max-width: 42rem;
}

/* Gallery */
.gallery-portfolio-section {
  overflow: visible;
  background:
    radial-gradient(circle at 93% 4%, rgba(216, 89, 112, .08), transparent 23rem),
    var(--surface);
}
.gallery-portfolio-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.gallery-portfolio-heading .eyebrow { margin-bottom: 7px; }
.gallery-portfolio-heading .section-title { margin: 0; }
.gallery-portfolio-heading > p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}
.gallery-filter-bar {
  position: sticky;
  top: 60px;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0 0 24px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(54, 31, 37, .07);
  scrollbar-width: none;
}
.gallery-filter-bar::-webkit-scrollbar { display: none; }
.gallery-filter {
  min-width: 0;
  min-height: 44px;
  padding: 10px 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: 800 12px/1 "Segoe UI", Arial, sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.gallery-filter:hover { color: var(--accent-dark); }
.gallery-filter:active { transform: scale(.97); }
.gallery-filter.is-active {
  background: var(--accent-dark);
  color: #fff;
}
.gallery-filter:focus-visible {
  outline: 3px solid rgba(216, 89, 112, .35);
  outline-offset: 2px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-grid .g-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.gallery-grid .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.04); }
.gallery-grid .g-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-project[hidden] { display: none; }
.gallery-portfolio-grid .gallery-project {
  position: relative;
  aspect-ratio: auto;
  min-height: 146px;
  box-shadow: 0 8px 24px rgba(38, 25, 29, .06);
}
.gallery-portfolio-grid .gallery-project--feature {
  grid-column: span 2;
  min-height: 292px;
}
.gallery-portfolio-grid .gallery-project--tall { min-height: 292px; }
.gallery-portfolio-grid.is-filtered .gallery-project {
  grid-column: span 1;
  min-height: 176px;
}
.gallery-portfolio-grid.is-filtered .gallery-project.is-filter-lead {
  grid-column: span 2;
  min-height: 250px;
}
.gallery-transformations-section {
  overflow: visible;
  background: var(--surface-2);
}
.gallery-transformations-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  max-width: 36rem;
}
.gallery-transformations-heading .eyebrow { margin-bottom: 4px; }
.gallery-transformations-heading .section-title { margin: 0; }
.gallery-transformations-heading .section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
.ba-swipe-hint {
  display: none;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .ba-swipe-hint { display: block; }
}
.ba-swipe-hint span {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1;
  animation: swipe-cue-soft 2.4s ease-in-out infinite;
}
@keyframes swipe-cue-soft {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.ba-board {
  display: flex;
  gap: 12px;
  margin-inline: -18px;
  padding: 2px 18px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 18px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.ba-board::-webkit-scrollbar { display: none; }
.ba-card {
  flex: 0 0 86%;
  min-width: 0;
  scroll-snap-align: start;
  background: transparent;
  box-shadow: none;
}
.ba-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f4eeec;
}
.ba-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 1366;
  object-fit: contain;
  object-position: center top;
  transition: transform .55s ease;
}
.ba-label {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(250, 247, 244, .86);
  color: #3a3336;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-label--before { top: 10px; left: 10px; }
.ba-label--after { top: calc(50% + 8px); left: 10px; }

@media (max-width: 700px) {
  .gallery-transformations-section { overflow-x: hidden; }
  .ba-board {
    min-width: 0;
    width: calc(100% + 36px);
    max-width: calc(100% + 36px);
  }
}
@media (min-width: 701px) {
  .ba-swipe-hint { display: none !important; }
  .ba-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    width: auto;
    max-width: none;
    align-items: start;
  }
  .ba-card {
    flex: none;
    scroll-snap-align: unset;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .ba-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "feat1 feat1 s2"
      "feat1 feat1 s3"
      "s4 feat2 feat2"
      "s5 feat2 feat2"
      "lg lg md";
    gap: 18px 14px;
  }
  .ba-card--xl { grid-column: auto; }
  .ba-card:nth-child(1) { grid-area: feat1; }
  .ba-card:nth-child(2) { grid-area: s2; }
  .ba-card:nth-child(3) { grid-area: s3; }
  .ba-card:nth-child(4) { grid-area: s4; }
  .ba-card:nth-child(5) { grid-area: s5; }
  .ba-card:nth-child(6) { grid-area: feat2; }
  .ba-card:nth-child(7) { grid-area: lg; }
  .ba-card:nth-child(8) { grid-area: md; }
}
@media (min-width: 1101px) {
  .ba-board {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
      "feat1 feat1 feat1 feat1 feat1 feat1 feat1 feat1 s2 s2 s2 s2"
      "feat1 feat1 feat1 feat1 feat1 feat1 feat1 feat1 s3 s3 s3 s3"
      "s4 s4 s4 s4 feat2 feat2 feat2 feat2 feat2 feat2 feat2 feat2"
      "s5 s5 s5 s5 feat2 feat2 feat2 feat2 feat2 feat2 feat2 feat2"
      "lg lg lg lg lg lg lg md md md md md";
    gap: 22px 20px;
    align-items: start;
  }
  .ba-card--xl,
  .ba-card--lg,
  .ba-card--md,
  .ba-card--sm { grid-column: auto; }
  .ba-card:nth-child(1) { grid-area: feat1; }
  .ba-card:nth-child(2) { grid-area: s2; }
  .ba-card:nth-child(3) { grid-area: s3; }
  .ba-card:nth-child(4) { grid-area: s4; }
  .ba-card:nth-child(5) { grid-area: s5; }
  .ba-card:nth-child(6) { grid-area: feat2; }
  .ba-card:nth-child(7) { grid-area: lg; }
  .ba-card:nth-child(8) { grid-area: md; }
}

@media (hover: hover) and (min-width: 701px) {
  .ba-card:hover .ba-frame img { transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .ba-frame img { transition: none; }
  .ba-card:hover .ba-frame img { transform: none; }
  .ba-swipe-hint span { animation: none; }
}

.instagram-feed-section { background: var(--surface); }
.instagram-feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.instagram-feed-heading .eyebrow { margin-bottom: 8px; }
.instagram-feed-heading .section-title { margin-bottom: 8px; }
.instagram-feed-heading p:not(.eyebrow) { margin: 0; color: var(--muted); }
.instagram-feed-shell {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.instagram-feed-shell iframe {
  width: 100%;
  height: min(1030px, calc((100vw - 32px) * .76 + 210px));
  display: block;
  border: 0;
  background: white;
}

@media (max-width: 900px) {
  .instagram-feed-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .instagram-feed-heading .btn { width: 100%; }
  .instagram-feed-shell { border-radius: 14px; }
}

/* Process */
.process {
  display: grid;
  gap: 14px;
}
.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.process-num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.process-step h3 { margin: 0 0 4px; font-size: 1rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Reviews */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }
.review-card blockquote {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}
.review-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* Our Clients */
.clients-section {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.clients-heading {
  text-align: left;
}
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.client-logo {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.client-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  margin: 20px 0;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.cta-band p { color: rgba(255,255,255,0.75); margin: 0 0 20px; }
.cta-band .hero-actions { justify-content: center; }

@media (min-width: 901px) {
  .clients-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .client-logo {
    min-height: 112px;
    padding: 18px;
  }
  .client-logo img {
    max-height: 68px;
  }
}

/* Footer */
.site-footer {
  background: #fff;
  color: #61595c;
  padding: 56px 0;
  margin-top: 40px;
  border-top: 1px solid #eadde1;
  font-size: 15px;
}
.footer-shell {
  width: calc(100% - 80px);
  max-width: 1720px;
  margin-inline: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 28% 20% 27% 17.5%;
  column-gap: 2.5%;
  align-items: start;
}
.footer-overview { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-brand-mark { display: inline-flex; align-items: center; gap: 10px; min-width: 0; white-space: nowrap; }
.footer-brand-mark .brand-symbol { width: 58px; height: 58px; flex: 0 0 auto; object-fit: contain; }
.footer-brand-mark .brand-wordmark {
  color: #3f4143;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer .footer-summary { max-width: 390px; margin: 0; color: #61595c; font-size: 16px; line-height: 1.58; }
.site-footer h4 {
  color: #1b191a;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin: 7px 0 16px;
}
.site-footer a { color: #4f484b; }
.site-footer a:hover { color: var(--accent-dark); }
.site-footer .footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.site-footer .footer-proof { margin: 0; color: #702438; font-size: 13px; font-weight: 800; line-height: 1.45; }
.site-footer .footer-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 2px;
  padding: 10px 16px;
  border: 1px solid #d55a6a;
  border-radius: 999px;
  color: #d55a6a;
  font-weight: 850;
}
.site-footer .footer-cta-link:hover { border-color: #702438; background: #fbf4f3; color: #702438; }
.site-footer .footer-area-list {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
  color: #61595c;
  line-height: 1.45;
}
.site-footer .footer-area-list > * { white-space: nowrap; }
.site-footer .footer-text-link { color: #702438; font-weight: 800; }
.site-footer address { display: flex; flex-direction: column; gap: 10px; color: #61595c; font-style: normal; line-height: 1.55; }
.site-footer address a:first-child { color: inherit; font-size: inherit; font-weight: inherit; }
.footer-social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}
.footer-social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  color: var(--accent-dark);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social-links a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}
.footer-social-links svg { width: 21px; height: 21px; }
.footer-social-links rect,
.footer-social-links circle:not(.social-icon-dot) { fill: none; stroke: currentColor; stroke-width: 1.9; }
.footer-social-links .social-icon-dot,
.footer-social-links path { fill: currentColor; }
.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid #eadde1;
  padding-top: 20px;
  font-size: 13px;
  color: #756d70;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* Page hero (inner) */
.page-hero {
  padding: 40px 0 20px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.page-hero p { color: var(--muted); margin: 0 auto; max-width: 36rem; }

/* Shared banner for Services-style inner pages */
.inner-page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(213,90,106,.13), transparent 30%),
    linear-gradient(145deg, #f8f1ef 0%, #ffffff 58%, #f2e7e7 100%);
}
.inner-page-hero__inner {
  padding-top: 86px;
  padding-bottom: 76px;
  text-align: left;
}
.inner-page-hero h1 {
  max-width: 850px;
  margin: 0 0 23px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.15;
}
.about-page .inner-page-hero h1 { margin-bottom: 0; }
.inner-page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.pricing-cost-summary {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 27px 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.pricing-cost-summary h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
}
.pricing-cost-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .inner-page-hero__inner { padding-top: 34px; padding-bottom: 30px; }
  .inner-page-hero h1 {
    margin-bottom: 12px;
    font-size: 22px;
    letter-spacing: -.035em;
  }
  .inner-page-hero p { font-size: 16px; line-height: 1.5; }
  .pricing-cost-summary { margin-top: 27px; padding: 23px 4px 0; }
  .pricing-cost-summary h2 { font-size: 22px; }
  .pricing-cost-summary p { font-size: 15px; line-height: 1.55; }
}

/* Shared compact page intro — matches site.css so snapshot pages stay consistent. */
.page-intro {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(213,90,106,.13), transparent 30%),
    linear-gradient(145deg, #f8f1ef 0%, #ffffff 58%, #f2e7e7 100%);
}
.page-intro__inner {
  padding: 48px 0;
  text-align: left;
}
.pricing-page .page-intro,
.about-page .page-intro,
main:has(.gallery-portfolio-section) .page-intro {
  padding-left: var(--page-gutter, 18px);
  padding-right: var(--page-gutter, 18px);
}
.page-intro .eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-intro h1 {
  max-width: 18em;
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font, "Segoe UI", Arial, Helvetica, sans-serif);
  font-size: var(--type-hero);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1.1;
  overflow-wrap: break-word;
}
.page-intro__desc {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .page-intro { min-height: 0; }
  .page-intro__inner { padding: 30px 0; }
  .page-intro .eyebrow { font-size: 13px; letter-spacing: .10em; }
  .page-intro h1 { font-size: 30px; line-height: 1.12; }
  .page-intro__desc { font-size: 15px; line-height: 1.5; }
}

/* Desktop inner-page alignment: Gallery is the shared 1120px grid. */
@media (min-width: 901px) {
  .about-hero-copy {
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
  }

  .pricing-terms {
    width: min(100% - 32px, var(--max));
    max-width: var(--max);
  }

  .pricing-terms p {
    max-width: 860px;
  }
}

/* Forms */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-input, .form-textarea, .form-select {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-input.error { border-color: var(--danger); }

/* ========== QUOTE WIZARD ========== */
.quote-page { padding-bottom: 120px; }
.quote-progress {
  display: flex;
  gap: 6px;
  margin: 8px 0 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.quote-progress .step-pill {
  flex: 1;
  min-width: 72px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 8px 6px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid transparent;
}
.quote-progress .step-pill.active {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.quote-progress .step-pill.done {
  color: var(--ok);
  background: var(--ok-soft);
}

.quote-panel { display: none; animation: fadeUp 0.28s ease; }
.quote-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  min-height: 72px;
}
.chip:hover { border-color: var(--faint); }
.chip.selected {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(28, 25, 23, 0.06);
}
.chip .chip-title { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.chip .chip-sub { font-size: 0.9rem; color: var(--muted); }
.chip .chip-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}
.chip.multi.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.chip.multi.selected .chip-title { color: var(--ink); }

.area-group { margin-bottom: 22px; }
.area-group h3 {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 700;
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.soft-details {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.soft-details .chip { min-height: 56px; padding: 14px; }

.lead-gate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
}
.lead-gate-card .gate-preview {
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.gate-preview .blur-total {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  filter: blur(7px);
  user-select: none;
  letter-spacing: -0.02em;
}
.gate-preview .gate-msg {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}

.quote-result {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.quote-result .total-big {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
}
.quote-result .total-note { color: var(--muted); margin-bottom: 20px; }
.line-items {
  text-align: left;
  background: var(--bg);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 0 20px;
}
.line-items .line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.line-items .line:last-child { border-bottom: none; font-weight: 700; }
.line-items .line span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }
.result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(28, 25, 23, 0.06);
}
.quote-sticky-inner {
  width: min(100%, 560px);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.quote-sticky .sticky-meta {
  flex: 1;
  min-width: 0;
}
.quote-sticky .sticky-meta strong {
  display: block;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quote-sticky .sticky-meta span {
  font-size: 0.84rem;
  color: var(--muted);
}
.quote-sticky .btn { flex: 0 0 auto; min-width: 120px; }

.form-status {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--ok-soft); color: var(--ok); }
.form-status.err { background: #fef2f2; color: var(--danger); }

.teaser-steps {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.teaser-step {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
}
.teaser-step .n {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

/* Permanent mobile action bar */
body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 0.88fr 1.3fr 1.18fr;
  gap: 8px;
  padding: 10px 9px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(28, 25, 23, 0.08);
}
.mobile-action-bar a {
  min-width: 0;
  min-height: 52px;
  padding: 0 6px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.8rem, 3.5vw, 0.95rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.mobile-action-bar .mobile-action-primary {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
}
.mobile-action-bar .mobile-action-whatsapp {
  border-color: var(--ok);
  color: var(--ok);
}
.mobile-action-bar a:active { transform: scale(0.98); }
.fab-call { display: none; }
body.on-quote .quote-sticky {
  bottom: calc(73px + env(safe-area-inset-bottom));
}

/* Desktop */
@media (min-width: 901px) {
  body { padding-bottom: 0; }
  .mobile-action-bar { display: none; }
  .section { padding: 80px 0; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gallery-grid .g-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-portfolio-heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 32rem);
    align-items: end;
    gap: 40px;
  }
  .gallery-portfolio-section { overflow: hidden; }
  .gallery-portfolio-heading > p { justify-self: end; }
  .gallery-filter-bar {
    position: static;
    display: flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 30px;
    overflow-x: auto;
  }
  .gallery-filter {
    flex: 0 0 auto;
    min-width: auto;
    padding: 10px 18px;
    font-size: 14px;
  }
  .gallery-portfolio-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 128px;
    gap: 14px;
  }
  .gallery-portfolio-grid .gallery-project {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 0;
  }
  .gallery-portfolio-grid .gallery-project--feature {
    grid-column: span 8;
    grid-row: span 3;
    min-height: 0;
  }
  .gallery-portfolio-grid .gallery-project--tall {
    grid-column: span 4;
    grid-row: span 3;
    min-height: 0;
  }
  .gallery-portfolio-grid .gallery-project--wide {
    grid-column: span 8;
    grid-row: span 2;
  }
  .gallery-portfolio-grid.is-filtered .gallery-project {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 0;
  }
  .gallery-portfolio-grid.is-filtered .gallery-project.is-filter-lead {
    grid-column: span 4;
    min-height: 0;
  }

  .process { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 28% 20% 27% 17.5%; }
  .chip-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .soft-details { grid-template-columns: repeat(3, 1fr); }
  .result-actions { flex-direction: row; justify-content: center; }
  .hero { border-radius: 0 0 36px 36px; align-items: center; }
  .hero-content { padding: 80px 0; }
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0 24px;
  }
  .hero-proof > div {
    padding: 12px 14px;
    border-left: 0;
    border-top: 2px solid rgba(255,255,255,.7);
  }
  .hero-proof strong { font-size: 1rem; }
  .hero-proof span { font-size: .82rem; }
  .lead-gate-card, .quote-result { padding: 32px 36px; max-width: 560px; margin: 0 auto; }
  .quote-sticky-inner { width: min(100% - 32px, 720px); }
  body.on-quote .quote-sticky { bottom: 0; }
  .pricing-split-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-info-card { padding: 34px; }
  .pricing-final-cta { padding: 56px 36px; }
}

@media (min-width: 901px) {
  .nav { width: min(100% - 32px, var(--max)); gap: 16px; }
  .logo .astra-brand-logo { gap: 9px; }
  .logo .brand-symbol { width: 43px; height: 43px; }
  .logo .brand-wordmark { font-size: 16px; letter-spacing: .11em; }
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .nav-phone { display: inline; }
  .nav-cta { gap: 8px; }
  .nav-phone { font-size: .98rem; }
  .nav-cta .btn { display: inline-flex; min-height: 44px; padding: 0 18px; font-size: .96rem; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* Balanced responsive type scale across the Grok Classic inner pages. */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .section-title { font-size: var(--type-section); }
  .page-hero h1 { font-size: var(--type-hero); }
  .page-hero p,
  .section-sub { font-size: 1rem; line-height: 1.55; }
  .card h3,
  .price-card h3 { font-size: 1.15rem; }
  .card p,
  .price-card li,
  .process-step p { font-size: 0.98rem; }
  .site-footer,
  .site-footer .footer-links { font-size: 0.96rem; }
  .pricing-page .page-hero { padding-bottom: 18px; }
  .pricing-vacant-section { padding-top: 24px; }
  .pricing-property-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc((100vw - 100%) / -2);
    padding-inline: calc((100vw - 100%) / 2);
    padding-bottom: 5px;
  }
  .pricing-property-grid::-webkit-scrollbar { display: none; }
  .pricing-property-card {
    min-height: 360px;
    scroll-snap-align: start;
  }
  .pricing-card-top { min-height: 70px; margin-bottom: 0; }
  .pricing-property-card { padding: 24px 20px 20px; }
  .pricing-property-card h3 { font-size: 1.5rem; }
  .pricing-card-price { font-size: 1.85rem; }
  .pricing-promotion { grid-template-columns: 1fr; padding: 14px 15px; }
  .pricing-promotion strong { white-space: normal; }
  .pricing-swipe-hint {
    display: block;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .pricing-swipe-hint span { color: var(--accent); font-size: 18px; }
  .pricing-info-card { padding: 25px 20px; }
  .pricing-info-card .btn { width: 100%; }
  .pricing-media-list > div { font-size: .94rem; }
  .pricing-addon-feature { grid-template-columns: 1fr; gap: 8px; }
  .pricing-addon-feature > strong { white-space: normal; }
  .pricing-final-cta-section { padding-top: 28px; }
  .pricing-final-cta { border-radius: 18px; padding: 36px 20px; }
}

/* Unified Astra typography and spacing system */
:root {
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
  --serif: "Segoe UI", Arial, Helvetica, sans-serif;
  --space-section: clamp(64px, 6vw, 80px);
  --space-heading: 28px;
  --type-hero: 40px;
  --type-section: 44px;
  --type-card: 24px;
  --type-lead: 17px;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font);
}

h1,
h2,
h3,
h4,
.section-title,
.page-hero h1,
.card h3,
.price-card h3,
.footer-brand {
  font-family: var(--serif);
  font-weight: 750;
  letter-spacing: -.035em;
}

.section { padding: var(--space-section) 0; }
.section-tight { padding: 48px 0; }

.section-title {
  margin: 0 0 12px;
  font-size: var(--type-section);
  line-height: 1.08;
}

.section-sub {
  margin: 0 0 var(--space-heading);
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
}

.page-hero {
  padding: 72px 0 48px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: var(--type-hero);
  line-height: 1.02;
}

.page-hero p {
  max-width: 650px;
  font-size: var(--type-lead);
  line-height: 1.6;
}

.card,
.price-card,
.pricing-info-card {
  padding: 28px;
}

.card h3,
.price-card h3,
.pricing-property-card h3,
.pricing-info-card h2,
.pricing-terms h2,
.pricing-final-cta h2 {
  font-family: var(--serif);
  font-size: var(--type-card);
  line-height: 1.12;
  font-weight: 750;
  letter-spacing: -.03em;
}

.card h3 { margin: 0 0 10px; }
.card p { font-size: 18px; line-height: 1.6; }

.btn,
.nav-links a,
.nav-phone,
.form-label {
  font-family: var(--font);
}

.btn {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.about-hero h1,
.about-statement h2,
.about-designers-copy h2,
.about-movers-copy h2,
.about-review-heading h2,
.about-clients h2,
.about-cta h2 {
  font-family: var(--serif);
  font-weight: 750;
  letter-spacing: -.04em;
}

.about-hero h1 { font-size: var(--type-hero); }
.about-statement h2,
.about-designers-copy h2,
.about-movers-copy h2,
.about-review-heading h2,
.about-clients h2,
.about-cta h2 {
  font-size: var(--type-section);
  line-height: 1.08;
}

.about-structure,
.about-review-section,
.about-clients { padding-block: var(--space-section); }

@media (max-width: 900px) {
  :root {
    --space-section: 54px;
    --space-heading: 22px;
    --type-hero: 30px;
    --type-section: 32px;
    --type-card: 22px;
    --type-lead: 16px;
  }

  .section { padding: var(--space-section) 0; }
  .section-tight { padding: 38px 0; }
  .page-hero { padding: 48px 0 32px; }
  .page-hero h1 { font-size: var(--type-hero); }
  .page-hero p,
  .section-sub { font-size: var(--type-lead); line-height: 1.55; }
  .card,
  .price-card,
  .pricing-info-card { padding: 22px 20px; }
  .about-structure,
  .about-review-section,
  .about-clients { padding-block: var(--space-section); }
}

/* Final mobile type scale shared by About, Pricing, Gallery and Contact. */
@media (max-width: 900px) {
  body { font-size: 17px; line-height: 1.55; }

  .hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .inner-page-hero h1 { font-size: var(--type-hero); line-height: 1.1; }

  .page-intro h1 { font-size: var(--type-hero); line-height: 1.1; }
  .page-intro__desc { font-size: 15px; line-height: 1.5; }

  .section-title,
  .about-statement h2,
  .about-designers-copy h2,
  .about-movers-copy h2,
  .about-review-heading h2,
  .about-clients h2,
  .about-cta h2,
  .pricing-final-cta h2 { font-size: var(--type-section); line-height: 1.1; }

  .card h3,
  .price-card h3,
  .pricing-property-card h3,
  .pricing-info-card h2,
  .pricing-terms h2 { font-size: 21px; line-height: 1.12; }

  .hero p,
  .page-hero p,
  .section-sub,
  .card p,
  .price-card li,
  .process-step p,
  .about-hero p,
  .about-designers-copy p,
  .about-movers-copy p { font-size: 17px; line-height: 1.55; }

  .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .10em; line-height: 1.2; }
  .btn { font-size: 15px; }
  .nav-phone,
  .nav-cta .btn { font-size: 13px; }
  .mobile-action-bar a { font-size: 14px; }
  .site-footer,
  .site-footer .footer-links { font-size: 15px; }

  .form-label,
  .chip,
  .quote-sticky .sticky-meta span,
  .form-status,
  .pricing-media-list > div { font-size: 14px; }
}

@media (max-width: 900px) {
  .nav {
    width: min(100% - 20px, var(--max));
    gap: 10px;
  }
  .logo { flex: 1 1 auto; }
  .nav-cta { gap: 6px; }
  .nav-phone { display: none; }
  .nav-cta .btn {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 13px;
  }
  .menu-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 900px) {
  .nav { width: min(100% - 14px, var(--max)); }
  .nav-cta .btn {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }
  .menu-btn {
    width: 36px;
    height: 36px;
  }
}

/* Final reference-footer mobile rules. */
@media (max-width: 900px) {
  .site-footer { padding: 42px 0 105px; }
  .footer-shell { width: calc(100% - 36px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-mark .brand-symbol { width: 52px; height: 52px; }
  .footer-brand-mark .brand-wordmark { font-size: 18px; }
  .site-footer .footer-summary { font-size: 16px; }
  .site-footer .footer-cta-link { width: 100%; }
  .site-footer h4 { margin: 0 0 13px; }
  .footer-bottom { margin-top: 34px; flex-direction: column-reverse; gap: 14px; }
  .footer-bottom nav { gap: 13px 18px; }
}

/* About page — company story, operations and online booking */
.about-page .about-structure {
  padding-block: clamp(68px, 7vw, 92px);
}
.about-page .about-statement {
  max-width: 920px;
  margin-bottom: clamp(48px, 5.5vw, 68px);
}
.about-page .about-statement h2,
.about-page .about-designers-copy h2,
.about-page .about-movers-copy h2,
.about-page .about-collection-copy h2,
.about-page .about-online-copy h2,
.about-page .about-review-heading h2 {
  font-family: var(--serif);
  font-weight: 750;
  letter-spacing: -.04em;
}
.about-page .about-statement h2 {
  margin-bottom: 22px;
  font-size: var(--type-section);
}
.about-page .about-story-copy {
  max-width: 810px;
}
.about-page .about-designers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 66px);
  max-width: 1120px;
  margin-bottom: clamp(68px, 8vw, 96px);
}
.about-page .about-designers-copy h2,
.about-page .about-movers-copy h2,
.about-page .about-collection-copy h2,
.about-page .about-online-copy h2,
.about-page .about-review-heading h2 {
  margin: 0 0 20px;
  font-size: var(--type-section);
  line-height: 1.1;
}
.about-page .about-designers-copy p,
.about-page .about-collection-copy p,
.about-page .about-online-copy p {
  margin: 0;
  color: #5f5855;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.7;
}
.about-page .about-designers-photo {
  aspect-ratio: 4 / 3;
  min-height: 420px;
}
.about-page .about-designers-photo img {
  object-position: center 30%;
}
.about-page .about-movers {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(30px, 4.5vw, 58px);
  max-width: 1120px;
  margin-bottom: clamp(68px, 8vw, 96px);
  padding: clamp(24px, 3vw, 38px);
}
.about-page .about-movers-copy p {
  margin-bottom: 20px;
}
.about-operations-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(213,90,106,.24);
  color: var(--accent-dark);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .025em;
}
.about-operations-proof span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.about-operations-proof span + span::before {
  content: "·";
  margin: 0 6px;
  color: var(--accent);
}
.about-page .about-collection {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(38px, 5vw, 68px);
}
.about-page .about-warehouse-photo {
  aspect-ratio: 4 / 3;
}
.about-page .about-collection-copy p {
  max-width: 510px;
}
.about-online-section {
  border-block: 1px solid rgba(213,90,106,.16);
  background:
    radial-gradient(circle at 88% 10%, rgba(213,90,106,.13), transparent 34%),
    var(--accent-soft);
}
.about-online-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}
.about-page .about-online-copy h2 {
  max-width: 720px;
}
.about-page .about-online-copy p {
  max-width: 720px;
}
.about-online-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-online-section .btn-primary {
  background: var(--accent);
}
.about-online-section .btn-primary:hover {
  background: var(--accent-dark);
}
.about-online-section .btn-ghost {
  border-color: rgba(112,36,56,.25);
  background: rgba(255,255,255,.55);
}
.about-online-steps {
  overflow: hidden;
  border: 1px solid rgba(213,90,106,.2);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 56px rgba(60,35,43,.08);
}
.about-online-steps > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 18px 24px;
}
.about-online-steps > div + div {
  border-top: 1px solid rgba(213,90,106,.16);
}
.about-online-steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 850;
}
.about-online-steps strong {
  font-size: 1rem;
  line-height: 1.3;
}
.about-page .about-review-section {
  padding-block: clamp(68px, 7vw, 92px);
}
.about-page .about-review-wrap {
  grid-template-columns: minmax(320px, .88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
}
.about-review-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.about-review-points li {
  position: relative;
  padding-left: 27px;
  color: #4f4749;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}
.about-review-points li::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(213,90,106,.12);
}

@media (max-width: 900px) {
  .about-page .about-structure,
  .about-page .about-review-section,
  .about-page .about-online-section {
    padding-block: 54px;
  }
  .about-page .about-statement {
    margin-bottom: 42px;
  }
  .about-page .about-statement h2,
  .about-page .about-designers-copy h2,
  .about-page .about-movers-copy h2,
  .about-page .about-collection-copy h2,
  .about-page .about-online-copy h2,
  .about-page .about-review-heading h2 {
    font-size: var(--type-section);
    line-height: 1.1;
  }
  .about-page .about-designers,
  .about-page .about-movers,
  .about-page .about-collection,
  .about-online-wrap,
  .about-page .about-review-wrap {
    grid-template-columns: 1fr;
  }
  .about-page .about-designers-copy,
  .about-page .about-movers-copy,
  .about-page .about-collection-copy {
    order: 1;
  }
  .about-page .about-designers-photo,
  .about-page .about-movers-photo,
  .about-page .about-warehouse-photo {
    order: 2;
  }
  .about-page .about-designers {
    gap: 26px;
    margin-bottom: 56px;
  }
  .about-page .about-designers-photo {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }
  .about-page .about-designers-photo img {
    object-position: center 29%;
  }
  .about-page .about-movers {
    gap: 26px;
    margin-bottom: 56px;
    padding: 18px 18px 26px;
  }
  .about-operations-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    font-size: .76rem;
  }
  .about-operations-proof span {
    white-space: normal;
  }
  .about-operations-proof span + span::before {
    display: none;
  }
  .about-page .about-collection {
    gap: 28px;
  }
  .about-online-wrap {
    gap: 34px;
  }
  .about-online-actions {
    display: grid;
  }
  .about-online-actions .btn {
    width: 100%;
  }
  .about-online-steps {
    border-radius: 20px;
  }
  .about-online-steps > div {
    min-height: 78px;
    padding: 15px 18px;
  }
  .about-page .about-review-wrap {
    gap: 30px;
  }
  .about-review-points {
    margin-top: 23px;
  }
}

/* Contact page — Canva concept adapted to Astra's shared header and footer. */
.contact-page {
  background: #fbf7f4;
}
.contact-page h1,
.contact-page h2,
.contact-page h3 {
  font-family: var(--font);
  color: #211d21;
  letter-spacing: -.035em;
}
.contact-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(213, 90, 106, .09), transparent 38%),
    linear-gradient(110deg, #fbf8f5 0%, #f9edef 100%);
}
.contact-hero__inner {
  padding-top: 58px;
  padding-bottom: 54px;
}
.contact-kicker {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.25;
  text-transform: uppercase;
}
.contact-hero h1 {
  max-width: 820px;
  margin: 0 0 17px;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}
.contact-hero__lead {
  max-width: 790px;
  margin: 0;
  color: #655e61;
  font-size: 17px;
  line-height: 1.45;
}
.contact-choice-section {
  padding: 40px 0 22px;
}
.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-choice-grid--single {
  grid-template-columns: 1fr;
}
.contact-choice-card {
  min-height: 202px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #ebd8dc;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(45, 31, 36, .035);
}
.contact-choice-card .contact-kicker {
  margin-bottom: 10px;
  font-size: 11px;
}
.contact-choice-card h2 {
  margin: 0 0 7px;
  font-size: var(--type-card);
  font-weight: 700;
  line-height: 1.15;
}
.contact-choice-card > p:not(.contact-kicker) {
  max-width: 520px;
  margin: 0 0 20px;
  color: #756d70;
  font-size: 14px;
  line-height: 1.4;
}
.contact-choice-card .btn {
  min-height: 42px;
  margin-top: auto;
  padding-inline: 20px;
  font-size: 13px;
  font-weight: 750;
}
.contact-main-section {
  padding: 20px 0 58px;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.66fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: stretch;
}
.contact-form-card,
.contact-details-card {
  border: 1px solid #ebd8dc;
  border-radius: 17px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(45, 31, 36, .035);
}
.contact-form-card {
  display: flex;
  flex-direction: column;
  padding: 34px 35px 36px;
}
.contact-form-card h2,
.contact-details-head h2 {
  margin: 0 0 6px;
  font-size: var(--type-card);
  font-weight: 700;
  line-height: 1.15;
}
.contact-form-intro,
.contact-details-head > p:not(.contact-kicker) {
  margin: 0;
  color: #756d70;
  font-size: 14px;
  line-height: 1.4;
}
.contact-form-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
}
.contact-page .form-group {
  gap: 6px;
  margin: 0;
}
.contact-page .form-label {
  color: #292428;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.25;
  text-transform: uppercase;
}
.contact-page .form-input,
.contact-page .form-select,
.contact-page .form-textarea {
  width: 100%;
  border-color: #e5cbd1;
  border-radius: 10px;
  background: #fffdfd;
  color: #292428;
  font-size: 14px;
}
.contact-page .form-input,
.contact-page .form-select {
  min-height: 46px;
  padding: 10px 13px;
}
.contact-page .form-textarea {
  min-height: 220px;
  padding: 13px;
  line-height: 1.45;
}
.contact-page .form-input::placeholder,
.contact-page .form-textarea::placeholder {
  color: #898083;
  opacity: 1;
}
.contact-form-wide {
  grid-column: 1 / -1;
}
.contact-form-card > form > .btn {
  align-self: flex-start;
  min-height: 42px;
  margin-top: 21px;
  padding-inline: 25px;
  font-size: 13px;
}
.contact-details-head {
  padding: 29px 29px 28px;
  border-bottom: 1px solid #ead8dc;
  background: #f8e9ec;
}
.contact-details-head .contact-kicker {
  margin-bottom: 11px;
}
.contact-details-body {
  padding: 20px 29px 28px;
}
.contact-detail-row {
  padding: 12px 0 14px;
  border-bottom: 1px solid #eadde1;
}
.contact-detail-row span {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.contact-detail-row a,
.contact-detail-row strong {
  display: block;
  color: #2a2529;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}
.contact-detail-row a:hover {
  color: var(--accent-dark);
}
.contact-detail-row small {
  display: block;
  margin-top: 2px;
  color: #7b7275;
  font-size: 11px;
  line-height: 1.35;
}
.contact-service-area {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #262125;
  color: #fff;
}
.contact-service-area h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.contact-service-area p {
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 11px;
  line-height: 1.35;
}
.contact-final-section {
  padding: 0 0 70px;
}
.contact-final-cta {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 34px;
  border-radius: 15px;
  background: var(--accent);
  color: #fff;
}
.contact-final-cta h2 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
}
.contact-final-cta p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.contact-final-cta .btn {
  flex: 0 0 auto;
  min-height: 42px;
  color: #b93f54;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-details-card {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }
  .contact-details-head {
    border-right: 1px solid #ead8dc;
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .contact-hero__inner {
    padding-top: 38px;
    padding-bottom: 35px;
  }
  .contact-kicker {
    margin-bottom: 11px;
    font-size: 11px;
  }
  .contact-hero h1 {
    margin-bottom: 13px;
    font-size: 22px;
  }
  .contact-hero__lead {
    font-size: 15px;
    line-height: 1.48;
  }
  .contact-choice-section {
    padding: 28px 0 14px;
  }
  .contact-choice-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .contact-choice-card {
    min-height: 0;
    padding: 23px 21px;
  }
  .contact-choice-card h2 {
    font-size: 22px;
  }
  .contact-choice-card > p:not(.contact-kicker) {
    margin-bottom: 17px;
    font-size: 15px;
  }
  .contact-choice-card .btn {
    width: 100%;
  }
  .contact-main-section {
    padding: 14px 0 38px;
  }
  .contact-main-grid {
    gap: 16px;
  }
  .contact-form-card {
    padding: 25px 20px 26px;
  }
  .contact-form-card h2,
  .contact-details-head h2 {
    font-size: var(--type-card);
  }
  .contact-form-intro,
  .contact-details-head > p:not(.contact-kicker) {
    font-size: 15px;
  }
  .contact-form-card form {
    margin-top: 22px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-form-wide {
    grid-column: auto;
  }
  .contact-page .form-label {
    font-size: 12px;
  }
  .contact-page .form-input,
  .contact-page .form-select,
  .contact-page .form-textarea {
    font-size: 16px;
  }
  .contact-page .form-textarea {
    min-height: 122px;
  }
  .contact-form-card > form > .btn {
    width: 100%;
  }
  .contact-details-card {
    display: block;
  }
  .contact-details-head {
    padding: 25px 22px 23px;
    border-right: 0;
    border-bottom: 1px solid #ead8dc;
  }
  .contact-details-body {
    padding: 15px 22px 23px;
  }
  .contact-detail-row a,
  .contact-detail-row strong {
    font-size: 15px;
  }
  .contact-detail-row small,
  .contact-service-area p {
    font-size: 12px;
  }
  .contact-final-section {
    padding-bottom: 46px;
  }
  .contact-final-cta {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 25px 22px;
  }
  .contact-final-cta h2 {
    font-size: 25px;
  }
  .contact-final-cta p {
    font-size: 15px;
    line-height: 1.45;
  }
  .contact-final-cta .btn {
    width: 100%;
  }
}

/* Final header parity: inner pages use the homepage header at every size. */
.site-header {
  height: 76px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: rgba(250, 247, 244, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  transition: none;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: none; }
.site-header .nav {
  width: 100%;
  max-width: none;
  height: 76px;
  margin: 0;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.site-header .logo { display: block; justify-self: start; }
.site-header .logo .astra-brand-logo { gap: 10px; }
.site-header .logo .brand-symbol { width: 52px; height: 52px; }
.site-header .logo .brand-wordmark {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  letter-spacing: .08em;
}
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
}
.site-header .nav-links a {
  padding: 10px 0;
  border-radius: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.site-header .nav-links a[href="/"] { display: none; }
.site-header .nav-links a:hover,
.site-header .nav-links a.active { color: var(--accent-dark); }
.site-header .nav-cta { justify-self: end; gap: 14px; }
.site-header .nav-phone {
  display: inline-flex;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}
.site-header .nav-cta .btn-primary {
  min-height: 0;
  height: auto;
  padding: 12px 17px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: white;
  color: var(--accent);
  box-shadow: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}
.site-header .menu-btn,
.site-header .mobile-drawer { display: none; }

@media (max-width: 900px) {
  .site-header { height: 60px; }
  .site-header .nav {
    width: 100%;
    height: 60px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
    padding: 0 7px;
  }
  .site-header .logo {
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .site-header .logo .astra-brand-logo { height: 42px; gap: 5px; }
  .site-header .logo .brand-symbol { width: 36px; height: 36px; }
  .site-header .logo .brand-wordmark { font-size: 13px; letter-spacing: .045em; }
  .site-header .nav-links { display: none; }
  .site-header .nav-cta { height: 100%; gap: 4px; min-width: 0; align-items: center; }
  .site-header .nav-phone,
  .site-header .nav-cta .btn-primary {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .site-header .nav-phone { font-size: 13px; }
  .site-header .nav-cta .btn-primary {
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }
  .site-header .menu-btn {
    position: relative;
    width: 32px;
    height: 36px;
    margin: 0;
    padding: 7px;
    border: 0;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
  }
  .site-header .menu-btn span,
  .site-header .menu-btn span::before,
  .site-header .menu-btn span::after {
    width: 18px;
    height: 2px;
    background: var(--text);
  }
  .site-header .menu-btn span { position: relative; }
  .site-header .menu-btn.is-open span { background: transparent; }
  .site-header .menu-btn.is-open span::before,
  .site-header .menu-btn.is-open span::after {
    top: 0;
    background: var(--text);
  }
  .site-header .menu-btn.is-open span::before { transform: rotate(45deg); }
  .site-header .menu-btn.is-open span::after { transform: rotate(-45deg); }
  .site-header .mobile-drawer {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
    height: auto;
    padding: 8px 18px 18px;
    overflow: visible;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(27,25,26,.12);
  }
  .site-header .mobile-drawer.open {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .site-header .mobile-drawer a {
    padding: 13px 2px;
    border-bottom: 0;
    font-size: 15px;
    font-weight: 750;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .site-header .nav { gap: 3px; padding-inline: 5px; }
  .site-header .nav-cta { gap: 3px; }
  .site-header .logo .brand-symbol { width: 31px; height: 31px; }
  .site-header .logo .brand-wordmark { font-size: 11px; letter-spacing: .035em; }
  .site-header .nav-phone,
  .site-header .nav-cta .btn-primary { font-size: 11px; }
  .site-header .nav-cta .btn-primary { padding-inline: 5px; }
}

/* Site-wide content alignment: match the 1120px grid used by Services. */
.container,
.footer-shell {
  width: min(calc(100% - 36px), 1120px);
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-statement {
  max-width: 1120px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-page .about-story-copy {
  max-width: 810px;
  margin-left: 0;
  margin-right: 0;
}

.page-hero { text-align: left; }
.page-hero p { margin-left: 0; margin-right: 0; }
.inner-page-hero a,
.about-story-copy a,
.pricing-page main a:not(.btn),
.contact-page main a:not(.btn) {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Keep price typography consistent across vacant, occupied and add-on cards. */
.pricing-card-price {
  font-size: clamp(1.55rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.occupied-pricing-rows b,
.pricing-addon-feature > strong,
.pricing-media-list strong {
  font-size: 1.0625rem;
  line-height: 1.3;
}
.pricing-amount {
  font-size: 18px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .pricing-card-price { font-size: 1.4rem; }
  .occupied-pricing-rows b,
  .pricing-addon-feature > strong,
  .pricing-media-list strong { font-size: .98rem; }
}

.pricing-card-range .pricing-amount,
.occupied-pricing-rows .pricing-amount,
.pricing-addon-feature .pricing-amount,
.pricing-media-list .pricing-amount {
  font-size: 18px;
}

/* Tighten the transition from vacant pricing to the secondary pricing cards. */
.pricing-vacant-section { padding-bottom: 30px; }
.pricing-secondary-section { padding-top: 30px; }

@media (max-width: 900px) {
  .pricing-vacant-section { padding-bottom: 22px; }
  .pricing-secondary-section { padding-top: 22px; }
  .pricing-vacant-shell { padding: 24px 18px; }
  .pricing-vacant-shell .pricing-section-heading .section-title { font-size: var(--type-section); }
}

.pricing-mobile-tabs { display: none; }

@media (max-width: 900px) {
  .pricing-mobile-tabs {
    margin: 0;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    border: 1px solid var(--border);
    border-bottom-color: transparent;
    border-radius: 18px 18px 0 0;
    background: #fff;
  }
  .pricing-mobile-tabs button {
    min-width: 0;
    min-height: 58px;
    padding: 10px 2px;
    display: grid;
    place-items: center;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    font: 800 16px/1.1 var(--font);
    letter-spacing: -.01em;
    text-align: center;
    cursor: pointer;
  }
  .pricing-mobile-tabs button:nth-child(2) { font-size: 15px; }
  .pricing-mobile-tabs button.active {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
    color: #fff;
    box-shadow: 0 7px 16px rgba(122, 34, 60, .18);
  }
  .pricing-mobile-tabs button:focus-visible {
    outline: 3px solid rgba(213,90,106,.3);
    outline-offset: 2px;
  }
  .pricing-property-grid {
    display: block;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }
  .pricing-property-card { display: none; min-height: 0; padding-top: 24px; }
  .pricing-property-card.is-active {
    display: flex;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: none;
  }
  .pricing-property-card .pricing-card-top { display: none; }
  .pricing-property-card .pricing-card-price { display: none; }
  .pricing-property-card .pricing-card-range {
    padding-top: 0;
    border-top: 0;
  }
  .pricing-property-card .pricing-card-range strong {
    font-size: 17px;
    line-height: 1.4;
  }
  .pricing-property-card .pricing-card-range small {
    color: var(--muted);
    font-size: 10px;
    white-space: nowrap;
  }
  .pricing-page .pricing-property-card .pricing-card-range strong {
    font-size: 18px;
  }
  .pricing-page .occupied-pricing-rows b,
  .pricing-page .pricing-addon-feature > strong,
  .pricing-page .pricing-media-list strong {
    font-size: 17px;
  }
  .pricing-page .pricing-card-range .pricing-amount,
  .pricing-page .occupied-pricing-rows .pricing-amount,
  .pricing-page .pricing-addon-feature .pricing-amount,
  .pricing-page .pricing-media-list .pricing-amount {
    font-size: 18px;
  }
  .pricing-swipe-hint { display: none; }
}

/* Pricing page layout cleanup: compact cards, Astra CTAs, tighter section gap. */
.pricing-page .pricing-cta {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--control-radius, 13px);
  background: #fff;
  color: var(--accent);
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}
.pricing-page .pricing-cta:hover {
  border-color: var(--accent-dark);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.pricing-page .pricing-vacant-section {
  padding-top: 20px;
  padding-bottom: 22px;
}
.pricing-page .pricing-vacant-shell {
  padding: 24px;
}
.pricing-page .pricing-vacant-shell .pricing-section-heading {
  margin-bottom: 14px;
  text-align: left;
}
.pricing-page .pricing-property-card {
  min-height: 0;
  padding: 20px 20px 18px;
}
.pricing-page .pricing-card-top {
  min-height: 0;
}
.pricing-page .pricing-property-card h3 {
  margin-bottom: 4px;
}
.pricing-page .pricing-card-price {
  margin: 2px 0 12px;
}
.pricing-page .pricing-card-range {
  padding-top: 12px;
  margin-bottom: 16px;
}
.pricing-page .pricing-swipe-hint {
  display: none;
}
.pricing-page .pricing-secondary-section {
  padding-top: 22px;
  padding-bottom: 48px;
}
.pricing-page .pricing-split-grid {
  align-items: stretch;
  gap: 18px;
}
.pricing-page .pricing-info-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
}
.pricing-page .pricing-info-card h2 {
  margin: 0 0 10px;
}
.pricing-page .pricing-moving-group .pricing-addon-feature {
  background: #fff;
}
.pricing-page .occupied-pricing-rows {
  margin: 4px 0 16px;
}
.pricing-page .pricing-occupied-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.pricing-page .pricing-property-card .pricing-cta {
  margin-top: auto;
}
.pricing-page .pricing-occupied-card .pricing-cta {
  margin-top: 16px;
}
.pricing-page .pricing-addon-intro {
  margin: 0 0 14px;
}

@media (min-width: 901px) {
  .pricing-page .pricing-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .pricing-page .pricing-info-card {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .pricing-page .pricing-vacant-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .pricing-page .pricing-vacant-shell {
    padding: 18px 16px 16px;
  }
  .pricing-page .pricing-secondary-section {
    padding-top: 16px;
    padding-bottom: 36px;
  }
  .pricing-page .pricing-split-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .pricing-page .pricing-info-card {
    min-width: 0;
    padding: 20px;
  }
  .pricing-page .pricing-property-grid {
    display: block;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }
  .pricing-page .pricing-property-card {
    display: none;
    min-height: 0;
    padding: 18px 16px 16px;
  }
  .pricing-page .pricing-property-card.is-active {
    display: flex;
  }
  .pricing-page .pricing-property-card .pricing-card-top {
    display: none;
  }
  .pricing-page .pricing-property-card .pricing-card-price {
    display: block;
  }
  .pricing-page .pricing-card-top {
    min-height: 0;
    margin-bottom: 0;
  }
  .pricing-page .pricing-card-price {
    margin: 2px 0 10px;
  }
  .pricing-page .pricing-cta {
    width: 100%;
  }
  .pricing-page .pricing-swipe-hint {
    display: none;
  }
}
