* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background: #fafafa url("../assets/bg-pattern.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: "Lato", sans-serif;
    color: #111111;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- NAVIGATION HEADER --- */
.page-header {
    
    background: transparent !important;
    
    /* Live optical blur that fades/diffuses form elements scrolling beneath */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Ensures perfect compatibility on Apple Safari browsers */
    
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none !important; /* Keeps your clean, borderless layout choice */
}

.logo-small img { 
    height: 120px; 
    width: auto;
}

.top-nav ul { 
    list-style: none; 
    display: flex; 
    gap: 35px; 
    margin: 0;
    padding: 0;
    align-items: center;
}

.top-nav ul li a { 
    text-decoration: none; 
    color: #111111; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.85rem; 
    font-weight: 400;
}

.top-nav ul li a:hover { 
    color: #d4af37; 
}

.top-nav ul li a.active {
    color: #d4af37 !important;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 4px;
    font-weight: 700;
}

/* --- HERO LANDING SECTION --- */
.splash-container {
    height: calc(100vh - 115px);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
}

.sub-title {
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 400;
}

.main-title {
    font-family: "Playfair Display", serif;
    font-size: 3.8rem;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 25px;
    font-weight: 700;
}

.accent { 
    font-style: italic; 
    color: #d4af37; 
    font-family: "Playfair Display", serif;
}

.description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #444444;
}

/* --- ORDER FORM SECTION --- */
.order-section { 
    padding: 60px 5% 80px; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.form-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    margin-top: 30px;
}

/* Traditional Layout engine fallback replacing CSS Grid formulas */
.form-grid { 
    display: block;
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 20px;
}

.form-field {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 15px;
    width: 33.333%;
}

.form-field.span-2 { 
    width: 66.666%; 
}

.form-field.full-width { 
    width: 100%; 
}

label { 
    display: block; 
    color: #111111; 
    margin-bottom: 8px; 
    font-size: 0.75rem; 
    letter-spacing: 1.5px; 
    text-transform: uppercase;
    font-weight: 700;
}

input, select, textarea { 
    width: 100%; 
    padding: 14px; 
    background: #ffffff; 
    border: 1px solid #cccccc; 
    color: #111111; 
    font-family: "Lato", sans-serif; 
    border-radius: 0;
    font-size: 0.95rem;
}

input:focus, select:focus, textarea:focus { 
    border-color: #d4af37; 
    outline: none; 
}

.section-break { 
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35); 
    margin: 30px 12px 25px; 
    padding-bottom: 8px; 
    color: #d4af37; 
    font-size: 1.05rem; 
    letter-spacing: 3px; 
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

/* --- BUTTONS --- */
.btn-gold {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #d4af37;
    color: #ffffff !important;
}

.btn-submit-block {
    width: 100%;
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    padding: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit-block:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #ffffff;
}

.checkbox-group { 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    margin-bottom: 15px; 
    color: #444444; 
    font-size: 0.88rem; 
    line-height: 1.5; 
}
.checkbox-group input { 
    width: auto; 
    margin-top: 4px; 
}

.confirmation-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d4af37; 
    padding: 60px 40px;
    text-align: center; 
    margin: 40px auto; 
    max-width: 700px;
}
.check-icon { font-size: 4rem; color: #d4af37; margin-bottom: 20px; }
.confirmation-box h3 { font-family: "Playfair Display", serif; font-size: 2.2rem; color: #111111; margin-bottom: 15px; }

.corner-accent {
    position: absolute;
    width: 80px; height: 80px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 1;
}
.top-right { top: 40px; right: 40px; border-left: 0; border-bottom: 0; }
.bottom-left { bottom: 40px; left: 40px; border-right: 0; border-top: 0; }

@media (max-width: 768px) { 
    .page-header { padding: 20px; flex-direction: column; gap: 20px; }
    .top-nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .form-field, .form-field.span-2, .form-field.full-width { width: 100%; }
    .main-title { font-size: 2.4rem; }
    .splash-container { height: auto; padding: 80px 0; }
}