  :root {
    --sand: #f5f0e8;
    --sand-dark: #ece4d4;
    --ocean: #0a3d52;
    --ocean-mid: #155e7a;
    --ocean-light: #2a8fad;
    --ocean-pale: #d4eef5;
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --radius: 4px;
  }

  body {
    background-color: var(--sand) !important;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    min-height: 100vh;
  }


  .navbar {
    margin-top: 0rem !important;
  }

  /* HERO STRIP */
  .hero-strip {
    background: var(--ocean);
    padding: 4rem 3rem 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--sand);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    max-width: 580px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light)
  }

  .hero-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 420px;
    line-height: 1.7;
  }

  /* CONTACT GRID */
  .contact-grid {
    max-width: 1100px;
    margin: -2rem auto 0;
    padding: 0 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
  }

  /* INFO PANEL */
  .info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .info-card {
    background: var(--ocean);
    border-radius: 12px;
    padding: 2rem;
    color: var(--white);
  }

  .info-card-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .info-card-value {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }

  .info-card-value a {
    color: var(--gold-light);
    text-decoration: none;
  }

  .info-card-value a:hover {
    text-decoration: underline
  }

  .location-card {
    background: var(--ocean-mid);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-height: 220px;
  }

  .map-frame {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: none;
    display: block
  }

  .reach-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--sand-dark);
  }

  .reach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 1.2rem;
  }

  .reach-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--sand-dark);
  }

  .reach-item:last-child {
    border-bottom: none
  }

  .reach-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ocean-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .reach-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--ocean);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
  }

  .reach-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.2rem
  }

  .reach-val {
    font-size: 0.9rem;
    color: var(--ocean);
    font-weight: 500
  }

  /* FORM PANEL */
  .form-panel {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--sand-dark);
  }

  .form-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 0.3rem;
  }

  .form-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem
  }

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem
  }

  .form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--sand);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--ocean-light);
    background: var(--white);
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    background-color: var(--sand);
  }

  .form-group textarea {
    resize: none;
    line-height: 1.6
  }

  .form-selects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .submit-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 260px;
  }

  .submit-btn {
    background: var(--ocean);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.9rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .submit-btn:hover {
    background: var(--ocean-mid)
  }

  .submit-btn:active {
    transform: scale(0.98)
  }

  /* DIVIDER */
  .section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: var(--sand-dark)
  }

  .divider-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* RESPONSIVE */
  @media(max-width:800px) {
    nav {
      padding: 1rem 1.5rem
    }

    .hero-strip {
      padding: 3rem 1.5rem 4.5rem
    }

    .contact-grid {
      grid-template-columns: 1fr;
      padding: 0 1.2rem 3rem;
      margin-top: -1rem
    }

    .form-row,
    .form-selects-grid {
      grid-template-columns: 1fr
    }

    .submit-row {
      flex-direction: column;
      align-items: flex-start
    }

    .submit-note {
      max-width: 100%
    }

    .submit-btn {
      width: 100%;
      text-align: center
    }
  }