/* =============================================================
   Tarzana Appliance Repair — Field Guide stylesheet
   Palette: forest + ivory + brass. Aesthetic: 1920s field guide
   meets upscale Ventura Blvd boutique.
   ============================================================= */

:root {
  --ink:       #12170f;
  --forest:    #1f3a2c;
  --forest-2:  #2a4a3a;
  --moss:      #4c6b55;
  --brass:     #b08d4a;
  --brass-2:   #c9a966;
  --terracotta:#b85942;
  --ivory:     #f6f1e2;
  --ivory-2:   #efe7d0;
  --paper:     #faf6ea;
  --line:      rgba(31, 58, 44, 0.18);
  --line-soft: rgba(31, 58, 44, 0.08);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "DM Sans", system-ui, sans-serif;
  --hand:  "Caveat", cursive;

  --shadow-lg: 0 28px 60px -24px rgba(18,23,15,0.35);
  --shadow-md: 0 14px 34px -18px rgba(18,23,15,0.30);

  --rounded: 14px;
  --rounded-lg: 22px;

  --container: min(1220px, calc(100vw - 2.5rem));
}

/* ---------- RESET-ISH ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1.1; }
h3 { font-size: 1.2rem; line-height: 1.25; }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--ivory);
  padding: 0.6rem 1rem; z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--brass);
  margin-bottom: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: 0 10px 22px -12px rgba(31,58,44,0.65);
}
.btn--primary:hover { background: var(--forest-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn--ghost:hover { background: var(--forest); color: var(--ivory); }
.btn--full { width: 100%; padding: 1.1rem; }

/* ---------- TOP STRIP ---------- */
.top-strip {
  background: var(--ink);
  color: var(--ivory-2);
  font-size: 0.85rem;
}
.top-strip__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}
.top-strip__pin { color: var(--brass-2); margin-right: 0.35rem; }
.top-strip__phone {
  color: var(--brass-2);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.top-strip__phone:hover { text-decoration: underline; }
.top-strip__hours { opacity: 0.75; }
@media (max-width: 720px) {
  .top-strip__hours { display: none; }
}

/* ---------- MASTHEAD ---------- */
.masthead {
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.masthead::before {
  content: "";
  position: absolute; inset: 0 0 -1px 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(176,141,74,0.04) 8px 9px);
}
.masthead__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.masthead__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}
.masthead__logo {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--brass), 0 0 0 4px var(--ivory), 0 8px 18px -10px rgba(0,0,0,0.3);
}
.masthead__wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.masthead__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.masthead__sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}
.masthead__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.masthead__nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.masthead__nav a:hover { border-bottom-color: var(--brass); }
.masthead__cta {
  background: var(--forest);
  color: var(--ivory) !important;
  padding: 0.6rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 600;
}
.masthead__cta:hover {
  background: var(--forest-2);
  border-color: transparent !important;
}
@media (max-width: 820px) {
  .masthead__nav a:not(.masthead__cta) { display: none; }
  .masthead__logo { width: 58px; height: 58px; }
  .masthead__title { font-size: 1.05rem; }
}

/* =============================================================
   HERO — split: brand on left, contact form on right (ABOVE THE FOLD)
   ============================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(176,141,74,0.12), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 5vw, 5rem);
}
.hero__split {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

/* decorative corner leaves */
.hero__leaf {
  position: absolute;
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  filter: saturate(0.7);
  z-index: 0;
}
.hero__leaf--tl {
  top: 20px; left: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%231f3a2c' stroke-width='2'><path d='M100 20 C140 60, 150 120, 120 180'/><path d='M100 20 C60 60, 50 120, 80 180'/><path d='M100 20 L100 180'/><path d='M100 60 L60 60 M100 60 L140 60'/><path d='M100 100 L50 100 M100 100 L150 100'/><path d='M100 140 L60 140 M100 140 L140 140'/></g></svg>");
  transform: rotate(-28deg);
}
.hero__leaf--br {
  bottom: 20px; right: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23b08d4a' stroke-width='2'><path d='M100 20 C140 60, 150 120, 120 180'/><path d='M100 20 C60 60, 50 120, 80 180'/><path d='M100 20 L100 180'/><path d='M100 60 L60 60 M100 60 L140 60'/><path d='M100 100 L50 100 M100 100 L150 100'/><path d='M100 140 L60 140 M100 140 L140 140'/></g></svg>");
  transform: rotate(150deg);
}

/* Brand column (left) */
.hero__brand {
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
}
.hero__crest {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow:
    0 0 0 3px var(--brass),
    0 0 0 7px var(--ivory),
    0 0 0 8px var(--brass),
    0 26px 40px -18px rgba(31,58,44,0.35);
}
.hero__kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.75rem;
}
.hero__headline { margin: 0 0 1rem; }
.hero__lead {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.08;
}
.hero__deck {
  font-size: 1.02rem;
  color: var(--ink);
  opacity: 0.85;
  max-width: 48ch;
  margin: 0 0 1.5rem;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.hero__or {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  font-size: 0.95rem;
}
.hero__micro {
  font-family: var(--hand);
  font-size: 1.2rem;
  color: var(--moss);
  margin: 0.8rem 0 0;
}

/* Form column (right) — the star of the fold */
.hero__form {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rounded-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  /* inner brass double-rule */
  background-image:
    linear-gradient(var(--paper), var(--paper)),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(176,141,74,0.08), transparent 60%);
}
.hero__form::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--brass);
  border-radius: calc(var(--rounded-lg) - 4px);
  pointer-events: none;
  opacity: 0.45;
}
.hero__form-head {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px dashed var(--brass);
}
.hero__form-ribbon {
  display: inline-block;
  background: var(--forest);
  color: var(--ivory);
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.hero__form-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--forest);
  margin: 0 0 0.25rem;
}
.hero__form-sub {
  font-size: 0.9rem;
  color: var(--moss);
  margin: 0;
}
.hero__form-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--moss);
  text-align: center;
}
.hero__form-fine strong { color: var(--forest); }

/* form fields */
.field { margin-bottom: 0.9rem; display: flex; flex-direction: column; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
}
.field-row .field { margin-bottom: 0.9rem; }
.field label {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.96rem;
  padding: 0.7rem 0.85rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 78px; font-family: var(--sans); line-height: 1.4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31,58,44,0.15);
  background: var(--paper);
}
.field--check { flex-direction: row; align-items: center; }
.check {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.check input { accent-color: var(--forest); transform: scale(1.1); }

@media (max-width: 900px) {
  .hero__split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__brand { text-align: center; }
  .hero__deck { margin-left: auto; margin-right: auto; }
  .hero__cta-row { justify-content: center; }
  .hero__leaf { opacity: 0.12; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* =============================================================
   FOUNDER SECTION — Joe Cashman story
   ============================================================= */
.founder {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 30%, rgba(176,141,74,0.08), transparent 60%),
    var(--ivory);
  border-top: 1px solid var(--line-soft);
}
.founder__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.founder__portrait-wrap {
  position: sticky;
  top: 1.5rem;
}
.founder__portrait {
  margin: 0;
  padding: 0.75rem 0.75rem 0;
  background: var(--paper);
  border: 1px solid var(--brass);
  border-radius: var(--rounded);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.founder__portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--rounded) - 6px);
  background: var(--ivory);
}
.founder__portrait figcaption {
  padding: 1rem 0.25rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px dashed var(--brass);
  margin-top: 0.75rem;
}
.founder__caption-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.founder__caption-role {
  font-family: var(--hand);
  font-size: 1.1rem;
  color: var(--brass);
}
.founder__plaque {
  margin: -1.5rem auto 0;
  width: max-content;
  padding: 0.6rem 1.2rem;
  background: var(--forest);
  color: var(--ivory);
  border-radius: 999px;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  box-shadow: var(--shadow-md);
  position: relative;
}
.founder__plaque-year {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brass-2);
}
.founder__plaque-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.founder__copy { padding-top: 0.25rem; }
.founder__h2 {
  color: var(--forest);
  margin-bottom: 1.25rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.founder__h2 em { color: var(--terracotta); font-style: italic; }
.founder__lede {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}
.founder__copy p { font-size: 1.02rem; }

.founder__quote {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  border-left: 4px solid var(--brass);
  border-radius: 8px;
  font-family: var(--serif);
  position: relative;
}
.founder__quote p {
  font-style: italic;
  font-size: 1.12rem;
  color: var(--forest);
  margin: 0 0 0.6rem;
  line-height: 1.5;
}
.founder__quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.founder__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--brass);
}
.founder__cred {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}
.founder__cred-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
}
.founder__cred-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}

.founder__strip {
  width: var(--container);
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding-bottom: clamp(3rem, 5vw, 4rem);
}
.founder__strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  filter: sepia(0.15) saturate(0.9) contrast(0.95);
  transition: filter 0.3s;
}
.founder__strip img:hover { filter: sepia(0) saturate(1) contrast(1); }

@media (max-width: 900px) {
  .founder__inner { grid-template-columns: 1fr; }
  .founder__portrait-wrap { position: static; max-width: 380px; margin: 0 auto; }
  .founder__strip { grid-template-columns: repeat(3, 1fr); }
  .founder__strip img:nth-child(n+4) { display: none; }
}
@media (max-width: 540px) {
  .founder__credentials { grid-template-columns: 1fr; gap: 0.75rem; }
  .founder__cred { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- LEDGER / STATS ---------- */
.ledger {
  background: var(--forest);
  color: var(--ivory);
  border-top: 3px double var(--brass);
  border-bottom: 3px double var(--brass);
}
.ledger__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.ledger__entry { padding: 0.5rem; }
.ledger__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 600;
  color: var(--brass-2);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.ledger__label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
@media (max-width: 720px) {
  .ledger__inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0.5rem; }
}

/* ---------- FIELD GUIDE (services, now with images) ---------- */
.field-guide {
  background: var(--ivory);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.field-guide__intro {
  width: var(--container);
  margin: 0 auto 2.5rem;
  max-width: 680px;
}
.field-guide__intro h2 { color: var(--forest); margin-bottom: 0.8rem; }
.field-guide__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.guide-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rounded);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.guide-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest);
}
.guide-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.96);
  transition: transform 0.6s ease, filter 0.3s;
}
.guide-card:hover .guide-card__img img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}
.guide-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,58,44,0) 55%, rgba(31,58,44,0.45) 100%);
  pointer-events: none;
}
.guide-card__num {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  background: var(--ivory);
  color: var(--forest);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.25);
}
.guide-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.guide-card__title {
  font-size: 1.22rem;
  color: var(--forest);
  margin-bottom: 0.45rem;
}
.guide-card__blurb {
  font-size: 0.93rem;
  color: var(--ink);
  opacity: 0.82;
  margin-bottom: 0;
  flex-grow: 1;
}
.guide-card__mark {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 1.15rem;
  color: var(--brass);
  transition: transform 0.25s;
}
.guide-card:hover .guide-card__mark { transform: translate(2px, -2px); }
@media (max-width: 820px) {
  .field-guide__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .field-guide__grid { grid-template-columns: 1fr; }
}

/* ---------- NEIGHBORHOODS ---------- */
.neighborhoods {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(0deg, rgba(31,58,44,0.03), rgba(31,58,44,0) 60%),
    var(--paper);
}
.neighborhoods__inner { width: var(--container); margin: 0 auto; }
.neighborhoods__header { max-width: 640px; margin-bottom: 2rem; }
.neighborhoods__header h2 { color: var(--forest); }
.neighborhoods__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border-top: 1px dashed var(--brass);
}
.neighborhoods__list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--brass);
  font-size: 1.05rem;
  align-items: baseline;
}
.neighborhoods__name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  min-width: 280px;
}
.neighborhoods__note { color: var(--moss); font-style: italic; }
.neighborhoods__also {
  margin-top: 1.25rem;
  color: var(--moss);
  font-style: italic;
}
@media (max-width: 640px) {
  .neighborhoods__list li { flex-direction: column; gap: 0.15rem; }
  .neighborhoods__name { min-width: 0; }
}

/* ---------- BRANDS ---------- */
.brands {
  background: var(--forest);
  color: var(--ivory);
  padding: 2.5rem 0;
}
.brands__inner {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.brands .eyebrow {
  color: var(--brass-2);
  border-bottom-color: var(--brass-2);
}
.brands__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.brands__chip {
  font-family: var(--serif);
  font-size: 1.1rem;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.02em;
  border-bottom: 1px dotted var(--brass-2);
}

/* =============================================================
   RING-SHOP (bottom phone CTA band)
   ============================================================= */
.ring-shop {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(176,141,74,0.15), transparent 70%),
    var(--ivory);
}
.ring-shop__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--rounded-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  position: relative;
}
.ring-shop__inner::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px dashed var(--brass);
  border-radius: calc(var(--rounded-lg) - 4px);
  pointer-events: none;
  opacity: 0.45;
}
.ring-shop__copy { position: relative; z-index: 1; }
.ring-shop__copy h2 { color: var(--forest); margin-bottom: 0.6rem; }
.ring-shop__copy p { margin: 0; color: var(--ink); opacity: 0.82; max-width: 50ch; }

.ring-shop__phone {
  text-decoration: none;
  color: var(--forest);
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem 1.5rem;
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--rounded);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}
.ring-shop__phone:hover { transform: translateY(-2px); }
.ring-shop__label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-2);
  font-weight: 700;
}
.ring-shop__num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ring-shop__hours {
  font-size: 0.82rem;
  opacity: 0.8;
}
@media (max-width: 820px) {
  .ring-shop__inner { grid-template-columns: 1fr; text-align: center; }
  .ring-shop__copy p { margin-left: auto; margin-right: auto; }
}

/* ---------- FOOTER ---------- */
.site-foot {
  background: var(--ink);
  color: var(--ivory-2);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.site-foot__inner { width: var(--container); margin: 0 auto; }
.site-foot__crest {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(176,141,74,0.4);
  margin-bottom: 2rem;
}
.site-foot__crest img {
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--brass);
  flex-shrink: 0;
}
.site-foot__lore {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 58ch;
  color: var(--ivory-2);
  opacity: 0.85;
  margin: 0;
}
.site-foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-foot__cols h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.site-foot__cols p, .site-foot__areas {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ivory-2);
  opacity: 0.88;
  margin: 0;
}
.site-foot__cols a { color: var(--brass-2); text-decoration: none; }
.site-foot__cols a:hover { text-decoration: underline; }
.site-foot__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ivory-2);
  opacity: 0.6;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246,241,226,0.1);
}
.site-foot__rule {
  font-family: var(--hand);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--brass-2);
  opacity: 0.7;
}
@media (max-width: 820px) {
  .site-foot__cols { grid-template-columns: repeat(2, 1fr); }
  .site-foot__base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .site-foot__cols { grid-template-columns: 1fr; }
  .site-foot__crest { flex-direction: column; }
}

/* =============================================================
   INNER PAGES — detail heroes, prose, symptom lists, crumbs
   ============================================================= */

.crumbs {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--moss);
}
.crumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.crumbs__item a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px dotted var(--brass);
  padding-bottom: 1px;
}
.crumbs__item a:hover { color: var(--forest); border-bottom-color: var(--forest); }
.crumbs__item--current { color: var(--forest); font-weight: 600; }
.crumbs__sep { color: var(--brass); opacity: 0.5; }

/* Generic page hero (about, contact, faq, list pages) */
.page-hero {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(176,141,74,0.12), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__inner {
  width: var(--container);
  margin: 0 auto;
}
.page-hero__h1 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--forest);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  margin: 0.5rem 0 0.75rem;
  max-width: 22ch;
}
.page-hero__deck {
  font-size: 1.12rem;
  color: var(--ink);
  opacity: 0.82;
  max-width: 60ch;
  margin: 0;
}

/* Detail hero (services, brands, areas) — split with image */
.detail-hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(176,141,74,0.12), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-soft);
}
.detail-hero__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.detail-hero__h1 {
  font-family: var(--serif);
  color: var(--forest);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.08;
  margin: 0.5rem 0 0.9rem;
  font-weight: 500;
}
.detail-hero__deck {
  font-size: 1.08rem;
  color: var(--ink);
  opacity: 0.85;
  margin: 0 0 1.5rem;
  max-width: 52ch;
}
.detail-hero__cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.detail-hero__badge {
  font-family: var(--hand);
  font-size: 1.2rem;
  color: var(--brass);
  margin: 0.75rem 0 0;
}
.detail-hero__art {
  margin: 0;
  border-radius: var(--rounded);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--ivory);
}
.detail-hero__art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.detail-hero--area .detail-hero__art img { aspect-ratio: 4 / 3; }

.quick-facts {
  list-style: none;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0 0;
  border: 1px dashed var(--brass);
  border-radius: var(--rounded);
  background: var(--paper);
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.quick-facts li strong {
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 700;
}
@media (max-width: 820px) {
  .detail-hero__inner { grid-template-columns: 1fr; }
  .detail-hero__art { order: -1; max-width: 420px; margin: 0 auto; }
  .detail-hero--area .detail-hero__art img { aspect-ratio: 16 / 10; }
}

/* Prose — long-form content body */
.prose {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--paper);
}
.prose__inner {
  width: min(780px, calc(100vw - 2.5rem));
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink);
}
.prose__inner h2 {
  font-family: var(--serif);
  color: var(--forest);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 2.25rem 0 0.9rem;
  line-height: 1.2;
}
.prose__inner h3 {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
}
.prose__inner h2:first-child,
.prose__inner h3:first-child { margin-top: 0; }
.prose__inner p { margin: 0 0 1.1rem; }
.prose__inner ul, .prose__inner ol {
  padding-left: 1.2rem;
  margin: 0 0 1.3rem;
}
.prose__inner li { margin-bottom: 0.45rem; }
.prose__inner a {
  color: var(--forest);
  border-bottom: 1px solid var(--brass);
  text-decoration: none;
}
.prose__inner a:hover { background: rgba(176,141,74,0.12); }
.prose__inner blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--brass);
  background: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  color: var(--forest);
  border-radius: 4px;
}
.prose__inner strong { color: var(--forest); }
.prose__inner address {
  font-style: normal;
  padding: 1.25rem 1.5rem;
  background: var(--ivory);
  border-left: 3px solid var(--brass);
  border-radius: 6px;
  font-size: 1rem;
}

/* Symptom & neighborhood lists (on service + brand + area pages) */
.sym {
  background: var(--ivory);
  padding: clamp(3rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.sym--alt { background: var(--paper); }
.sym__inner {
  width: min(880px, calc(100vw - 2.5rem));
  margin: 0 auto;
}
.sym__inner h2 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin: 0.5rem 0 1.25rem;
}
.sym__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}
.sym__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(176,141,74,0.45);
  font-size: 1.02rem;
  line-height: 1.55;
}
.sym__list li:last-child { border-bottom: 0; }
.sym__list--tight li { padding: 0.5rem 0; font-size: 0.98rem; }
.sym__dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.sym__list strong { color: var(--forest); font-weight: 700; }

/* Mini brands row (on service pages) */
.mini-brands {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.mini-brands__inner {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.mini-brands__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.mini-brands__list a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--forest);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.mini-brands__list a:hover {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.mini-brands__list li:not(:has(a)) {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--moss);
}

/* Service/area strips (clickable lists of cities or services) */
.service-areas-strip {
  background: var(--forest);
  color: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.service-areas-strip__inner {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.service-areas-strip .eyebrow {
  color: var(--brass-2);
  border-bottom-color: var(--brass-2);
}
.service-areas-strip__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.service-areas-strip__list a {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid var(--brass-2);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ivory);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.service-areas-strip__list a:hover {
  background: var(--brass-2);
  color: var(--forest);
}

/* FAQ section (used on services/brands/areas/about/faq) */
.faq-section {
  background: var(--ivory);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line-soft);
}
.faq-section__inner {
  width: min(820px, calc(100vw - 2.5rem));
  margin: 0 auto;
}
.faq-section__inner h2 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0.5rem 0 1.5rem;
}
.faq-section__list { margin: 0; padding: 0; }
.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px dashed var(--brass);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item__q {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.faq-item__a {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  opacity: 0.92;
}
.faq-item__a p { margin: 0 0 0.6rem; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a a {
  color: var(--forest);
  border-bottom: 1px solid var(--brass);
  text-decoration: none;
}

/* Related cards (on service pages) */
.related {
  background: var(--paper);
  padding: clamp(3rem, 5vw, 4rem) 0;
}
.related__inner {
  width: var(--container);
  margin: 0 auto;
}
.related__inner h2 {
  color: var(--forest);
  font-family: var(--serif);
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}
.related__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related__list a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.4rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--rounded);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
}
.related__list a:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}
.related__list strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--forest);
}
.related__list span {
  font-size: 0.9rem;
  color: var(--moss);
  font-style: italic;
}
@media (max-width: 720px) {
  .related__list { grid-template-columns: 1fr; }
}

/* Hub grid (for _index pages of services/brands/areas) */
.hub {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ivory);
}
.hub__inner { width: var(--container); margin: 0 auto; }
.hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rounded);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hub-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hub-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 0.6s;
}
.hub-card:hover .hub-card__img img { transform: scale(1.04); }
.hub-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}
.hub-card__title {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 1.2rem;
  margin: 0;
}
.hub-card__blurb {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
  flex-grow: 1;
}
.hub-card__more {
  font-family: var(--hand);
  color: var(--brass);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
@media (max-width: 820px) { .hub__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hub__grid { grid-template-columns: 1fr; } }

/* ring-shop bottom actions */
.ring-shop__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.ring-shop__actions .btn--ghost {
  border-color: var(--forest);
  color: var(--forest);
}

/* ---------- MOTION ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__crest {
    animation: seal-settle 0.9s ease-out both;
  }
  @keyframes seal-settle {
    0%   { transform: scale(0.92) rotate(-4deg); opacity: 0; }
    60%  { opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
  }
}
