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

  :root {
    --gold: #b8c832;
    --dark: #111111;
    --mid: #222222;
    --light: #f4f4f0;
    --white: #ffffff;
    --gray: #888;
    --footer-bg: #1a1a1a;
  }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 18px 40px;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(184,200,50,0.2);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo-w {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -1px;
    flex-shrink: 0;
  }

  .logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%),
      url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
    transform: scale(1.04);
    animation: zoomOut 12s ease forwards;
  }

  @keyframes zoomOut {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
    text-align: center;
    animation: fadeUp 1.1s ease 0.3s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero h1 a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,200,50,0.4);
    transition: border-color 0.2s;
  }

  .hero h1 a:hover {
    border-color: var(--gold);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--footer-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 40px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-left {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.8;
    flex: 1;
    min-width: 200px;
  }

  .footer-left a { color: var(--gray); text-decoration: none; }
  .footer-left a:hover { color: var(--gold); }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .footer-right {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    min-width: 200px;
  }

  .social-link {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .social-link:hover { border-color: var(--gold); color: var(--gold); }

  .footer-address-bar {
    background: #111;
    padding: 12px 40px;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  @media (max-width: 900px) {
    .hero-content { padding: 0 24px; max-width: 100%; }
    footer { padding: 24px 20px; flex-direction: column; text-align: center; }
    .footer-right { justify-content: center; flex-wrap: wrap; }
    .footer-address-bar { padding: 12px 20px; font-size: 9px; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 22px; }
  }