:root {
    --bg: #FAF7F0;
    --bg-alt: #FFFFFF;
    --bg-deep: #F1EBDC;
    --text: #2A2520;
    --text-dim: #6B6358;
    --gold: #B08938;
    --gold-bright: #C9A24A;
    --wa: #25D366;
    --wa-dark: #1ebe5a;
    --border: rgba(176, 137, 56, 0.22);
    --shadow-sm: 0 2px 12px rgba(42, 37, 32, 0.06);
    --shadow-md: 0 12px 32px rgba(42, 37, 32, 0.08);
    --shadow-lg: 0 20px 50px rgba(42, 37, 32, 0.12);
    --radius: 14px;
    --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav__logo { display: block; }
.nav__logo--full { display: none; height: 34px; width: auto; }
.nav__logo--short { display: block; height: 32px; width: 32px; }

@media (min-width: 420px) {
    .nav__logo--full { display: block; }
    .nav__logo--short { display: none; }
}
.nav__menu {
    display: none;
    gap: 24px;
    font-size: 14px;
    color: var(--text-dim);
}
.nav__menu a {
    transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--gold); }
.nav__cta { font-size: 14px; padding: 8px 16px; }

@media (min-width: 900px) {
    .nav__menu { display: flex; }
}
@media (max-width: 540px) {
    .nav__cta { padding: 8px 12px; font-size: 13px; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--wa {
    background: var(--wa);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}
.btn--wa:hover {
    background: var(--wa-dark);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--ghost {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn--ghost:hover {
    background: var(--gold);
    color: #ffffff;
}
.btn .i { width: 18px; height: 18px; }

/* ============ HERO ============ */
.hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(176, 137, 56, 0.16), transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(176, 137, 56, 0.10), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    border-bottom: 1px solid var(--border);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.hero__photo {
    justify-self: center;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    background: var(--bg-alt);
}
.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}
.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    color: var(--text);
}
.hero__sub {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 24px;
}
.hero__desc {
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 32px;
    color: var(--text);
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width: 760px) {
    .hero__inner {
        grid-template-columns: 320px 1fr;
        gap: 60px;
    }
    .hero__photo {
        width: 320px;
        height: 320px;
        justify-self: start;
    }
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }

.section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}
.section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 36px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
}

/* ============ ABOUT ============ */
.about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
.about__photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    background: var(--bg-deep);
    box-shadow: var(--shadow-sm);
}
.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__text p { margin-bottom: 20px; }
.info-list {
    list-style: none;
    margin-bottom: 28px;
}
.info-list li {
    padding: 14px 0;
    border-top: 1px solid var(--border);
}
.info-list li:last-child {
    border-bottom: 1px solid var(--border);
}
.info-list__label {
    display: inline-block;
    min-width: 90px;
    color: var(--text-dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 8px;
    font-weight: 600;
}
.about__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 760px) {
    .about {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ============ PRODUCTS CAROUSEL ============ */
.products {
    position: relative;
}
.products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.products__header .section__title { margin-bottom: 0; }
.products__nav {
    display: none;
    gap: 8px;
}
.products__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.products__btn:hover { background: var(--gold); color: #ffffff; }
.products__btn:disabled {
    opacity: 0.35;
    cursor: default;
    background: transparent;
    color: var(--gold);
}
.products__btn svg { width: 18px; height: 18px; }

.products__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 4px 24px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.products__track::-webkit-scrollbar { height: 6px; }
.products__track::-webkit-scrollbar-track { background: transparent; }
.products__track::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px;
}

.product {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: start;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.product:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.product__img {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-deep);
}
.product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.25;
}
.product p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.55;
}
.products__note {
    margin-top: 24px;
    color: var(--text-dim);
    font-size: 14px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 560px) {
    .product { flex-basis: 46%; }
}
@media (min-width: 880px) {
    .products__nav { display: flex; }
    .product { flex-basis: 30%; }
}
@media (min-width: 1100px) {
    .product { flex-basis: 23%; }
}

/* ============ BRAND ============ */
.brand__text {
    max-width: 720px;
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.7;
    color: var(--text);
}

/* ============ WHY ============ */
.why {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.why li {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-alt);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.why__num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}
.why h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
.why p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.55;
}

@media (min-width: 760px) {
    .why { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .why { grid-template-columns: repeat(4, 1fr); }
}

/* ============ CONTACTS ============ */
.contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-alt);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.contact-card__i {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-card__value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

@media (min-width: 600px) {
    .contacts { grid-template-columns: repeat(2, 1fr); }
}

/* ============ FOOTER ============ */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    background: var(--bg-alt);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
}
.footer a {
    color: var(--gold);
    transition: color 0.2s ease;
}
.footer a:hover { color: var(--gold-bright); }

@media (min-width: 600px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
