@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --cream: #fffaf4;
    --blush: #f8e2d9;
    --peach: #edb5a4;
    --coral: #dc7768;
    --sage: #5ca17d;
    --sage-dark: #2f6c50;
    --leaf: #cfe2c9;
    --ink: #211827;
    --muted: #756a70;
    --line: rgba(92, 161, 125, 0.22);
    --shadow: 0 20px 48px rgba(74, 61, 52, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 22%, rgba(207, 226, 201, 0.42) 0 120px, transparent 121px),
        radial-gradient(circle at 92% 18%, rgba(248, 226, 217, 0.7) 0 170px, transparent 171px),
        var(--cream);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.62;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    width: 180px;
    height: 340px;
    opacity: 0.42;
    background:
        radial-gradient(ellipse at 50% 8%, var(--leaf) 0 28px, transparent 29px),
        radial-gradient(ellipse at 35% 24%, var(--leaf) 0 22px, transparent 23px),
        radial-gradient(ellipse at 62% 38%, var(--leaf) 0 26px, transparent 27px),
        radial-gradient(ellipse at 42% 56%, var(--leaf) 0 24px, transparent 25px);
}

body::before {
    left: -54px;
    top: 170px;
    transform: rotate(-24deg);
}

body::after {
    right: -44px;
    top: 70px;
    transform: rotate(20deg);
}

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

button {
    cursor: pointer;
    font: inherit;
}

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

.site-header,
.hero,
.section,
.finder-band,
.community-strip {
    width: calc(100% - 32px);
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.92);
    box-shadow: 0 12px 32px rgba(74, 61, 52, 0.1);
    padding: 10px 14px;
    backdrop-filter: blur(18px);
}

.brand,
.site-nav {
    display: inline-flex;
    align-items: center;
}

.brand {
    gap: 10px;
    min-width: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 700;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(92, 161, 125, 0.26);
    border-radius: 8px;
    background: #fff3ea;
}

.brand__mark img {
    width: 34px;
    height: 34px;
}

.site-nav {
    gap: 8px;
}

.site-nav a {
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    padding: 9px 11px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: #edf7ef;
    color: var(--sage-dark);
    outline: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 42px;
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: 66px 0 42px;
}

.eyebrow {
    color: var(--sage-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    line-height: 0.97;
}

h1 {
    margin-top: 14px;
    font-size: 72px;
}

h2 {
    margin-top: 10px;
    font-size: 48px;
}

.hero__copy p:not(.eyebrow),
.section-intro p:not(.eyebrow) {
    margin-top: 20px;
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    padding: 12px 18px;
}

.button--primary {
    background: var(--sage);
    color: #ffffff;
}

.button--secondary {
    border-color: rgba(220, 119, 104, 0.32);
    background: #ffffff;
    color: var(--coral);
}

.hero__media {
    position: relative;
    min-height: 520px;
}

.hero__media img {
    width: 78%;
    height: 420px;
    margin-left: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.note-card {
    position: absolute;
    left: 0;
    bottom: 54px;
    width: min(340px, 78%);
    border-radius: 8px;
    background: rgba(255, 240, 232, 0.95);
    box-shadow: var(--shadow);
    padding: 24px;
}

.note-card span,
.supply-card span,
.journal span {
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.note-card strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
}

.note-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.note-card .number-text,
.steps span,
.plan-grid strong {
    font-family: Cambria, Georgia, serif;
    font-weight: 700;
}

.note-card .number-text {
    color: inherit;
    font-size: inherit;
    text-transform: none;
}

.section {
    padding: 88px 0 0;
}

.section-intro {
    max-width: 680px;
    margin-bottom: 30px;
}

.section-intro--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.steps,
.supply-grid,
.plan-grid,
.journal-grid {
    display: grid;
    gap: 18px;
}

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

.steps article,
.supply-card,
.plan-grid article,
.tip-list article,
.journal article,
.finder-result {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(74, 61, 52, 0.08);
}

.steps article {
    padding: 24px;
}

.steps span {
    color: var(--coral);
    font-size: 38px;
    line-height: 0.98;
    font-variant-numeric: tabular-nums;
}

h3 {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.2;
}

.steps h3,
.tip-list h3,
.journal h3 {
    margin-top: 12px;
}

.steps p,
.supply-card p,
.tip-list p,
.plan-grid p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.finder-band {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr) minmax(300px, 0.9fr);
    gap: 18px;
    align-items: center;
    margin-top: 88px;
    border-radius: 8px;
    background: var(--sage);
    color: #ffffff;
    padding: 34px;
}

.finder-band .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.finder-band h2 {
    font-size: 40px;
}

.finder-controls {
    display: grid;
    gap: 10px;
}

.style-button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-weight: 900;
    padding: 10px 14px;
}

.style-button.is-selected {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--sage-dark);
}

.finder-result {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    padding: 22px;
}

.finder-result strong {
    display: block;
    font-size: 20px;
}

.finder-result p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.supply-card {
    overflow: hidden;
}

.supply-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.supply-card div {
    padding: 22px;
}

.community-strip {
    margin-top: 88px;
    border-radius: 8px;
    background: var(--sage);
    color: #ffffff;
    text-align: center;
    padding: 44px 28px;
}

.community-strip .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.community-strip h2 {
    max-width: 680px;
    margin: 8px auto 0;
    font-size: 38px;
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.photo-row img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 32px;
    align-items: start;
}

.tip-list {
    display: grid;
    gap: 12px;
}

.tip-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
}

.tip-list i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #f7dfd6;
    color: var(--coral);
}

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

.plan-grid article {
    display: grid;
    gap: 12px;
    padding: 26px;
    text-align: center;
}

.plan-grid span {
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-grid strong {
    color: var(--coral);
    font-size: 48px;
    line-height: 1;
}

.plan-grid a {
    justify-self: center;
    width: fit-content;
    border-radius: 999px;
    background: var(--sage);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    padding: 10px 14px;
}

.journal {
    padding-bottom: 88px;
}

.journal-grid {
    grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.84fr));
    align-items: stretch;
}

.journal article {
    overflow: hidden;
}

.journal img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.journal-feature img {
    height: 330px;
}

.journal div {
    padding: 20px;
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }

    .hero,
    .finder-band,
    .split-section {
        grid-template-columns: 1fr;
    }

    .steps,
    .supply-grid,
    .plan-grid,
    .journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-header,
    .hero,
    .section,
    .finder-band,
    .community-strip {
        width: calc(100% - 24px);
    }

    .brand {
        font-size: 22px;
    }

    .hero {
        min-height: auto;
        padding-top: 52px;
    }

    h1 {
        font-size: 48px;
    }

    h2,
    .finder-band h2,
    .community-strip h2 {
        font-size: 34px;
    }

    .hero__actions,
    .hero__actions .button {
        width: 100%;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__media {
        min-height: auto;
    }

    .hero__media img {
        width: 100%;
        height: 320px;
    }

    .note-card {
        position: relative;
        bottom: auto;
        width: 100%;
        margin-top: -40px;
    }

    .steps,
    .supply-grid,
    .plan-grid,
    .journal-grid,
    .photo-row {
        grid-template-columns: 1fr;
    }
}
