/* HERO */
  .page-hero {
    padding: 160px 60px 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-money {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
    filter: grayscale(1) sepia(0.3);
    animation: fadeIn 2s ease 0.3s forwards;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.04; }
  }

  .hero-logo-wrap {
    display: flex; align-items: center; gap: 40px;
  }
  .hero-logo-desktop {
    height: 240px; width: auto; mix-blend-mode: lighten; opacity: 0; flex-shrink: 0;
    animation: fadeLogoIn 1.6s ease 3.3s forwards, logoShine 3s ease 4.9s infinite;
  }
  .hero-logo-mobile {
    display: none; mix-blend-mode: lighten; opacity: 0;
  }
  @keyframes fadeLogoIn {
    from { opacity: 0; }
    to { opacity: 0.85; }
  }
  @keyframes logoShine {
    0% { filter: brightness(1); }
    15% { filter: brightness(1.5); }
    30% { filter: brightness(1); }
    100% { filter: brightness(1); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
  }
  .hero-content { position: relative; }
  .hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .hero-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 120px);
    line-height: 0.92;
    letter-spacing: 2px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .page-hero h1 em { color: var(--gold); font-style: normal; }
  .page-hero .service-intro {
    font-size: 18px; line-height: 1.7; color: var(--muted); max-width: clamp(300px, 28vw, 480px); margin-top: 28px; margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  }
  .page-hero .hero-actions {
    display: flex; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 2.5s forwards;
  }

  /* MAIN CONTENT */
  .contact-page { padding: 40px 60px; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
  }
  .contact-grid .section-tag { margin-bottom: 28px; }

  /* CONTACT LINKS */
  .contact-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 0;
  }
  .contact-links a {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-links a:hover { color: var(--gold); }

  /* BOOK CTA */
  .book-cta {
    margin-top: 0;
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--bg2);
    transition: border-color 0.3s;
  }
  .book-cta:hover { border-color: var(--gold); }
  .book-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--gold);
  }
  .book-cta p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.7;
  }
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--bg);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

  /* FORM */
  form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
  }
  input, textarea, select {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }
  input:focus, textarea:focus, select:focus { border-color: var(--gold); }
  textarea { resize: vertical; min-height: 120px; }
  select option { background: var(--bg3); }
  .form-submit {
    background: var(--gold);
    color: var(--bg);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s;
  }
  .form-submit:hover { background: var(--gold2); transform: translateY(-2px); }

  /* MAP */
  .map-section { margin-top: 0; }
  .map-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 32px;
  }
  .map-section h2 em { color: var(--gold); font-style: normal; }
  .map-wrapper {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
    overflow: hidden;
    filter: grayscale(100%) invert(90%) contrast(90%);
    transition: filter 0.3s;
  }
  .map-wrapper:hover { filter: grayscale(60%) invert(80%) contrast(90%); }
  .map-wrapper iframe {
    width: 100%; height: 100%;
    border: none;
  }

  /* Laptop screens */
  @media (min-width: 769px) and (max-height: 900px) {
    .page-hero { padding: 100px 60px 50px; }
    .hero-logo-desktop { top: 100px; }
  }

  @media (max-width: 768px) {
    .hero-logo-wrap { flex-direction: column; align-items: center; gap: 0; }
    .hero-logo-desktop { display: none; }
    .hero-logo-mobile { display: block !important; width: 37.5vw; height: auto; margin: 4px auto 24px; opacity: 0; animation: fadeLogoIn 1.2s ease 3.8s forwards; }
    .page-hero h1 { text-align: center; }
    .page-hero .service-intro { text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; }
    .page-hero .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  }
  @media (max-width: 768px) {
    /* Main layout */
    .contact-page { padding: 40px 24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
    form { max-width: 100%; box-sizing: border-box; }

    /* Form */
    .form-row { grid-template-columns: 1fr; gap: 20px; }
    .form-submit { width: 100%; text-align: center; box-sizing: border-box; }

    /* Tone down Send a Message tag */
    .contact-grid .section-tag { margin-top: 8px; margin-bottom: 20px; opacity: 0.45; }

    /* Book CTA */
    .book-cta { text-align: center; }
    .book-cta .btn-primary { display: block; text-align: center; box-sizing: border-box; }

    /* Contact links */
    .contact-links { flex-direction: column; align-items: center; gap: 20px; padding: 32px 0; }

    /* Section tag */
    .section-tag { justify-content: center; }

    /* Hero actions button */
    .page-hero .hero-actions .btn-primary { width: 100%; text-align: center; display: block; box-sizing: border-box; }
  }
