:root {
    --bone: #f4efe4;
    --bone-deep: #ede5d4;
    --ink: #20281f;
    --sage: #7c8b6f;
    --sage-deep: #5c6b50;
    --clay: #b9875e;
    --line: rgba(32, 40, 31, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bone);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--sage);
    color: var(--bone);
}

h1,
h2,
h3,
.serif {
    font-family: "Fraunces", serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 22px;
    }
}

/* ---------- NAV ---------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 22px 0;
    background: linear-gradient(var(--bone) 60%, transparent);
    transition: padding 0.3s ease;
}

nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.navlinks {
    display: flex;
    gap: 36px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.navlinks a {
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.navlinks a:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .navlinks {
        display: none;
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(900px, 140vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.rings svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ring-path {
    fill: none;
    stroke: var(--sage);
    stroke-width: 0.6;
    opacity: 0.35;
    transform-origin: 200px 200px;
    animation: breathe 9s ease-in-out infinite;
}

.ring-path:nth-child(2) {
    animation-delay: -1.5s;
    stroke: var(--clay);
    opacity: 0.28;
}

.ring-path:nth-child(3) {
    animation-delay: -3s;
    opacity: 0.22;
}

.ring-path:nth-child(4) {
    animation-delay: -4.5s;
    stroke: var(--clay);
    opacity: 0.16;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.055);
        opacity: 0.55;
    }
}

@media (prefers-reduced-motion:reduce) {
    .ring-path {
        animation: none;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 28px;
    display: block;
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.04;
    font-weight: 300;
    max-width: 14ch;
    margin: 0 auto 30px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--sage-deep);
}

.hero p {
    max-width: 44ch;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.hero-cta:hover {
    background: var(--ink);
    color: var(--bone);
}

/* ---------- SECTION SHELL ---------- */
section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 640px) {
    section {
        padding: 80px 0;
    }
}

.section-label {
    font-size: 0.76rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 22px;
}

.lede {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1.5;
    max-width: 20ch;
    color: var(--sage-deep);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- INTRO / ESSENCE STATEMENT ---------- */
.essence {
    border-top: 1px solid var(--line);
}

.essence-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 800px) {
    .essence-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.essence-body p {
    margin-bottom: 22px;
    font-size: 1.02rem;
    max-width: 56ch;
}

.essence-body p:first-child {
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    max-width: 22ch;
}

/* ---------- PRACTICE / METHODS ---------- */
.practice {
    background: var(--bone-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.practice-head {
    max-width: 38ch;
    margin-bottom: 64px;
}

.practice-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 300;
}

.method-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

@media (max-width: 640px) {
    .method-list {
        grid-template-columns: 1fr;
    }
}

.method {
    background: var(--bone-deep);
    padding: 38px 34px;
}

.method h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.method p {
    font-size: 0.94rem;
    opacity: 0.75;
}

/* ---------- QUOTE / TRANSITION ---------- */
.transition {
    text-align: center;
    padding: 140px 0;
}

.transition blockquote {
    font-family: "Fraunces", serif;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    font-weight: 400;
    font-style: italic;
    max-width: 24ch;
    margin: 0 auto;
    line-height: 1.4;
    color: var(--sage-deep);
}

/* ---------- ABOUT / PORTRAIT ---------- */
.about {
    border-top: 1px solid var(--line);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.portrait {
    /* aspect-ratio: 4/5; */
    max-width: 440px;
    max-height: 350px;
    /* background: linear-gradient(160deg, var(--sage) 0%, var(--sage-deep) 100%); */
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%,
            rgba(244, 239, 228, 0.18),
            transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(20, 25, 18, 0.25), transparent 60%);
}

.about-copy h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.3rem);
    font-weight: 300;
    margin-bottom: 6px;
}

.about-role {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-deep);
    display: block;
    /* margin-bottom: 28px; */
}

.about-copy p {
    margin-bottom: 18px;
    font-size: 1rem;
    max-width: 52ch;
}

/* ---------- NATURE STRIP ---------- */
.nature {
    background: var(--ink);
    color: var(--bone);
    text-align: center;
}

.nature .section-label {
    color: var(--clay);
}

.nature p {
    max-width: 52ch;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.85;
}

.nature h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.2rem);
    font-weight: 300;
    max-width: 18ch;
    margin: 0 auto 26px;
}

/* ---------- INVITATION / CLOSING ---------- */
.invite {
    text-align: center;
    padding: 150px 0 100px;
}

.invite p.big {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    max-width: 26ch;
    margin: 0 auto 34px;
    line-height: 1.5;
    color: var(--ink);
}

.invite .signoff {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 44px;
}

/* ---------- FOOTER ---------- */
footer {
    border-top: 1px solid var(--line);
    padding: 44px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.55;
    letter-spacing: 0.04em;
}