/* ============================================================
   Pacific Palisades Appliance Repair — "The Coastline Issue"
   Editorial coastal aesthetic. Built from scratch.
   ============================================================ */

:root {
  --sand:       #F2EADF;
  --sand-deep:  #E7DCCA;
  --paper:      #FBF7F1;
  --ink:        #17384F;   /* deep pacific navy */
  --ink-soft:   #2E4A62;
  --terra:      #C2522D;   /* sunset terracotta */
  --terra-deep: #9E3F21;
  --sea:        #7FA99B;   /* seafoam */
  --drift:      #8B7355;   /* driftwood */
  --rule:       rgba(23,56,79,.18);
  --rule-light: rgba(242,234,223,.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  margin: 0 0 18px;
}
.eyebrow.light { color: var(--sand); }

.display {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

.h-editorial {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--ink);
}
.h-editorial em { font-style: italic; color: var(--terra); font-weight: 400; }
.h-editorial.light { color: var(--sand); }
.h-editorial.light em { color: var(--sand-deep); }

.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: var(--paper);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-1px); }
.btn-primary.wide { width: 100%; justify-content: center; padding: 18px; font-size: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 4px;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--terra); border-color: var(--terra); }
.btn-ghost.light { color: var(--sand); border-color: rgba(242,234,223,.4); }
.btn-ghost.light:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Rebuild Strip ---------- */
.rebuild-strip {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(194,82,45,.4);
}
.rebuild-strip a { color: var(--sand); display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; }
.rebuild-strip a:hover { color: var(--paper); }
.rebuild-tag {
  background: var(--terra);
  color: var(--paper);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ---------- Masthead ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sand);
  object-fit: cover;
  border: 1px solid var(--rule);
}
.brand-lock { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--drift);
  margin-top: 2px;
}
.top-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.top-nav a { color: var(--ink-soft); padding: 6px 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.top-nav a:hover { color: var(--terra); }
.top-nav .nav-cta { color: var(--terra); border-color: var(--terra); }

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--paper);
  transition: border-color .2s, color .2s;
}
.phone-chip:hover { border-color: var(--terra); color: var(--terra); }
.phone-chip .dot { width: 7px; height: 7px; background: var(--sea); border-radius: 50%; box-shadow: 0 0 0 4px rgba(127,169,155,.18); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 85%);
  padding: 90px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.hero-meta li { display: flex; flex-direction: column; font-size: 12.5px; color: var(--drift); }
.hero-meta strong {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.hero-meta span { letter-spacing: .03em; }

.hero-photo {
  margin: 0;
  position: relative;
}
.hero-photo img {
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 40px 80px -30px rgba(23,56,79,.35);
}
.hero-photo figcaption {
  position: absolute;
  bottom: -28px;
  left: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--drift);
  letter-spacing: .01em;
}

.hero-ticker {
  margin-top: 90px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: var(--drift);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ticker span:nth-child(even) { color: var(--sea); }

/* ---------- Book Form ---------- */
.book {
  background: var(--ink);
  color: var(--sand);
  padding: 100px 40px;
  position: relative;
}
.book::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra), transparent);
}
.book-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.book-aside { padding-top: 8px; }
.book-copy {
  color: rgba(242,234,223,.78);
  max-width: 44ch;
  margin: 0 0 26px;
  font-size: 16.5px;
}
.book-copy a { color: var(--terra); border-bottom: 1px solid var(--terra); }
.book-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-points li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  color: rgba(242,234,223,.88);
}
.book-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 1px;
  background: var(--terra);
}

.book-form {
  background: var(--paper);
  color: var(--ink);
  padding: 44px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.45);
}
.book-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--drift);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--terra); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(23,56,79,.35); }
.field textarea { resize: vertical; }
.fine {
  font-size: 11.5px;
  color: var(--drift);
  margin: 8px 0 0;
  text-align: center;
  letter-spacing: .02em;
}

/* ---------- Checkbox in form ---------- */
.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 8px 0;
}
.checkbox input {
  accent-color: var(--terra);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- About / Founder ---------- */
.about {
  background: var(--sand);
  padding: 130px 40px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.about-photo { margin: 0; position: relative; }
.about-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(23,56,79,.35);
}
.about-photo figcaption {
  position: absolute;
  bottom: -28px;
  left: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--drift);
}
.about-text { max-width: 620px; }
.about-body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-body a {
  color: var(--terra);
  border-bottom: 1px solid rgba(194,82,45,.4);
}
.about-body a:hover { border-color: var(--terra); }
.sig {
  margin: 34px 0 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.sig-line {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.sig-sub {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--drift);
  margin: 6px 0 0;
}

/* ---------- Brands Strip ---------- */
.brands-strip {
  background: linear-gradient(180deg, #12304A 0%, var(--ink) 100%);
  color: var(--sand);
  padding: 130px 40px;
}
.brands-inner { max-width: 1280px; margin: 0 auto; }
.section-head.dark { margin-bottom: 60px; }
.brands-copy {
  max-width: 56ch;
  margin: 0 auto;
  color: rgba(242,234,223,.75);
  font-size: 16px;
  line-height: 1.65;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.brand-tile {
  background: rgba(242,234,223,.04);
  border: 1px solid rgba(242,234,223,.14);
  border-radius: 4px;
  padding: 32px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.brand-tile:hover {
  background: rgba(194,82,45,.1);
  border-color: var(--terra);
  transform: translateY(-2px);
}
.brand-tile-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--sand);
}
.brand-tile-arrow { color: var(--terra); font-size: 18px; }
.brand-tile.featured .brand-tile-name { color: var(--paper); }
.brand-tile.featured {
  background: rgba(194,82,45,.08);
  border-color: rgba(194,82,45,.35);
}

/* ---------- Tend / Services ---------- */
.tend {
  background: var(--paper);
  padding: 130px 40px;
}
.section-head {
  max-width: 1320px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head .h-editorial { max-width: 16ch; margin-inline: auto; }

.tend-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 30px;
}
.tend-card {
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(23,56,79,.3);
}
.tend-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(.9);
}
.tend-card.featured { grid-column: span 2; }
.tend-card.featured img { height: 340px; }
.tend-card.wide { grid-column: span 3; }
.tend-card.wide { display: grid; grid-template-columns: 1fr 1.3fr; }
.tend-card.wide img { height: 100%; min-height: 320px; }

.tend-body { padding: 32px 34px 34px; }
.card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--terra);
  margin: 0 0 10px;
  letter-spacing: .02em;
}
.tend-body h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.tend-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.tags {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--drift) !important;
  margin: 0 !important;
}

/* ---------- Along the Coast ---------- */
.along {
  background: var(--ink);
  color: var(--sand);
  padding: 130px 40px;
  position: relative;
}
.along-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.along-copy {
  color: rgba(242,234,223,.75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 36px;
}
.area-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-light);
}
.area-grid li {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--sand);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-light);
  letter-spacing: .01em;
  position: relative;
}
.area-grid li:nth-child(odd) { padding-right: 20px; }
.area-grid li:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--rule-light); }
.area-grid li::before {
  content: "↗";
  color: var(--terra);
  margin-right: 12px;
  font-style: normal;
}
.along-photo img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
}

/* ---------- Why ---------- */
.why {
  background: var(--sand);
  padding: 130px 40px;
}
.why-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 60px;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-num {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 40px;
  color: var(--terra);
  letter-spacing: -.02em;
  margin: 0;
}
.why-item h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 20px;
  margin: 0;
}
.why-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.pull {
  max-width: 920px;
  margin: 90px auto 0;
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pull p {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.pull cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--drift);
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--terra);
  color: var(--paper);
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,247,241,.08), transparent 70%);
}
.cta-strip::before { top: -150px; left: -100px; }
.cta-strip::after { bottom: -150px; right: -100px; }
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 42px);
  margin: 0;
  max-width: 18ch;
  letter-spacing: -.015em;
}
.cta-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.cta-strip .btn-primary { background: var(--paper); color: var(--terra); }
.cta-strip .btn-primary:hover { background: var(--sand); color: var(--terra-deep); }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: var(--sand);
  padding: 80px 40px 0;
}
.foot-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule-light);
}
.foot-brand { display: flex; flex-direction: column; gap: 10px; }
.foot-mark {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--paper);
  padding: 4px;
  margin-bottom: 6px;
}
.foot-name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.foot-tag {
  font-size: 13.5px;
  color: rgba(242,234,223,.65);
  max-width: 34ch;
  margin: 0;
  line-height: 1.55;
}
.foot-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-col p {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(242,234,223,.85);
  line-height: 1.6;
}
.foot-col a:hover { color: var(--terra); }
.foot-rule {
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 0;
  text-align: center;
}
.foot-rule p {
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(242,234,223,.55);
  margin: 0;
}

/* ---------- Mobile sticky call ---------- */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--terra);
  color: var(--paper);
  padding: 14px 20px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14.5px;
  box-shadow: 0 14px 28px -10px rgba(194,82,45,.55);
  z-index: 100;
}

/* ---------- Page hero / body / index (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
  padding: 90px 40px 70px;
  border-bottom: 1px solid var(--rule);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.h-page {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  color: var(--ink);
  max-width: 22ch;
}
.crumb {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--drift);
  margin-top: 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.crumb a { color: var(--terra); border-bottom: 1px solid rgba(194,82,45,.3); }
.crumb-sep { color: var(--drift); opacity: .6; }

.page-image {
  background: var(--sand);
  padding: 0 40px;
}
.page-image-inner {
  max-width: 1280px;
  margin: 0 auto;
  transform: translateY(-40px);
}
.page-image img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(23,56,79,.35);
}

.page-body {
  background: var(--paper);
  padding: 40px 40px 130px;
}
.page-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.prose {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.prose h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 50px 0 16px;
  line-height: 1.2;
}
.prose h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 32px 0 10px;
}
.prose p { margin: 0 0 18px; }
.prose a { color: var(--terra); border-bottom: 1px solid rgba(194,82,45,.4); }
.prose a:hover { border-color: var(--terra); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 22px; }
.prose li { margin: 0 0 8px; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  border-left: 3px solid var(--terra);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  background: var(--sand);
  border-radius: 0 4px 4px 0;
}

.side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; }
.side-card {
  background: var(--sand);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.side-card .eyebrow { margin-bottom: 4px; }
.side-copy { font-size: 14.5px; margin: 0 0 6px; color: var(--ink-soft); line-height: 1.55; }
.side-rebuild {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-rebuild p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.side-rebuild .rebuild-tag {
  background: var(--terra); color: var(--paper);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; align-self: flex-start;
}
.side-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.side-links a {
  font-family: "Fraunces", serif;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.side-links a:hover { color: var(--terra); border-color: var(--terra); }

.index { background: var(--paper); padding: 80px 40px 130px; }
.index-inner { max-width: 1280px; margin: 0 auto; }
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.index-card {
  background: var(--sand);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.index-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(23,56,79,.3);
  border-color: rgba(194,82,45,.3);
}
.index-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}
.index-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------- Responsive ---------- */
.tend-body h3 a { color: inherit; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.tend-body h3 a:hover { color: var(--terra); border-color: var(--terra); }
.area-grid li a { color: inherit; transition: color .2s; }
.area-grid li a:hover { color: var(--terra); }

@media (max-width: 980px) {
  .about { padding: 80px 22px; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .brands-strip { padding: 80px 22px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .brand-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .masthead-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 14px 20px; }
  .top-nav { display: none; }
  .phone-chip { padding: 8px 14px; font-size: 12px; }
  .brand-sub { display: none; }

  .hero { padding: 60px 22px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-photo img { aspect-ratio: 5/4; }
  .hero-ticker { margin-top: 56px; gap: 22px; font-size: 14px; }

  .book { padding: 70px 22px; }
  .book-inner { grid-template-columns: 1fr; gap: 50px; }
  .book-form { padding: 30px 24px; }
  .book-form .row { grid-template-columns: 1fr; gap: 16px; }

  .tend { padding: 80px 22px; }
  .tend-grid { grid-template-columns: 1fr; gap: 20px; }
  .tend-card.featured, .tend-card.wide { grid-column: span 1; }
  .tend-card.wide { grid-template-columns: 1fr; }
  .tend-card.wide img { min-height: 220px; height: 220px; }

  .along { padding: 80px 22px; }
  .along-inner { grid-template-columns: 1fr; gap: 50px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-grid li { padding: 14px 0 !important; border-left: none !important; }

  .why { padding: 80px 22px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cta-strip { padding: 60px 22px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }

  .page-hero { padding: 60px 22px 50px; }
  .page-image { padding: 0 22px; }
  .page-image-inner { transform: translateY(-24px); }
  .page-body { padding: 30px 22px 80px; }
  .page-body-inner { grid-template-columns: 1fr; gap: 40px; }
  .side { position: static; }
  .index { padding: 60px 22px 80px; }
  .index-grid { grid-template-columns: 1fr; }

  .foot { padding: 50px 22px 0; }
  .foot-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }

  .mobile-call { display: inline-flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
}
