:root {
    color-scheme: light;
    --bg: #fbf6ef;
    --bg-elevated: rgba(255, 255, 255, 0.74);
    --bg-strong: #fffaf3;
    --text: #231f1a;
    --muted: #6f655a;
    --line: rgba(54, 41, 28, 0.12);
    --line-strong: rgba(54, 41, 28, 0.2);
    --brand: #b7703a;
    --brand-strong: #8e4f25;
    --brand-soft: #f5ddd0;
    --shadow: 0 18px 50px rgba(78, 48, 25, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#hero,
#aukioloajat,
#hinnasto,
#yhteys {
    scroll-margin-top: 6.5rem;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(183, 112, 58, 0.14), transparent 28%),
        radial-gradient(circle at right top, rgba(107, 83, 46, 0.12), transparent 24%),
        linear-gradient(180deg, #fdf9f3 0%, var(--bg) 100%);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 50;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.page-shell {
    width: min(calc(100% - 2rem), var(--content-width));
    margin: 0 auto;
    padding: 1rem 0 2rem;
}

.site-header,
.hero,
.info-card,
.pricing-section,
.contact-section,
.footnote-card,
.site-footer {
    animation: rise 700ms ease both;
}

.site-header {
    position: sticky;
    top: 0.75rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 251, 246, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(63, 38, 20, 0.06);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.language-toggle {
    display: inline-flex;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(54, 41, 28, 0.1);
}

.lang-button {
    min-width: 2.9rem;
    min-height: 2.3rem;
    padding: 0.35rem 0.7rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.lang-button.is-active {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #fff;
}

.eyebrow,
.card-kicker,
.pill,
.note-label,
.package-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-strong);
}

.brand-name {
    display: inline-flex;
    margin-top: 0.1rem;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--brand-strong);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 12px 28px rgba(142, 79, 37, 0.25);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0 2rem;
}

.hero-copy,
.hero-visual,
.info-card,
.contact-section,
.footnote-card {
    border: 1px solid var(--line);
    background: var(--bg-elevated);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.pill {
    display: inline-flex;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(245, 221, 208, 0.9);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Fraunces', serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h1 {
    max-width: 11ch;
    margin-top: 1rem;
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.lead {
    max-width: 62ch;
    margin: 1.25rem 0 0;
    font-size: 1.08rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.hero-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.9rem;
}

.hero-notes>div {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(54, 41, 28, 0.08);
}

.note-label {
    display: block;
    margin-bottom: 0.25rem;
}

.hero-notes strong {
    font-size: 0.97rem;
}

.hero-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.info-grid,
.package-grid,
.pricing-grid {
    display: grid;
    gap: 1rem;
}

.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.info-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.info-card h2,
.section-heading h2,
.contact-copy h2 {
    margin-top: 0.55rem;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.schedule-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.35rem 0 0;
}

.schedule-season {
    margin: 1.35rem 0 0;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.schedule-list>div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.schedule-list dt,
.schedule-list dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.schedule-list dd {
    color: var(--brand-strong);
}

.schedule-list .is-closed {
    color: var(--muted);
}

.accent-card {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(245, 221, 208, 0.58));
}

.check-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 0 0 4px rgba(183, 112, 58, 0.14);
}

.pricing-section {
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: calc(var(--radius-xl) + 4px);
    border: 1px solid var(--line);
    background: rgba(255, 251, 246, 0.78);
    backdrop-filter: blur(20px);
}

.section-heading {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

.section-heading p:last-child,
.contact-copy p,
.footnote-card p {
    color: var(--muted);
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card,
.package-card {
    padding: 1.2rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(54, 41, 28, 0.11);
    background: rgba(255, 255, 255, 0.76);
}

.price-card strong,
.package-card strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.35rem;
    line-height: 1.1;
}

.price-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.package-card {
    position: relative;
    overflow: hidden;
    padding: 1.4rem;
}

.package-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -20px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 112, 58, 0.18), transparent 68%);
}

.featured-package {
    background: linear-gradient(180deg, rgba(255, 248, 242, 0.95), rgba(245, 221, 208, 0.84));
    border-color: rgba(183, 112, 58, 0.22);
}

.package-card h3 {
    margin-top: 0.25rem;
    font-size: 1.55rem;
}

.package-card p {
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.package-card span {
    display: inline-flex;
    margin-top: 0.85rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--brand-strong);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: calc(var(--radius-xl) + 4px);
}

.contact-copy {
    padding: 0.6rem;
}

.contact-actions {
    display: grid;
    gap: 0.75rem;
    align-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(54, 41, 28, 0.14);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.footnote-card {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
}

.footnote-card p {
    margin: 0;
    text-align: center;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0 0;
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    font-weight: 800;
}

/* ── About page ─────────────────────────────────────────── */

.about-hero {
    padding: 2rem 0 0;
}

.about-hero-copy {
    max-width: 100%;
}

.about-hero h1 {
    max-width: 26ch;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.story-section {
    margin-top: 1rem;
}

.story-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: start;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--bg-elevated);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.story-intro h2 {
    margin-top: 0.55rem;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.story-body {
    display: grid;
    gap: 1.1rem;
    padding-top: 0.2rem;
}

.story-body p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.pillar-text {
    margin: 0.85rem 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.site-nav a.is-current {
    color: var(--brand-strong);
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .story-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }


    .site-header {
        border-radius: var(--radius-lg);
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(calc(100% - 1rem), var(--content-width));
        padding-top: 0.5rem;
    }

    .site-header {
        position: static;
        padding: 1rem;
        gap: 0.85rem;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero-copy,
    .hero-visual,
    .info-card,
    .pricing-section,
    .contact-section,
    .footnote-card {
        border-radius: 24px;
    }

    .hero-copy,
    .pricing-section,
    .contact-section {
        padding: 1.2rem;
    }

    .hero-notes,
    .info-grid,
    .package-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 12vw, 3.1rem);
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }
}