/* ============================================
   BENCHMARK HOME RENOVATIONS — SHARED STYLES
   ============================================ */

:root {
  --ink: #1a1a1a;
  --ink-soft: #2e2e2e;
  --slate: #5a5a5a;
  --slate-light: #8a8a8a;
  --bone: #f7f4ee;
  --stone: #ece6da;
  --mist: #e2dccf;
  --line: #d8d2c4;
  --accent: #7ed957;
  --accent-deep: #4d8f2a;
  --max: 1320px;
  --max-narrow: 920px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

p { color: var(--slate); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-deep);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* === TOP BAR === */
.topbar {
  background: var(--ink);
  color: var(--bone);
  font-size: 0.82rem;
  padding: 10px 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar-contact { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar-contact span { opacity: 0.55; }

/* === HEADER === */
header.site-header {
  background: rgba(247, 244, 238, 0.95);
  border-bottom: 1px solid var(--mist);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--ink);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
  font-weight: 500;
}

nav.primary {
  display: flex;
  gap: 36px;
  font-size: 0.92rem;
  font-weight: 400;
}
nav.primary a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-deep);
  transition: width .25s;
}
nav.primary a:hover::after,
nav.primary a.active::after { width: 100%; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  transition: all .25s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(247,244,238,0.4);
}
.btn-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* === PAGE HEADERS (inner pages) === */
.page-header {
  background: var(--stone);
  padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--mist);
}
.page-header .container { max-width: var(--max-narrow); }
.page-header .eyebrow { color: var(--accent-deep); }
.page-header h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 1.5rem;
}
.page-header h1 em { font-style: italic; color: var(--accent-deep); }
.page-header p.lede {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.6;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bone);
  padding: 0 0 8vh 0;
  max-width: 760px;
}
.hero-content .eyebrow { color: rgba(247,244,238,0.75); }
.hero-content .eyebrow::before { background: var(--accent); }
.hero h1 {
  color: var(--bone);
  font-size: clamp(2.8rem, 6.5vw, 5.25rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero p.lede {
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 560px;
  font-weight: 300;
  color: rgba(247,244,238,0.85);
  margin-bottom: 2.25rem;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* === STATS STRIP (replaces trust-strip) === */
.stats-strip {
  background: var(--ink);
  color: var(--bone);
  padding: 56px 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
@media (max-width: 760px) { .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 32px 0; } }
.stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(247,244,238,0.18);
}
.stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(247,244,238,0.18); padding-bottom: 32px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 8px; }
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.stat-num .stat-accent {
  color: var(--accent);
  font-style: italic;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.65);
  font-weight: 500;
}

/* === LEGACY TRUST STRIP (kept for compat) === */
.trust-strip {
  background: var(--bone);
  border-bottom: 1px solid var(--mist);
  padding: 32px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--slate);
  font-weight: 400;
}
.trust-item strong { color: var(--ink); font-weight: 500; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* === SECTIONS === */
section { padding: clamp(80px, 12vw, 140px) 0; }
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head h2 { margin-bottom: 1.5rem; }
.section-head h2 em { font-style: italic; color: var(--accent-deep); }
.section-head p {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
}

/* === INTRO === */
.intro { background: var(--bone); text-align: center; }
.intro .container { max-width: 880px; }
.intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.intro h2 em { color: var(--accent-deep); font-style: italic; }
.intro p { font-size: 1.1rem; line-height: 1.75; }

/* === PROSE (text-heavy pages) === */
.prose { max-width: 720px; }
.prose p { font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.5rem; }
.prose h2 { margin: 3.5rem 0 1.5rem; }
.prose h3 { margin: 2.5rem 0 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--slate); }
.prose ul li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 500; }

/* === TWO-COL === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}

/* === SERVICES GRID === */
.services { background: var(--stone); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bone);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s;
}
.service-card:hover { background: #fff; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 12px;
  flex-grow: 1;
}
.service-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.service-card:hover .service-link {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

/* === PROJECTS === */
.projects { background: var(--bone); }
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
.project-grid.three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 768px) { .project-grid { grid-template-columns: 1fr; } }

.project-card { display: flex; flex-direction: column; gap: 24px; }
.project-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  transition: background .3s;
}
.project-card:hover .project-image::after { background: rgba(26,26,26,0.08); }
.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
}
.project-card h3 { font-size: 1.85rem; font-weight: 500; }
.project-card p { font-size: 0.98rem; }
.projects-cta { text-align: center; margin-top: 4rem; }

/* === PROCESS === */
.process { background: var(--ink); color: var(--bone); }
.process .eyebrow { color: rgba(247,244,238,0.6); }
.process .eyebrow::before { background: var(--accent); }
.process h2 { color: var(--bone); }
.process .section-head p { color: rgba(247,244,238,0.75); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 56px 32px;
}
.process-step {
  border-top: 1px solid rgba(247,244,238,0.18);
  padding-top: 28px;
}
.process-step .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h4 {
  color: var(--bone);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.process-step p {
  color: rgba(247,244,238,0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--stone); }
.quote-block {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--accent-deep);
  line-height: 0.5;
  margin-bottom: 1rem;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 2rem;
}
cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
  font-weight: 500;
}
cite strong { color: var(--ink); font-weight: 500; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: var(--bone);
  padding: 40px 32px;
  border: 1px solid var(--line);
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 1.25rem;
}
.testimonial-card cite { text-align: left; }

/* === FINAL CTA === */
.final-cta {
  background: var(--bone);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
}
.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: italic; color: var(--accent-deep); }
.final-cta p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* === ONE ROOF (trades) === */
.one-roof { background: var(--bone); }
.one-roof-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 800px) { .one-roof-grid { grid-template-columns: 1fr; } }
.one-roof-trades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.trade-cell {
  background: var(--bone);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trade-cell .trade-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
}
.trade-cell h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.trade-cell p { font-size: 0.88rem; line-height: 1.55; color: var(--slate); margin: 0; }

/* === COMMITMENTS === */
.commitments { background: var(--stone); }
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.commitment {
  background: var(--bone);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.commitment-tick {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.commitment h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.commitment p { font-size: 0.95rem; line-height: 1.65; color: var(--slate); margin: 0; }

/* === FOUNDER QUOTE === */
.founder-quote {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}
.founder-quote .container { max-width: var(--max-narrow); }
.founder-quote .eyebrow { color: rgba(247,244,238,0.6); }
.founder-quote .eyebrow::before { background: var(--accent); }
.founder-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bone);
  line-height: 1.4;
  margin: 1.5rem 0 2rem;
}
.founder-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247,244,238,0.7);
  font-weight: 500;
}
.founder-quote cite strong { color: var(--bone); font-weight: 500; }

/* === STARS === */
.stars {
  color: var(--accent-deep);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

/* === FAQ === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
details {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--accent-deep);
  font-weight: 300;
  transition: transform .3s;
  line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  margin-top: 32px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 1rem; margin-bottom: 4px; }
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color .2s; }
.contact-info a:hover { border-color: var(--accent-deep); }

form.contact-form {
  background: var(--stone);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--mist);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
  font-weight: 300;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 8px; }

/* === FOOTER === */
footer.site-footer {
  background: var(--ink);
  color: rgba(247,244,238,0.7);
  padding: 80px 0 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .brand-mark { background: var(--bone); }
.footer-brand .brand-mark svg path { fill: var(--ink) !important; }
.footer-brand .brand-text { color: var(--bone); }
.footer-brand .brand-text small { color: rgba(247,244,238,0.55); }
.footer-brand p {
  margin-top: 24px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bone);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-locations {
  border-top: 1px solid rgba(247,244,238,0.15);
  padding: 36px 0 8px;
  margin-bottom: 28px;
}
.footer-locations h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bone);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-locations p {
  color: rgba(247,244,238,0.55);
  font-size: 0.88rem;
  margin-bottom: 20px;
  max-width: 760px;
  line-height: 1.6;
}
.footer-locations p a {
  color: rgba(247,244,238,0.8);
  border-bottom: 1px solid rgba(247,244,238,0.3);
  transition: color .2s, border-color .2s;
}
.footer-locations p a:hover { color: var(--accent); border-color: var(--accent); }
.footer-locations-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.8rem;
  color: rgba(247,244,238,0.55);
  margin: 0;
  padding: 0;
}
.footer-locations-list li::after {
  content: "·";
  margin-left: 14px;
  opacity: 0.45;
}
.footer-locations-list li:last-child::after { content: ""; margin: 0; }

.footer-bottom {
  border-top: 1px solid rgba(247,244,238,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(247,244,238,0.5);
}
.footer-bottom .credentials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* === UTILITIES === */
@media (max-width: 880px) {
  nav.primary { display: none; }
  .topbar-contact { gap: 16px; }
  .topbar-contact span { display: none; }
}
