* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C4754B;
    --secondary: #1E2D4F;
    --accent: #D4953A;
    --bg-light: #FBF5ED;
    --bg-alt: #F0E8DB;
    --text-dark: #2A2A2A;
    --text-mid: #5C5C5C;
    --text-light: #8A8A8A;
    --white: #FFFFFF;
    --border: #E0D5C5;
    --heading: 'Fraunces', serif;
    --body: 'Outfit', sans-serif;
    --header-h: 62px;
    --ease: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--ease);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--heading);
    color: var(--secondary);
    line-height: 1.3;
}

h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 245, 237, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: var(--header-h);
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 0 28px;
    white-space: nowrap;
}

.logo:hover {
    color: var(--primary);
}

.nav-left, .nav-right {
    display: flex;
    gap: 22px;
}

.nav-left a, .nav-right a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    position: relative;
    padding: 2px 0;
}

.nav-left a::after, .nav-right a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width var(--ease);
}

.nav-left a:hover::after, .nav-right a:hover::after,
.nav-left a.active::after, .nav-right a.active::after {
    width: 100%;
}

.nav-left a.active, .nav-right a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.35s ease;
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    background-color: white;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    background-color: white;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    height: 100dvh;
    background: var(--secondary);
    padding: 75px 25px 25px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 400;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--accent);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    padding: calc(var(--header-h) + 45px) 0 45px;
    text-align: center;
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-alt) 40%, rgba(212,149,58,0.08) 100%);
}

.hero-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero h1 {
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 0.9rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 9px 24px;
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--ease);
    border: none;
    text-align: center;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
}

.btn-light:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

section {
    padding: 45px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin-bottom: 6px;
}

.section-heading p {
    color: var(--text-mid);
    font-size: 0.85rem;
    max-width: 480px;
    margin: 0 auto;
}

.bg-alt {
    background: var(--bg-alt);
}

.bg-white {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 22px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.feature-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.feature-card p {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 10px;
}

.content-text p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-text .btn {
    margin-top: 8px;
}

.content-image img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.content-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt), rgba(212,149,58,0.12));
    border-radius: 10px;
    min-height: 240px;
}

.content-icon i {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.55;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 22px 18px;
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196,117,75,0.1), rgba(212,149,58,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.product-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.product-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.product-card p {
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.55;
}

.product-price {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-info-card {
    background: var(--secondary);
    border-radius: 10px;
    padding: 28px 24px;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-detail i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.contact-detail span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 24px;
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--body);
    font-size: 0.82rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.consent-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.consent-group label {
    font-size: 0.75rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.map-wrap iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 10px;
}

.site-footer {
    background: var(--secondary);
    padding: 16px 0;
    font-size: 0.75rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    transition: color var(--ease);
}

.footer-links a:hover {
    color: var(--accent);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    padding: 14px 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.visible {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1060px;
    margin: 0 auto;
    gap: 16px;
}

.cookie-inner p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.cookie-inner a {
    color: var(--accent);
}

.cookie-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 7px 20px;
    border-radius: 5px;
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--ease);
}

.cookie-btn:hover {
    background: var(--primary);
}

.full-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 30px) 20px 30px;
}

.full-page-inner {
    max-width: 440px;
}

.full-page-inner i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.full-page-inner h1 {
    margin-bottom: 10px;
}

.full-page-inner p {
    color: var(--text-mid);
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.policy-page {
    padding: calc(var(--header-h) + 35px) 0 45px;
}

.policy-page h1 {
    margin-bottom: 8px;
}

.policy-date {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.policy-page h2 {
    font-size: 1.2rem;
    margin: 22px 0 8px;
}

.policy-page h3 {
    font-size: 1rem;
    margin: 16px 0 6px;
}

.policy-page p {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-bottom: 8px;
    line-height: 1.7;
}

.policy-page ul {
    margin: 6px 0 12px 18px;
    list-style: disc;
}

.policy-page li {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-bottom: 4px;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    text-align: center;
    padding: 20px 14px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform var(--ease);
}

.value-card:hover {
    transform: translateY(-2px);
}

.value-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.value-card h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.value-card p {
    font-size: 0.76rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.tips-list {
    max-width: 660px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip-item h3 {
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.tip-item p {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.cta-section {
    text-align: center;
    padding: 45px 0;
    background: linear-gradient(145deg, var(--secondary) 0%, #2a3f6a 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin-bottom: 18px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 10px;
}

.about-text p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 8px;
}

.about-img img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: center;
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.trust-item h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.76rem;
    color: var(--text-mid);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.preview-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--ease);
}

.preview-card:hover {
    transform: translateY(-2px);
}

.preview-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.preview-card h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.preview-card p {
    font-size: 0.76rem;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.commitment-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.commitment-box i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.commitment-box h2 {
    margin-bottom: 10px;
}

.commitment-box p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.dynamic-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .nav-left, .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu, .mobile-overlay {
        display: block;
    }

    .header-inner {
        justify-content: flex-start;
    }

    .features-grid, .products-grid, .values-grid,
    .trust-grid, .preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-split, .contact-grid, .about-split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .content-split.reverse {
        direction: ltr;
    }

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }
}

@media (max-width: 600px) {
    .features-grid, .products-grid, .values-grid,
    .trust-grid, .preview-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 1.45rem; }
    h2 { font-size: 1.15rem; }

    section { padding: 32px 0; }

    .hero { padding: calc(var(--header-h) + 28px) 0 28px; }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-card { padding: 22px 18px; }
    .contact-form-card { padding: 22px 18px; }
}

@media (max-width: 380px) {
    body { font-size: 13px; }
    .container { padding: 0 14px; }
    .logo { font-size: 0.95rem; padding: 0 8px 0 0; }
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.05rem; }
    .hero { padding: calc(var(--header-h) + 18px) 0 22px; }
    .hero-icon { font-size: 1.8rem; }
    .btn { padding: 8px 18px; font-size: 0.78rem; }
}
