/* ============================================================
   Four Star Lighting & Electric — Heritage Establishment
   Lowell, MA · Est. 1975
   Palette: deep ivy + cream + brass + ink
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ivy:        #1f3a2e;   /* deep traditional green, signage-paint */
  --ivy-deep:   #16291f;   /* near-black ivy */
  --ivy-soft:   #2d5142;
  --brass:      #b89352;   /* honest brass, not gold */
  --brass-dark: #8e6f3c;
  --cream:      #f4ecd6;   /* aged paper */
  --cream-soft: #faf5e6;
  --ink:        #1a1a17;
  --paper:      #fbf7ec;
  --rule:       #d8c79a;   /* aged-paper rule */
  --rule-soft:  #e9dcb6;
  --muted:      #6b6557;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ivy); text-decoration: none; }
a:hover { color: var(--brass-dark); }

img, svg { display: block; max-width: 100%; }

/* ---------- Typography ---------- */
h1, h2, h3 { margin: 0; color: var(--ivy-deep); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-head__eyebrow::before,
.section-head__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.section-head--centered .section-head__eyebrow { justify-content: center; }
.section-head__h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  color: var(--ivy-deep);
}
.section-head__lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.5vw, 21px);
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 64ch;
}
.section-head--centered .section-head__lede { margin-left: auto; margin-right: auto; }

/* ---------- Sticky call (mobile) ---------- */
.sticky-call {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  background: var(--ivy);
  color: var(--cream);
  border: 1px solid var(--brass);
  box-shadow: 0 8px 20px rgba(31,58,46,0.18);
  text-decoration: none;
}
.sticky-call:hover { color: var(--cream); background: var(--ivy-deep); }
.sticky-call__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.sticky-call__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}
@media (min-width: 880px) { .sticky-call { display: none; } }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.masthead__rule {
  height: 4px;
  background:
    linear-gradient(to right, var(--ivy) 0 50%, var(--brass) 50% 100%);
}
.masthead__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
@media (max-width: 880px) {
  .masthead__inner { grid-template-columns: 1fr auto; gap: 12px; padding: 14px 18px; }
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--ivy-deep);
}
.wordmark__stars {
  display: block;
  color: var(--brass);
  width: 96px; height: 14px;
}
.wordmark__stars svg { width: 96px; height: 14px; }
.wordmark__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wordmark__one {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--ivy-deep);
}
.wordmark__two {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-top: 4px;
  font-weight: 600;
}

.masthead__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.masthead__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ivy-deep);
  position: relative;
  padding: 4px 0;
}
.masthead__nav a:hover { color: var(--brass-dark); }
@media (max-width: 880px) { .masthead__nav { display: none; } }

.masthead__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  text-decoration: none;
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}
.masthead__phone-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.masthead__phone-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ivy-deep);
  letter-spacing: 0.01em;
}
@media (max-width: 880px) {
  .masthead__phone { border-left: 0; padding-left: 0; }
  .masthead__phone-num { font-size: 18px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: clamp(56px, 8vw, 110px) 28px clamp(72px, 9vw, 130px);
  position: relative;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow-mark {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--brass);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ivy-deep);
  margin: 0 0 28px;
}
.hero__title-em {
  font-style: italic;
  font-weight: 500;
  color: var(--ivy);
  position: relative;
}
.hero__title-em::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 2px;
  background: var(--brass);
  margin-top: 14px;
}

.hero__lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 58ch;
  margin: 0 0 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.hero__pillars li {
  padding: 0 24px;
  border-right: 1px solid var(--rule);
}
.hero__pillars li:first-child { padding-left: 0; }
.hero__pillars li:last-child { border-right: 0; padding-right: 0; }
.hero__pillar-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1;
  color: var(--ivy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hero__pillar-lbl {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
@media (max-width: 540px) {
  .hero__pillars { grid-template-columns: 1fr; gap: 20px; }
  .hero__pillars li { padding: 0 0 16px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero__pillars li:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary {
  background: var(--ivy);
  color: var(--cream);
  border-color: var(--ivy);
}
.btn--primary:hover { background: var(--ivy-deep); color: var(--cream); }
.btn--quiet {
  background: transparent;
  color: var(--ivy-deep);
  border-color: var(--ivy-deep);
}
.btn--quiet:hover { background: var(--ivy-deep); color: var(--cream); }
.btn--block { width: 100%; }

/* ---------- Hero crest ---------- */
.hero__crest {
  display: flex;
  justify-content: center;
}
.crest {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.crest__svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(31,58,46,0.04));
}
.crest__caption {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.crest__bbb {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.crest__rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ivy-deep);
}
.crest__lic {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- Proof strip ---------- */
.proof {
  background: var(--ivy);
  color: var(--cream);
  padding: 48px 28px;
  position: relative;
}
.proof::before, .proof::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: var(--brass);
}
.proof::before { top: 0; }
.proof::after { bottom: 0; }
.proof__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}
.proof__col {
  text-align: center;
}
.proof__num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  color: var(--cream);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.proof__caption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-soft);
  margin: 0 auto;
  opacity: 0.92;
  max-width: 28ch;
}
.proof__caption strong { color: var(--brass); font-weight: 600; }
.proof__rule {
  width: 1px;
  height: 64px;
  background: rgba(184,147,82,0.4);
  align-self: center;
}
@media (max-width: 880px) {
  .proof__inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .proof__rule { display: none; }
}

/* ---------- Trade ---------- */
.trade {
  background: var(--paper);
  padding: clamp(72px, 8vw, 120px) 28px;
  border-bottom: 1px solid var(--rule);
}
.trade__inner { max-width: 1180px; margin: 0 auto; }
.trade__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.trade__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.trade__numeral {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 3.4vw, 46px);
  color: var(--brass);
  line-height: 1;
  letter-spacing: 0.02em;
}
.trade__h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--ivy-deep);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.trade__body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  max-width: 64ch;
}
@media (max-width: 640px) {
  .trade__item { grid-template-columns: 1fr; gap: 8px; }
  .trade__numeral { font-size: 28px; }
}

/* ---------- History timeline ---------- */
.history {
  background: var(--cream);
  padding: clamp(72px, 8vw, 120px) 28px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.history__inner { max-width: 980px; margin: 0 auto; }
.timeline {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 134px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--brass);
}
.timeline__entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 56px;
  padding: 28px 0;
  position: relative;
}
.timeline__entry::before {
  content: "";
  position: absolute;
  left: 128px;
  top: 38px;
  width: 13px;
  height: 13px;
  background: var(--cream);
  border: 2px solid var(--brass);
  transform: rotate(45deg);
}
.timeline__entry--now::before {
  background: var(--ivy);
  border-color: var(--ivy);
}
.timeline__year {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--brass-dark);
  margin: 0;
  text-align: right;
  padding-right: 0;
  letter-spacing: 0.02em;
}
.timeline__copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ivy-deep);
}
.timeline__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  max-width: 56ch;
}
@media (max-width: 720px) {
  .timeline::before { left: 8px; }
  .timeline__entry { grid-template-columns: 1fr; gap: 6px; padding-left: 32px; }
  .timeline__entry::before { left: 2px; top: 12px; }
  .timeline__year { text-align: left; }
}

/* ---------- Territory ---------- */
.territory {
  background: var(--paper);
  padding: clamp(72px, 8vw, 120px) 28px;
  border-bottom: 1px solid var(--rule);
}
.territory__inner { max-width: 1180px; margin: 0 auto; }
.territory__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  border-top: 1px solid var(--rule);
  padding-top: 48px;
}
@media (max-width: 800px) {
  .territory__columns { grid-template-columns: 1fr; gap: 36px; }
}
.territory__col-h {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.territory__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.territory__col li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ivy-deep);
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule-soft);
}
.territory__col li:last-child { border-bottom: 0; }
.territory__col-note {
  margin: 20px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Offices ---------- */
.offices {
  background: var(--ivy);
  color: var(--cream);
  padding: clamp(72px, 8vw, 120px) 28px;
}
.offices .section-head__eyebrow { color: var(--brass); }
.offices .section-head__eyebrow::before,
.offices .section-head__eyebrow::after { background: var(--brass); }
.offices .section-head__h2 { color: var(--cream); }
.offices .section-head__lede { color: var(--cream-soft); }
.offices__inner { max-width: 1180px; margin: 0 auto; }
.offices__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  border-top: 1px solid rgba(184,147,82,0.35);
  padding-top: 48px;
}
@media (max-width: 800px) {
  .offices__pair { grid-template-columns: 1fr; gap: 40px; }
}
.office__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}
.office__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.office__addr {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-soft);
  margin: 0 0 24px;
}
.office__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  margin: 0;
  font-size: 15px;
}
.office__hours dt {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  align-self: center;
}
.office__hours dd {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--cream-soft);
}
.office__copy {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-soft);
  margin: 0;
  max-width: 44ch;
}
.offices__phone {
  margin: 56px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream);
  padding-top: 36px;
  border-top: 1px solid rgba(184,147,82,0.35);
}
.offices__phone a {
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  font-style: normal;
  font-weight: 600;
}
.offices__phone a:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Quote ---------- */
.quote {
  background: var(--cream-soft);
  padding: clamp(72px, 8vw, 120px) 28px;
  border-bottom: 1px solid var(--rule);
}
.quote__inner { max-width: 880px; margin: 0 auto; }
.quote__inline-phone {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--ivy-deep);
  font-style: normal;
  border-bottom: 1px solid var(--brass);
}
.quote__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  margin-top: 16px;
}
.field { display: flex; flex-direction: column; }
.field--wide { grid-column: 1 / -1; }
.field--submit { margin-top: 8px; }
.field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ivy-deep);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ivy-deep);
  padding: 8px 0 12px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color .15s ease;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ivy-deep) 50%),
    linear-gradient(135deg, var(--ivy-deep) 50%, transparent 50%);
  background-position: calc(100% - 12px) 18px, calc(100% - 6px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 24px;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass-dark);
  border-bottom-width: 2px;
  padding-bottom: 11px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.quote__sent {
  margin: 16px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ivy);
}
@media (max-width: 640px) {
  .quote__form { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ivy-deep);
  color: var(--cream-soft);
  padding: clamp(56px, 6vw, 80px) 28px 28px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__col--brand { color: var(--cream); }
.footer__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}
.footer__est {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
}
.footer__phone a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
.footer__phone a:hover { color: var(--brass); }
.footer__phone { margin: 0 0 14px; }
.footer__addr {
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-soft);
}

.footer__h {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,147,82,0.3);
}
.footer__col dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0;
}
.footer__col dt {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  align-self: center;
}
.footer__col dd {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--cream-soft);
}
.footer__ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__ul li {
  font-size: 14px;
  line-height: 1.65;
  padding: 4px 0;
  color: var(--cream-soft);
}
.footer__cities {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-soft);
  margin: 0;
}

.footer__rule {
  max-width: 1280px;
  margin: 48px auto 0;
  height: 1px;
  background: rgba(184,147,82,0.3);
}
.footer__meta {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(244,236,214,0.65);
  letter-spacing: 0.04em;
}
.footer__meta a {
  color: var(--brass);
  border-bottom: 1px solid transparent;
}
.footer__meta a:hover { border-bottom-color: var(--brass); }

/* Mobile: leave space for sticky CTA */
@media (max-width: 879px) {
  .footer { padding-bottom: 100px; }
}
