/* ============================================================
   Ergotherapie Anna Cordes — Demo Onepage
   Inspired by Accalia (AncoraThemes) — palette adapted to logo:
   Sage-Green / Rose / Cream + Yellow CTA accent (Margeriten-Mitte)
   ============================================================ */

:root {
    /* Brand */
    --sage-50:  #F4F7F1;
    --sage-100: #E8EFE2;
    --sage-200: #D4E0CA;
    --sage-300: #B5C7A8;
    --sage-400: #9DB58F;
    --sage-500: #8FA882;   /* Logo wordmark */
    --sage-600: #74906A;
    --sage-700: #5D7556;
    --sage-800: #46594A;

    --rose-50:  #FDF6F7;
    --rose-100: #FBE8EB;
    --rose-200: #F5D2D8;
    --rose-300: #ECB6BF;
    --rose-400: #E199A3;

    /* Yellow CTA — daisy heart */
    --yellow-100: #FBF1C7;
    --yellow-300: #F5E29F;
    --yellow-400: #F0D67A;
    --yellow-500: #E8C66B;
    --yellow-600: #D4AE4D;

    --cream:    #FFFFFF;
    --cream-2:  #FBF9F4;
    --paper:    #FFFFFF;

    --ink:      #1F2620;
    --ink-soft: #3F4640;
    --muted:    #707770;
    --line:     #ECEAE2;

    /* Typography */
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-script:  "Caveat", "Brush Script MT", cursive;
    --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

    --container: 1240px;
    --radius:    14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(46, 64, 50, 0.06);
    --shadow:    0 18px 40px rgba(46, 64, 50, 0.10);
    --shadow-lg: 0 30px 70px rgba(46, 64, 50, 0.14);

    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============== Base ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sage-500); }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.005em;
    margin: 0 0 .4em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; line-height: 1.4; }
h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============== Script Eyebrow ============== */
.script-eyebrow {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sage-500);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0;
}

/* ============== Buttons ============== */
.btn {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
}
.btn > span:first-child {
    padding: 18px 28px;
    display: inline-flex;
    align-items: center;
}
.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    background: var(--paper);
    color: var(--ink);
    transition: background .25s var(--ease), color .25s var(--ease);
}
.btn-arrow svg { width: 18px; height: 18px; }

/* yellow primary CTA */
.btn-yellow {
    background: var(--yellow-300);
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(232, 198, 107, 0.25);
}
.btn-yellow:hover {
    background: var(--yellow-400);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 198, 107, 0.4);
}
.btn-yellow:hover .btn-arrow {
    background: var(--ink);
    color: var(--yellow-300);
}

.btn-block { width: 100%; justify-content: space-between; }
.btn-block > span:first-child { flex: 1; justify-content: center; }

/* legacy primary/ghost — kept for compat */
.btn-primary {
    background: var(--sage-600);
    color: #fff;
    border-radius: 999px;
    padding: 14px 28px;
    text-transform: none;
    letter-spacing: .02em;
    font-size: 0.95rem;
}
.btn-primary:hover { background: var(--sage-700); color: #fff; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--sage-300);
    border-radius: 999px;
    padding: 14px 28px;
    text-transform: none;
    letter-spacing: .02em;
    font-size: 0.95rem;
}
.btn-ghost:hover { background: var(--sage-50); color: var(--sage-700); }

/* ============== Header ============== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
    box-shadow: 0 2px 24px rgba(46, 64, 50, 0.06);
    border-bottom-color: var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 18px 32px;
}
.logo { flex-shrink: 0; display: block; line-height: 0; }
.logo img {
    height: 64px;
    width: auto;
    transition: height .25s var(--ease);
}
.is-scrolled .logo img { height: 54px; }

.nav { margin: 0 auto; }
.nav-list {
    display: flex;
    gap: 36px;
}
.nav-list a {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
}
.nav-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0; height: 2px;
    background: var(--sage-500);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}
.nav-list a:hover { color: var(--sage-700); }
.nav-list a:hover::after { width: 100%; }

.header-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}
.header-phone:hover { color: var(--sage-700); }
.phone-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--sage-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-700);
}
.phone-icon svg { width: 16px; height: 16px; }

.header-socials {
    display: flex;
    gap: 6px;
}
.header-socials a {
    width: 34px; height: 34px;
    background: var(--cream-2);
    color: var(--muted);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.header-socials a:hover {
    background: var(--sage-500);
    color: #fff;
}
.header-socials svg { width: 16px; height: 16px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
    .nav-list { gap: 22px; }
    .header-socials { display: none; }
}
@media (max-width: 1024px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: 0;
        width: min(360px, 88vw);
        height: 100vh;
        background: var(--paper);
        box-shadow: var(--shadow-lg);
        padding: 100px 36px 36px;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        margin: 0;
        z-index: 60;
    }
    .nav.is-open { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: 20px; }
    .nav-list a { font-size: 0.95rem; letter-spacing: .14em; }
}
@media (max-width: 720px) {
    .header-phone .phone-text { display: none; }
}

/* ============== Hero ============== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 110px;
    background: linear-gradient(180deg, var(--cream-2) 0%, var(--paper) 100%);
    min-height: 640px;
}
.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.bloom {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}
.bloom-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--sage-200), transparent 70%);
    top: -120px; left: -100px;
}
.bloom-2 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, var(--rose-200), transparent 70%);
    bottom: -160px; right: 5%;
    opacity: .45;
}

.hero-pagination {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}
.hero-pagination li {
    width: 36px;
    text-align: center;
    padding: 6px 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.hero-pagination li.is-active {
    background: var(--yellow-300);
    color: var(--ink);
}
.hero-pagination li:hover { color: var(--ink); }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
    min-height: 540px;
}
.hero-text { padding-left: 60px; }
.hero-text h1 { margin-bottom: 22px; }
.hero-text .lead {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 520px;
    margin-top: 0;
    margin-bottom: 38px;
}

.hero-visual { position: relative; min-height: 480px; }
.hero-visual-stack {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-left: auto;
}
.hero-image-frame {
    position: relative;
    aspect-ratio: 4 / 6;
    border-radius: 220px 220px 24px 24px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sage-50), var(--rose-50));
    box-shadow: var(--shadow);
}
.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 226, 159, 0.4), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 232, 235, 0.5), transparent 50%);
}
.hero-image-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 50px;
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--paper);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
}
.hf-icon {
    width: 44px; height: 44px;
    background: var(--yellow-300);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--paper);
    flex-shrink: 0;
}
.hero-floating-card strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
}
.hero-floating-card span {
    font-size: 0.78rem;
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero { padding: 70px 0 90px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; min-height: 0; }
    .hero-text { padding-left: 0; }
    .hero-pagination { display: none; }
    .hero-visual-stack { margin: 0 auto; max-width: 420px; }
    .hero-floating-card { left: 0; }
}

/* ============== Section base ============== */
.section { padding: 120px 0; position: relative; }
.section-alt {
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}
.section-head:not(.section-head-center) .section-lead { margin-left: 0; }

@media (max-width: 768px) {
    .section { padding: 80px 0; }
}

/* ============== Welcome (asymmetrisch, Bild links) ============== */
.section-welcome {
    background: var(--paper);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.welcome-visual {
    position: relative;
    aspect-ratio: 4 / 5;
}
.welcome-image-main {
    position: absolute;
    top: 0; right: 0;
    width: 80%; height: 88%;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sage-50), var(--rose-50));
    box-shadow: var(--shadow);
    z-index: 2;
}
.welcome-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
}
.welcome-image-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%;
    height: 50%;
    background:
        repeating-linear-gradient(45deg, var(--yellow-300) 0 2px, transparent 2px 14px);
    opacity: .65;
    border-radius: 8px;
    z-index: 1;
}
.welcome-experience-badge {
    position: absolute;
    top: 12%;
    left: -10px;
    background: var(--sage-700);
    color: #fff;
    border-radius: 50%;
    width: 130px; height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 3;
    text-align: center;
}
.welcome-experience-badge strong {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
    color: var(--yellow-300);
}
.welcome-experience-badge span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

.welcome-text h2 { margin-bottom: 22px; }
.welcome-text p { color: var(--muted); }
.welcome-text .section-lead { margin: 0 0 16px; max-width: none; color: var(--ink-soft); }
.welcome-checks {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.welcome-checks li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-soft);
    font-weight: 500;
}
.welcome-checks .check {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--yellow-300);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.watermark-bloom {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 38rem;
    line-height: 1;
    color: var(--sage-50);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 980px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 60px; }
    .welcome-visual { max-width: 480px; margin: 0 auto; }
    .watermark-bloom { display: none; }
}

/* ============== Cards / Schwerpunkte ============== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.card-media {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.card-media-sage  { background: linear-gradient(135deg, var(--sage-100), var(--sage-300)); }
.card-media-rose  { background: linear-gradient(135deg, var(--rose-100), var(--rose-300)); }
.card-media-cream { background: linear-gradient(135deg, var(--yellow-100), var(--yellow-300)); }
.card-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 16px rgba(46, 64, 50, .15);
    transform: rotate(-8deg);
    transition: transform .6s var(--ease);
}
.card:hover .card-icon { transform: rotate(0) scale(1.1); }
.card-body { padding: 32px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    display: inline-block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--sage-600);
    margin-bottom: 12px;
    font-weight: 600;
}
.card-body p { color: var(--muted); flex: 1; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--sage-700);
    align-self: flex-start;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: .18em;
}
.card-link:hover { color: var(--sage-500); }
.card-link span { transition: transform .25s var(--ease); }
.card-link:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
    .cards { grid-template-columns: 1fr; gap: 24px; }
}

/* ============== Procedures ============== */
.procedures {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}
.procedure {
    background: var(--paper);
    padding: 36px 32px;
    transition: background .3s var(--ease);
}
.procedure:hover { background: var(--sage-50); }
.procedure h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--sage-700);
}
.procedure p { margin: 0; color: var(--muted); font-size: 0.96rem; }

@media (max-width: 980px) {
    .procedures { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .procedures { grid-template-columns: 1fr; }
}

/* ============== Arbeitsweise ============== */
.section-arbeitsweise {
    background:
        radial-gradient(ellipse at top right, var(--rose-100), transparent 60%),
        linear-gradient(180deg, var(--sage-50), var(--cream-2));
}
.arbeitsweise-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 70px;
    align-items: start;
}
.arbeitsweise-text h2 em { font-style: normal; color: var(--sage-600); }
.steps { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.steps li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
}
.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--sage-300);
    color: var(--sage-700);
    font-family: var(--font-display);
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.steps h4 { margin-bottom: 6px; color: var(--ink); }
.steps p { margin: 0; color: var(--muted); }

.arbeitsweise-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.quote-card {
    position: relative;
    background: var(--sage-700);
    color: #F1F4ED;
    padding: 40px 36px 36px 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.quote-mark {
    position: absolute;
    top: 14px; left: 26px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--sage-300);
    line-height: 1;
}
.quote-card p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.55;
    margin: 0 0 12px;
}
.quote-author { font-size: 0.85rem; opacity: .85; letter-spacing: .04em; }

.audience-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
}
.audience-card h4 { color: var(--sage-700); margin-bottom: 14px; }
.audience-card ul { display: flex; flex-direction: column; gap: 10px; }
.audience-card li {
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
    font-size: 0.96rem;
}
.audience-card li::before {
    content: "❀";
    position: absolute;
    left: 0; top: 0;
    color: var(--rose-300);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .arbeitsweise-grid { grid-template-columns: 1fr; gap: 40px; }
    .arbeitsweise-aside { position: static; }
}

/* ============== About ============== */
.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.portrait-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--sage-50);
    box-shadow: var(--shadow);
}
.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
}

.experience { display: flex; flex-direction: column; gap: 26px; }
.experience li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 18px;
    align-items: start;
}
.exp-marker {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--sage-500);
    margin-top: 7px;
    box-shadow: 0 0 0 6px var(--sage-100);
}
.experience h4 { margin-bottom: 4px; }
.experience p { margin: 0; color: var(--muted); }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .portrait-frame { max-width: 360px; margin: 0 auto; }
}

/* ============== Contact ============== */
.section-contact {
    background:
        radial-gradient(ellipse at bottom left, var(--sage-100), transparent 60%),
        var(--cream-2);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}
.contact-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--sage-600);
    font-weight: 600;
    padding-top: 4px;
}
.contact-value {
    font-size: 1.05rem;
    color: var(--ink);
}

.contact-form {
    background: var(--paper);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.contact-form h3 { margin-bottom: 24px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label span {
    display: block;
    font-size: 0.78rem;
    color: var(--sage-700);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--ink);
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sage-500);
    background: var(--paper);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 14px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 28px; }
}

/* ============== Footer ============== */
.site-footer {
    background: var(--sage-800);
    color: #D9DDD4;
    padding-top: 70px;
}
.site-footer a { color: #D9DDD4; }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-brand p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 280px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
}
.footer-logo {
    width: 130px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 12px;
    border-radius: 10px;
}
.footer-col h5 {
    color: #fff;
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li { font-size: 0.93rem; color: rgba(255, 255, 255, 0.7); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    font-size: 0.85rem;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-meta { color: rgba(255, 255, 255, 0.45); }

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============== Scroll-Top ============== */
.scroll-top {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--yellow-300);
    color: var(--ink);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
    box-shadow: var(--shadow);
    z-index: 40;
}
.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover { background: var(--yellow-400); }

/* ============== Reveal Animation ============== */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

body.nav-open { overflow: hidden; }
