    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a08;
      --cream: #f5f0e8;
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --red: #8b2020;
      --text-muted: #6b6155;
      --border: rgba(201,168,76,0.25);
      --input-bg: rgba(255,255,255,0.04);
    }

    html { scroll-behavior: smooth; }

    body {
      background: #e8d6b4;
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      min-height: 100vh;
      overflow-x: hidden;
    }

   

   

    /* ── HERO ── */
    .hero {
    position: relative;
    z-index: 1;
    padding: 120px 40px 65px;
    text-align: center;
}

    .hero-sub {
      color: #5d5d63;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-left: -880px;
    }
    .hero-sub:after {
    content: "";
    height: 1px;
    width: 40px;
    background-color: #5d5d63;
    display: inline-block;
    transform: translateY(-3px);
    margin-left: 14px;
}
.tm-hero-title-big {
    font-size: 200px;
    font-weight: 500;
    line-height: .9;
    letter-spacing: -12px;
    color: #173826;
    font-family: 'Syne', sans-serif;
}

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1;
      letter-spacing: -0.01em;
      color: var(--cream);
      animation: fadeUp 0.9s 0.1s ease both;
    }

    .hero-line {
      display: block;
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      margin: 40px auto 0;
      animation: fadeUp 1s 0.3s ease both;
    }

    /* ── MAIN CONTENT ── */
    .contact-section {
      position: relative;
      z-index: 1;
      padding: 0 24px 100px;
    }

    .contact-inner {
    max-width: 1300px;
    margin: 0 auto;
    /* border: 1px solid var(--border); */
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    animation: fadeUp 1s 0.4s ease both;
    background: #173826;
}

    /* ── MAP SIDE ── */
    .map-side {
      position: relative;
      overflow: hidden;
    }
    .map-side iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      display: block;
      filter: grayscale(40%) contrast(1.1);
      border: none;
    }
    .map-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 32px;
      /* background: linear-gradient(to top, rgba(10,10,8,0.95) 0%, transparent 100%); */
    }
    .map-label {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .map-address {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: var(--cream);
      font-style: italic;
    }

    /* ── FORM SIDE ── */
    .form-side {
      padding: 52px 48px;
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
    }

    .form-title {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 90px;
      text-transform: uppercase;
      letter-spacing: -1.2px;
    }

    .form-subtitle {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    /* ── FORM FIELDS ── */
    .field {
      margin-bottom: 22px;
    }

    label {
      font-size: 15px;
    font-weight: 500;
    line-height: 1;
    }

    input, textarea, select {
      width: 100%;
      background: var(--input-bg);
      border: 1px solid var(--border);
      border-radius: 0;
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 0.92rem;
      padding: 13px 16px;
      outline: none;
      transition: border-color 0.25s, background 0.25s;
      -webkit-appearance: none;
      appearance: none;
      /* Remove number spinners */
      -moz-appearance: textfield;
    }
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

    input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.25); }
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
      filter: invert(0.7) sepia(1) saturate(3) hue-rotate(5deg);
      opacity: 0.6;
      cursor: pointer;
    }

    input:focus, textarea:focus {
      border-color: var(--gold);
      background: rgba(201,168,76,0.04);
    }

    textarea { resize: vertical; min-height: 90px; }

    .row-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
    }

    /* ── ERROR ── */
    .error-msg {
      font-size: 0.7rem;
      color: #e06060;
      margin-top: 5px;
      letter-spacing: 0.05em;
      display: none;
    }
    .error-msg.visible { display: block; }
    input.invalid, textarea.invalid { border-color: #8b2020; }

    /* ── HINT ── */
    .hint {
      font-size: 0.65rem;
      color: var(--text-muted);
      margin-top: 4px;
      letter-spacing: 0.05em;
    }

    /* ── SUBMIT ── */
    .submit-btn {
      margin-top: 8px;
    width: 100%;
    padding: 16px;
    background: #fff;
    border: none;
    color: #173826;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    /* letter-spacing: 0.25em; */
    /* text-transform: uppercase; */
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    position: relative;
    overflow: hidden;
    }
    .submit-btn:hover { background: var(--gold-light); }
    .submit-btn:active { transform: scale(0.99); }
    .submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

    .submit-btn .btn-shine {
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
      animation: shine 2.5s infinite 1s;
    }
    @keyframes shine {
      0%   { left: -100%; }
      40%  { left: 100%; }
      100% { left: 100%; }
    }

    /* ── TOAST ── */
    #toast {
      position: fixed;
      bottom: 40px; right: 40px;
      z-index: 999;
      background: var(--gold);
      color: var(--black);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 16px 24px;
      border: none;
      max-width: 360px;
      transform: translateY(20px);
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    #toast.show { opacity: 1; transform: translateY(0); }
    #toast.error { background: #8b2020; color: var(--cream); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      header { padding: 18px 24px; }
      nav { display: none; }
      .hero { padding: 140px 24px 60px; }
      .contact-inner { grid-template-columns: 1fr; }
      .form-side { border-left: none; border-top: 1px solid var(--border); padding: 36px 24px; }
      .row-3 { grid-template-columns: 1fr; }
      .map-side iframe { min-height: 280px; }
      #toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
    }
