/* CTA */
  .detail-cta {
    background: var(--charcoal);
    padding: 120px 80px; text-align: center;
  }
  .detail-cta .label {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(250,248,244,0.4); margin-bottom: 24px;
  }
  .detail-cta h2 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1;
    color: var(--white); margin-bottom: 48px;
  }
  .detail-cta h2 em { font-style: italic; color: var(--sand); }
  .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* Footer */
  footer {
    background: var(--charcoal);
    padding: 34px 50px;
    border-top: 0.5px solid rgba(250,248,244,0.06);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 64px;
  }
  .footer-brand .logo {
    font-family: var(--serif); font-size: 16px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--white); margin-bottom: 20px;
  }
  .footer-brand .footer-logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: 62px;
    object-fit: contain;
    object-position: left top;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }
  .footer-brand p {
    font-size: 13px; line-height: 1.8; color: rgba(250,248,244,0.4);
    max-width: 260px;
  }
  .footer-col h4 {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(250,248,244,0.3); margin-bottom: 20px;
  }
  .footer-col a {
    display: block; font-size: 13px; color: rgba(250,248,244,0.55);
    text-decoration: none; margin-bottom: 12px;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--white); }

  /* ── Social / Follow Us ───────────────────────── */
  /* Compact horizontal brand + social treatment */
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .footer-social {
    margin-top: 0;
    padding-left: 20px;
    border-left: 1px solid rgba(250,248,244,0.12);
  }

  .footer-social h4 {
    margin-bottom: 8px;
  }

  .footer-social-icons {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .footer-social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 !important;
    color: rgba(250,248,244,0.52) !important;
    text-decoration: none;
    border: 0;
    border-radius: 50%;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .footer-social-link svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .footer-social-link:hover,
  .footer-social-link:focus-visible {
    color: var(--white) !important;
    opacity: 0.9;
    transform: translateY(-1px);
    outline: none;
  }

  .footer-social-link:hover svg,
  .footer-social-link:focus-visible svg {
    transform: scale(1.06);
  }

  .footer-social-link:focus-visible {
    box-shadow: 0 0 0 1px rgba(250,248,244,0.35);
  }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 32px;
    border-top: 0.5px solid rgba(250,248,244,0.06);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 11px; color: rgba(250,248,244,0.25); letter-spacing: 0.1em; }

  /* Back button */
  .back-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; background: none;
    border: none; padding: 0; margin: 32px 80px;
    transition: color 0.3s;
  }
  .back-btn:hover { color: var(--charcoal); }