:root {
    --sand: #f4ece1;
    --saffron: #ff9933;
    --ochre: #b35900;
    --text: #2d2d2d;
}

* { box-sizing: border-box; }

body, html {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--sand);
    overflow-x: hidden;
    min-height: 100vh;
}

/* SANDSTORM ANIMATION */
.sandstorm {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}

.grain {
    position: absolute;
    background: var(--saffron);
    border-radius: 50%;
    opacity: 0.2;
    animation: drift linear infinite;
}

.grain:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 10%; animation-duration: 15s; }
.grain:nth-child(2) { width: 150px; height: 150px; top: 60%; left: 80%; animation-duration: 20s; animation-delay: -2s; }
.grain:nth-child(3) { width: 200px; height: 200px; top: 40%; left: 30%; animation-duration: 25s; animation-delay: -5s; }
.grain:nth-child(4) { width: 80px; height: 80px; top: 80%; left: 20%; animation-duration: 18s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* NAVIGATION */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 60px;
    background: rgba(244, 236, 225, 0.95);
    backdrop-filter: blur(8px);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(179, 89, 0, 0.1);
}

.logo {
    font-weight: 900; letter-spacing: 8px; font-size: 1.4rem;
    text-transform: uppercase; color: var(--ochre);
}

.nav-link {
    color: var(--ochre); text-decoration: none; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px; border: 1.5px solid var(--ochre);
    padding: 10px 22px; transition: 0.3s;
    white-space: nowrap;
}

.nav-link:hover { background: var(--ochre); color: var(--sand); }

@media (max-width: 650px) {
    nav { padding: 15px 20px; }
    .logo { font-size: 1rem; letter-spacing: 3px; }
    .nav-link { padding: 6px 10px; font-size: 0.5rem; letter-spacing: 1px; border-width: 1px; }
}

/* HERO */
.hero {
    max-width: 1100px; margin: 0 auto; padding: 100px 40px;
    text-align: center; position: relative; z-index: 10;
}

.brand-h1 {
    font-size: clamp(2.5rem, 10vw, 6.5rem);
    font-weight: 900; margin: 0;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--ochre);
}

.tagline {
    margin: 40px auto; font-size: 1.3rem; color: var(--text);
    max-width: 750px; line-height: 1.8; font-style: italic;
}

/* CARDS */
.grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 80px;
}

.card {
    background: rgba(255, 255, 255, 0.6);
    padding: 50px 30px; border-radius: 4px;
    text-align: center; backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 89, 0, 0.1);
    transition: 0.4s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(179, 89, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(179, 89, 0, 0.1);
}

.dot {
    width: 10px; height: 10px;
    background: var(--saffron); border-radius: 50%;
    margin: 0 auto 25px;
}

.card h3 {
    font-size: 0.85rem; color: var(--ochre); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 4px; font-weight: 900;
}

.card p { font-size: 1rem; color: var(--text); line-height: 1.7; }

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

/* ACQUISITION PAGE */
.acq-page {
    display: flex; justify-content: center; align-items: center;
    min-height: 100vh; padding: 40px 20px;
    position: relative; z-index: 10;
}

.shrine-box {
    width: 460px; padding: 80px 60px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 6px solid var(--saffron);
    text-align: center;
    box-shadow: 0 40px 80px rgba(179, 89, 0, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

@media (max-width: 550px) {
    .shrine-box { width: 92%; padding: 60px 25px 50px; }
}

.back {
    color: var(--ochre); text-decoration: none; font-size: 0.7rem;
    font-weight: 800; letter-spacing: 2px; position: absolute;
    top: 30px; left: 50%; transform: translateX(-50%);
    text-transform: uppercase; white-space: nowrap;
}

.acq-h2 {
    font-size: 2.2rem; font-weight: 900;
    margin: 40px 0 20px;
    text-transform: uppercase; letter-spacing: 5px;
    color: var(--ochre);
}

.desc { font-size: 0.9rem; color: #777; margin-bottom: 40px; font-style: italic; }

.row {
    display: flex; justify-content: space-between;
    padding: 20px 0; border-top: 1px solid var(--sand);
    font-size: 0.85rem;
}

.row span {
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--saffron); font-weight: 800;
}

.btn-acq {
    display: block; background: var(--text); color: #fff;
    padding: 25px; text-align: center; text-decoration: none;
    margin-top: 50px; font-weight: 900; letter-spacing: 4px;
    text-transform: uppercase; transition: background 0.3s;
}

.btn-acq:hover { background: var(--saffron); color: #fff; }

.acq-footer {
    margin-top: 50px; font-size: 0.6rem; color: var(--ochre);
    opacity: 0.5; letter-spacing: 3px; text-transform: uppercase;
}

@media (max-width: 500px) {
    .acq-h2 { font-size: 1.6rem; letter-spacing: 3px; }
    .btn-acq { letter-spacing: 2px; font-size: 0.85rem; padding: 20px; }
    .row { font-size: 0.78rem; }
}
