
  /* ── PAGE HERO ── */
  .page-hero {
    background: var(--dark-teal);
    padding: 10rem 5rem 6rem;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  }
  .page-hero::after {
    content: '✉';
    position: absolute; bottom: -3rem; right: 3rem;
    font-size: 18rem; font-weight: 900;
    color: rgba(212,168,83,0.05);
    line-height: 1; pointer-events: none;
  }
  .page-hero-inner {
    max-width: 680px; margin: 0 auto;
    position: relative; z-index: 2;
  }
  .section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 900; line-height: 1.1;
    color: white; letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
  }
  .page-hero h1 em { font-style: italic; color: var(--gold); }
  .page-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.7);
  }

  /* ── QUICK CONTACT STRIP ── */
  .quick-strip {
    background: var(--deep-teal);
    padding: 0;
  }
  .quick-strip-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .quick-item {
    padding: 1.8rem 2rem;
    display: flex; align-items: center; gap: 1rem;
    border-right: 1px solid rgba(250,245,237,0.15);
    text-decoration: none;
    transition: background 0.25s;
  }
  .quick-item:last-child { border-right: none; }
  .quick-item:hover { background: rgba(0,0,0,0.1); }
  .quick-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(250,245,237,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .quick-label { font-size: 0.68rem; font-weight: 700; color: rgba(250,245,237,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
  .quick-value { font-size: 0.88rem; font-weight: 600; color: white; margin-top: 0.1rem; line-height: 1.3; }

  /* ── MAIN CONTENT ── */
  .contact-main {
    padding: 6rem 5rem;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start;
  }

  /* ── FORM SIDE ── */
  .form-side .section-label { margin-bottom: 0.8rem; }
  .form-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.15;
    margin-bottom: 0.8rem;
  }
  .form-side h2 em { font-style: italic; color: var(--terracotta); }
  .form-side .intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 300; line-height: 1.8;
    color: var(--text-muted); margin-bottom: 2.2rem;
  }

  .contact-form {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(196,98,45,0.1);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(44,24,16,0.06);
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem;
  }
  .form-field { margin-bottom: 1rem; }
  .form-field label {
    display: block; font-size: 0.75rem; font-weight: 700;
    color: var(--dark-teal); text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%; padding: 0.85rem 1.1rem;
    background: var(--soft-cream);
    border: 1.5px solid rgba(196,98,45,0.15);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196,98,45,0.08);
    background: white;
  }
  .form-field select { color: var(--text-muted); cursor: pointer; }
  .form-field select option { color: var(--text); }
  .form-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: white; border: none;
    padding: 1.1rem;
    border-radius: 3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s;
    letter-spacing: 0.02em;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,98,45,0.35); }
  .form-note {
    font-size: 0.73rem; color: var(--text-muted);
    text-align: center; margin-top: 1rem; line-height: 1.6;
  }

  /* ── INFO SIDE ── */
  .info-side { display: flex; flex-direction: column; gap: 1.5rem; }

  .info-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(196,98,45,0.1);
    padding: 1.8rem 2rem;
    box-shadow: 0 6px 24px rgba(44,24,16,0.05);
  }
  .info-card-header {
    display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem;
  }
  .info-card-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .icon-terracotta { background: rgba(196,98,45,0.1); }
  .icon-deep-teal { background: rgba(45,74,62,0.1); }
  .icon-sky { background: rgba(74,124,158,0.1); }
  .icon-gold { background: rgba(212,168,83,0.1); }
  .info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--dark-teal);
  }
  .info-card-subtitle { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }

  .info-line {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(196,98,45,0.08);
    font-size: 0.86rem; color: var(--text);
    line-height: 1.55;
  }
  .info-line:last-child { border-bottom: none; padding-bottom: 0; }
  .info-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--terracotta); flex-shrink: 0; margin-top: 0.45rem;
  }
  .info-line a { color: var(--terracotta); text-decoration: none; font-weight: 500; }
  .info-line a:hover { text-decoration: underline; }
  .info-line strong { color: var(--dark-teal); font-weight: 600; }

  .hours-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .hours-item {
    background: var(--soft-cream); border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem; color: var(--text-muted);
  }
  .hours-item strong { display: block; color: var(--dark-teal); font-weight: 600; font-size: 0.8rem; }

  .social-row {
    display: flex; gap: 0.8rem; margin-top: 0.5rem;
  }
  .social-btn {
    flex: 1; padding: 0.65rem;
    background: var(--soft-cream);
    border: 1px solid rgba(196,98,45,0.12);
    border-radius: 12px; text-align: center;
    font-size: 0.78rem; font-weight: 600; color: var(--dark-teal);
    text-decoration: none; transition: all 0.25s;
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  }
  .social-btn:hover { background: var(--terracotta); color: white; border-color: var(--terracotta); }
  .social-btn span:first-child { font-size: 1.2rem; }

  /* ── MAP PLACEHOLDER ── */
  .map-section {
    background: var(--soft-cream);
    padding: 5rem;
  }
  .map-inner { max-width: 1100px; margin: 0 auto; }
  .map-header { margin-bottom: 2rem; }
  .map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.15;
    margin-bottom: 0.5rem;
  }
  .map-header h2 em { font-style: italic; color: var(--terracotta); }
  .map-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300; line-height: 1.7;
    color: var(--text-muted);
  }
  .map-wrap {
    border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(196,98,45,0.12);
    box-shadow: 0 12px 40px rgba(44,24,16,0.08);
    background: linear-gradient(135deg, #EDE0CC 0%, #DDD0BB 100%);
    height: 360px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .map-placeholder {
    text-align: center; position: relative; z-index: 2;
  }
  .map-pin-icon { font-size: 3rem; display: block; margin-bottom: 0.8rem; animation: bounce 2s ease-in-out infinite; }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .map-placeholder h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--dark-teal);
    margin-bottom: 0.3rem;
  }
  .map-placeholder p { font-size: 0.85rem; color: var(--text-muted); }
  .map-grid-bg {
    position: absolute; inset: 0; opacity: 0.25;
    background-image:
      linear-gradient(rgba(196,98,45,0.3) 1px, transparent 1px),
      linear-gradient(90deg, rgba(196,98,45,0.3) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .map-address-pill {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    background: white; border-radius: 2rem; padding: 0.6rem 1.4rem;
    box-shadow: 0 6px 20px rgba(44,24,16,0.12);
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; color: var(--dark-teal); font-weight: 500;
    white-space: nowrap; z-index: 3;
  }
  .map-address-pill span:first-child { color: var(--terracotta); }

  /* ── FAQ STRIP ── */
  .faq-section {
    padding: 6rem 5rem;
    max-width: 1100px; margin: 0 auto;
  }
  .faq-section .section-header { text-align: center; margin-bottom: 3.5rem; }
  .faq-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  .faq-section .section-header h2 em { font-style: italic; color: var(--terracotta); }
  .faq-section .section-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; color: var(--text-muted); line-height: 1.7;
  }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .faq-item {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(196,98,45,0.1);
    padding: 1.6rem 1.8rem;
    transition: box-shadow 0.3s;
  }
  .faq-item:hover { box-shadow: 0 8px 28px rgba(44,24,16,0.07); }
  .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--dark-teal);
    margin-bottom: 0.6rem; line-height: 1.3;
    display: flex; align-items: flex-start; gap: 0.7rem;
  }
  .faq-q-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(196,98,45,0.1);
    color: var(--terracotta);
    font-size: 0.7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.05rem;
  }
  .faq-a {
    font-size: 0.86rem; color: var(--text-muted); line-height: 1.7;
    padding-left: 2rem;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    padding: 6rem 5rem;
    background: linear-gradient(135deg, var(--dark-teal) 0%, #1A0F0A 100%);
    position: relative; overflow: hidden; text-align: center;
  }
  .cta-banner::before {
    content: '🌍';
    position: absolute; top: 2rem; right: 4rem;
    font-size: 10rem; opacity: 0.06;
  }
  .cta-banner-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 1rem;
  }
  .cta-banner h2 em { font-style: italic; color: var(--gold); }
  .cta-banner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.7); margin-bottom: 2.5rem;
  }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--terracotta); color: white;
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: white; color: var(--dark-teal); transform: translateY(-2px); }
  .btn-outline-white {
    background: transparent; color: white;
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(250,245,237,0.3);
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(250,245,237,0.08); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #0F0806;
    padding: 3rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: white;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.78rem; color: rgba(250,245,237,0.35); margin-top: 0.3rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(250,245,237,0.5); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.75rem; color: rgba(250,245,237,0.25); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.8s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .page-hero { padding: 8rem 1.5rem 4rem; }
    .quick-strip-inner { grid-template-columns: 1fr 1fr; }
    .quick-item { border-right: none; border-bottom: 1px solid rgba(250,245,237,0.15); }
    .contact-main { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .map-section { padding: 4rem 1.5rem; }
    .faq-section { padding: 4rem 1.5rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 5rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }