  /* ── CONTACT PAGE ── */
  .contact-hero {
    padding: 168px 72px 36px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .contact-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 16px;
  }
  .contact-hero h1 em {
    color: var(--red);
    font-style: italic;
    font-weight: 400;
  }
  .contact-hero p {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 640px;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.25fr);
    gap: 56px 72px;
    padding: 28px 72px 72px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
  }

  .contact-aside h2,
  .cf-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
  }

  .detail-block {
    margin-bottom: 32px;
  }
  .detail-block strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
  }
  .detail-block p,
  .detail-block a {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
    text-decoration: none;
  }
  .detail-block a:hover { color: var(--red); }
  .detail-block a[href^="tel"] { display: block; }

  .contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(217,45,39,0.14);
    padding: 40px 40px 36px;
  }
  .cf-intro {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin: -8px 0 28px;
  }

  .cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }
  .cf-field { display: flex; flex-direction: column; gap: 7px; }
  .cf-span { grid-column: 1 / -1; }

  .cf-field label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
  }
  .cf-field label .opt {
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--text-mid);
    margin-left: 6px;
  }

  .cf-field input,
  .cf-field select,
  .cf-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--warm-grey);
    border-radius: 2px;
    background: var(--off-white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }
  .cf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235a5250' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .cf-field textarea { min-height: 130px; resize: vertical; }
  .cf-field input:focus,
  .cf-field select:focus,
  .cf-field textarea:focus {
    border-color: var(--red);
    background: #fff;
  }
  .cf-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .cf-math-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 18px;
    border: 1.5px solid var(--warm-grey);
    background: var(--off-white);
  }
  .cf-math-copy {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .cf-math-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cf-math-q {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--black);
    white-space: nowrap;
  }
  .cf-math-row input {
    width: 72px;
    padding: 10px 8px;
    text-align: center;
    border: 1.5px solid var(--warm-grey);
    border-radius: 2px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 18px;
    outline: none;
  }
  .cf-math-row input:focus { border-color: var(--red); }
  .cf-math-row input.cf-error { border-color: var(--red); }

  .cf-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .cf-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-mid);
    max-width: 420px;
    line-height: 1.5;
  }
  .cf-note a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cf-note a:hover { color: var(--red-dark); }
  .cf-note a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
  }
  button.btn-primary {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
  }
  button.btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
  }

  .cf-success {
    display: none;
    padding: 48px 24px;
    text-align: center;
  }
  .cf-success.is-visible { display: block; }
  .cf-success h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin: 0 0 12px;
  }
  .cf-success p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 420px;
    margin: 0 auto 28px;
  }

  .contact-map-section {
    padding: 0 72px 88px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .contact-map-section h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
  }
  .contact-map-frame {
    position: relative;
    height: 440px;
    border: 1px solid rgba(217,45,39,0.14);
    overflow: hidden;
    background: var(--warm-grey);
  }
  .contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
  }
  .hf-map-click {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hf-map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, calc(-100% + 10px));
    text-decoration: none;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
    transition: transform 0.25s ease;
  }
  .hf-map-pin:hover,
  .hf-map-pin:focus-visible {
    transform: translate(-50%, calc(-100% + 4px));
  }
  .hf-map-pin:focus-visible {
    outline: none;
  }
  .hf-map-pin-mark {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--red);
    overflow: hidden;
    display: grid;
    place-items: center;
  }
  .hf-map-pin-mark img {
    width: 118%;
    height: 118%;
    object-fit: cover;
    display: block;
  }
  .hf-map-pin-tip {
    width: 0;
    height: 0;
    margin-top: -2px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 18px solid var(--red);
  }
  @media (prefers-reduced-motion: reduce) {
    .hf-map-pin { transition: none; }
  }
  .contact-map-link {
    margin-top: 14px;
  }
  .contact-map-link a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
  }
  .contact-map-link a:hover { color: var(--red-dark); }

  .contact-strip-cta {
    display: inline-block;
    margin-top: 16px;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.55);
    padding-bottom: 3px;
  }
  .contact-strip-cta:hover { border-bottom-color: #fff; }

  .contact-aside .social-icon {
    border-color: var(--red);
    color: var(--red);
  }
  .contact-aside .social-icon:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
  }

  @media (max-width: 1024px) {
    .contact-hero,
    .contact-layout,
    .contact-map-section { padding-left: 40px; padding-right: 40px; }
    .contact-layout { gap: 40px; }
    .contact-form-wrap { padding: 32px 28px; }
  }
  @media (max-width: 768px) {
    .contact-hero {
      padding: 118px 24px 24px;
    }
    .contact-layout,
    .contact-map-section {
      padding-left: 24px;
      padding-right: 24px;
    }
    .contact-layout {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 48px;
    }
    .cf-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .contact-map-section { padding-bottom: 56px; }
    .contact-map-frame { height: 320px; }
    .hf-map-pin-mark { width: 76px; height: 76px; }
    .hf-map-pin-tip {
      border-left-width: 9px;
      border-right-width: 9px;
      border-top-width: 14px;
    }
    .cf-actions { flex-direction: column; align-items: stretch; }
    .cf-actions .btn-primary { width: 100%; text-align: center; }
  }

