:root {
    /* The Official Press Palette */
    --ink: #000814;           /* Solid, professional navy-black */
    --gold: #D4AF37;          /* Refined Metallic Gold */
    --ivory: #FFFFFF;         /* Pure white for clarity */
    --ash: #F8F9FA;           /* Extremely light grey for backgrounds */
    --border: #E5E7EB;        /* Hairline borders for a clean UI */
}

body {
    background-color: var(--ivory);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em; /* Modern typographic tightening */
}

/* --- Typography & Accents --- */
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.bg-ink { background-color: var(--ink); }

/* --- Editorial Style Buttons --- */
.btn-gold { 
    background-color: var(--ink); 
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--ink);
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

/* --- Minimalist Feature Cards --- */
.feature-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 16px; /* Optimized for a professional balance */
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    border-color: var(--gold);
    background-color: var(--ivory); /* Keep it white to maintain the sanctuary feel */
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 8, 20, 0.05);
}

/* --- International Telephone Input (iti) Customization --- */
.iti { width: 100%; }
.iti input {
    color: var(--ink) !important;
    padding-left: 95px !important; 
    text-align: left;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    height: 52px; /* Standard professional height */
}

.iti__selected-dial-code {
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
}

.iti__country-list { 
    color: var(--ink);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    padding: 8px;
}

/* --- Clean Hero Background --- */
.hero-section {
    background-color: var(--ash);
    /* Geometric Blueprint Pattern */
    background-image: radial-gradient(var(--border) 0.8px, transparent 0.8px);
    background-size: 32px 32px;
    border-bottom: 1px solid var(--border);
}

/* --- Form Containers --- */
.contact-container {
    border: 1px solid var(--border);
    background: white;
    border-radius: 20px;
    padding: 3rem;
}

/* --- Select Dropdown UI --- */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.1rem;
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
}