*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #1A1A1A;
  --ink-mid:   #444444;
  --ink-soft:  #777777;
  --rule:      #E0DED8;
  --paper:     #FAFAF7;
  --paper-2:   #F2F0EB;
  --orange:    #105772;
  --orange-lt: #F4784A;
  --orange-bg: #FEF2EC;
  --white:     #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;      /* Adjust this value to control the spacing */
}

.logo img {
    display: block; /* Removes the inline-image whitespace */
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
  position: relative; top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400;
  color: var(--ink-mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-lt) !important; }

/* ─── HERO ─── */
.hero {
  background: var(--white);
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 0;
  border-right: 1px solid var(--rule);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.75rem;
}
.hero-kicker::before {
  content: '';
  display: inline-block; width: 28px; height: 1.5px;
  background: var(--orange);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-desc {
  font-size: 1.0625rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.25rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-lt); }
.btn-outline {
  color: var(--ink-mid);
  padding: 0.8rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.hero-stat-num b { color: var(--orange); font-weight: 900; }
.hero-stat-label {
  font-size: 0.75rem; color: var(--ink-soft);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 0.3rem;
}

.hero-right {
  position: relative;
  display: flex; align-items: stretch;
}
.hero-photo-stack {
  width: 100%; position: relative;
}
.hero-photo-main {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.hero-photo-placeholder svg {
  width: 64px; height: 64px;
  stroke: var(--rule); fill: none; stroke-width: 1;
}
.hero-photo-placeholder p {
  font-size: 0.8rem; color: var(--ink-soft);
  text-align: center; max-width: 18ch;
}
.hero-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-tag-text { font-size: 0.8rem; font-weight: 500; color: var(--ink); }
.hero-tag-sub { font-size: 0.7rem; color: var(--ink-soft); margin-top: 0.05rem; }

/* ─── STRIP ─── */
.strip {
  background: var(--ink);
  color: var(--white);
  padding: 1rem 5%;
  display: flex; align-items: center; gap: 3rem;
  overflow: hidden;
}
.strip-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  white-space: nowrap; flex-shrink: 0;
}
.strip-items {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: scroll-strip 30s linear infinite;
}
.strip-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; font-weight: 300; color: #ccc;
}
.strip-item::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
@keyframes scroll-strip {
  from { transform: translateX(100%); }
  to   { transform: translateX(-120%); }
}

/* ─── SHARED SECTION ─── */
section { padding: 6rem 5%; }
.eyebrow {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.875rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1.5px; background: var(--orange);
}
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h2.section-title em { font-style: italic; color: var(--orange); }
.section-lead {
  font-size: 1.0625rem; color: var(--ink-mid);
  line-height: 1.75; font-weight: 300;
  max-width: 58ch;
}
.rule-line { border: none; border-top: 1px solid var(--rule); margin: 3rem 0; }

/* ─── WHY SECTION ─── */
.why-section { background: var(--white); border-bottom: 1px solid var(--rule); }
.why-intro { max-width: 60ch; margin-bottom: 4rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.feature-cell {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  transition: background 0.2s;
}
.feature-cell:hover { background: var(--orange-bg); }
.feature-cell:nth-child(2n) { border-right: none; }
.feature-cell:nth-child(3),
.feature-cell:nth-child(4) { border-bottom: none; }
.feature-num {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 700; color: var(--orange);
  padding-top: 0.1rem;
}
.feature-title {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--ink);
}
.feature-desc { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.7; font-weight: 300; }

/* ─── PHOTO FEATURE STRIP ─── */
.photo-feature { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.photo-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.photo-feature-img {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  aspect-ratio: 4/3;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
}
.photo-feature-img svg {
  width: 52px; height: 52px;
  stroke: #ccc; fill: none; stroke-width: 1;
}
.photo-feature-img p {
  font-size: 0.8rem; color: var(--ink-soft);
  text-align: center; max-width: 20ch;
}
.photo-feature-content { padding: 1rem 0; }
.photo-feature-content blockquote {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700; font-style: italic;
  line-height: 1.4; color: var(--ink);
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.photo-feature-desc {
  font-size: 0.9375rem; color: var(--ink-mid);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 1.5rem;
}

/* ─── LOCATIONS ─── */
.locations-section { background: var(--white); border-bottom: 1px solid var(--rule); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.location-card {
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.location-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(229,84,27,0.08);
}
.location-card-img {
  aspect-ratio: 16/9;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--rule);
}
.location-card-img svg {
  width: 40px; height: 40px;
  stroke: #ccc; fill: none; stroke-width: 1;
}
.location-card-body { padding: 1.5rem; }
.location-tag {
  display: inline-block;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 100px;
  margin-bottom: 0.75rem;
}
.location-name {
  font-family: var(--serif);
  font-size: 1.125rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.5rem;
}
.location-desc {
  font-size: 0.875rem; color: var(--ink-mid);
  line-height: 1.65; font-weight: 300;
}
.location-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--orange); text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.location-link:hover { gap: 0.7rem; }
.location-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--paper-2); border-bottom: 1px solid var(--rule); }
.testimonials-intro { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.75rem;
}
.t-quote-mark {
  font-family: var(--serif);
  font-size: 3rem; line-height: 1;
  color: var(--orange); opacity: 0.3;
  margin-bottom: 0.25rem;
}
.t-quote {
  font-size: 0.9rem; color: var(--ink-mid);
  line-height: 1.75; font-style: italic; font-weight: 300;
  margin-bottom: 1.25rem;
}
.t-author { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.t-biz { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.1rem; }
.t-stars { color: var(--orange); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }

/* ─── AD SPECS ─── */
.specs-section { background: var(--white); border-bottom: 1px solid var(--rule); }
.specs-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.specs-table { border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; }
.specs-th {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: 0.875rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { padding: 0.875rem 1.25rem; color: var(--ink-mid); font-weight: 300; }
.spec-val { padding: 0.875rem 1.25rem; color: var(--ink); font-weight: 500; border-left: 1px solid var(--rule); }
.specs-tips { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 0.5rem; }
.spec-tip {
  display: flex; gap: 1rem; align-items: flex-start;
}
.tip-icon {
  width: 2.25rem; height: 2.25rem; flex-shrink: 0;
  background: var(--orange-bg);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.tip-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.tip-title { font-size: 0.875rem; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.tip-desc { font-size: 0.8125rem; color: var(--ink-mid); line-height: 1.6; font-weight: 300; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--ink);
  padding: 5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.25; letter-spacing: -0.02em;
  max-width: 28ch;
}
.cta-banner h2 em { font-style: italic; color: var(--orange); }
.btn-primary-lg {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-primary-lg:hover { background: var(--orange-lt); }

/* ─── CONTACT ─── */
.contact-section { background: var(--paper-2); border-bottom: 1px solid var(--rule); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 0.25rem; color: var(--ink);
}
.contact-detail {
  font-size: 0.9rem; color: var(--ink-mid); font-weight: 300;
  line-height: 1.8;
}
.contact-detail a { color: var(--orange); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-divider { width: 40px; height: 2px; background: var(--orange); margin: 1.5rem 0; border-radius: 1px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink); margin-bottom: 1.75rem;
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0.75rem 0.875rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,84,27,0.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--orange);
  border: none;
  border-radius: 4px;
  padding: 0.875rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--orange-lt); }
.form-note {
  font-size: 0.78rem; color: var(--ink-soft);
  text-align: center; margin-top: 0.75rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 2.5rem 5%;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.125rem; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.footer-logo span {
  display: inline-block;
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; margin-left: 2px;
  vertical-align: middle; position: relative; top: -2px;
}
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
  font-size: 0.85rem; color: #888;
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: #555; flex-wrap: wrap; gap: 0.5rem;
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 960px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 4rem 0 3rem; }
  .hero-right { min-height: 320px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-cell:nth-child(2n) { border-right: none; }
  .feature-cell:nth-child(3),
  .feature-cell:nth-child(4) { border-bottom: none; }

  /* Other grids */
  .photo-feature-grid { grid-template-columns: 1fr; }
  .photo-feature-grid img { max-height: 360px; width: 100%; object-fit: cover; border-radius: 6px; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .specs-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }

  /* CTA banner */
  .cta-banner { flex-direction: column; text-align: center; align-items: center; }
}

/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 640px) {

  /* ── Nav ── */
  nav {
    padding: 0 4%;
    height: 58px;
  }
  .nav-links { display: none; }
  .nav-logo { font-size: 1.05rem; }
  .logo img { width: 44px; height: 44px; }

  /* ── Global spacing ── */
  section { padding: 3.5rem 4%; }
  .hero { padding: 0 4%; }

  /* ── Hero ── */
  .hero-left { padding: 2.75rem 0 2.25rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 1.25rem; }
  .hero-desc { font-size: 0.9375rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-primary,
  .btn-outline { text-align: center; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-right { min-height: 240px; }
  .hero-tag {
    bottom: 1rem; left: 1rem;
    padding: 0.6rem 0.85rem;
    gap: 0.6rem;
  }
  .hero-tag-text { font-size: 0.72rem; }
  .hero-tag-sub { font-size: 0.64rem; }

  /* ── Strip ── */
  .strip { padding: 0.85rem 4%; }
  .strip-item { font-size: 0.75rem; }

  /* ── Shared section headings ── */
  h2.section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-lead { font-size: 0.9375rem; }

  /* ── Why / Features ── */
  .why-intro { margin-bottom: 2rem; }
  .features-grid {
    grid-template-columns: 1fr;
    border-radius: 6px;
  }
  .feature-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--rule) !important;
    padding: 1.5rem 1.25rem;
    grid-template-columns: 2rem 1fr;
    gap: 0.875rem;
  }
  .feature-cell:last-child { border-bottom: none !important; }

  /* ── Photo feature ── */
  .photo-feature { padding: 0; }
  .photo-feature-grid { gap: 0; }
  .photo-feature-grid img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  .photo-feature-content {
    padding: 2rem 4%;
  }
  .photo-feature-content blockquote {
    font-size: 1.2rem;
    margin: 1.25rem 0;
  }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-intro { margin-bottom: 2rem; }

  /* ── Locations ── */
  .locations-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }

  /* ── Ad Specs ── */
  .specs-layout { margin-top: 2rem; gap: 2rem; }
  .spec-key,
  .spec-val { padding: 0.75rem 1rem; font-size: 0.85rem; }
  .specs-th { padding: 0.75rem 1rem; }

  /* ── CTA Banner ── */
  .cta-banner {
    padding: 3.5rem 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .btn-primary-lg { width: 100%; text-align: center; }

  /* ── Contact ── */
  .contact-layout { margin-top: 2rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .form-2col { grid-template-columns: 1fr; }

  /* ── Footer ── */
  footer { padding: 2rem 4%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links {
    flex-direction: column;
    gap: 0.625rem;
  }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }
}
