/* PPUZZL.net — Botanical Greenhouse */

:root {
    /* Honeyed-Neutral Palette */
    --beeswax:   #F9F0DC;
    --amber:     #E8D5A3;
    --umber:     #C4945A;
    --bark:      #8B5E3C;
    --green:     #4A7C59;
    --leaf:      #D4E8C2;
    --parchment: #F5E6CC;
    --humus:     #2C1F14;
    --bg-edge:   #F0E4C0;

    /* Typography */
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body:    'Nunito', sans-serif;
    --ff-label:   'Dancing Script', cursive;

    /* Spacing */
    --gap-desktop: 24px;
    --gap-tablet:  16px;
    --r-card: 16px;

    /* Easing */
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease:   cubic-bezier(0.4, 0.0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    color: var(--bark);
    background-color: var(--beeswax);
    background: radial-gradient(ellipse at 50% 50%, var(--beeswax) 0%, var(--bg-edge) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ============================
   POLLEN LAYER
   ============================ */
.pollen-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.pollen-particle {
    position: absolute;
    bottom: -30px;
    left: var(--x, 50%);
    width: var(--size, 10px);
    height: var(--size, 10px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F9F0DC, var(--amber));
    opacity: var(--op, 0.4);
    animation: pollen-rise var(--dur, 30s) var(--delay, 0s) infinite linear;
}

@keyframes pollen-rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: var(--op, 0.4);
    }
    25% {
        transform: translateY(-25vh) translateX(8px);
    }
    50% {
        transform: translateY(-50vh) translateX(-6px);
        opacity: var(--op, 0.4);
    }
    75% {
        transform: translateY(-75vh) translateX(10px);
        opacity: calc(var(--op, 0.4) * 0.7);
    }
    100% {
        transform: translateY(-110vh) translateX(-4px);
        opacity: 0;
    }
}

/* ============================
   MENU BUTTON
   ============================ */
.menu-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
    transition: transform 300ms var(--bounce), box-shadow 300ms ease;
    box-shadow: 0 4px 16px rgba(44, 31, 20, 0.12);
}

.menu-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 24px rgba(44, 31, 20, 0.18);
}

.menu-btn.is-open {
    transform: rotate(45deg);
}

.menu-btn svg {
    width: 52px;
    height: 52px;
}

/* ============================
   RADIAL MENU
   ============================ */
.radial-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.radial-menu.is-open {
    pointer-events: all;
    opacity: 1;
}

.radial-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(249, 240, 220, 0.85);
    backdrop-filter: blur(4px);
}

.radial-petals {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
}

.petal {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 36px;
    border-radius: 18px;
    background: var(--beeswax);
    border: 1.5px solid var(--umber);
    color: var(--bark);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(44, 31, 20, 0.1);
    transition: transform 300ms var(--bounce), background 200ms ease, opacity 300ms ease;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    top: 26px;
    left: 26px;
}

.radial-menu.is-open .petal {
    opacity: 1;
    transform: translate(-50%, -50%) translate(var(--px, 0px), var(--py, 0px)) scale(1);
}

.petal:hover {
    background: var(--leaf);
    border-color: var(--green);
    color: var(--green);
}

.petal-1 { --px: -120px; --py: -60px; transition-delay: 0ms; }
.petal-2 { --px: -130px; --py: 20px; transition-delay: 40ms; }
.petal-3 { --px: -80px; --py: 90px; transition-delay: 80ms; }
.petal-4 { --px: 10px; --py: 100px; transition-delay: 120ms; }
.petal-5 { --px: -50px; --py: -90px; transition-delay: 160ms; }

/* ============================
   GREENHOUSE INTRO
   ============================ */
.greenhouse-intro {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px;
}

.greenhouse-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-botanical {
    position: absolute;
    pointer-events: none;
}

.bg-botanical-1 {
    right: -60px;
    top: -40px;
    width: 350px;
    opacity: 0.7;
    animation: sway 12s ease-in-out infinite alternate;
}

.bg-botanical-2 {
    left: -50px;
    bottom: 50px;
    width: 280px;
    opacity: 0.6;
    animation: sway 16s ease-in-out infinite alternate-reverse;
}

.bg-botanical-3 {
    left: 50%;
    top: 60px;
    width: 200px;
    opacity: 0.5;
    animation: sway 10s ease-in-out infinite alternate;
    transform: translateX(-50%);
}

@keyframes sway {
    0%   { transform: rotate(-2deg) scale(1); }
    100% { transform: rotate(3deg) scale(1.03); }
}

.bg-botanical-1,
.bg-botanical-2 {
    transform-origin: bottom center;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
}

.specimen-label {
    display: inline-block;
    font-family: var(--ff-label);
    font-size: 14px;
    color: var(--umber);
    margin-bottom: 20px;
    font-style: italic;
}

.intro-label {
    margin-bottom: 24px;
}

.kinetic-headline {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--bark);
    line-height: 1.15;
}

.greenhouse-intro .kinetic-headline {
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 24px;
}

/* Individual character spans from JS */
.kinetic-headline .char {
    display: inline-block;
    opacity: 0;
    transform: scale(0.6) rotate(-3deg);
    animation: bloom-in 500ms var(--ease) forwards;
    animation-play-state: paused;
}

.kinetic-headline.bloomed .char {
    animation-play-state: running;
}

@keyframes bloom-in {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.intro-body {
    font-size: 18px;
    color: var(--bark);
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.8;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--green);
    color: var(--beeswax);
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 300ms var(--bounce), box-shadow 300ms ease, background 200ms ease;
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.4);
    background: var(--bark);
}

.explore-btn-secondary {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    box-shadow: none;
    margin-top: 24px;
}

.explore-btn-secondary:hover {
    background: var(--green);
    color: var(--beeswax);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.25);
}

/* ============================
   BREATH ZONES
   ============================ */
.breath-zone {
    position: relative;
    padding: 60px 40px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, var(--leaf) 30%, var(--leaf) 70%, transparent);
    opacity: 0.95;
}

.breath-garland {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.garland-svg {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.garland-path {
    transition: stroke-dashoffset 1200ms ease;
}

.breath-zone.garland-drawn .garland-path {
    stroke-dashoffset: 0;
}

.breath-label {
    font-family: var(--ff-label);
    font-size: 20px;
    color: var(--bark);
    font-style: italic;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 800ms ease 400ms, transform 800ms ease 400ms;
}

.breath-zone.garland-drawn .breath-label {
    opacity: 1;
    transform: translateY(0);
}

/* Kinetic label chars (same animation as headline but smaller) */
.breath-label .char {
    display: inline-block;
    opacity: 0;
    transform: scale(0.6) rotate(-3deg);
    animation: bloom-in 400ms var(--ease) forwards;
    animation-play-state: paused;
}

.breath-label.bloomed .char {
    animation-play-state: running;
}

/* ============================
   BUBBLES
   ============================ */
.breath-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -60px;
    left: var(--bx, 50%);
    width: var(--bsize, 36px);
    height: var(--bsize, 36px);
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(249, 240, 220, 0.9) 0%,
        rgba(212, 232, 194, 0.4) 35%,
        rgba(232, 213, 163, 0.3) 65%,
        rgba(196, 148, 90, 0.15) 100%
    );
    border: 1px solid rgba(232, 213, 163, 0.6);
    animation: bubble-rise 6s var(--bdelay, 0s) infinite ease-in-out;
    box-shadow: inset 2px 2px 4px rgba(249, 240, 220, 0.6),
                inset -2px -2px 4px rgba(196, 148, 90, 0.15);
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    40% {
        transform: translateY(-50px) translateX(8px) scale(1.02);
    }
    70% {
        transform: translateY(-90px) translateX(-6px) scale(0.98);
        opacity: 0.7;
    }
    90% {
        transform: translateY(-130px) translateX(4px) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-160px) translateX(0) scale(0.3);
        opacity: 0;
    }
}

/* ============================
   GREENHOUSE CARD GRID
   ============================ */
.card-grid-section {
    padding: 40px var(--gap-desktop);
    max-width: 1400px;
    margin: 0 auto;
}

.greenhouse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-desktop);
    align-items: start;
}

/* ============================
   GRID CARDS
   ============================ */
.grid-card {
    border-radius: var(--r-card);
    background: var(--beeswax);
    border: 1.5px solid var(--amber);
    box-shadow: 4px 8px 20px rgba(44, 31, 20, 0.1), 0 2px 6px rgba(44, 31, 20, 0.06);
    transform: rotate(var(--rot, 0deg));
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* Page-load bloom animation */
    animation: card-bloom 600ms var(--ease) both;
    animation-delay: var(--card-delay, 0ms);
    transition: transform 600ms var(--bounce), box-shadow 600ms ease;
}

.grid-card.card-alt {
    background: var(--parchment);
}

@keyframes card-bloom {
    from {
        opacity: 0;
        transform: rotate(var(--rot, 0deg)) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(var(--rot, 0deg)) scale(1);
    }
}

.grid-card:hover {
    transform: rotate(var(--rot, 0deg)) scale(1.03);
    box-shadow: 4px 12px 32px rgba(44, 31, 20, 0.18), 0 4px 12px rgba(196, 148, 90, 0.2);
    z-index: 5;
}

/* Card size spans */
.card-large {
    grid-column: span 2;
}

.card-medium {
    grid-column: span 1;
}

.card-small {
    grid-column: span 1;
}

.card-inner {
    position: relative;
    overflow: hidden;
}

/* Paper grain overlay */
.card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--r-card);
}

.card-illustration {
    width: 100%;
    overflow: hidden;
    filter: saturate(0.95) sepia(0.05);
    position: relative;
}

.card-illustration svg {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 600ms var(--bounce);
}

.grid-card:hover .card-illustration svg {
    transform: scale(1.04);
}

/* Stem corner animation */
.card-stem-anim {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 80px;
    pointer-events: none;
    z-index: 3;
}

.stem-svg {
    width: 100%;
    height: 100%;
}

.stem-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 800ms ease;
}

.stem-leaf {
    opacity: 0;
    transition: opacity 400ms ease 600ms;
}

.grid-card:hover .stem-path {
    stroke-dashoffset: 0;
}

.grid-card:hover .stem-leaf {
    opacity: 0.6;
}

/* Card body */
.card-body {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.specimen-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.tag-string {
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--bark);
    opacity: 0.4;
    position: relative;
}

.tag-string::before {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--bark);
    opacity: 0.6;
    background: var(--beeswax);
}

.tag-text {
    font-family: var(--ff-label);
    font-size: 12px;
    color: var(--umber);
    font-style: italic;
}

.card-title {
    font-family: var(--ff-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-large .card-title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
}

.card-desc {
    font-size: 14px;
    color: var(--bark);
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================
   FIELD NOTES SECTION
   ============================ */
.field-notes-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-headline {
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 40px;
    text-align: center;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.note-card {
    background: var(--beeswax);
    border: 1.5px solid var(--amber);
    border-radius: var(--r-card);
    padding: 28px;
    position: relative;
    box-shadow: 0 4px 16px rgba(44, 31, 20, 0.08);
    transition: transform 400ms var(--bounce), box-shadow 400ms ease;
}

.note-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(44, 31, 20, 0.14);
}

.note-card-alt {
    background: var(--parchment);
}

.note-date {
    display: block;
    margin-bottom: 12px;
}

.note-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: var(--bark);
    margin-bottom: 12px;
}

.note-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bark);
    opacity: 0.85;
    margin-bottom: 16px;
}

.note-tag {
    display: inline-block;
    font-family: var(--ff-label);
    font-size: 12px;
    color: var(--green);
    font-style: italic;
    border: 1px solid var(--green);
    padding: 2px 10px;
    border-radius: 12px;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .kinetic-headline {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 24px;
}

.about-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--bark);
    opacity: 0.87;
    margin-bottom: 16px;
}

.about-illustration svg {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 8px 12px 32px rgba(44, 31, 20, 0.12);
    filter: saturate(0.95) sepia(0.04);
    display: block;
    margin: 0 auto;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-inner .kinetic-headline {
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 16px;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--bark);
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: var(--ff-label);
    font-size: 13px;
    color: var(--umber);
    font-style: italic;
}

.form-input {
    background: var(--beeswax);
    border: 1.5px solid var(--amber);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--bark);
    transition: border-color 200ms ease, box-shadow 200ms ease;
    outline: none;
}

.form-input:hover {
    border-color: var(--umber);
}

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.12);
}

.form-input::placeholder {
    color: var(--bark);
    opacity: 0.4;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238B5E3C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--ff-body);
}

.submit-btn {
    align-self: flex-start;
    padding: 14px 36px;
    border-radius: 50px;
    background: var(--green);
    color: var(--beeswax);
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 300ms var(--bounce), box-shadow 300ms ease, background 200ms ease;
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.28);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--bark);
    box-shadow: 0 10px 28px rgba(74, 124, 89, 0.38);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--humus);
    color: var(--beeswax);
    padding: 0;
    margin-top: 60px;
}

.footer-garland {
    padding: 20px 40px 0;
}

.footer-garland svg {
    width: 100%;
    height: auto;
}

.footer-inner {
    padding: 40px 40px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo {
    display: block;
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--beeswax);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--amber);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-spec-label {
    color: var(--umber);
    font-size: 12px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-head {
    font-family: var(--ff-label);
    font-size: 13px;
    color: var(--umber);
    font-style: italic;
    margin-bottom: 4px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--beeswax);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 200ms ease, color 200ms ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(249, 240, 220, 0.12);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--beeswax);
    opacity: 0.6;
}

.footer-mid-text {
    font-family: var(--ff-label);
    font-style: italic;
    opacity: 0.7;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.status-leaf {
    font-size: 14px;
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
    .greenhouse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap-tablet);
    }
    .card-large {
        grid-column: span 2;
    }
    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-illustration {
        display: none;
    }
}

@media (max-width: 720px) {
    .greenhouse-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .card-large {
        grid-column: span 1;
    }
    .notes-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .greenhouse-intro {
        padding: 60px 20px;
    }
    .card-grid-section,
    .field-notes-section,
    .about-section,
    .contact-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .breath-zone {
        padding: 40px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer-inner {
        padding: 28px 20px 20px;
    }
    .footer-garland {
        padding: 16px 20px 0;
    }
}
