  /* CSS RESET & VARIABLES */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --color-gold: #D4AF37;
            --color-gold-light: #FFE89C;
            --color-gold-dark: #A3791A;
            --color-beige: #EFE6D5;
            --color-beige-text: #1F1B16;
            --color-beige-subtext: #4A443C;
            --color-dark-bg: #0B0B0B;
            --color-dark-card: #141414;
            --color-dark-border: #222222;
            --font-serif: 'Cormorant Garamond', serif;
            --font-cursive: 'Alex Brush', cursive;
            --font-sans: 'Montserrat', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--color-dark-bg);
            color: #E0E0E0;
            font-family: var(--font-sans);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* UTILITY CLASSES */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .gold-text-gradient {
            background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-weight: 600;
            color: var(--color-gold);
            display: block;
            margin-bottom: 12px;
        }

        /* NAVBAR */
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(8, 8, 8, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo img {
            height: 38px;
            width: auto;
            object-fit: contain;
        }

        .nav-logo span {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--color-gold);
            transition: color 0.2s ease;
        }

        .nav-cta {
           display: inline-flex;      
           align-items: center;       
            justify-content: center;   
            box-sizing: border-box; 
            border: 1px solid var(--color-gold);
            color: var(--color-gold);
            padding: 9px 18px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
.nav-cta:hover {
    background-color: transparent;
    color: var(--color-gold);
    box-shadow: 0 0 0 2px var(--color-gold);
}
/* Start states — hidden/offset before animation runs */
.hero-title {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideInTitle 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-tagline {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.85s;
}

.hero-cta-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

.hero-image-wrapper {
    opacity: 0;
    transform: translateX(80px);
    animation: slideInImage 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes slideInTitle {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInImage {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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


        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            padding-top: 130px;
            padding-bottom: 80px;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at center, #1a1a1a 0%, var(--color-dark-bg) 70%);
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }


        .hero h1 {
            font-family: var(--font-serif);
            font-size: 64px;
            font-weight: 700;
            color: #FFFFFF;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--color-gold);
            font-weight: 400;
        }

        .hero-subtitle {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: #888888;
            font-weight: 600;
            margin-top: 8px;
        }

        .hero-cursive {
            font-family: var(--font-cursive);
            font-size: 48px;
            color: var(--color-gold);
            margin: 20px 0;
        }

       

        .btn-gold {
            display: inline-block;
            border: 1px solid var(--color-gold);
            color: var(--color-gold);
            padding: 14px 32px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
            cursor: pointer;
        }

        .btn-gold:hover {
            background-color: var(--color-gold);
            color: #000000;
        }

        .hero-image-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 460px;
            padding-bottom: 24px;
        }

     
        .hero-showcase-frame {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 460px;
            background: var(--color-beige);
            padding: 16px 16px 22px;
            border-radius: 3px;
            transform: rotate(-2deg);
            box-shadow:
                0 30px 70px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(212, 175, 55, 0.35);
            transition: transform 0.4s ease;
        }

        .hero-showcase-frame:hover {
            transform: rotate(0deg);
        }

        .hero-showcase-frame img {
            display: block;
            width: 100%;
            border-radius: 2px;
        }

        .hero-showcase-caption {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 4px 0;
            font-family: var(--font-sans);
        }

        .hero-showcase-caption .eyebrow {
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #8A7C5E;
            font-weight: 600;
        }

        .hero-showcase-caption .mark {
            font-family: var(--font-serif);
            font-size: 15px;
            font-weight: 700;
            color: #1F1B16;
            letter-spacing: 0.05em;
        }

        .hero-showcase-plaque {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-dark-bg);
            border: 1px solid var(--color-gold);
            padding: 9px 22px;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--color-gold);
            white-space: nowrap;
            font-weight: 600;
        }

        /* ABOUT SECTION (LIGHT BEIGE) */
        .about {
            background-color: var(--color-beige);
            color: var(--color-beige-text);
            padding: 96px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }

        .about .section-label {
            color: #A67C1E;
        }

        .about h2 {
            font-family: var(--font-serif);
            font-size: 44px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #111111;
        }

        .about p {
            font-size: 14px;
            color: var(--color-beige-subtext);
            margin-bottom: 16px;
        }

        .about-checklist {
            list-style: none;
        }

        .about-checklist li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid #D8CEBA;
            font-size: 14px;
            font-weight: 500;
        }

        .about-checklist li:last-child {
            border-bottom: none;
        }

        .check-badge {
            width: 22px;
            height: 22px;
            background-color: var(--color-gold);
            color: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* PRODUCTS SECTION */
        .products {
            padding: 96px 0;
            background-color: var(--color-dark-bg);
            border-top: 1px solid var(--color-dark-border);
        }

        .products-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px auto;
        }

        .products-header h2 {
            font-family: var(--font-serif);
            font-size: 44px;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .products-header p {
            font-size: 12px;
            color: #888888;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .product-card {
            background-color: var(--color-dark-card);
            border: 1px solid var(--color-dark-border);
            padding: 32px;
            position: relative;
            min-height: 185px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            border-color: var(--color-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
        }

        .product-card h3 {
            font-family: var(--font-serif);
            font-size: 22px;
            color: var(--color-gold);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .product-card p {
            font-size: 12px;
            color: #AAAAAA;
            padding-right: 24px;
            position: relative;
            z-index: 1;
        }

        /* Watermark: soft partial-gold gradient at rest, brightens on hover */
        .product-watermark {
            position: absolute;
            bottom: 4px;
            right: 16px;
            font-family: 'Times New Roman', Times, serif;
            font-size: 76px;
            font-weight: 600;
            line-height: 0.8;
            pointer-events: none;
            user-select: none;
            background: linear-gradient(180deg, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.05) 75%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: background 0.3s ease;
        }

        .product-card:hover .product-watermark {
            background: linear-gradient(180deg, #FFE89C 0%, #D4AF37 35%, rgba(212, 175, 55, 0.1) 85%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* VALUES SECTION */
        .values {
            background-color: #000000;
            padding: 80px 0;
            border-top: 1px solid var(--color-dark-border);
            border-bottom: 1px solid var(--color-dark-border);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .value-col {
            padding: 0 16px;
            border-left: 1px solid var(--color-dark-border);
        }

        .value-col:first-child {
            border-left: none;
            padding-left: 0;
        }

        .value-icon {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .value-col h4 {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--color-gold);
            margin-bottom: 8px;
        }

        .value-col p, .value-col ul {
            font-size: 12px;
            color: #888888;
            list-style: none;
        }

        /* CONTACT SECTION (LIGHT BEIGE) */
        .contact {
            background-color: var(--color-beige);
            color: var(--color-beige-text);
            padding: 96px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 64px;
        }

        .contact .section-label {
            color: #A67C1E;
        }

        .contact h2 {
            font-family: var(--font-serif);
            font-size: 44px;
            font-weight: 700;
            color: #111111;
            margin-top: 8px;
            margin-bottom: 32px;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 14px;
            font-weight: 500;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
        }

        .contact-form {
            background-color: #14120E;
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 16px;
            padding: 36px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--color-gold);
            font-weight: 600;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 2px;
            padding: 13px 14px;
            font-size: 13px;
            font-family: var(--font-sans);
            color: #EDEDED;
            outline: none;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .form-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 14px;
            cursor: pointer;
        }

        .form-select option {
            background-color: #1A1712;
            color: #EDEDED;
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: #6E6A5F;
         
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: var(--color-gold);
            background-color: rgba(255, 255, 255, 0.07);
        }

        .form-textarea {
            resize: none;
            height: 110px;
        }

        .btn-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: var(--color-gold);
            color: #14120E;
            border: none;
            padding: 16px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn-submit:hover {
            background-color: var(--color-gold-light);
        }
        .form-note {
  color: #f5e6c8; /* Light cream to match your text color */
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

        
        /* FOOTER */
        .site-footer {
            background-color: #000000;
            border-top: 1px solid var(--color-dark-border);
            padding: 72px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 56px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-brand img {
            height: 34px;
            width: auto;
        }

        .footer-brand span {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1.5px;
        }

        .footer-tagline {
            font-family: var(--font-cursive);
            font-size: 22px;
            color: var(--color-gold);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .footer-blurb {
            font-size: 12px;
            color: #888888;
            max-width: 280px;
            margin-bottom: 24px;
        }

       
        .footer-col h5 {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--color-gold);
            margin-bottom: 20px;
            font-weight: 600;
        }
.footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-link:hover svg {
    opacity: 0.8;
    transform: translateY(-2px);
}
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 13px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: #AAAAAA;
            transition: color 0.2s ease;
        }

        .footer-col ul li a:hover {
            color: var(--color-gold);
        }

        .footer-hours-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            font-size: 12px;
            color: #AAAAAA;
        }

        .footer-hours-row span:last-child {
            color: #E0E0E0;
            font-weight: 500;
        }

        .footer-bottom {
            border-top: 1px solid var(--color-dark-border);
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copy {
            font-size: 11px;
            color: #666666;
        }

        .footer-credit {
            font-size: 11px;
            color: #666666;
        }

        .footer-credit a {
            color: #999999;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-credit a:hover {
            color: var(--color-gold);
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 900px) {
            .hero-grid, .about-grid, .contact-grid {
                grid-template-columns: 1fr;
            }
            .products-grid {
                grid-template-columns: 1fr 1fr;
            }
            .values-grid {
                grid-template-columns: 1fr 1fr;
            }
            .value-col {
                border-left: none;
                padding-left: 0;
            }
            .nav-links {
                display: none;
            }
            .nav-cta {
                display: none;
            }
            .hero-image-wrap {
                min-height: 380px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .products-grid, .values-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 44px;
            }
        }
    .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 900px) {
    .nav-cta-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none; /* hidden until toggled */
        flex-direction: column;
        list-style: none;
        padding: 24px 24px 32px;
        gap: 0;
        background-color: rgba(8, 8, 8, 0.98);
    }

    .nav-links.active {
        display: flex; 
    }

    .nav-links li {
        padding: 14px 0;
    }

    .nav-links a {
        font-size: 15px;
        letter-spacing: 1px;
        display: block;
    }
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* 1. Universal Layout Stability */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2. Responsive Form Layout */
.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  width: 100%;
}

/* Collapse two-column form rows into a single column on mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* 3. Input Mobile Resets (Prevents Zooming & Dynamic Shifts) */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px !important; /* MUST BE 16px: stops iOS Safari auto-zoom on click */
  -webkit-appearance: none;   /* Removes default iOS rounded styles */
  appearance: none;
  touch-action: manipulation;
  scroll-margin-top: 90px;    /* Keeps active field visible below sticky navigation headers */
}

/* Ensure Textarea stays stable */
.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Prevent autofill styling from breaking custom input appearance */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover, 
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-select:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  transition: background-color 5000s ease-in-out 0s;
}
/* Persistent Mobile Glow & Watermark Fix */
@media (hover: none), (max-width: 768px) {
  /* Replace with your exact card CSS class if different */
  .card, 
  .product-card {
    border-color: #D4AF37 !important; /* Gold accent color */
    box-shadow: 0 0 15px rgba(224, 158, 83, 0.4) !important;
  }

  /* Force SM watermark visibility on mobile */
  .watermark, 
  .sm-watermark, 
  .card span {
    opacity: 0.8 !important;
    display: block !important;
  }
}