*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --copper:       #e07b39;
      --copper-light: #f0a060;
      --copper-dark:  #b85c1a;
      --ink:          #0a0a0a;
      --ink-mid:      #0f0d0a;
      --ink-card:     rgba(20,16,12,0.95);
      --cream:        #f5f0e8;
      --border:       rgba(224,123,57,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--ink);
      color: var(--cream);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 18px;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

    ::selection { background: var(--copper); color: #0a0a0a; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--ink); }
    ::-webkit-scrollbar-thumb { background: var(--copper-dark); border-radius: 2px; }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: background 0.4s, box-shadow 0.4s;
    }
    #navbar.scrolled {
      background: rgba(10,9,8,0.96);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-link {
      font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(245,240,232,0.7); transition: color 0.3s;
      position: relative; padding-bottom: 2px; text-decoration: none;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px; background: var(--copper); transition: width 0.35s;
    }
    .nav-link:hover { color: var(--copper); }
    .nav-link:hover::after { width: 100%; }
    .nav-link.active { color: var(--copper); }
    .nav-link.active::after { width: 100%; }

    /* ── HAMBURGER ── */
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.35s; transform-origin: center; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE MENU ── */
    #mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(8,7,6,0.98); z-index: 200;
      flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
      overflow-y: auto;
    }
    #mobile-menu.open { display: flex; }
    .mobile-nav-link { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); transition: color 0.3s; text-decoration: none; }
    .mobile-nav-link:hover { color: var(--copper); }

    /* ── MEGA DROPDOWN ── */
    .has-dropdown { position: relative; }
    .mega-drop {
      position: absolute;
      top: calc(100% + 4px); left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: rgba(12,10,8,0.98);
      border: 1px solid rgba(224,123,57,0.18);
      backdrop-filter: blur(24px);
      display: flex; min-width: 680px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 300;
      box-shadow: 0 24px 60px rgba(0,0,0,0.7);
    }
    .has-dropdown.open .mega-drop { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .mega-drop::before {
      content: ''; position: absolute; top: -20px; left: 0; right: 0;
      height: 20px; background: transparent;
    }
    .drop-tabs { width: 185px; flex-shrink: 0; border-right: 1px solid rgba(224,123,57,0.12); padding: 1rem 0; }
    .drop-tab {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.85rem 1.25rem;
      font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.06em; color: rgba(245,240,232,0.5);
      cursor: pointer; transition: color 0.2s, background 0.2s;
      border-left: 2px solid transparent; user-select: none;
    }
    .drop-tab:hover, .drop-tab.active { color: var(--copper); background: rgba(224,123,57,0.06); border-left-color: var(--copper); }
    .drop-panels { flex: 1; padding: 0.75rem 0; }
    .drop-panel { display: none; }
    .drop-panel.active { display: block; }
    .drop-item {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.7rem 1.5rem;
      font-family: 'Cormorant Garamond', serif; font-size: 1rem;
      color: rgba(245,240,232,0.65);
      transition: color 0.2s, background 0.2s, padding-left 0.2s;
      border-bottom: 1px solid rgba(224,123,57,0.06);
      cursor: pointer; text-decoration: none;
    }
    .drop-item:last-child { border-bottom: none; }
    .drop-item::before {
      content: ''; display: block; width: 4px; height: 4px;
      border-radius: 50%; background: var(--copper);
      opacity: 0; flex-shrink: 0; transition: opacity 0.2s;
    }
    .drop-item:hover { color: var(--copper-light); background: rgba(224,123,57,0.05); padding-left: 1.75rem; }
    .drop-item:hover::before { opacity: 1; }

    /* Mobile accordion */
    .mob-drop-section { width: 100%; text-align: center; }
    .mob-drop-toggle {
      font-family: 'Playfair Display', serif; font-size: 2rem;
      color: var(--cream); transition: color 0.3s;
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; gap: 0.5rem; margin: 0 auto;
    }
    .mob-drop-toggle:hover { color: var(--copper); }
    .mob-sub {
      display: none; flex-direction: column; gap: 0.5rem;
      margin-top: 0.75rem; max-height: 50vh; overflow-y: auto; padding-bottom: 0.5rem;
    }
    .mob-sub.open { display: flex; }
    .mob-sub a { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(245,240,232,0.6); transition: color 0.2s; text-decoration: none; }
    .mob-sub a:hover { color: var(--copper); }
    .mob-sub-head { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-top: 0.75rem; }

    /* ── HERO BANNER ── */
    .contact-hero {
      background-image:
        linear-gradient(135deg, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.7) 60%, rgba(10,9,8,0.92) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
    }
    @media(max-width:768px){ .contact-hero { background-attachment: scroll; padding: 130px 0 60px; } }

    .contact-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        90deg,
        rgba(224,123,57,0.02) 0px,
        rgba(224,123,57,0.02) 1px,
        transparent 1px,
        transparent 80px
      );
      pointer-events: none;
    }

    /* ── BUTTONS ── */
    .btn-copper {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.9rem 2.25rem;
      background: var(--copper); color: #0a0a0a;
      font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer; text-decoration: none;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-copper:hover { background: var(--copper-light); box-shadow: 0 0 40px rgba(224,123,57,0.4); transform: translateY(-2px); }

    /* ── CONTACT CARDS ── */
    .info-card {
      background: var(--ink-card);
      border: 1px solid rgba(224,123,57,0.12);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    }
    .info-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--copper), transparent);
      transition: width 0.4s;
    }
    .info-card:hover { border-color: rgba(224,123,57,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
    .info-card:hover::before { width: 100%; }
    .info-icon {
      width: 48px; height: 48px;
      border: 1px solid rgba(224,123,57,0.3);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
      color: var(--copper);
      transition: background 0.3s;
    }
    .info-card:hover .info-icon { background: rgba(224,123,57,0.08); }

    /* ── FORM ── */
    .form-wrap {
      background: var(--ink-card);
      border: 1px solid rgba(224,123,57,0.14);
      padding: 3rem;
    }
    @media(max-width:640px){ .form-wrap { padding: 2rem 1.5rem; } }

    .form-field { margin-bottom: 1.5rem; }
    .form-label {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      margin-bottom: 8px;
    }
    .form-input {
      width: 100%;
      background: rgba(10,9,8,0.6);
      border: 1px solid rgba(224,123,57,0.15);
      color: var(--cream);
      padding: 0.85rem 1.1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      appearance: none;
    }
    .form-input:focus {
      border-color: rgba(224,123,57,0.55);
      background: rgba(224,123,57,0.04);
    }
    .form-input::placeholder { color: rgba(245,240,232,0.25); }
    .form-input option { background: #141008; }

    textarea.form-input { resize: vertical; min-height: 130px; }

    /* ── MAP EMBED PLACEHOLDER ── */
    .map-wrap {
      width: 100%;
      height: 320px;
      border: 1px solid rgba(224,123,57,0.15);
      overflow: hidden;
      position: relative;
    }
    .map-wrap iframe {
      width: 100%; height: 100%; border: none;
      filter: grayscale(80%) invert(92%) hue-rotate(180deg) brightness(0.85) contrast(0.9);
    }
    .map-wrap::after {
      content: '';
      position: absolute; inset: 0;
      box-shadow: inset 0 0 40px rgba(10,9,8,0.6);
      pointer-events: none;
    }

    /* ── DIVIDER ── */
    .cdivider {
      display: flex; align-items: center; gap: 1rem;
    }
    .cdivider span { display: block; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--border)); }
    .cdivider span:last-child { background: linear-gradient(90deg, var(--border), transparent); }

    /* ── SLABEL ── */
    .slabel { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); }

    /* ── FOOTER ── */
    .flink { color: rgba(245,240,232,0.45); font-family: 'Inter', sans-serif; font-size: 0.78rem; transition: color 0.3s; text-decoration: none; }
    .flink:hover { color: var(--copper); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

    /* ── WORKING HOURS TABLE ── */
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(224,123,57,0.07);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: rgba(245,240,232,0.55); }
    .hours-time { color: var(--cream); font-weight: 500; }
    .hours-closed { color: rgba(245,240,232,0.3); font-style: italic; }

    /* ── SUCCESS STATE ── */
    #form-success {
      display: none;
      text-align: center;
      padding: 3rem 2rem;
    }
    .success-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      border: 1.5px solid var(--copper);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      animation: popIn 0.4s ease;
    }
    @keyframes popIn { 0%{transform:scale(0.5);opacity:0} 100%{transform:scale(1);opacity:1} }
    @keyframes spulse { 0%,100%{opacity:0.4} 50%{opacity:1} }