:root {
    --bg: #f7f2ee;
    --bg-strong: #f2e8dd;
    --panel: rgba(255, 255, 255, 0.7);
    --panel-strong: #fffaf5;
    --sage: #bccdb8;
    --sage-deep: #6a8d72;
    --dusty-rose: #d5a7a0;
    --peach: #f0c7a9;
    --melon: #f6d8b3;
    --sand: #e8d9c3;
    --moss: #8ba58a;
    --ink: #2f312d;
    --muted: #5f685f;
    --shadow: rgba(84, 62, 46, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 32%),
        linear-gradient(135deg, #f9f5f0 0%, #f5efe8 38%, #f2e8df 100%);
    color: var(--ink);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 32px 58px;
}

.topbar,
.hero,
.feature-strip,
.story,
.gallery,
.quote-block,
.testimonial-row,
.site-footer {
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(122, 101, 84, 0.08);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(143, 111, 84, 0.05);
    backdrop-filter: blur(12px);
}

.brand-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.brand-logo {
    display: block;
    max-height: 62px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(86, 68, 52, 0.12));
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.96rem;
    color: var(--muted);
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--sage-deep);
    opacity: 0;
    transform: scaleX(0.6);
    transition: 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
    padding: 0.85rem 1.4rem;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 15px 25px rgba(40, 40, 40, 0.1);
}

.button {
    padding: 1rem 1.5rem;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(135deg, var(--sage-deep), var(--dusty-rose));
    color: #fff;
    box-shadow: 0 18px 32px rgba(117, 135, 109, 0.18);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(104, 92, 80, 0.12);
    color: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 44px;
    padding: 68px 0 48px;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    color: var(--sage-deep);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(103, 117, 96, 0.08);
}

.hero-copy h1,
.story-copy h2,
.section-heading h2,
.site-footer h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.96;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    max-width: 620px;
    font-size: clamp(3.6rem, 6vw, 6rem);
}

.lead {
    max-width: 560px;
    margin-top: 22px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
}

.hero-metrics li {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(104, 92, 80, 0.08);
    border-radius: 22px;
    text-align: center;
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
}

.hero-metrics span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.wide-showcase {
    position: relative;
    width: min(100%, 620px);
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(131, 104, 86, 0.12);
    border: 1px solid rgba(121, 97, 79, 0.08);
    background: #efe5dc;
}

.wide-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}

.showcase-overlay {
    position: absolute;
    inset: auto 28px 28px 28px;
    padding: 20px 22px 18px;
    border-radius: 22px;
    background: rgba(39, 41, 38, 0.38);
    backdrop-filter: blur(8px);
    color: #fff;
    max-width: 76%;
}

.showcase-tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.showcase-overlay h2 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    line-height: 0.95;
}

.small-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

.product-card {
    position: relative;
    width: min(100%, 470px);
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.32));
    border: 1px solid rgba(121, 97, 79, 0.08);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(131, 104, 86, 0.12);
}

.card-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--sage-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, #f4dcd1, #e7e1d9);
}

.product-info {
    padding: 14px 8px 8px;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage-deep);
    font-weight: 800;
}

.product-info h2 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-family: "Cormorant Garamond", serif;
}

.product-info p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.feature-strip article {
    padding: 30px 20px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(124, 108, 92, 0.08);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(188, 205, 184, 0.24);
    color: var(--sage-deep);
    font-size: 1.2rem;
}

.feature-strip h3 {
    margin: 18px 0 10px;
    font-size: 1.4rem;
}

.feature-strip p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

.story {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 52px;
    align-items: center;
    padding: 86px 0 44px;
}

.story-image img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 26px 48px rgba(91, 78, 68, 0.1);
}

.story-copy h2 {
    font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.story-copy p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.text-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--sage-deep);
    font-weight: 700;
}

.gallery {
    padding-top: 34px;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.photo-card {
    display: block;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(129, 105, 90, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 24px rgba(96, 83, 72, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 28px rgba(96, 83, 72, 0.1);
}

.photo-card img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

.etsy-reviews {
    margin-top: 64px;
    padding: 8px 0 14px;
    color: var(--ink);
}

.reviews-header h2 {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
}

.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px 28px;
    align-items: end;
    padding-bottom: 18px;
}

.summary-overview {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.big-stars {
    font-size: clamp(3.2rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
}

.star-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e7b242;
    color: #e7b242;
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-label,
.summary-sub {
    margin: 0;
    color: var(--muted);
}

.summary-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-sub {
    font-size: 0.9rem;
    margin-top: 4px;
}

.summary-phrases {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
    font-size: 1.05rem;
    color: var(--ink);
    margin-top: 8px;
}

.summary-phrases span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.summary-phrases span::before {
    content: "✓";
    color: #5d8f66;
    font-weight: 800;
}

.rating-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 6px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 12px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(120, 97, 82, 0.08);
    border-radius: 20px;
}

.rating-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #e7b242;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
}

.rating-box span {
    color: var(--muted);
    line-height: 1.4;
    font-size: 0.97rem;
}

.review-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 24px;
}

.tab {
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(107, 98, 88, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
}

.tab.active {
    background: rgba(101, 118, 103, 0.08);
    border-color: rgba(101, 118, 103, 0.18);
}

.review-list {
    border-top: 1px solid rgba(120, 97, 82, 0.12);
}

.review-item {
    padding: 24px 0 18px;
    border-bottom: 1px solid rgba(120, 97, 82, 0.12);
}

.review-topline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.stars {
    color: #e7b242;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
}

.review-tag {
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(120, 97, 82, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.82rem;
    font-weight: 700;
}

.reviewer,
.review-date {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 600;
}

.review-item p {
    margin: 0;
    max-width: 1000px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink);
}

.reviews-footer {
    display: flex;
    justify-content: center;
    padding-top: 26px;
}

.reviews-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 0.95rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(120, 97, 82, 0.24);
    background: rgba(255, 255, 255, 0.2);
    color: var(--ink);
    font-weight: 800;
    text-align: center;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 52px;
    padding: 30px 18px 8px;
}

.site-footer h3 {
    font-size: clamp(2.2rem, 3vw, 3rem);
}

.leaf {
    position: absolute;
    z-index: 0;
    width: clamp(140px, 12vw, 220px);
    opacity: 0.85;
    pointer-events: none;
}

.leaf-left {
    left: -40px;
    top: 110px;
    transform: rotate(-18deg);
}

.leaf-right {
    right: -22px;
    top: 450px;
    transform: rotate(12deg);
}

@media (max-width: 980px) {

    .hero,
    .story,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .rating-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 30px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 640px) {
    .page-shell {
        padding: 20px 18px 44px;
    }

    .topbar {
        padding: 16px 14px;
    }

    .main-nav {
        gap: 12px;
        font-size: 0.82rem;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary-phrases {
        gap: 10px 14px;
        font-size: 0.94rem;
    }

    .rating-grid {
        grid-template-columns: 1fr;
    }

    .review-topline {
        gap: 8px;
    }

    .reviewer,
    .review-date {
        margin-left: 0;
    }

    .leaf {
        display: none;
    }
}