:root {
    --olive: #4c4e35;
    --olive-dark: #313323;
    --cream: #e8dac9;
    --paper: #efe3d4;
    --panel: #dfccb7;
    --ink: #292b22;
    --white: #fffdf8;
    --header-height: 108px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.skip-link {
    position: fixed;
    z-index: 100;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.topline {
    height: 44px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .9);
    background: var(--olive);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 44px;
    left: 0;
    width: 100%;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 46px;
    padding: 17px clamp(28px, 4.5vw, 76px);
    color: var(--white);
    background: linear-gradient(to bottom, rgba(14, 15, 9, .72), rgba(14, 15, 9, 0));
}

.brand {
    width: clamp(220px, 22vw, 310px);
    flex: 0 0 auto;
}

.brand img { display: block; width: 100%; height: auto; }

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(17px, 1.8vw, 34px);
}

.main-nav a {
    padding: 12px 0 10px;
    border-bottom: 1px solid transparent;
    font-size: clamp(.68rem, .8vw, .82rem);
    font-weight: 600;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .is-active { border-color: currentColor; }

.main-nav .nav-cta {
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, .78);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible { background: rgba(255, 255, 255, .12); }

.menu-toggle { display: none; }

.hero {
    position: relative;
    min-height: clamp(680px, 82svh, 830px);
    display: flex;
    align-items: center;
    isolation: isolate;
    color: var(--white);
    background: url('../images/livora-hero.jpg') center 46% / cover no-repeat;
}

.hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 15, 8, .77) 0%, rgba(12, 15, 8, .48) 35%, rgba(12, 15, 8, .08) 66%),
        linear-gradient(0deg, rgba(12, 15, 8, .25), transparent 42%);
}

.hero__content {
    width: min(760px, 88%);
    margin-left: clamp(28px, 6.8vw, 112px);
    padding: calc(var(--header-height) + 55px) 0 70px;
}

.hero h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3.2rem, 5.7vw, 6.35rem);
    font-weight: 400;
    line-height: .99;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.hero__lead {
    margin: 34px 0 37px;
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    letter-spacing: .01em;
}

.hero__themes {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 44px;
    font-size: clamp(.68rem, .82vw, .82rem);
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.hero__themes i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

.button {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 19px 27px;
    color: var(--white);
    background: rgba(76, 78, 53, .92);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}

.button:hover,
.button:focus-visible { background: var(--olive-dark); transform: translateY(-2px); }

.hero__scroll {
    position: absolute;
    right: 30px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .66rem;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.pathways {
    padding: 68px 18px 74px;
    background: var(--cream);
}

.section-heading {
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(.85rem, 3.8vw, 1.1rem);
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.section-heading span {
    width: 38px;
    height: 1px;
    display: block;
    margin: 19px auto 0;
    background: rgba(41, 43, 34, .45);
}

.pathways__grid {
    width: min(1280px, 100%);
    display: grid;
    gap: 22px;
    margin: 0 auto;
}

.path-card {
    overflow: hidden;
    background: rgba(223, 204, 183, .72);
    box-shadow: 0 0 0 1px rgba(61, 58, 48, .08);
}

.path-card > img {
    width: 100%;
    height: clamp(250px, 72vw, 390px);
    display: block;
    object-fit: cover;
}

.path-card:nth-child(1) > img { object-position: center 62%; }
.path-card:nth-child(2) > img { object-position: center center; }
.path-card:nth-child(3) > img { object-position: center 48%; }
.path-card:nth-child(4) > img { object-position: center center; }

.path-card__body {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 24px 30px;
    text-align: center;
}

.path-card__icon {
    position: absolute;
    top: -35px;
    left: 50%;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #6f705c;
    background: var(--cream);
    transform: translateX(-50%);
}

.path-card__icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.path-card h3 {
    margin: 0 0 6px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.path-card p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.55;
}

.path-card .path-card__tagline {
    margin-bottom: 13px;
    font-size: 1.08rem;
}

.path-card__body > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding: 15px 8px 0;
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
}

.path-card__body > a:hover,
.path-card__body > a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.welcome {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    isolation: isolate;
    padding: 70px 22px;
    color: var(--white);
    background: url('../images/welcome-background-v2.png') center / cover no-repeat;
    text-align: center;
}

.welcome__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(50, 41, 29, .52);
}

.welcome__content { width: min(760px, 100%); }

.welcome h2 {
    margin: 0 0 17px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 7.2vw, 2.65rem);
    font-weight: 400;
}

.welcome p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(.95rem, 3.5vw, 1.12rem);
    line-height: 1.65;
}

.welcome .signature {
    margin-top: 19px;
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: 1.7rem;
    transform: rotate(-5deg);
}

.site-footer {
    min-height: 210px;
    display: grid;
    justify-items: center;
    gap: 24px;
    padding: 38px 24px;
    color: var(--white);
    background: var(--olive);
    text-align: center;
}

.site-footer__brand { width: 180px; }
.site-footer__brand img { width: 100%; height: auto; display: block; }

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer__social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: .82rem;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: lowercase;
}

.site-footer__social svg { width: 19px; height: 19px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; }
.site-footer__social .social-icon__dot,
.site-footer__social .social-icon__facebook { fill: currentColor; stroke: none; }

.site-footer__contact {
    display: grid;
    gap: 5px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: .78rem;
    font-style: normal;
    line-height: 1.25;
}

.site-footer__contact a {
    color: inherit;
    text-decoration: none;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__quote {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
}

.site-footer__sun { font-size: 2.5rem; font-weight: 200; }

@media (min-width: 640px) {
    .pathways { padding: 80px 30px 86px; }
    .pathways__grid { grid-template-columns: repeat(2, 1fr); }
    .path-card > img { height: 330px; }
}

@media (min-width: 960px) {
    .pathways { padding-top: 62px; }
    .pathways__grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
    .path-card > img { height: 290px; }
    .path-card__body { min-height: 310px; padding-inline: 15px; }
    .path-card h3 { font-size: 1.32rem; }
    .path-card p { font-size: .92rem; }
    .path-card .path-card__tagline { font-size: 1rem; }
    .welcome { min-height: 320px; }
    .site-footer {
        min-height: 130px;
        grid-template-columns: 1.05fr .9fr 1.45fr 1.35fr auto;
        align-items: center;
        justify-items: center;
        gap: 18px;
        padding: 24px clamp(35px, 5vw, 85px);
        text-align: left;
    }
    .site-footer__brand { justify-self: start; }
    .site-footer__sun { justify-self: end; }
}

@media (max-width: 1120px) {
    .site-header { gap: 20px; padding-inline: 28px; }
    .brand { width: 220px; }
    .main-nav { gap: 14px; }
    .main-nav a { font-size: .65rem; }
}

@media (max-width: 900px) {
    :root { --header-height: 86px; }
    .site-header { align-items: center; background: rgba(30, 31, 21, .72); }
    .brand { width: 205px; }

    .menu-toggle {
        position: absolute;
        z-index: 2;
        top: 50%;
        right: 28px;
        margin-left: auto;
        display: flex !important;
        align-items: center;
        gap: 11px;
        padding: 10px 0;
        border: 0;
        color: inherit;
        background: none;
        font: inherit;
        font-size: .7rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        cursor: pointer;
        transform: translateY(-50%);
    }

    .menu-toggle__icon,
    .menu-toggle__icon::before,
    .menu-toggle__icon::after {
        width: 25px;
        height: 1px;
        display: block;
        background: currentColor;
        transition: transform .2s;
    }

    .menu-toggle__icon { position: relative; }
    .menu-toggle__icon::before,
    .menu-toggle__icon::after { position: absolute; content: ''; }
    .menu-toggle__icon::before { top: -7px; }
    .menu-toggle__icon::after { top: 7px; }

    .menu-toggle[aria-expanded='true'] .menu-toggle__icon { background: transparent; }
    .menu-toggle[aria-expanded='true'] .menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
    .menu-toggle[aria-expanded='true'] .menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        display: grid;
        gap: 0;
        padding: 0 28px;
        background: rgba(49, 51, 35, .98);
        opacity: 0;
        visibility: hidden;
        transition: max-height .3s, opacity .2s, visibility .2s;
    }

    .main-nav.is-open {
        max-height: 620px;
        padding-block: 15px 24px;
        opacity: 1;
        visibility: visible;
    }

    .main-nav a { padding: 13px 0; border-bottom-color: rgba(255, 255, 255, .14); }
    .main-nav .nav-cta { margin-top: 11px; padding-inline: 14px; text-align: center; }
}

@media (max-width: 620px) {
    .topline { height: 38px; font-size: .6rem; }
    .site-header { top: 38px; padding: 12px 20px; }
    .brand { width: 178px; }
    .menu-toggle {
        right: 20px;
        min-width: 76px;
        flex: 0 0 76px;
        justify-content: flex-end;
    }
    .menu-toggle__label {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
    }
    .hero { min-height: calc(100svh - 38px); background-position: 58% center; }
    .hero__shade { background: linear-gradient(90deg, rgba(12, 15, 8, .72), rgba(12, 15, 8, .18)); }
    .hero__content { width: calc(100% - 40px); margin-left: 20px; padding-bottom: 55px; }
    .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .hero__lead { margin-block: 25px 30px; }
    .hero__themes { max-width: 330px; flex-wrap: wrap; gap: 9px 11px; line-height: 1.5; }
    .button { padding: 17px 21px; }
    .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Undersidor */
.subpage {
    --clay: #b97867;
    --blush: var(--panel);
}

.subpage .site-header--light {
    position: absolute;
    top: 44px;
    min-height: var(--header-height);
    color: var(--white);
    background: linear-gradient(to bottom, rgba(14, 15, 9, .78), rgba(14, 15, 9, .2) 72%, rgba(14, 15, 9, 0));
}

.subpage .site-header--light .brand img {
    filter: none;
}

.subpage .site-header--light .nav-cta { border-color: rgba(255, 255, 255, .78); }
.subpage main { overflow: hidden; }

.subpage h1,
.subpage h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.eyebrow {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    line-height: 1.7;
    text-transform: uppercase;
}

.accent-line {
    width: 82px;
    height: 2px;
    display: block;
    margin: 26px 0 34px;
    background: var(--clay);
}

.signature {
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
}

.signature--ink {
    color: #6f705c;
    font-size: 1.5rem;
}

.livora-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    overflow: visible;
    color: var(--olive);
    fill: none;
    vertical-align: middle;
}

.story-title-icon {
    width: .72em;
    height: .72em;
    margin-left: .08em;
    color: var(--olive);
    vertical-align: .02em;
}

.story-hero {
    min-height: 820px;
    display: grid;
    grid-template-columns: minmax(380px, 43%) 1fr;
    background: var(--paper);
}

.story-hero__copy {
    z-index: 1;
    align-self: stretch;
    padding: clamp(80px, 8vw, 130px) clamp(34px, 6vw, 100px);
    background: linear-gradient(90deg, var(--paper) 80%, rgba(239, 227, 212, 0));
}

.story-hero__copy > .eyebrow {
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.story-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    line-height: 1.1;
}

.story-text {
    max-width: 560px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.03rem;
    line-height: 1.75;
}

.story-hero__image {
    margin-left: -110px;
    background:
        linear-gradient(90deg, var(--paper), transparent 30%),
        url('../images/livora-hero.jpg') center / cover no-repeat;
}

.value-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 60px max(24px, 10vw);
    background: var(--cream);
}

.value-links a {
    min-height: 190px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    border-right: 1px solid rgba(41, 43, 34, .15);
    text-decoration: none;
}

.value-links a:last-child { border: 0; }
.value-links > a > .livora-icon:first-child { width: 58px; height: 58px; color: var(--olive); }
.value-links strong { font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; text-transform: uppercase; }
.value-links .value-heart { width: 29px; height: 29px; color: var(--olive); }

.detail-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.detail-hero--program {
    background:
        linear-gradient(90deg, rgba(239, 227, 212, .98) 0%, rgba(239, 227, 212, .83) 35%, rgba(239, 227, 212, .06) 67%),
        url('../images/flow.jpg') center 58% / cover no-repeat;
}

.detail-hero__copy {
    width: min(650px, 54%);
    padding: 70px clamp(35px, 8vw, 130px);
}
.detail-hero--program .detail-hero__copy { transform: translateY(40px); }

.script-line {
    margin: 0 0 24px;
    color: #34352b;
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: clamp(1.65rem, 3vw, 3rem);
    line-height: 1.45;
}

.detail-hero h1 {
    margin: 20px 0;
    font-size: clamp(3.4rem, 6.4vw, 7rem);
    line-height: .78;
    text-transform: uppercase;
}

.detail-hero h1 span { color: var(--clay); font-size: 1.55em; }
.detail-hero h1 em {
    color: var(--clay);
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: .54em;
    font-weight: 400;
    text-transform: lowercase;
}

.brush-label {
    display: inline-block;
    padding: 8px 35px;
    color: var(--white);
    background: var(--olive);
    font-family: Georgia, serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 55px max(24px, 12vw);
    background: var(--cream);
}

.benefits > div {
    min-height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 12px 28px;
    border-right: 1px solid rgba(41, 43, 34, .13);
    text-align: center;
}

.benefits > div:last-child { border: 0; }
.benefits span { color: #6f705c; font-size: 2.5rem; }
.benefits strong { font-family: Georgia, serif; font-size: 1.05rem; font-weight: 400; letter-spacing: .09em; line-height: 1.5; text-transform: uppercase; }
.benefits p { margin: 0; font-family: Georgia, serif; line-height: 1.6; }
.benefits--five { grid-template-columns: repeat(5, 1fr); padding-inline: max(20px, 5vw); }
.benefits--five > div { padding-inline: 12px; }

.program-offer {
    display: grid;
    grid-template-columns: .9fr 1.15fr .95fr;
    gap: 18px;
    padding: 62px max(24px, 5vw);
    background: var(--paper);
}

.offer-card {
    padding: clamp(30px, 4vw, 58px);
    background: var(--blush);
}

.offer-card h2 { margin-top: 0; text-align: center; text-transform: uppercase; }
.offer-card ul { padding: 0; list-style: none; font-family: Georgia, serif; line-height: 2.25; }
.offer-card li::before { margin-right: 13px; color: var(--clay); content: '✓'; }
.offer-card--price { text-align: center; }
.offer-card--price small { display: block; margin: 45px 0 10px; font-family: Georgia, serif; }
.price { display: block; color: var(--clay); font-family: Georgia, serif; font-size: clamp(3.2rem, 6vw, 5.7rem); font-weight: 400; }
.offer-card--price .button { margin: 20px 0 12px; }

.offer-image { position: relative; height: 570px; min-height: 0; margin: 0; overflow: hidden; background: var(--panel); }
.offer-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.offer-image figcaption {
    position: absolute;
    inset: 38% 8% auto;
    padding: 30px 15px;
    color: var(--ink);
    background: rgba(239, 227, 212, .86);
    font-family: 'Segoe Script', cursive;
    font-size: 2rem;
    text-align: center;
}
.offer-image figcaption small { font-family: Georgia, serif; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }

.program-signup {
    padding: 0 max(24px, 8vw);
    overflow: hidden;
    background: var(--paper);
}

.program-signup[hidden] { display: none; }

.program-signup__inner {
    width: min(940px, 100%);
    margin: 0 auto 64px;
    padding: clamp(42px, 6vw, 76px);
    border: 1px solid rgba(76, 78, 53, .16);
    background: rgba(223, 204, 183, .72);
    box-shadow: 0 18px 55px rgba(61, 48, 35, .08);
}

.program-signup__inner > .eyebrow { color: var(--clay); text-align: center; }

.program-signup h2 {
    max-width: 720px;
    margin: 12px auto 20px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
}

.program-signup h2 span { color: var(--clay); }
.program-signup__inner > p { font-family: Georgia, 'Times New Roman', serif; line-height: 1.65; }
.program-signup__intro { font-size: 1.13rem; text-align: center; }

.program-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
}

.form-field { width: min(620px, 100%); display: grid; gap: 9px; }
.form-field label { font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; }
.form-field label small { font-size: .8rem; }
.form-field input {
    width: 100%;
    padding: 10px 2px;
    border: 0;
    border-bottom: 1px solid rgba(41, 43, 34, .58);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
}
.form-field input:focus {
    border-bottom-color: var(--olive);
    outline: 2px solid rgba(76, 78, 53, .18);
    outline-offset: 4px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: .92rem;
    line-height: 1.5;
    cursor: pointer;
}
.form-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--olive); }
.program-form > .button { justify-self: start; border: 0; cursor: pointer; }

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.form-message {
    margin: 30px 0;
    padding: 22px 25px;
    border-left: 3px solid var(--olive);
    background: rgba(239, 227, 212, .78);
}
.form-message--error { border-left-color: var(--clay); }
.form-message h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.25rem; }
.form-message p, .form-message ul { margin-block: 0; font-family: Georgia, serif; line-height: 1.55; }

/* Newsletter */
.newsletter-page {
    width: min(1180px, calc(100% - 48px));
    margin: 64px auto 80px;
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(440px, 1.15fr);
    background: var(--panel);
    border: 1px solid rgba(76, 78, 53, .16);
}
.newsletter-page__visual { min-height: 680px; overflow: hidden; }
.newsletter-page__visual img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-page__content { align-self: center; padding: clamp(48px, 7vw, 88px); }
.newsletter-page__content h1 { max-width: 620px; margin: 12px 0 22px; font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: 1.02; }
.newsletter-page__intro { max-width: 580px; margin: 28px 0 34px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.08rem; line-height: 1.7; }
.newsletter-form { display: grid; gap: 26px; margin-top: 30px; }
.newsletter-form .form-field { width: 100%; }
.newsletter-form .button { justify-self: start; border: 0; cursor: pointer; }
.newsletter-page__privacy { max-width: 580px; margin: 30px 0 0; font-size: .86rem; line-height: 1.55; opacity: .72; }
.newsletter-page .form-message { margin: 30px 0 0; }

@media (max-width: 820px) {
    .newsletter-page {
        width: min(calc(100% - 28px), 640px);
        margin: 28px auto 52px;
        grid-template-columns: 1fr;
    }
    .newsletter-page__visual { min-height: 300px; max-height: 390px; }
    .newsletter-page__content { padding: 38px 26px 44px; }
    .newsletter-page__content h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
    .newsletter-form .button { width: 100%; justify-content: center; }
}

.program-signup__next {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(76, 78, 53, .2);
}
.program-signup__next h3 { margin: 0 0 16px; font-family: Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.program-signup__next ul { padding-left: 21px; font-family: Georgia, serif; line-height: 1.65; }
.program-signup__next .signature { margin: 28px 0 0; }
.program-signup__close {
    margin-top: 34px;
    border: 1px solid rgba(76, 78, 53, .5);
    color: var(--olive);
    background: transparent;
    cursor: pointer;
}
.program-signup__close:hover,
.program-signup__close:focus-visible { color: var(--white); background: var(--olive); }

.split-hero {
    min-height: 660px;
    display: grid;
    grid-template-columns: 42% 1fr;
}

.split-hero__copy {
    z-index: 1;
    padding: 110px clamp(35px, 7vw, 110px);
    background: linear-gradient(90deg, var(--paper) 82%, rgba(239, 227, 212, 0));
}

.split-hero h1 { margin: 0; font-size: clamp(3rem, 5vw, 5.3rem); }
.split-hero h1 span { color: #6f705c; font-size: .7em; }
.split-hero__copy > p:not(.eyebrow) { max-width: 390px; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.65; }
.split-hero__copy .eyebrow { margin-top: 45px; color: #725b53; }
.button--clay { background: var(--clay); }

.split-hero--retreats .split-hero__image {
    margin-left: -80px;
    background:
        linear-gradient(90deg, var(--paper), transparent 23%),
        url('../images/retreat-view.jpg') center / cover no-repeat;
}

.retreat-story {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.05fr;
    gap: 20px;
    padding: 62px max(24px, 4vw);
    background: var(--paper);
}

.retreat-story img { width: 100%; height: 560px; object-fit: cover; }
.retreat-story article { align-self: center; padding: 30px clamp(10px, 3vw, 55px); }
.retreat-story h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.15; }
.retreat-story p { font-family: Georgia, serif; font-size: 1.02rem; line-height: 1.7; }

.event-hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(31, 20, 12, .86), rgba(31, 20, 12, .28) 45%, rgba(31, 20, 12, .05)),
        url('../images/events.jpg') center / cover no-repeat;
}

.event-hero__copy { width: min(520px, 42%); margin-left: clamp(35px, 8vw, 130px); }
.event-hero h1 { margin: 5px 0; font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1.02; }
.event-hero__copy > p:last-child { font-family: Georgia, serif; font-size: 1.2rem; line-height: 1.8; }

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 42px max(24px, 3.2vw);
    background: var(--paper);
}

.event-cards article {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 38px;
    border: 1px solid rgba(41, 43, 34, .13);
    background: var(--panel);
    text-align: center;
}

.event-cards img { width: 100%; height: 280px; display: block; object-fit: cover; }
.event-cards h2 { margin: 42px 20px 5px; font-size: 1.45rem; text-transform: uppercase; }
.event-cards p { max-width: 380px; margin: 12px 30px 25px; font-family: Georgia, serif; line-height: 1.7; }
.event-cards a { margin-top: auto; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.event-cards .external-link-note {
    margin-top: 7px;
    color: rgba(41, 43, 34, .68);
    font-size: .68rem;
    letter-spacing: .04em;
}

.wedding-copy {
    margin: 0 max(24px, 3.2vw) 45px;
    padding: 38px;
    border: 1px solid rgba(41, 43, 34, .13);
    background: var(--panel);
    text-align: center;
}
.wedding-copy h2 { margin: 5px 0 12px; font-size: 1.8rem; text-transform: uppercase; }
.wedding-copy p { font-family: Georgia, serif; line-height: 1.7; }
.leaf-mark { color: #6f705c; font-size: 2rem; }

.welcome--slim { min-height: 280px; }

@media (max-width: 900px) {
    .subpage .site-header--light { min-height: var(--header-height); background: rgba(30, 31, 21, .72); }
    .subpage .site-header--light .main-nav { color: var(--white); }
    .story-hero, .split-hero { grid-template-columns: 1fr; }
    .story-hero__copy, .split-hero__copy { padding-block: 70px; background: var(--paper); }
    .story-hero__image, .split-hero--retreats .split-hero__image { min-height: 520px; margin-left: 0; }
    .value-links { grid-template-columns: repeat(2, 1fr); }
    .value-links a:nth-child(2) { border-right: 0; }
    .detail-hero__copy { width: 70%; }
    .benefits--five { grid-template-columns: repeat(2, 1fr); }
    .benefits--five > div:last-child { grid-column: 1 / -1; }
    .program-offer { grid-template-columns: 1fr 1fr; }
    .program-offer .offer-card:last-child { grid-column: 1 / -1; }
    .retreat-story { grid-template-columns: 1fr 1fr; }
    .retreat-story article { grid-column: 1 / -1; }
    .event-cards { grid-template-columns: 1fr; }
    .event-cards article { min-height: auto; }
    .event-cards a { margin-top: 20px; }
}

@media (max-width: 620px) {
    .footer-welcome { display: none; }
    .subpage .topline + .site-header { top: 38px; }
    .subpage .menu-toggle {
        right: auto;
        left: calc(100vw - 96px);
        display: flex !important;
        color: var(--white);
        opacity: 1;
        visibility: visible;
    }
    .story-hero__copy { padding: calc(var(--header-height) + 45px) 24px 70px; }
    .story-hero__copy > .eyebrow { font-size: 1.6rem; }
    .story-hero__image { min-height: 390px; }
    .value-links { padding: 30px 12px; }
    .value-links a { min-height: 150px; }
    .value-links strong { font-size: 1rem; }
    .detail-hero { min-height: 650px; background-position: 62% center; }
    .detail-hero--program { background: linear-gradient(rgba(239,227,212,.9), rgba(239,227,212,.72)), url('../images/flow.jpg') center / cover; }
    .detail-hero__copy { width: 100%; padding: 50px 24px; }
    .detail-hero h1 { font-size: 3rem; }
    .benefits, .benefits--five { grid-template-columns: 1fr; padding: 25px 20px; }
    .benefits > div, .benefits--five > div { border-right: 0; border-bottom: 1px solid rgba(41,43,34,.13); }
    .benefits--five > div:last-child { grid-column: auto; }
    .program-offer { grid-template-columns: 1fr; padding: 24px 16px; }
    .program-offer .offer-card:last-child { grid-column: auto; }
    .offer-image { height: 480px; min-height: 0; }
    .program-signup { padding-inline: 14px; }
    .program-signup__inner { margin-bottom: 28px; padding: 38px 22px; }
    .program-signup h2 { font-size: 2.15rem; }
    .program-signup__intro { font-size: 1rem; }
    .program-form { grid-template-columns: 1fr; gap: 25px; margin-top: 34px; }
    .form-consent, .program-form > .button { grid-column: auto; }
    .program-form > .button { width: 100%; justify-content: center; }
    .program-signup__close { width: 100%; justify-content: center; }
    .split-hero__copy { padding: calc(var(--header-height) + 45px) 24px 65px; }
    .split-hero__copy .button { line-height: 1.5; }
    .split-hero--retreats .split-hero__image { min-height: 420px; }
    .retreat-story { grid-template-columns: 1fr; padding: 28px 16px; }
    .retreat-story img { height: 430px; }
    .retreat-story article { grid-column: auto; padding: 30px 8px; }
    .event-hero { min-height: 590px; background-position: 62% center; }
    .event-hero__copy { width: calc(100% - 48px); margin: 80px 24px 20px; }
    .event-cards { padding: 20px 14px; }
    .event-cards img { height: 230px; }
    .wedding-copy { margin: 0 14px 24px; padding: 28px 18px; }
}

/* Mallanpassning 2026 */
.clay-text { color: var(--clay); }

.story-hero__copy > h1 {
    margin: 0;
    font-size: clamp(2.8rem, 4.4vw, 4.8rem);
    white-space: nowrap;
}

.story-hero__image {
    background:
        linear-gradient(90deg, var(--paper), transparent 30%),
        url('../images/about-beach.jpg') center / cover no-repeat;
}

.story-hero .leaf-mark { margin-top: 32px; text-align: left; }
.story-hero .leaf-mark .livora-icon { width: 70px; height: 70px; }

.detail-hero--program {
    background:
        linear-gradient(90deg, rgba(239, 227, 212, .98) 0%, rgba(239, 227, 212, .83) 39%, rgba(239, 227, 212, .05) 70%),
        url('../images/journal.jpg') center 58% / cover no-repeat;
}

.closing-quote {
    padding: 32px 20px 38px;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(239, 227, 212, .2), rgba(239, 227, 212, .92) 28%, rgba(239, 227, 212, .92) 72%, rgba(239, 227, 212, .2)),
        url('../images/candle.jpg') left 58% / cover no-repeat;
    text-align: center;
}

.closing-quote small {
    font-family: Georgia, serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.closing-quote p {
    margin: 12px 0 0;
    color: #6f5f58;
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: clamp(1.45rem, 3vw, 2.5rem);
    line-height: 1.45;
}

.split-hero--retreats .split-hero__image {
    background:
        linear-gradient(90deg, var(--paper), transparent 23%),
        url('../images/flow.jpg') center / cover no-repeat;
}

.event-hero {
    background:
        linear-gradient(90deg, rgba(31, 20, 12, .88), rgba(31, 20, 12, .3) 45%, rgba(31, 20, 12, .05)),
        url('../images/events.jpg') center / cover no-repeat;
}

.event-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 22px;
    padding: 0 max(24px, 3.2vw) 45px;
    background: var(--paper);
}

.event-note,
.event-action,
.event-price {
    min-height: 230px;
    background: var(--panel);
}

.event-note {
    display: grid;
    grid-template-columns: .85fr 1.5fr;
}

.event-note img { width: 100%; height: 100%; object-fit: cover; }
.event-note div { align-self: center; padding: 25px 30px; }
.event-note h2 { margin: 0; font-size: 1.45rem; line-height: 1.25; }
.event-note p { font-family: Georgia, serif; font-size: .88rem; line-height: 1.55; }
.event-note .signature { margin-bottom: 0; font-size: 1rem; }

.event-action,
.event-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    text-decoration: none;
}

.event-action strong {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.4;
    text-transform: uppercase;
}
.event-action span { margin-top: 25px; font-size: 1.5rem; }
.event-price h2 { margin: 0; text-transform: uppercase; }
.event-price p { font-family: Georgia, serif; line-height: 1.5; }
.event-price .button { gap: 15px; padding: 14px 18px; }

.flow-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: url('../images/retreat-lake.jpg') center bottom / cover no-repeat;
}
.flow-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,17,10,.9), rgba(12,17,10,.7) 28%, rgba(12,17,10,.18) 58%, transparent 78%);
}
.flow-hero__copy {
    position: relative;
    z-index: 1;
    width: min(590px, 48%);
    margin-left: clamp(40px, 7.5vw, 120px);
}
.flow-hero__copy .eyebrow {
    margin: 0 0 25px;
    color: #d4a89b;
    font-size: 1.05rem;
    letter-spacing: .17em;
}
.flow-hero h1 {
    margin: 0;
    font-size: clamp(3.4rem, 5.4vw, 5.8rem);
    font-weight: 400;
    line-height: 1.08;
}
.flow-hero__heart { width: .65em; height: .65em; color: #bf7f70; }
.flow-hero .accent-line {
    display: block;
    width: 56px;
    height: 2px;
    margin: 32px 0 26px;
    background: #d4a89b;
}
.flow-hero__copy > p:last-child {
    max-width: 510px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.8;
}

.flow-intro {
    padding: 48px max(24px, 3vw) 36px;
    background: var(--paper);
}
.flow-intro .section-heading { margin-bottom: 34px; }
.flow-intro .section-heading h2,
.flow-practical .section-heading h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.45rem);
    text-transform: uppercase;
}
.flow-intro .section-heading > p {
    margin: 16px auto 0;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.65;
}
.flow-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1380px;
    margin: 0 auto;
}
.flow-pillars article {
    min-height: 265px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 8px clamp(18px, 2.2vw, 34px);
    border-right: 1px solid rgba(76,78,53,.2);
    text-align: center;
}
.flow-pillars article:last-child { border-right: 0; }
.flow-pillars article > .livora-icon:first-child { width: 60px; height: 60px; }
.flow-pillars h3 {
    margin: 16px 0 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.08rem;
    font-weight: 400;
    text-transform: uppercase;
}
.flow-pillars p {
    min-height: 78px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.65;
}
.flow-pillars .flow-pillar-heart {
    width: 26px;
    height: 26px;
    margin-top: auto;
}

.flow-schedule {
    display: grid;
    grid-template-columns: 40% 60%;
    max-width: 1360px;
    min-height: 460px;
    margin: 0 auto;
}
.flow-schedule__copy {
    padding: clamp(55px, 6vw, 90px);
    color: var(--white);
    background: var(--olive-dark);
}
.flow-schedule h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.55rem, 2.25vw, 2.15rem);
    font-weight: 400;
    text-transform: uppercase;
}
.flow-schedule h2 .livora-icon { width: 30px; height: 30px; color: #b97f70; }
.flow-schedule__copy > p { max-width: 390px; line-height: 1.7; }
.flow-schedule__line {
    display: block;
    width: 48px;
    height: 2px;
    margin: 26px 0;
    background: rgba(255,253,248,.45);
}
.flow-schedule dl { margin: 0; }
.flow-schedule dl > div {
    position: relative;
    margin-top: 24px;
    padding-left: 58px;
}
.flow-schedule dl > div::before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 34px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    content: "••";
    letter-spacing: 3px;
}
.flow-schedule dt {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    text-transform: uppercase;
}
.flow-schedule dd { margin: 5px 0 0; }
.flow-schedule__image { background: url('../images/forest-path.jpg') center / cover no-repeat; }

.flow-practical {
    padding: 34px max(24px, 10vw) 48px;
    background: var(--paper);
}
.flow-practical .section-heading { margin-bottom: 18px; }
.flow-practical__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 340px));
    justify-content: center;
}
.flow-practical__grid > div {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 20px 42px;
    border-right: 1px solid rgba(76,78,53,.18);
}
.flow-practical__grid > div:last-child { border-right: 0; }
.flow-practical__grid .livora-icon,
.flow-practical__symbol {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: var(--olive);
    font-size: 3rem;
    line-height: 1;
}
.flow-practical__grid p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.5;
}
.flow-practical__grid strong {
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.booking-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(19,19,13,.92), rgba(19,19,13,.54) 42%, rgba(19,19,13,.08) 76%),
        url('../images/flow.jpg') center 72% / cover no-repeat;
}

.booking-hero__copy {
    width: min(760px, 60%);
    margin-left: clamp(35px, 7vw, 110px);
    padding: 65px 0;
}

.booking-hero h1 {
    margin: 18px 0;
    font-size: clamp(2.7rem, 3.4vw, 3.65rem);
    line-height: 1.08;
}

.booking-hero .script-line {
    margin: 0 0 22px;
    color: #e6d3cb;
    font-size: clamp(1.35rem, 2.3vw, 2.2rem);
}

.booking-hero__copy > p:not(.eyebrow, .script-line) {
    max-width: 480px;
    line-height: 1.7;
}

.button--paper {
    margin-top: 16px;
    color: var(--ink);
    background: var(--cream);
}
.button--paper:hover,
.button--paper:focus-visible { color: var(--white); }

.service-list {
    display: grid;
    gap: 18px;
    padding: 24px max(24px, 7vw);
    background: var(--paper);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr .95fr;
    height: 380px;
    min-height: 380px;
}

.service-row--reverse {
    grid-template-columns: .95fr 1fr;
    height: 440px;
    min-height: 440px;
}
.service-row--tall {
    height: 440px;
    min-height: 440px;
}
.service-row--reverse img { grid-column: 2; }
.service-row--reverse > div { grid-row: 1; grid-column: 1; }
.service-row img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.service-row:first-child img { object-position: center 76%; }
.service-row--reverse img { object-position: center 48%; }
.service-row > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 3vw, 44px);
    background: var(--panel);
}

.service-icon {
    width: 42px;
    height: 42px;
    color: var(--olive);
}
.service-cup { color: var(--olive); font-size: 2.1rem; }
.service-row h2 {
    margin: 6px 0 12px;
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    line-height: 1.2;
    text-transform: uppercase;
}
.service-row p { max-width: 520px; margin: 0 0 8px; font-family: Georgia, serif; line-height: 1.6; }
.service-row .button { margin-top: 0; padding: 14px 19px; }

.booking-manifesto {
    min-height: 370px;
    display: block;
    padding: 42px clamp(30px, 7vw, 110px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(36,23,14,.98), rgba(36,23,14,.9) 34%, rgba(36,23,14,.48) 57%, rgba(36,23,14,.12) 78%),
        url('../images/journal-coffee.jpg') center 55% / cover no-repeat;
}
.booking-manifesto > div { max-width: 480px; }
.booking-manifesto h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); }
.booking-manifesto .script-line { margin: 15px 0 0; color: #e8d5cd; font-size: clamp(1.4rem, 2.4vw, 2.3rem); }
.booking-manifesto ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    width: min(720px, 64%);
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    font-family: Georgia, serif;
    text-align: left;
}
.booking-manifesto li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 10px;
    line-height: 1.45;
}
.booking-manifesto li .livora-icon {
    width: 30px;
    height: 30px;
    color: #e8d5cd;
}

.contact-strip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px clamp(30px, 7vw, 110px);
    overflow: hidden;
    background: var(--cream);
}
.contact-strip::after {
    position: absolute;
    right: 8%;
    color: rgba(76,78,53,.22);
    font-family: Georgia, serif;
    font-size: 4rem;
    content: "❧";
    transform: rotate(-10deg);
}
.contact-strip > * { position: relative; z-index: 1; }
.contact-strip h2 { margin: 0 0 6px; font-size: 1.6rem; }
.contact-strip p { margin: 0; font-family: Georgia, serif; }

.contact-hero {
    position: relative;
    min-height: 650px;
    display: grid;
    grid-template-columns: 43% 57%;
    overflow: hidden;
    background: var(--paper);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/contact-lake-fade.png') center bottom / cover no-repeat;
}

.contact-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: 64%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        var(--paper) 0%,
        rgba(239, 227, 212, .98) 44%,
        rgba(239, 227, 212, .72) 66%,
        rgba(239, 227, 212, 0) 100%
    );
}

.contact-hero__copy {
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding: clamp(60px, 8vw, 120px) clamp(32px, 6vw, 95px);
}

.contact-hero__copy h1 {
    margin: 0;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
}

.contact-hero__copy h1 span { color: var(--clay); }

.contact-hero__copy .accent-line {
    display: block;
    width: 86px;
    height: 2px;
    margin: 30px 0;
    background: var(--clay);
}

.contact-hero__copy p {
    max-width: 440px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    line-height: 1.75;
}

.contact-details {
    padding: 65px max(24px, 7vw) 58px;
    background: var(--paper);
}

.contact-details .section-heading { margin-bottom: 45px; }
.contact-details .section-heading h2 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-methods a {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 15px 25px;
    border-right: 1px solid rgba(185, 120, 103, .22);
    font-family: Georgia, serif;
    text-align: center;
    text-decoration: none;
}
.contact-methods a:last-child { border-right: 0; }
.contact-methods a:hover small,
.contact-methods a:focus-visible small { text-decoration: underline; text-underline-offset: 5px; }
.contact-methods span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(41, 43, 34, .55);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
}
.contact-methods span svg { width: 27px; height: 27px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-methods span .social-icon__dot,
.contact-methods span .social-icon__facebook { fill: currentColor; stroke: none; }
.contact-methods strong {
    margin-top: 7px;
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.contact-methods small { font-size: 1rem; }

.studio-card {
    display: grid;
    grid-template-columns: .85fr 1.35fr;
    margin: 0 max(24px, 4.5vw);
    background: var(--panel);
}
.studio-card__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 25px;
    font-family: Georgia, serif;
    text-align: center;
}
.studio-card__copy .leaf-mark { margin: 0 0 24px; }
.studio-card__copy h2 {
    margin: 0;
    font-size: 1.7rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.studio-card__copy .accent-line { width: 50px; margin: 18px 0 28px; }
.studio-card address { font-size: 1.25rem; font-style: normal; line-height: 1.5; }
.studio-heart { margin: 38px 0; color: var(--clay); font-size: 2rem; }
.studio-card__copy > p:last-child { margin: 0; }
.studio-card > img { width: 100%; height: 540px; object-fit: cover; }

.contact-signoff {
    margin: 0;
    padding: 30px 20px 38px;
    color: #514c42;
    background: var(--paper);
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-align: center;
}

/* Medlemskap och inloggning */
.member-login-link {
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    color: var(--olive);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-underline-offset: 4px;
}

.account-page,
.member-page,
.admin-page {
    min-height: 70vh;
    padding: clamp(150px, 16vw, 210px) max(18px, 5vw) 80px;
    background: var(--paper);
}

.account-card {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid rgba(76, 78, 53, .18);
    background: var(--panel);
    box-shadow: 0 22px 60px rgba(55, 45, 32, .08);
    text-align: center;
}

.account-card h1,
.member-hero h1,
.admin-heading h1 {
    margin: 8px 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-weight: 400;
    line-height: 1.08;
}

.account-card > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 auto 28px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.65;
}

.account-form {
    display: grid;
    gap: 23px;
    margin-top: 30px;
    text-align: left;
}

.account-form label,
.admin-create-form label {
    display: grid;
    gap: 9px;
    font-family: Georgia, 'Times New Roman', serif;
}

.account-form input,
.admin-create-form input {
    width: 100%;
    padding: 13px 3px;
    border: 0;
    border-bottom: 1px solid rgba(41, 43, 34, .55);
    border-radius: 0;
    outline: 0;
    background: transparent;
    font: inherit;
}

.account-form input:focus,
.admin-create-form input:focus {
    border-bottom-color: var(--clay);
    box-shadow: 0 2px 0 var(--clay);
}

.account-form .button { width: 100%; justify-content: center; margin-top: 7px; }
.account-link { display: inline-block; margin-top: 25px; color: inherit; text-underline-offset: 4px; }

.member-hero,
.admin-heading {
    width: min(1180px, 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto 35px;
}

.member-hero p { font-family: Georgia, 'Times New Roman', serif; }
.button--quiet { border: 1px solid rgba(76, 78, 53, .38); background: transparent; color: var(--olive); }
.account-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.account-actions form { margin: 0; }

.member-placeholder {
    width: min(980px, 100%);
    min-height: 390px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 13px;
    margin: 0 auto;
    padding: 55px 28px;
    border: 1px solid rgba(76, 78, 53, .15);
    background: var(--panel);
    text-align: center;
}

.member-placeholder__icon { color: var(--olive); font-size: 3.2rem; }
.member-placeholder h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; }
.member-placeholder p { max-width: 570px; margin: 0; font-family: Georgia, serif; line-height: 1.7; }
.member-placeholder--inactive { min-height: 330px; }
.member-admin-link { margin: 30px auto 0; text-align: center; }

.admin-page > .form-message,
.admin-panel {
    width: min(1180px, 100%);
    margin-inline: auto;
}

.admin-panel {
    margin-bottom: 28px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(76, 78, 53, .15);
    background: var(--panel);
}

.admin-panel h2 { margin-top: 0; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 400; }
.admin-create-form { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 25px; margin-top: 25px; }
.member-list { display: grid; gap: 14px; margin-top: 25px; }
.member-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 22px;
    border: 1px solid rgba(76, 78, 53, .14);
    background: var(--paper);
}
.member-row h3 { margin: 0 0 5px; font-family: Georgia, serif; }
.member-row a { color: inherit; }
.member-row p { margin-bottom: 0; font-size: .85rem; line-height: 1.5; }
.member-row__actions form { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.member-row__actions button {
    padding: 9px 12px;
    border: 1px solid rgba(76, 78, 53, .28);
    background: transparent;
    color: var(--olive);
    cursor: pointer;
    font: inherit;
    font-size: .75rem;
}
.member-row__actions .is-danger { border-color: rgba(153, 72, 60, .35); color: #8c4037; }

@media (max-width: 760px) {
    .account-page,
    .member-page,
    .admin-page { padding: 125px 14px 50px; }
    .account-card { padding: 38px 22px; }
    .member-hero,
    .admin-heading { align-items: flex-start; flex-direction: column; }
    .account-actions { width: 100%; }
    .admin-create-form,
    .member-row { grid-template-columns: 1fr; }
    .admin-create-form .button { width: 100%; justify-content: center; }
    .member-row__actions form { justify-content: flex-start; }
}

@media (min-width: 960px) {
    .pathways__grid { gap: 28px; }
    .path-card { display: flex; flex-direction: column; }
    .path-card__body { flex: 1; }
}

@media (max-width: 900px) {
    .flow-pillars { grid-template-columns: repeat(2, 1fr); }
    .flow-pillars article { border-bottom: 1px solid rgba(76,78,53,.2); }
    .flow-pillars article:nth-child(2n) { border-right: 0; }
    .flow-pillars article:last-child { grid-column: 1 / -1; }
    .flow-schedule { grid-template-columns: 1fr 1fr; }
    .event-bottom { grid-template-columns: 1fr 1fr; }
    .event-note { grid-column: 1 / -1; }
    .booking-hero__copy { width: 70%; }
    .service-row, .service-row--reverse { grid-template-columns: 1fr 1fr; }
    .booking-manifesto ul { width: 100%; max-width: 720px; }
    .contact-methods { grid-template-columns: repeat(2, 1fr); }
    .contact-methods a:nth-child(2) { border-right: 0; }
    .contact-methods a:nth-child(-n+2) { border-bottom: 1px solid rgba(185, 120, 103, .22); }
}

@media (max-width: 620px) {
    .flow-hero {
        min-height: 650px;
        align-items: flex-end;
        background-position: 62% center;
    }
    .flow-hero__shade {
        background: linear-gradient(0deg, rgba(12,17,10,.92), rgba(12,17,10,.25) 82%);
    }
    .flow-hero__copy {
        width: calc(100% - 48px);
        max-width: calc(100vw - 48px);
        min-width: 0;
        margin: 0 24px 58px;
    }
    .flow-hero h1 { font-size: 3rem; }
    .flow-hero__copy > p:last-child {
        width: 100%;
        font-size: 1rem;
        overflow-wrap: anywhere;
    }
    .flow-intro { padding-inline: 16px; }
    .flow-intro .section-heading {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }
    .flow-intro .section-heading h2,
    .flow-practical .section-heading h2 {
        font-size: 1.55rem;
        letter-spacing: .16em;
    }
    .flow-intro .section-heading > p {
        max-width: 100%;
        padding-inline: 4px;
        overflow-wrap: anywhere;
    }
    .flow-intro .section-heading > p br { display: none; }
    .flow-pillars { grid-template-columns: 1fr; }
    .flow-pillars article,
    .flow-pillars article:nth-child(2n) {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        min-width: 0;
        min-height: 245px;
        border-right: 0;
    }
    .flow-pillars article:last-child { grid-column: auto; }
    .flow-schedule { grid-template-columns: 1fr; }
    .flow-schedule__copy { padding: 48px 28px; }
    .flow-schedule__image { min-height: 360px; }
    .flow-practical { padding-inline: 16px; }
    .flow-practical__grid { grid-template-columns: 1fr; }
    .flow-practical__grid > div {
        padding-inline: 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(76,78,53,.18);
    }
    .flow-practical__grid > div:last-child { border-bottom: 0; }
    .story-hero__copy > h1 { white-space: normal; }
    .story-hero__image { background-position: 58% center; }
    .detail-hero--program {
        background:
            linear-gradient(rgba(239,227,212,.93), rgba(239,227,212,.74)),
            url('../images/journal.jpg') center / cover;
    }
    .event-bottom { grid-template-columns: 1fr; padding: 0 14px 24px; }
    .event-note { grid-column: auto; grid-template-columns: 1fr; }
    .event-note img { height: 220px; }
    .booking-hero { min-height: 650px; background-position: 62% center; }
    .booking-hero__copy { width: calc(100% - 48px); margin: 30px 24px; }
    .booking-hero h1 { font-size: 2.45rem; }
    .service-list { padding: 14px; }
    .service-list { gap: 14px; }
    .service-row, .service-row--reverse { grid-template-columns: 1fr; height: auto; min-height: 0; margin-bottom: 0; }
    .service-row--reverse img,
    .service-row--reverse > div { grid-column: auto; grid-row: auto; }
    .service-row img { min-height: 260px; height: 260px; }
    .service-row > div { padding: 35px 26px; }
    .booking-manifesto {
        padding: 50px 24px;
        background:
            linear-gradient(rgba(36,23,14,.9), rgba(36,23,14,.72)),
            url('../images/journal-coffee.jpg') 68% center / cover no-repeat;
    }
    .booking-manifesto ul { grid-template-columns: 1fr; width: 100%; text-align: left; }
    .contact-strip { align-items: flex-start; flex-direction: column; padding: 35px 24px; }
    .contact-hero {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto 260px;
    }
    .contact-hero::before {
        position: relative;
        inset: auto;
        grid-column: 1;
        grid-row: 2;
        background-position: right bottom;
        background-size: cover;
    }
    .contact-hero::after { display: none; }
    .contact-hero__copy {
        grid-column: 1;
        grid-row: 1;
        padding: calc(var(--header-height) + 45px) 24px 55px;
    }
    .contact-hero__copy h1 { font-size: 3rem; }
    .contact-hero__copy p { font-size: 1rem; }
    .contact-details { padding: 45px 16px 35px; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-methods a,
    .contact-methods a:nth-child(2) { min-height: 145px; border-right: 0; border-bottom: 1px solid rgba(185, 120, 103, .22); }
    .contact-methods a:last-child { border-bottom: 0; }
    .studio-card { grid-template-columns: 1fr; margin: 0 14px; }
    .studio-card > img { height: 380px; }
    .contact-signoff { font-size: 1.35rem; }
}
