/* 101st Junk Removal — marketing homepage
   Matches olive/parchment quote app brand */

:root {
  --bg: #e9e0cc;
  --elevated: #f0e8d6;
  --surface: #f4eee0;
  --ink: #212119;
  --muted: #5c5748;
  --subtle: #8a8370;
  --olive: #323628;
  --olive-fg: #e8dcc4;
  --steel: #4f5a66;
  --border: #cfc3a8;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(33, 33, 25, 0.08), 0 1px 2px rgba(33, 33, 25, 0.04);
  --shadow-lg: 0 8px 28px rgba(33, 33, 25, 0.12), 0 2px 6px rgba(33, 33, 25, 0.06);
  --max: 1100px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--bg);
  /* Soft paper grain via layered noise */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.label {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  color: var(--subtle);
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

h1, h2, h3, .heading {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--ink);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--olive);
  color: var(--olive-fg);
  border-bottom: 1px solid rgba(232, 220, 196, 0.12);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(232, 220, 196, 0.25);
}

.brand-text { min-width: 0; }

.brand-name {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: var(--olive-fg);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-area {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.75rem;
  color: rgba(232, 220, 196, 0.72);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  padding: 0.7rem 1.15rem;
  min-height: 48px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--olive);
  color: var(--olive-fg);
  border-color: var(--olive);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #3d4232;
  outline: none;
}

.btn-on-olive {
  background: var(--olive-fg);
  color: var(--olive);
  border-color: var(--olive-fg);
}

.btn-on-olive:hover,
.btn-on-olive:focus-visible {
  background: #f4eee0;
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--olive);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--elevated);
  outline: none;
}

.btn-ghost-light {
  background: transparent;
  color: var(--olive-fg);
  border-color: rgba(232, 220, 196, 0.35);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: rgba(232, 220, 196, 0.1);
  outline: none;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
  min-height: 56px;
}

.btn-block { width: 100%; }

.phone-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ——— Hero ——— */
.hero {
  padding: 2.75rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-eyebrow .pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.hero h1 {
  font-size: clamp(2.35rem, 6vw, 3.65rem);
  letter-spacing: 0.02em;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta .check {
  color: var(--olive);
  font-weight: 700;
  font-family: "Barlow Condensed", system-ui, sans-serif;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-top {
  background: var(--olive);
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-card-logo {
  width: min(200px, 70%);
  border-radius: 8px;
  margin-bottom: 0.85rem;
}

.hero-card-tag {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--olive-fg);
}

.hero-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.hero-card-line {
  font-size: 0.9375rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.price-row .tier {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
}

.price-row .amt {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price-total .lbl {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--muted);
}

.price-total .big {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-card-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--subtle);
  text-align: center;
  line-height: 1.45;
}

/* ——— Sections ——— */
section {
  padding: 3.25rem 0;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.section-head .label {
  margin-bottom: 0.5rem;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 0.65rem;
}

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

.band {
  background: var(--elevated);
  border-block: 1px solid var(--border);
}

/* ——— How it works ——— */
.steps {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.step-num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8125rem;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9875rem;
}

/* ——— Pricing ——— */
.pricing-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 0.9rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.price-card:hover {
  border-color: #b8ab8e;
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--olive-fg);
}

.price-card.featured .tier-name,
.price-card.featured .tier-price,
.price-card.featured .tier-hint {
  color: var(--olive-fg);
}

.price-card.featured .tier-hint { opacity: 0.75; }

.tier-name {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  color: var(--muted);
}

.tier-price {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 1.55rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.tier-hint {
  font-size: 0.75rem;
  color: var(--subtle);
  line-height: 1.3;
}

.pricing-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 42rem;
  margin-inline: auto;
}

.pricing-note strong { color: var(--ink); font-weight: 600; }

/* ——— Services ——— */
.services-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
}

.service-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.service-item .mark {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  background: var(--olive);
  color: var(--olive-fg);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

.service-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.service-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

.services-ask {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--elevated);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.9875rem;
  text-align: center;
}

/* ——— Area ——— */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.area-chip {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.area-note {
  margin-top: 1.35rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9875rem;
  max-width: 36rem;
  margin-inline: auto;
}

/* ——— About ——— */
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 700px) {
  .about-card {
    grid-template-columns: auto 1fr;
    padding: 2rem 2rem;
    gap: 2rem;
  }
}

.about-badge {
  width: 140px;
  margin-inline: auto;
  border-radius: 8px;
}

.about-card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.about-card p:last-child { margin-bottom: 0; }


/* ——— Callback / lead form ——— */
.callback .callback-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .callback .callback-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.callback-intro {
  margin-bottom: 0;
  max-width: none;
}

.callback-bullets {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.callback-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9875rem;
  color: var(--muted);
}

.callback-bullets .check {
  color: var(--olive);
  font-weight: 700;
  font-family: "Barlow Condensed", system-ui, sans-serif;
}

.callback-bullets a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callback-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.35rem 1.6rem;
}

@media (min-width: 600px) {
  .callback-card { padding: 1.75rem 1.75rem 1.85rem; }
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callback-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.callback-form label {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  color: var(--muted);
}

.callback-form input {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  min-height: 52px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.callback-form input::placeholder {
  color: var(--subtle);
  opacity: 0.85;
}

.callback-form input:hover {
  border-color: #b8ab8e;
}

.callback-form input:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(50, 54, 40, 0.15);
}

.callback-form input[aria-invalid="true"] {
  border-color: #8b3a2f;
  box-shadow: 0 0 0 3px rgba(139, 58, 47, 0.12);
}

.form-privacy {
  font-size: 0.8125rem;
  color: var(--subtle);
  text-align: center;
  line-height: 1.4;
  margin-top: -0.15rem;
}

.form-error {
  font-size: 0.875rem;
  color: #8b3a2f;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.callback-success {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}

.callback-success[hidden],
.callback-form[hidden],
.form-error[hidden] {
  display: none !important;
}

.callback-success .success-check {
  width: 2.5rem;
  height: 2.5rem;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--olive);
  color: var(--olive-fg);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.callback-success h3 {
  font-size: 1.65rem;
  margin: 0;
}

.callback-success p {
  color: var(--muted);
  font-size: 1.0125rem;
  margin-bottom: 0.35rem;
}

.callback-success a[href^="tel"] {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callback-success .btn-ghost {
  margin-top: 0.15rem;
}

/* ——— Final CTA ——— */
.final-cta {
  background: var(--olive);
  color: var(--olive-fg);
  border-block: 1px solid rgba(232, 220, 196, 0.12);
  padding: 3.5rem 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--olive-fg);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  margin-bottom: 0.75rem;
  max-width: 18ch;
  margin-inline: auto;
}

.final-cta .lede {
  color: rgba(232, 220, 196, 0.8);
  font-size: 1.0625rem;
  max-width: 34ch;
  margin: 0 auto 1.75rem;
}

.final-cta .phone-display {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--olive-fg);
  margin-bottom: 1.25rem;
  display: block;
}

.final-cta .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.final-cta .fine {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(232, 220, 196, 0.6);
}

/* ——— Footer ——— */
.site-footer {
  padding: 1.75rem 0 2rem;
  text-align: center;
}

.site-footer .footer-brand {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.site-footer .footer-copy {
  font-size: 0.8125rem;
  color: var(--subtle);
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover { color: var(--ink); }

/* ——— Utils ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .brand-area { display: none; }
  .header-actions .nav-hide-sm { display: none; }
  .hero h1 { max-width: none; }
  .site-header .inner {
    gap: 0.65rem;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-actions {
    gap: 0.35rem;
  }
  .header-actions .btn {
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 420px) {
  /* Logo + Call only — no cramped middle button */
  .brand-name { display: none; }
  .header-actions .btn-ghost-light { display: none; }
  .header-actions .btn-on-olive {
    padding-inline: 0.9rem;
  }
}

/* ——— Text-a-photo CTA ——— */
.text-photo-cta {
  font-size: 0.9875rem;
  color: var(--muted);
  margin-top: 0.85rem;
  max-width: 36ch;
}

.text-photo-cta a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-ctas + .text-photo-cta {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}

.callback-text-photo {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.45;
}

.callback-text-photo a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ——— Destiny / what happens to junk ——— */
.destiny-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 700px) {
  .destiny-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

.destiny-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.destiny-card .step-num {
  margin-bottom: 0.65rem;
}

.destiny-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.destiny-card p {
  color: var(--muted);
  font-size: 0.9875rem;
}

.destiny-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--subtle);
  max-width: 40rem;
  margin-inline: auto;
}

/* ——— Gallery / recent jobs ——— */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.gallery-ph {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--olive) 0%, #3d4232 48%, #2a2e22 100%);
  position: relative;
  display: grid;
  place-items: center;
}

.gallery-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(232, 220, 196, 0.04) 12px,
      rgba(232, 220, 196, 0.04) 24px
    );
}

.gallery-ph-label {
  position: relative;
  z-index: 1;
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(232, 220, 196, 0.55);
  text-align: center;
  padding: 0.5rem;
}

.gallery-card figcaption {
  padding: 0.7rem 0.85rem 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.35;
}

.gallery-card figcaption strong {
  display: block;
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9375rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.gallery-note {
  margin-top: 1.15rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--subtle);
  font-style: italic;
}

/* ——— Area chips as links ——— */
a.area-chip {
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

a.area-chip:hover,
a.area-chip:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--olive-fg);
  outline: none;
}

.area-hub-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}

.area-hub-link a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ——— Reviews placeholder ——— */
.reviews-band {
  text-align: center;
}

.reviews-line {
  max-width: 36rem;
  margin-inline: auto;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 1.0125rem;
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.review-card .coming {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--subtle);
  margin-bottom: 0.65rem;
  display: block;
}

.review-card blockquote {
  font-size: 0.9875rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.45;
}

.review-card cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--subtle);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

/* ——— City / areas pages ——— */
.page-hero {
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.page-hero .lede {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.page-prose {
  max-width: 42rem;
}

.page-prose p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.page-prose p:last-child { margin-bottom: 0; }

.city-pricing-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  margin-top: 0.5rem;
}

.city-pricing-summary h2 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.city-pricing-summary p {
  color: var(--muted);
  font-size: 0.9875rem;
  margin-bottom: 0.85rem;
}

.city-pricing-summary .price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.city-pricing-summary .price-chip {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8125rem;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  color: var(--ink);
}

.city-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.city-nav-list a {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.city-nav-list a:hover,
.city-nav-list a:focus-visible,
.city-nav-list a[aria-current="page"] {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--olive-fg);
  outline: none;
}

.areas-list {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .areas-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .areas-list { grid-template-columns: repeat(3, 1fr); }
}

.areas-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.areas-card:hover,
a.areas-card:focus-visible {
  border-color: var(--olive);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.areas-card h2 {
  font-size: 1.35rem;
}

.areas-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  flex: 1;
}

.areas-card .go {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  color: var(--olive);
  margin-top: 0.35rem;
}

.footer-cities {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
}

.footer-cities a {
  color: var(--muted);
}
