/* devani-site-styles:{"backgroundColor":"#f9f6f1","textColor":"#2f2a26","fontFamily":"'Inter', -apple-system, BlinkMacSystemFont, sans-serif","baseFontSize":"18px","headingFontFamily":"'Inter', -apple-system, BlinkMacSystemFont, sans-serif","headingColor":"#1f1b17","linkColor":"#7b5f47","containerMaxWidth":"1280px","customCss":""} */

:root {
    --ld-ivory: #f9f6f1;
    --ld-cream: #fbf9f6;
    --ld-shell: #f3eee7;
    --ld-sand: #e6d8c8;
    --ld-gold: #c6a375;
    --ld-rose: #f0e2d4;
    --ld-clay: #b28f73;
    --ld-taupe: #8a7a69;
    --ld-charcoal: #2f2a26;
    --ld-graphite: #4d433c;
    --ld-line: rgba(47, 42, 38, 0.08);
    --white: #ffffff;

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 28px;
    --shadow-soft: 0 25px 60px rgba(31, 27, 23, 0.08);
    --transition: 220ms ease;
    --max-width: 1280px;

    --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: var(--font-base);
    font-size: 18px;
    color: var(--ld-charcoal);
    background: radial-gradient(circle at top right, var(--ld-shell), var(--ld-ivory) 68%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    letter-spacing: 0.02em;
    color: var(--ld-charcoal);
}

p {
    color: var(--ld-graphite);
}

a {
    color: var(--ld-clay);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--ld-gold);
}

.container {
    width: min(var(--max-width), 92%);
    margin-inline: auto;
}

section {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.btn-dark {
    background: var(--ld-charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: #1f1b17;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--ld-charcoal);
    border: 1px solid var(--ld-line);
}

.btn-outline:hover {
    border-color: var(--ld-clay);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--ld-line);
    color: var(--ld-taupe);
}

.surface {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--ld-line);
    box-shadow: 0 10px 40px rgba(31, 27, 23, 0.05);
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(249, 246, 241, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138, 122, 105, 0.12);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.logo span:first-child {
    font-size: 1.2rem;
    letter-spacing: 0.35em;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 0.4rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(198, 163, 117, 0.25);
}

.nav-menu a {
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--ld-graphite);
}

.nav-menu a:hover {
    background: var(--ld-rose);
    color: var(--ld-charcoal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

footer {
    background: var(--ld-ivory);
    border-top: 1px solid rgba(47, 42, 38, 0.08);
    padding: 4rem 0 3rem;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

footer h4 {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

footer a {
    color: var(--ld-graphite);
    font-size: 0.95rem;
}

footer a:hover {
    color: var(--ld-clay);
}

@media (max-width: 960px) {
    .nav {
        flex-direction: column;
    }
}
