
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black:      #0a0a0a;
    --charcoal:   #141415;
    --surface:    #1a1a1d;
    --dark-gold:  #2a2410;
    --border:     rgba(212,175,55,0.08);
    --primary:    #A0622A;
    --secondary:  #a0522d;
    --accent:     #A0622A;
    --offwhite:   #f5f1e8;
    --cream:      #e5ddd0;
    --muted:      #8a8478;
    --fade:       rgba(245,241,232,0.5);
    --luxury-gold: #A0622A;
    --rich-copper: #8b4513;
    --subtle-gold: rgba(212,175,55,0.06);

    --font-display:  'Bebas Neue', sans-serif;
    --font-serif:    'Barlow Condensed', sans-serif;
    --font-narrow:   'Cormorant Garamond', serif;
    --font-secondary: 'Barlow Condensed', sans-serif;
    --font-sans:     'Inter', sans-serif;
  }
  * { font-style: normal; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--offwhite);
    text-decoration: none;
  }
  .nav-logo span { color: var(--luxury-gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
    position: relative;
  }
  .nav-links a:hover { opacity: 1; color: var(--luxury-gold); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.3));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left;
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.active { opacity: 1; color: var(--luxury-gold); }
  .nav-links a.active::after { transform: scaleX(1); }
  .nav-cta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    padding: 11px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  .nav-cta:hover { background: linear-gradient(135deg, var(--accent), var(--luxury-gold)); transform: translateY(-2px); }

  /* â”€â”€â”€ SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.4)); }
  .section-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: 0.9; letter-spacing: 0.02em; color: var(--offwhite); }
  .section-title span { color: var(--luxury-gold); }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* â”€â”€â”€ PAGE HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .contact-hero {
    padding: 160px 8vw 80px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }
  .contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(200,121,65,0.15), transparent);
  }
  .contact-hero-bg {
    position: absolute;
    right: -3vw;
    bottom: -2vw;
    font-family: var(--font-display);
    font-size: clamp(140px, 20vw, 320px);
    color: rgba(200,121,65,0.03);
    letter-spacing: -0.01em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }
  .contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2.5rem;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .contact-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .contact-breadcrumb a:hover { color: var(--luxury-gold); }
  .contact-breadcrumb .sep { color: rgba(212,175,55,0.3); }
  .contact-breadcrumb .current { color: var(--luxury-gold); }
  .contact-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
  }
  .contact-hero-headline .accent { color: var(--luxury-gold); }
  .contact-hero-sub {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: var(--fade);
    line-height: 1.8;
    max-width: 480px;
  }

  /* â”€â”€â”€ CONTACT MAIN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .contact-main {
    display: grid;
    grid-template-columns: 1fr 380px;
    background: var(--charcoal);
    min-height: 80vh;
  }

  /* â”€â”€â”€ FORM SIDE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .contact-form-area {
    padding: 4rem 4rem 4rem 8vw;
    border-right: 1px solid var(--border);
  }
  .form-section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .form-section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1.5px solid var(--luxury-gold);
    border-radius: 50%;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-row .form-group { margin-bottom: 0; }
  .form-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }
  .form-input,
  .form-textarea,
  .form-select {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 14px 18px;
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-input::placeholder,
  .form-textarea::placeholder {
    color: rgba(138,132,120,0.5);
  }
  .form-input:focus,
  .form-textarea:focus,
  .form-select:focus {
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.06);
  }
  .form-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
  }
  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }
  .form-select option { background: var(--charcoal); color: var(--offwhite); }

  .form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .form-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 260px;
  }
  .btn-primary {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    padding: 14px 42px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232,181,71,0.8);
    cursor: pointer;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--luxury-gold));
    transform: translateY(-3px);
    border-color: rgba(232,181,71,1);
  }
  /* subtle gold line that animates on submit */
  .form-success-line {
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.2), transparent);
    margin-top: 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .form-success-line.show { transform: scaleX(1); }

  /* â”€â”€â”€ INFO SIDEBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .contact-info-sidebar {
    padding: 4rem 2.5rem;
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow-y: auto;
    background: var(--charcoal);
  }
  .contact-info-sidebar::-webkit-scrollbar { width: 2px; }
  .contact-info-sidebar::-webkit-scrollbar-track { background: transparent; }
  .contact-info-sidebar::-webkit-scrollbar-thumb { background: var(--luxury-gold); }

  .sidebar-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
  }
  .sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .sidebar-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sidebar-label::before {
    content: '';
    width: 6px;
    height: 2px;
    background: var(--luxury-gold);
    opacity: 0.5;
  }
  .info-item {
    margin-bottom: 1.5rem;
  }
  .info-item:last-child { margin-bottom: 0; }
  .info-item-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
  }
  .info-item-value {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--offwhite);
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .info-item-value a {
    color: var(--offwhite);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .info-item-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
  }
  .info-item-value a:hover { color: var(--luxury-gold); }
  .info-item-value a:hover::after { width: 100%; }

  /* Hours table */
  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212,175,55,0.04);
  }
  .hours-row:last-child { border-bottom: none; }
  .hours-day { color: var(--muted); }
  .hours-time { color: var(--offwhite); font-family: var(--font-secondary); letter-spacing: 0.03em; }
  .hours-row.highlight .hours-day { color: var(--luxury-gold); }
  .hours-row.highlight .hours-time { color: var(--luxury-gold); }

  /* Social links in sidebar */
  .sidebar-socials {
    display: flex;
    gap: 0;
  }
  .sidebar-social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .sidebar-social-link:first-child { border-right: none; }
  .sidebar-social-link:hover {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
    background: rgba(212,175,55,0.06);
  }

  /* â”€â”€â”€ MAP PLACEHOLDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .map-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(160deg, #12100c 0%, #1a1610 50%, #0e0c08 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(0deg, rgba(212,175,55,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .map-pin {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .map-pin-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--luxury-gold);
    font-size: 18px;
    animation: pinPulse 3s ease-in-out infinite;
  }
  @keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 0 16px rgba(212,175,55,0); }
  }
  .map-pin-text {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--offwhite);
  }
  .map-pin-sub {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 0.3rem;
  }
  .map-overlay-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .map-overlay-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 1.5px solid rgba(212,175,55,0.4);
    border-radius: 50%;
  }

  /* â”€â”€â”€ FAQ MINI â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .faq-section {
    padding: 100px 8vw;
    background: var(--charcoal);
    position: relative;
  }
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .faq-header .section-eyebrow { justify-content: center; }
  .faq-header .section-eyebrow::before { display: none; }
  .faq-list {
    max-width: 720px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
  }
  .faq-question:hover .faq-q-text { color: var(--luxury-gold); }
  .faq-q-text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--offwhite);
    transition: color 0.2s;
    line-height: 1.3;
  }
  .faq-toggle {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
  }
  .faq-item.open .faq-toggle {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
    background: rgba(212,175,55,0.1);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
  }
  .faq-answer-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
  }

  /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 80px 8vw 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.18em;
    color: var(--offwhite);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.25rem;
  }
  .footer-logo span { color: var(--luxury-gold); }
  .footer-tagline {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: var(--fade);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .newsletter-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
    display: block;
  }
  .newsletter-form { display: flex; gap: 0; }
  .newsletter-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-right: none;
    padding: 12px 16px;
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
  }
  .newsletter-input::placeholder { color: var(--muted); }
  .newsletter-btn {
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    border: none;
    padding: 12px 20px;
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  .newsletter-btn:hover { transform: translateY(-1px); }
  .footer-col-title {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    display: block;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--fade);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--luxury-gold); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .footer-copy { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
  .social-links { display: flex; gap: 1.5rem; }
  .social-links a {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .social-links a:hover { color: var(--luxury-gold); }
  .footer-age { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @media (max-width: 1024px) {
    .contact-main {
      grid-template-columns: 1fr;
    }
    .contact-form-area {
      border-right: none;
      border-bottom: 1px solid var(--border);
      padding: 3rem 6vw;
    }
    .contact-info-sidebar {
      position: static;
      height: auto;
      padding: 3rem 6vw;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 3rem;
    }
    .sidebar-section {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
    }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { padding: 8px 18px; font-size: 10px; }
    .contact-hero { padding: 130px 6vw 60px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .contact-info-sidebar {
      grid-template-columns: 1fr;
      padding: 2.5rem 6vw;
    }
    .map-placeholder { height: 280px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  }

  ::selection { background: rgba(200,121,65,0.3); }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--luxury-gold); }
