       :root {
        --terracotta: #c4622d;
        --burnt: #8b3a1a;
        --sand: #f2e8d9;
        --cream: #faf6f0;
        --deep-green: #1a2e1f;
        --sage: #5a7a5e;
        --gold: #c9923a;
        --dark: #0e1a12;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        background: var(--dark);
        color: var(--sand);
        font-family: 'Cormorant Garamond', serif;
        overflow-x: hidden;
      }
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.35;
      }

      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 3rem;
        background: rgba(14, 26, 18, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 146, 58, 0.2);
      }
      .nav-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        color: var(--sand);
        text-decoration: none;
      }
      .nav-logo em {
        color: var(--terracotta);
        font-style: normal;
      }
      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
        align-items: center;
      }
      .nav-links a {
        font-family: 'Space Mono', monospace;
        font-size: 0.6rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(242, 232, 217, 0.7);
        text-decoration: none;
        transition: color 0.3s;
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--gold);
      }
      .nav-cta {
        font-family: 'Space Mono', monospace;
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        background: var(--terracotta);
        color: var(--cream);
        border: none;
        padding: 0.65rem 1.4rem;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
      }
      .nav-cta:hover {
        background: var(--burnt);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
      }
      .hamburger span {
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--sand);
      }
      .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(14, 26, 18, 0.98);
        z-index: 400;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
      }
      .mobile-menu.open {
        display: flex;
      }
      .mobile-menu a {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--sand);
        text-decoration: none;
      }

      .page-hero {
        height: 45vh;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        margin-top: 61px;
      }
      .page-hero-bg {
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80')
          center/cover no-repeat;
        opacity: 0.22;
      }
      .page-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(14, 26, 18, 0.5),
          rgba(14, 26, 18, 0.85)
        );
      }
      .page-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .page-hero-content .label {
        font-family: 'Space Mono', monospace;
        font-size: 0.55rem;
        letter-spacing: 0.38em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 1rem;
      }
      .page-hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3rem, 8vw, 7rem);
        font-weight: 900;
        color: var(--sand);
        line-height: 1;
      }
      .page-hero-content h1 em {
        color: var(--terracotta);
        font-style: italic;
      }
      .page-hero-content p {
        font-size: 1.1rem;
        font-style: italic;
        color: rgba(242, 232, 217, 0.6);
        margin-top: 1rem;
      }

      /* CONTACT GRID */
      .contact-section {
        padding: 7rem 3rem;
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7rem;
        align-items: start;
      }

      /* FORM */
      .form-heading .label {
        font-family: 'Space Mono', monospace;
        font-size: 0.55rem;
        letter-spacing: 0.35em;
        color: var(--terracotta);
        text-transform: uppercase;
        margin-bottom: 1rem;
      }
      .form-heading h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 700;
        color: var(--sand);
        margin-bottom: 0.75rem;
      }
      .form-heading h2 em {
        color: var(--terracotta);
        font-style: italic;
      }
      .form-heading p {
        font-size: 1.05rem;
        font-style: italic;
        color: rgba(242, 232, 217, 0.55);
        margin-bottom: 2.5rem;
        line-height: 1.7;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
      label {
        font-family: 'Space Mono', monospace;
        font-size: 0.52rem;
        letter-spacing: 0.2em;
        color: rgba(242, 232, 217, 0.5);
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.5rem;
      }
      input,
      select,
      textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(201, 146, 58, 0.18);
        color: var(--sand);
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        padding: 0.85rem 1rem;
        outline: none;
        transition:
          border-color 0.3s,
          background 0.3s;
        appearance: none;
      }
      input:focus,
      select:focus,
      textarea:focus {
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.07);
      }
      input::placeholder,
      textarea::placeholder {
        color: rgba(242, 232, 217, 0.3);
      }
      select option {
        background: var(--dark);
        color: var(--sand);
      }
      textarea {
        height: 130px;
        resize: vertical;
      }
      .btn-submit {
        font-family: 'Space Mono', monospace;
        font-size: 0.65rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: var(--terracotta);
        color: var(--cream);
        border: none;
        padding: 1.1rem 3rem;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        margin-top: 0.5rem;
      }
      .btn-submit:hover {
        background: var(--burnt);
      }

      /* SUCCESS MESSAGE */
      .success-msg {
        display: none;
        background: rgba(90, 122, 94, 0.15);
        border: 1px solid rgba(90, 122, 94, 0.4);
        padding: 1.5rem;
        margin-top: 1rem;
      }
      .success-msg p {
        color: var(--sage);
        font-style: italic;
        font-size: 1.1rem;
      }
      .success-msg.visible {
        display: block;
      }

      /* INFO PANEL */
      .info-panel {
      }
      .info-section {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(201, 146, 58, 0.1);
      }
      .info-section:last-child {
        border-bottom: none;
      }
      .info-label {
        font-family: 'Space Mono', monospace;
        font-size: 0.52rem;
        letter-spacing: 0.3em;
        color: var(--terracotta);
        text-transform: uppercase;
        margin-bottom: 1rem;
      }
      .info-heading {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--sand);
        margin-bottom: 1rem;
      }
      .info-body {
        font-size: 1.05rem;
        color: rgba(242, 232, 217, 0.6);
        line-height: 1.85;
      }
      .hours-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .hours-list li {
        display: flex;
        justify-content: space-between;
        font-size: 1rem;
        color: rgba(242, 232, 217, 0.6);
      }
      .hours-list li span:first-child {
        font-style: italic;
      }
      .hours-list li span:last-child {
        font-family: 'Space Mono', monospace;
        font-size: 0.8rem;
        color: var(--gold);
      }
      .info-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        filter: saturate(0.75);
        margin-top: 1rem;
      }
      .contact-detail {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1rem;
      }
      .contact-detail-icon {
        font-family: 'Space Mono', monospace;
        font-size: 0.5rem;
        letter-spacing: 0.1em;
        color: var(--terracotta);
        padding-top: 0.2rem;
        min-width: 40px;
      }
      .contact-detail-text {
        font-size: 1rem;
        color: rgba(242, 232, 217, 0.65);
        line-height: 1.65;
      }
      .contact-detail-text a {
        color: var(--gold);
        text-decoration: none;
      }

      footer {
        background: rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(201, 146, 58, 0.15);
        padding: 4rem 3rem 2rem;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
        max-width: 1400px;
        margin: 0 auto 3rem;
      }
      .footer-brand .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--sand);
        margin-bottom: 1rem;
        display: block;
      }
      .footer-brand .logo em {
        color: var(--terracotta);
        font-style: normal;
      }
      .footer-brand p {
        font-size: 1rem;
        font-style: italic;
        color: rgba(242, 232, 217, 0.4);
        line-height: 1.7;
      }
      .footer-col h4 {
        font-family: 'Space Mono', monospace;
        font-size: 0.52rem;
        letter-spacing: 0.25em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 1.5rem;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }
      .footer-col ul a {
        font-size: 1rem;
        font-style: italic;
        color: rgba(242, 232, 217, 0.5);
        text-decoration: none;
        transition: color 0.3s;
      }
      .footer-col ul a:hover {
        color: var(--sand);
      }
      .footer-col p {
        font-size: 0.95rem;
        color: rgba(242, 232, 217, 0.45);
        line-height: 1.8;
      }
      .footer-bottom {
        border-top: 1px solid rgba(201, 146, 58, 0.1);
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
      }
      .footer-bottom p {
        font-family: 'Space Mono', monospace;
        font-size: 0.5rem;
        letter-spacing: 0.1em;
        color: rgba(242, 232, 217, 0.25);
      }
      .social-links {
        display: flex;
        gap: 0.75rem;
      }
      .social-links a {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(201, 146, 58, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(242, 232, 217, 0.4);
        font-size: 0.65rem;
        text-decoration: none;
        transition: all 0.3s;
        font-family: 'Space Mono', monospace;
      }
      .social-links a:hover {
        border-color: var(--terracotta);
        color: var(--terracotta);
      }

      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 900px) {
        nav {
          padding: 1rem 1.5rem;
        }
        .nav-links,
        .nav-cta {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .contact-section {
          grid-template-columns: 1fr;
          gap: 4rem;
          padding: 4rem 1.5rem;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
        }
      }