:root {
    --font-heading: 'Fraunces', serif;
    --font-body: 'Space Grotesk', sans-serif;
    --primary: #5E8B6E;
    --primary-light: #7BA98A;
    --primary-dark: #3D6650;
    --secondary: #C4915E;
    --secondary-light: #D9B48F;
    --accent: #7895A8;
    --bg: #FDFBF7;
    --bg-alt: #F0ECE3;
    --bg-dark: #2E3532;
    --text: #2E2E2E;
    --text-light: #666666;
    --text-inverse: #FDFBF7;
    --border: #DDD8CE;
    --max-w: 1100px;
    --radius: 10px;
    --speed: 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    background: var(--bg-alt);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--speed);
}

a:hover {
    color: var(--primary-dark);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.65rem;
}

h3 {
    font-size: 1.15rem;
}

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.2rem;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform var(--speed), background var(--speed), padding var(--speed), box-shadow var(--speed);
    padding: 1rem 0;
    background: transparent;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 1;
}

.site-header.scrolled {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.45rem 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: font-size var(--speed), color var(--speed);
    position: relative;
    z-index: 1001;
    white-space: nowrap;
}

.site-header:not(.scrolled) .header-brand {
    font-size: 1.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text);
    padding: 0.5rem;
    z-index: 1001;
    transition: color var(--speed);
    line-height: 1;
}

.nav-toggle:hover {
    color: var(--primary);
}

.main-nav .nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav .nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color var(--speed);
    position: relative;
    padding-bottom: 3px;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--speed);
    border-radius: 1px;
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--primary);
}

.hero {
    padding: 7.5rem 0 3.5rem;
    background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 50%, rgba(94, 139, 110, 0.07) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(94, 139, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(196, 145, 94, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
}

.hero-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.hero-image img {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--speed);
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-inverse);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-inverse);
}

.btn-accent {
    background: var(--secondary);
    color: #fff;
}

.btn-accent:hover {
    background: #a87a45;
    color: #fff;
    transform: translateY(-1px);
}

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.section-dark h2,
.section-dark h3 {
    color: var(--text-inverse);
}

.section-dark p {
    color: rgba(253, 251, 247, 0.75);
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.section-action {
    text-align: center;
    margin-top: 1.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.philosophy-image img {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.philosophy-text h2 {
    margin-bottom: 0.7rem;
}

.philosophy-text p {
    font-size: 0.88rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.benefit-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.3rem 1rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform var(--speed), box-shadow var(--speed);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(94, 139, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.7rem;
    color: var(--primary);
    font-size: 1.05rem;
}

.benefit-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.benefit-card p {
    font-size: 0.8rem;
    margin: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.step-item {
    text-align: center;
    padding: 1rem 0.8rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    margin: 0 auto 0.7rem;
    font-family: var(--font-heading);
}

.step-item h3 {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
}

.step-item p {
    font-size: 0.8rem;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.5rem 1.2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--speed), box-shadow var(--speed);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.7rem;
    display: block;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-card .product-desc {
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.8rem;
}

.product-card .btn {
    width: 100%;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: var(--text-inverse);
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--text-inverse);
    margin-bottom: 0.5rem;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

.page-hero {
    padding: 7rem 0 2.5rem;
    background: linear-gradient(160deg, var(--bg-alt) 0%, rgba(94, 139, 110, 0.06) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero p {
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.about-text h2 {
    margin-bottom: 0.7rem;
}

.about-text p {
    font-size: 0.88rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.value-card {
    text-align: center;
    padding: 1.3rem 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform var(--speed), box-shadow var(--speed);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    display: block;
}

.value-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
}

.value-card p {
    font-size: 0.8rem;
    margin: 0;
}

.routine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.routine-image img {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.routine-cards {
    display: grid;
    gap: 0.8rem;
}

.routine-card {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform var(--speed);
}

.routine-card:hover {
    transform: translateX(4px);
}

.routine-card i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.routine-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.routine-card p {
    font-size: 0.8rem;
    margin: 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.schedule-card {
    padding: 1.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: transform var(--speed);
}

.schedule-card:hover {
    transform: translateY(-3px);
}

.schedule-card i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.schedule-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.schedule-card p {
    font-size: 0.8rem;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.3rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-detail p {
    font-size: 0.82rem;
    margin: 0;
}

.contact-detail a {
    font-size: 0.82rem;
}

.contact-hours {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.3rem;
}

.contact-hours h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-hours p {
    font-size: 0.82rem;
}

.contact-form-wrap {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.contact-form-wrap h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.83rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--speed), box-shadow var(--speed);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 139, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 0.1rem;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.4;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.site-footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 1.2rem 0;
    font-size: 0.75rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-links {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(253, 251, 247, 0.65);
    font-size: 0.72rem;
    transition: color var(--speed);
}

.footer-links a:hover {
    color: var(--text-inverse);
}

.footer-copy {
    color: rgba(253, 251, 247, 0.5);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 0.9rem 1.2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.privacy-popup.show {
    display: block;
}

.privacy-popup-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-popup p {
    font-size: 0.75rem;
    color: rgba(253, 251, 247, 0.8);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.privacy-popup a {
    color: var(--primary-light);
}

.privacy-popup .btn {
    font-size: 0.75rem;
    padding: 0.4rem 1.1rem;
    flex-shrink: 0;
}

.fullpage-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullpage-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.2rem;
    width: 100%;
}

.fullpage-message .fp-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.fullpage-message h1 {
    margin-bottom: 0.5rem;
}

.fullpage-message p {
    max-width: 420px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.policy-content {
    padding: 7rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.policy-date {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.policy-content h2 {
    margin: 1.8rem 0 0.5rem;
    font-size: 1.25rem;
}

.policy-content h3 {
    margin: 1.2rem 0 0.35rem;
}

.policy-content p {
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
}

.policy-content li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    line-height: 1.55;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.feature-item {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: block;
}

.feature-item h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.65rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(253, 251, 247, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--speed);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 1.6rem;
        text-align: center;
    }

    .main-nav .nav-list a {
        font-size: 1.15rem;
    }

    .hero {
        padding: 6rem 0 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        max-width: 100%;
    }

    .philosophy-grid,
    .about-grid,
    .routine-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .product-features {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .section {
        padding: 2.5rem 0;
    }

    .page-hero {
        padding: 5.5rem 0 2rem;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .policy-content {
        padding: 5.5rem 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding: 5.5rem 0 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .privacy-popup-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrap {
        padding: 1rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .header-brand {
        font-size: 1rem;
    }

    .site-header:not(.scrolled) .header-brand {
        font-size: 1.1rem;
    }
}
