/**
 * Aura Sanft – Premium Yoga & Wellness Stylesheet
 * Farben: Sage #A8BFA3, Cream #F8F5F0, Beige #DCC7AA, Forest #4F6F52, Gold #C8A96B
 * Typo: Playfair Display (Überschriften), Poppins (Fließtext)
 */

/* --------------------------------------------------------------------------
   CSS Custom Properties & Reset-Light
   -------------------------------------------------------------------------- */
:root {
    --color-sage: #a8bfa3;
    --color-cream: #f8f5f0;
    --color-beige: #dcc7aa;
    --color-forest: #4f6f52;
    --color-gold: #c8a96b;
    --color-white: #ffffff;
    --color-ink: #2c3328;
    --color-muted: #5a6358;

    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Poppins", system-ui, sans-serif;

    --shadow-soft: 0 18px 45px rgba(47, 58, 46, 0.12);
    --shadow-card: 0 12px 32px rgba(47, 58, 46, 0.08);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --header-height: 84px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-forest);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--color-gold);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-forest);
    margin: 0 0 0.5em;
}

p {
    margin: 0 0 1rem;
}

ul, ol {
    margin: 0;
    padding: 0;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.narrow {
    max-width: 720px;
    margin-inline: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--color-forest);
    color: var(--color-cream);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
}

.skip-link:focus {
    left: 10px;
}

/* --------------------------------------------------------------------------
   Header / Sticky Navbar (Glass on scroll)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
    background: rgba(248, 245, 240, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(47, 58, 46, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--color-forest);
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--color-gold), var(--color-forest));
    box-shadow: 0 4px 14px rgba(79, 111, 82, 0.35);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.logo--footer .logo-text {
    color: var(--color-cream);
}

.logo--footer {
    color: var(--color-cream);
}

.primary-nav .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.55rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-ink);
    text-decoration: none;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-sage));
    transform: translateX(-50%);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-forest);
    background: rgba(168, 191, 163, 0.22);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.is-active {
    color: var(--color-forest);
    background: rgba(200, 169, 107, 0.18);
}

.nav-link.is-active::after {
    width: 70%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-bar {
    width: 26px;
    height: 2px;
    background: var(--color-forest);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        background: rgba(248, 245, 240, 0.96);
        backdrop-filter: blur(12px);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .site-header.nav-open .primary-nav {
        max-height: 420px;
    }

    .primary-nav .nav-list {
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-forest), #3d5540);
    color: var(--color-cream);
    box-shadow: 0 10px 28px rgba(79, 111, 82, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(79, 111, 82, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-cream);
    border-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.btn--block {
    width: 100%;
}

.btn--shine {
    position: relative;
    overflow: hidden;
}

.btn--shine::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn--shine:hover::before {
    transform: translateX(100%);
}

/* --------------------------------------------------------------------------
   Hero (Home)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-cream);
    padding: calc(var(--header-height) + 2rem) 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(44, 51, 40, 0.72) 0%, rgba(79, 111, 82, 0.55) 45%, rgba(44, 51, 40, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: rgba(248, 245, 240, 0.85);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    color: var(--color-cream);
    margin-bottom: 1rem;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 640px;
    margin-inline: auto;
    color: rgba(248, 245, 240, 0.92);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    z-index: 2;
}

.scroll-hint-line {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 10px); }
}

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 3rem) 0 3.5rem;
    color: var(--color-cream);
}

.page-hero--compact {
    min-height: 46vh;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(44, 51, 40, 0.55) 0%, rgba(44, 51, 40, 0.82) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream);
}

.page-hero-sub {
    max-width: 520px;
    color: rgba(248, 245, 240, 0.9);
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   Sections & Glass
   -------------------------------------------------------------------------- */
.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--cream {
    background: var(--color-cream);
}

.section--gradient {
    background: linear-gradient(135deg, rgba(168, 191, 163, 0.35) 0%, var(--color-cream) 45%, rgba(220, 199, 170, 0.45) 100%);
}

.section--dark {
    background: radial-gradient(circle at 20% 20%, #3f5641 0%, #2f3d30 55%, #1e261f 100%);
    color: rgba(248, 245, 240, 0.92);
}

.section--dark .section-title,
.section--dark h2,
.section--dark h3 {
    color: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.section-label--light {
    color: rgba(200, 169, 107, 0.95);
}

.section-title {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.section-intro {
    color: var(--color-muted);
    margin-top: 0.75rem;
}

.glass-panel,
.glass-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.section--dark .glass-card,
.section--dark .testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

/* Scroll reveal baseline */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   Cards & Grids
   -------------------------------------------------------------------------- */
.card-grid {
    display: grid;
    gap: 1.75rem;
}

.card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
    .card-grid--3 {
        grid-template-columns: 1fr;
    }
    .card-grid--2 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(200, 169, 107, 0.55);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--color-forest);
    background: linear-gradient(145deg, rgba(168, 191, 163, 0.5), rgba(248, 245, 240, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

@media (max-width: 900px) {
    .benefits-layout {
        grid-template-columns: 1fr;
    }
}

.benefits-image-wrap {
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.benefits-img {
    border-radius: calc(var(--radius-lg) - 6px);
    width: 100%;
    object-fit: cover;
    min-height: 380px;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(79, 111, 82, 0.12);
}

.benefit-dot {
    width: 14px;
    height: 14px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-gold), var(--color-forest));
    box-shadow: 0 0 0 6px rgba(168, 191, 163, 0.35);
}

.benefit-title {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

/* Testimonials */
.testimonial-card {
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 107, 0.45);
}

.testimonial-text {
    font-style: italic;
    color: rgba(248, 245, 240, 0.92);
    margin-bottom: 1.25rem;
}

.testimonial-meta cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-gold);
}

.testimonial-meta span {
    display: block;
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.65);
}

/* Newsletter home */
.section--newsletter {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(168, 191, 163, 0.35) 100%);
}

.newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

.newsletter-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    color: var(--color-muted);
    margin: 0;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex: 1 1 320px;
    justify-content: flex-end;
}

.input {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(79, 111, 82, 0.2);
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-ink);
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.input:focus {
    outline: none;
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(168, 191, 163, 0.45);
}

.input--newsletter {
    flex: 1 1 220px;
    min-width: 200px;
}

.input--textarea {
    resize: vertical;
    min-height: 120px;
}

.input--select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-forest) 50%), linear-gradient(135deg, var(--color-forest) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.prose-block .lead {
    font-size: 1.1rem;
    color: var(--color-muted);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

@media (max-width: 900px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}

.split-image-frame {
    padding: 0.6rem;
    overflow: hidden;
}

.split-image-frame img {
    border-radius: calc(var(--radius-lg) - 4px);
    width: 100%;
    object-fit: cover;
    min-height: 420px;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.check-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.65rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-forest);
    font-weight: 600;
}

.section--philosophy {
    background: var(--color-cream);
}

.philosophy-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    align-items: start;
    padding: 2rem 2.25rem;
}

.philosophy-icon {
    font-size: 2rem;
    color: var(--color-gold);
}

.philosophy-title {
    margin-bottom: 0.5rem;
}

.philosophy-text {
    margin: 0;
    color: var(--color-muted);
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.about-gallery-item--wide {
    grid-column: 1 / -1;
}

.about-gallery-item--wide img {
    max-height: 420px;
}

.section--timeline {
    background: linear-gradient(180deg, var(--color-cream), rgba(220, 199, 170, 0.35));
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(79, 111, 82, 0.25);
    margin-left: 1rem;
}

.timeline-item {
    position: relative;
    padding: 0 0 2.5rem 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(168, 191, 163, 0.5);
}

.timeline-year {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}

.timeline-body {
    padding: 1.25rem 1.5rem;
}

.timeline-body h3 {
    font-size: 1.2rem;
}

.section--stats {
    background: var(--color-forest);
    color: var(--color-cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-block {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-cream);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-layout-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 4rem;
}

@media (max-width: 960px) {
    .blog-layout-inner {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-card-excerpt {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-card-cta {
    font-weight: 600;
    color: var(--color-forest);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-card:hover .blog-card-cta {
    color: var(--color-gold);
}

.sidebar-widget {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-list,
.sidebar-posts {
    list-style: none;
    padding: 0;
}

.sidebar-list li,
.sidebar-posts li {
    margin-bottom: 0.5rem;
}

.sidebar-list a,
.sidebar-posts a {
    text-decoration: none;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.sidebar-list a:hover,
.sidebar-posts a:hover {
    color: var(--color-forest);
}

.sidebar-text {
    font-size: 0.92rem;
    color: var(--color-muted);
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   Recipes
   -------------------------------------------------------------------------- */
.section--recipes {
    background: var(--color-cream);
}

.recipe-grid {
    display: grid;
    gap: 2.5rem;
}

.recipe-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    overflow: hidden;
    padding: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

@media (max-width: 900px) {
    .recipe-card {
        grid-template-columns: 1fr;
    }
}

.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.recipe-card-image {
    position: relative;
    min-height: 280px;
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(248, 245, 240, 0.92);
    color: var(--color-forest);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.recipe-card-body {
    padding: 1.75rem 2rem 2rem;
}

.recipe-card-title {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.recipe-subheading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 1.25rem 0 0.5rem;
}

.recipe-ingredients,
.recipe-steps {
    padding-left: 1.1rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.recipe-ingredients li,
.recipe-steps li {
    margin-bottom: 0.35rem;
}

.recipe-calories {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-forest);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrap {
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form-heading {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--color-muted);
}

.form-hint {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card,
.hours-card {
    padding: 1.5rem 1.75rem;
}

.contact-card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-address {
    font-style: normal;
    color: var(--color-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-lines a {
    text-decoration: none;
    font-weight: 500;
}

.hours-list {
    margin: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(79, 111, 82, 0.12);
    font-size: 0.95rem;
}

.hours-row dt {
    font-weight: 500;
    color: var(--color-forest);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
}

.section--map {
    background: linear-gradient(180deg, var(--color-cream), rgba(168, 191, 163, 0.25));
}

.map-embed {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.map-embed iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: var(--radius-lg);
}

.section--faq {
    background: var(--color-cream);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(79, 111, 82, 0.15);
    background: rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--color-forest);
}

.faq-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(45deg);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
    transform: rotate(-135deg);
}

.faq-panel {
    padding: 0 1.25rem 1.1rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.faq-panel[hidden] {
    display: none;
}

/* --------------------------------------------------------------------------
   Footer & WhatsApp
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #2f3d30 0%, #1e261f 100%);
    color: rgba(248, 245, 240, 0.85);
    padding-top: 4rem;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 60%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.18), transparent 60%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-tagline {
    color: rgba(248, 245, 240, 0.7);
    max-width: 280px;
}

.footer-heading {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(248, 245, 240, 0.85);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-address {
    font-style: normal;
    line-height: 1.7;
}

.footer-address a {
    color: var(--color-cream);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem 0 1.75rem;
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.55);
}

.social-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-row--large {
    margin-top: 1.25rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.social-icon:hover {
    background: rgba(200, 169, 107, 0.25);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    color: var(--color-cream);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.45);
    z-index: 1100;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 16px 40px rgba(18, 140, 126, 0.55);
}

.whatsapp-svg {
    display: block;
}
