@charset "UTF-8";
:root {
    --primary: #1a1a2e;
    --primary-light: #2d2d4a;
    --accent: #c9a96e;
    --accent-dark: #b08d4f;
    --accent-light: #dfc799;
    --bg-cream: #faf8f5;
    --bg-section: #f4f1ec;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-medium: #5a5a5a;
    --text-light: #888888;
    --border: #e8e4df;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 6px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

.section-title p {
    max-width: 550px;
    margin: 0.5rem auto 0;
    font-size: 0.92rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.2rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.35s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.2rem;
    max-width: 650px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-content .btn {
    margin: 0 0.4rem;
}

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--bg-cream);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-title h2::after {
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.service-card h3 {
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.85rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.why-item {
    padding: 1.2rem;
}

.why-item .why-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.why-item h3 {
    font-size: 0.95rem;
    color: var(--white);
}

.why-item p {
    font-size: 0.82rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 1rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
}

.step h3 {
    font-size: 1rem;
}

.step p {
    font-size: 0.85rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-light);
    position: absolute;
    top: 0.3rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.88rem;
    font-style: italic;
    padding-top: 1.2rem;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    text-align: center;
    padding: 3rem 1.2rem;
}

.cta-section h2 {
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.cta-section p {
    color: var(--primary-light);
    margin-bottom: 1.2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--primary);
    color: var(--white);
}

.cta-section .btn:hover {
    background: var(--primary-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-icon-area {
    background: var(--bg-cream);
    padding: 2rem;
    text-align: center;
}

.product-icon-area i {
    font-size: 2.5rem;
    color: var(--accent);
}

.product-info {
    padding: 1.2rem;
}

.product-info h3 {
    font-size: 1.05rem;
}

.product-info p {
    font-size: 0.82rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.product-price .price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.page-header {
    background: var(--primary);
    padding: 6rem 0 2.5rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-story img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-story-text h2 {
    margin-bottom: 0.8rem;
}

.about-story-text p {
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.value-item {
    padding: 1.5rem 1rem;
}

.value-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.7rem;
    display: block;
}

.value-item h3 {
    font-size: 1rem;
}

.value-item p {
    font-size: 0.82rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel {
    background: var(--primary);
    padding: 2rem 1.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-panel > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.contact-detail i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.15rem;
}

.contact-detail span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.contact-form-panel {
    background: var(--white);
    padding: 2rem 1.5rem;
}

.contact-form-panel h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color var(--transition);
    background: var(--bg-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.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"] {
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 0.78rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.form-submit {
    width: 100%;
    padding: 0.7rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.form-submit:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

footer {
    background: var(--primary);
    padding: 1.5rem 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.2rem;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    margin: 0;
    flex: 1;
}

.cookie-inner a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.45rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.cookie-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-accept:hover {
    background: var(--accent-dark);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    border-color: var(--white);
}

.fullpage-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.2rem;
    background: var(--bg-cream);
    background-color: #616161b0;
}

.fullpage-content i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.fullpage-content h1 {
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.fullpage-content p {
    max-width: 450px;
    margin: 0 auto 1.2rem;
    font-size: 0.92rem;
}

.policy-content {
    padding: 3rem 0;
}

.policy-content h1 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.policy-content p {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content ul li {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.process-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.process-item i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.process-item h3 {
    font-size: 1rem;
}

.process-item p {
    font-size: 0.82rem;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 0.92rem;
}

.intro-image {
    margin: 2rem auto 0;
    max-width: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 4rem 1.5rem 2rem;
        gap: 10px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        padding: 0.8rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    html {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 80vh;
    }

    .section {
        padding: 2.5rem 0;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 11px;
    }

    .container {
        padding: 0 0.8rem;
    }

    .header-inner {
        padding: 0.7rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

