:root {
    --bg: #fcf9f4;
    --surface: #ffffff;
    --surface-soft: #f8f2e9;
    --ink: #2e2622;
    --muted: #70655c;
    --line: #eadfce;
    --primary: #8b2f3d;
    --primary-strong: #6f1f2c;
    --accent: #c9a86d;
    --dark: #251d1a;
    --max-width: 1160px;
    --radius: 16px;
    --shadow: 0 16px 36px rgba(53, 39, 30, 0.11);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 2%, rgba(201, 168, 109, 0.14), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(139, 47, 61, 0.07), transparent 26%),
        var(--bg);
}

img,
video {
    display: block;
    width: 100%;
}

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

.section {
    padding: 5rem 0;
}

.section-light {
    background: transparent;
}

.section-dark {
    background: linear-gradient(180deg, #fff9f0 0%, #f9f1e6 100%);
}

.section-accent {
    background: linear-gradient(180deg, #fffdf9 0%, #f7ede0 100%);
}

.section-head {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.2vw, 2.9rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.section-note {
    max-width: 730px;
    color: var(--muted);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
    color: #b38848;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 252, 247, 0.93);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.nav-wrap {
    position: relative;
    min-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.brand {
    color: var(--primary-strong);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #e5d6c0;
    background: #fff;
    padding: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fff9ee 0%, #f7ede0 52%, #f3e5d2 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 26%, rgba(201, 168, 109, 0.24), transparent 40%),
        radial-gradient(circle at 84% 18%, rgba(139, 47, 61, 0.08), transparent 34%);
}

.sub-hero {
    background: linear-gradient(180deg, #fffdf8 0%, #f7efe3 100%);
    border-bottom: 1px solid var(--line);
}

.sub-hero-content {
    padding: 4.7rem 0 3.8rem;
    max-width: 760px;
}

.sub-hero h1 {
    margin: 0.8rem 0 0.7rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4.4vw, 3rem);
    line-height: 1.15;
    color: #382b26;
}

.sub-hero p {
    color: var(--muted);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    padding: 6.4rem 0 5.3rem;
}

.hero-logo-wrap {
    display: flex;
    justify-content: flex-start;
    margin-left: -1.25rem;
}

.hero-logo {
    width: min(100%, 330px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(53, 39, 30, 0.14));
}

.hero-text {
    max-width: 760px;
}

.hero h1 {
    margin: 0.9rem 0 1rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #382b26;
}

.hero-copy {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 0.78rem 1.24rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #362714;
    box-shadow: 0 10px 22px rgba(201, 168, 109, 0.36);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.78);
    color: #5a4640;
    border: 1px solid #ceb999;
}

.brand-strip {
    padding: 1.2rem 0;
    background: #fffdf8;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.brand-strip p {
    color: #7a6b5f;
    font-weight: 600;
}

.stats-section {
    padding-top: 4.2rem;
    background: linear-gradient(180deg, #fffefb 0%, #faf3e9 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
    border: 1px solid #eadfce;
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    color: var(--primary-strong);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-card p {
    color: #6f635a;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    background: linear-gradient(180deg, #fffefb 0%, #fff8ef 100%);
    border: 1px solid #eadfce;
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(56, 38, 30, 0.14);
}

.service-card h3 {
    color: var(--primary-strong);
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
}

.media-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.3rem;
}

.media-tab {
    border: 1px solid #d3bea1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: #664f41;
    padding: 0.45rem 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.media-tab.is-active {
    background: #cfb07a;
    color: #2f2418;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.media-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card {
    background: #fffdfa;
    border: 1px solid #eadfce;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(56, 38, 30, 0.14);
}

.media-card img,
.media-card video {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f2eadf;
}

.media-meta {
    padding: 0.78rem 0.88rem 0.98rem;
}

.media-meta h3 {
    font-size: 1rem;
    margin-bottom: 0.22rem;
    color: #47362f;
}

.media-meta p {
    color: #7d6f63;
    font-size: 0.92rem;
}

.media-placeholder {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    color: #b59c78;
    font-weight: 600;
    background: repeating-linear-gradient(45deg, #f2e8dc, #f2e8dc 16px, #ece0d1 16px, #ece0d1 32px);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.timeline-item {
    background: linear-gradient(180deg, #fffefb 0%, #fff8ef 100%);
    border: 1px solid #eadfce;
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: var(--shadow);
}

.timeline-item span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0ddba;
    color: #6d1d2b;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.testimonials {
    background: #fffdf8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    color: #5f5048;
    margin-bottom: 0.95rem;
}

.testimonial-card h3 {
    color: var(--primary-strong);
    font-size: 1rem;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 0.8rem;
}

.contact-card {
    display: block;
    text-decoration: none;
    color: #5a4740;
    border: 1px solid #dfcfba;
    border-radius: var(--radius);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.88);
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.contact-card h3 {
    margin-bottom: 0.2rem;
    color: var(--primary-strong);
}

.insta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.insta-card img {
    width: 144px;
    height: 144px;
    flex-shrink: 0;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ddc8a8;
    box-shadow: 0 10px 24px rgba(53, 39, 30, 0.12);
    padding: 10px;
}

.site-footer {
    background: #f2e6d6;
    color: #615044;
    padding: 1.2rem 0;
    border-top: 1px solid #e4d6c3;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer a {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 1060px) {
    .stats-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-grid,
    .media-grid-wide,
    .timeline,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
        position: absolute;
        right: 0;
        top: 66px;
        width: min(240px, calc(100vw - 2rem));
        flex-direction: column;
        background: #fffbf6;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 0.7rem;
    }

    .nav-links.is-open {
        display: flex;
    }

    .stats-grid,
    .service-grid,
    .media-grid,
    .media-grid-wide,
    .timeline,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 5.7rem 0 4.3rem;
    }

    .hero-logo-wrap {
        justify-content: center;
    }

    .hero-logo {
        width: min(76vw, 270px);
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .insta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .insta-card img {
        width: 160px;
        height: 160px;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
