@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');

:root {
    --page-bg: #fbf8f2;
    --text: #2e2723;
    --text-soft: #766c66;
    --line: rgba(46, 39, 35, 0.14);
    --accent: #d8c0c9;
    --container: 1220px;
    --header-offset: 128px;
    --logo-green: #294633;
    --font-heading: "Josefin Slab", Georgia, serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: "Montserrat", "Segoe UI", sans-serif;
}

html {
    background: var(--page-bg);
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: calc(var(--header-offset) + 30px) 22px 34px;
}

.site-header,
.site-footer,
.testimonials,
.latest-feed,
.next-step {
    text-align: center;
}

.header-line,
.brand-row {
    display: grid;
    align-items: center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(251, 248, 242, 0.88));
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 38px rgba(46, 39, 35, 0.16);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 22px 10px;
    transition: padding 0.25s ease;
}

.header-line {
    grid-auto-flow: column;
    justify-content: center;
    gap: 26px;
    padding: 8px 0;
    color: var(--text-soft);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: opacity 0.22s ease, max-height 0.22s ease, padding 0.22s ease, transform 0.22s ease;
}

.brand-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    padding: 14px 0 10px;
}

.primary-nav,
.secondary-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.secondary-nav {
    justify-content: flex-end;
}

.primary-nav a,
.secondary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.secondary-nav a:hover,
.secondary-nav a:focus-visible {
    background: rgba(196, 220, 192, 0.62);
    color: var(--text);
}

.primary-nav a.is-active,
.secondary-nav a.is-active {
    background: rgba(196, 220, 192, 0.82);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(46, 39, 35, 0.08);
}

.brand {
    width: 208px;
    margin: 0 auto;
    transition: width 0.25s ease, transform 0.25s ease;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    justify-self: end;
    padding: 8px 12px;
    border: 1px solid var(--logo-green);
    border-radius: 5px;
    background: rgba(251, 248, 242, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
}

.site-header.is-condensed {
    box-shadow: 0 16px 30px rgba(46, 39, 35, 0.14);
}

.site-header.is-condensed .site-header-inner {
    padding-bottom: 4px;
}

.site-header.is-condensed .bottom-line {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-6px);
    overflow: hidden;
}

.site-header.is-condensed .brand {
    width: 164px;
}

.site-header.is-condensed .brand-row {
    padding-top: 10px;
    padding-bottom: 8px;
}

.mobile-menu-label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mobile-menu-icon {
    display: inline-grid;
    gap: 4px;
}

.mobile-menu-icon span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
}

.mobile-menu-panel {
    display: none;
}

main {
    padding-top: 0;
}

.hero {
    position: relative;
    margin-top: calc(-1 * 30px);
    margin-bottom: 34px;
}

.hero-image {
    position: relative;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("../img/schwalbenschwaenzchen-01.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-image img {
    opacity: 0;
    pointer-events: none;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 15, 0.08), rgba(20, 16, 15, 0.22));
}

.hero-copy {
    position: absolute;
    inset: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 50px 24px;
    text-align: center;
    color: #f9f4ee;
}

.hero-copy-box {
    width: min(100%, 760px);
    max-width: calc(100vw - 80px);
    padding: 18px 34px 18px;
    border-radius: 22px;
    background: rgba(46, 39, 35, 0.24);
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 28px rgba(20, 16, 15, 0.12);
    box-sizing: border-box;
}

.hero-kicker,
.style-column h2,
.section-label,
.feed-follow,
.next-actions a,
.footer-grid a,
.footer-bottom {
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-kicker {
    font-size: 0.76rem;
    display: block;
    margin-bottom: 10px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 500;
}

h1 {
    max-width: 100%;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4vw, 3.95rem);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    margin-inline: auto;
}

.shop-banner-image img,
.feed-grid img,
.next-image img {
    height: 100%;
    object-fit: cover;
}

.ornament,
.feed-mark {
    color: var(--accent);
    font-size: 2rem;
}

.home-news {
    max-width: 980px;
    margin: 0 auto 72px;
}

.home-social-feed,
.home-intro,
.testimonials,
.latest-feed,
.next-step {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.home-social-feed {
    margin-bottom: 92px;
}

.home-intro {
    margin-bottom: 72px;
    text-align: center;
}

.testimonials {
    margin-bottom: 72px;
}

.home-news-card,
.news-item-card,
.internal-news-card {
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.8);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.home-news-card {
    padding: 34px 30px;
    text-align: center;
}

.home-social-feed-card {
    padding: 34px 30px;
    text-align: center;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.78);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.home-news-card h2 {
    margin-top: 10px;
}

.home-social-feed-card h2 {
    margin-top: 10px;
}

.home-news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0 28px;
    text-align: center;
}

.home-social-feed-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.home-news-item {
    padding: 22px 22px 20px;
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(46, 39, 35, 0.08);
    text-align: center;
}

.home-social-feed-item {
    display: grid;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(46, 39, 35, 0.08);
    text-align: left;
}

.home-social-feed-item-image {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.home-social-feed-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-social-feed-item-copy {
    display: grid;
    gap: 12px;
    padding: 20px 18px 18px;
}

.home-social-feed-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.home-social-feed-item h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    line-height: 1.02;
    color: var(--text);
}

.home-social-feed-item p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.5;
}

.social-feed-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-feed-link:hover,
.social-feed-link:focus-visible {
    background: rgba(196, 220, 192, 0.96);
    color: var(--text);
    transform: translateY(-1px);
    outline: none;
}

.social-platform-badge,
.internal-social-platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--logo-green);
    background: rgba(196, 220, 192, 0.52);
}

.social-platform-badge.is-instagram,
.internal-social-platform-badge.is-instagram {
    background: rgba(245, 220, 225, 0.8);
    color: #8f5461;
}

.social-platform-badge.is-tiktok,
.internal-social-platform-badge.is-tiktok {
    background: rgba(225, 235, 234, 0.92);
    color: #46625d;
}

.home-news-date,
.internal-news-date {
    display: block;
    margin: 0 0 20px;
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-news-item h3,
.news-item-card h4 {
    margin: 4px 0 13px;
    font-family: var(--font-heading);
    font-size: clamp(1.95rem, 3vw, 2.45rem);
    line-height: 1;
    font-weight: 600;
}

.home-news-item p:last-child,
.news-item-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.26;
}

.home-intro-card {
    padding: 34px 30px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.78);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.home-intro h2 {
    margin-top: 10px;
    font-size: clamp(2.1rem, 3.8vw, 3.3rem);
    line-height: 1.02;
}

.home-intro-subline {
    margin: 14px 0 0;
    color: var(--logo-green);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-intro-copy {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.home-intro-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.testimonials h2,
.latest-feed h2,
.next-step h2 {
    margin-top: 6px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
}

.divider {
    width: 42px;
    height: 1px;
    margin: 16px auto 14px;
    background: var(--line);
}

.section-label,
.feed-follow,
.footer-grid h3,
.footer-bottom {
    font-size: 0.72rem;
}

.testimonial-list {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.testimonial-list article {
    display: grid;
    gap: 8px;
}

.testimonial-list h3 {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "Montserrat", "Segoe UI", sans-serif;
}

.testimonial-list p,
.shop-banner-copy h2,
.next-step h2,
.footer-grid p {
    color: var(--text-soft);
}

.testimonial-list p {
    margin: 0;
    line-height: 1.8;
}

.review-card {
    padding: 22px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.72);
}

.review-flowers {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
    color: rgba(41, 70, 51, 0.22);
    font-size: 1.35rem;
}

.review-flowers.is-admin {
    justify-content: flex-start;
    margin-bottom: 10px;
}

.review-flowers .is-filled {
    color: var(--logo-green);
}

.review-admin-reply {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(196, 220, 192, 0.2);
    text-align: left;
}

.review-admin-reply strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-admin-reply p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.6;
}

.reviews-link-row {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.reviews-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    border-radius: 10px;
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.reviews-page-link:hover,
.reviews-page-link:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.review-form-section {
    margin: 0 auto 72px;
}

.review-form-section-page {
    margin-top: 18px;
}

.reviews-page-hero {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.reviews-page-hero h1 {
    max-width: none;
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 600;
}

.gallery-page-hero {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.gallery-page-hero h1 {
    max-width: none;
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 600;
}

.gallery-page-hero p {
    margin-top: 10px;
    color: var(--text-soft);
    line-height: 1.7;
}

.legal-hero {
    position: relative;
    margin-top: -30px;
    margin-bottom: 40px;
}

.legal-hero-image {
    position: relative;
    height: clamp(280px, 42vw, 460px);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("../img/blumenladen-interior.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.legal-hero-image img {
    opacity: 0;
    pointer-events: none;
}

.legal-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 15, 0.12), rgba(20, 16, 15, 0.28));
}

.legal-hero-copy {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    color: #f9f4ee;
}

.legal-hero-box {
    padding: 18px 28px;
    border-radius: 22px;
    background: rgba(46, 39, 35, 0.24);
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 28px rgba(20, 16, 15, 0.12);
}

.legal-hero-box h1 {
    max-width: none;
    margin-top: 0;
}

.legal-content-section {
    margin-bottom: 70px;
}

.legal-content-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 34px 30px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.78);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.legal-content-card h2 {
    margin-top: 10px;
}

.legal-copy {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

.legal-copy-block {
    display: grid;
    gap: 14px;
}

.legal-copy-block h3,
.legal-copy-block h4 {
    margin: 0;
    color: var(--text);
}

.legal-copy-block h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.legal-copy-block h4 {
    font-size: 1.08rem;
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.legal-list {
    margin: -4px 0 0;
    padding-left: 22px;
    color: var(--text-soft);
    line-height: 1.8;
}

.legal-list li + li {
    margin-top: 2px;
}

.legal-emphasis {
    font-size: 0.94rem;
    letter-spacing: 0.02em;
}

.legal-copy a {
    color: var(--logo-green);
}

.legal-copy a:hover,
.legal-copy a:focus-visible {
    text-decoration: underline;
}

.error-page-section {
    margin-bottom: 70px;
}

.error-page-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 38px 32px 34px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.82);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
    text-align: center;
}

.error-code {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--logo-green);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.error-page-card h2 {
    max-width: 16ch;
    margin: 0 auto;
    line-height: 1.08;
}

.error-copy {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.error-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.error-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.error-action-button:hover,
.error-action-button:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
    transform: translateY(-1px);
}

.error-action-button.is-secondary {
    background: rgba(255, 252, 247, 0.9);
    color: var(--text);
}

.error-action-button.is-secondary:hover,
.error-action-button.is-secondary:focus-visible {
    background: rgba(238, 245, 234, 0.96);
}

.about-story-section {
    margin-bottom: 34px;
}

.about-story-card,
.about-highlight-card {
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.8);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.about-story-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 30px;
    text-align: center;
}

.about-story-card h2 {
    margin-top: 10px;
}

.about-story-copy {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.about-story-copy p,
.about-highlight-card p,
.about-list {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 70px;
}

.about-highlight-card {
    display: grid;
    gap: 14px;
    padding: 28px 26px;
}

.about-highlight-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.05;
}

.about-highlight-icon {
    flex: 0 0 auto;
    font-size: 1.35rem;
    line-height: 1;
}

.about-list {
    padding-left: 20px;
}

.about-closing {
    margin-bottom: 50px;
    color: var(--logo-green);
    font-weight: 600;
}

.services-intro-section {
    margin-bottom: 34px;
}

.services-intro-card,
.services-card {
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.8);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.services-intro-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 34px 30px;
    text-align: center;
}

.services-intro-card h2 {
    margin-top: 10px;
}

.services-intro-copy {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin: 22px auto 0;
}

.services-intro-copy p,
.services-card p,
.services-list {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.services-grid,
.services-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}

.services-grid-secondary {
    margin-top: 34px;
}

.services-card {
    display: grid;
    gap: 14px;
    padding: 28px 26px;
}

.services-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.05;
}

.services-icon {
    flex: 0 0 auto;
    font-size: 1.35rem;
    line-height: 1;
}

.services-card-lead {
    color: var(--logo-green);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.services-list {
    padding-left: 20px;
}

.services-note {
    color: var(--logo-green);
    font-weight: 600;
}

.services-band {
    margin: 0 0 34px;
}

.services-band-image {
    height: 400px;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-band-image-small {
    height: 320px;
}

.services-band-image img {
    opacity: 0;
    pointer-events: none;
}

.contact-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    margin-bottom: 34px;
}

.contact-info-card,
.contact-map-card,
.contact-form-card {
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.8);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.contact-info-card,
.contact-map-card {
    padding: 28px 26px;
}

.contact-info-card h2,
.contact-map-card h2,
.contact-form-card h2 {
    margin-top: 10px;
}

.contact-info-intro {
    margin: 18px 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-info-list p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-info-list a {
    color: var(--logo-green);
}

.contact-map-frame {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 18px;
    min-height: 360px;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.contact-form-section {
    margin-bottom: 70px;
}

.contact-form-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 30px;
}

.contact-form-card > p {
    color: var(--text-soft);
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea,
.contact-form input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.14);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.contact-form input[type="file"] {
    padding: 10px 12px;
}

.contact-form input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 10px 16px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    border-radius: 10px;
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-form input[type="file"]::file-selector-button:hover,
.contact-form input[type="file"]::file-selector-button:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.contact-form small {
    color: var(--text-soft);
    line-height: 1.6;
}

.contact-form button {
    width: fit-content;
    padding: 12px 18px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    border-radius: 10px;
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.gallery-page-section {
    margin-bottom: 70px;
}

.news-page-section {
    margin-bottom: 70px;
}

.news-page-head {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.news-page-head .section-label {
    display: block;
    margin-bottom: 20px;
}

.news-page-head p {
    margin: 20px 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-item-card {
    padding: 26px 26px 24px;
    text-align: center;
}

.news-item-card .home-news-date {
    margin-bottom: 20px;
}

.news-item-meta {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(196, 220, 192, 0.82);
    color: var(--logo-green);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-badge.is-muted {
    background: rgba(240, 236, 230, 0.92);
    color: var(--text-soft);
}

.gallery-page-head {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-page-item {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.7);
    box-shadow: 0 12px 28px rgba(46, 39, 35, 0.08);
}

.gallery-page-trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-page-trigger:hover img,
.gallery-page-trigger:focus-visible img {
    transform: scale(1);
    filter: saturate(1.03);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 15, 0.78);
    backdrop-filter: blur(6px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    width: min(100%, 1440px);
    height: 100%;
    margin: 0 auto;
    padding: 40px 22px;
}

.gallery-lightbox-stage {
    display: grid;
    place-items: center;
    min-height: 0;
}

.gallery-lightbox-stage img {
    width: auto;
    max-width: 100%;
    max-height: min(82vh, 980px);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(251, 248, 242, 0.18);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
    background: rgba(251, 248, 242, 0.28);
    transform: translateY(-1px);
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}

.gallery-lightbox-nav {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    font-size: 2.6rem;
    line-height: 1;
}

.gallery-lightbox-nav span {
    transform: translateY(-1px);
}

.review-form-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 34px 30px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.78);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
    text-align: left;
}

.reviews-list-section {
    margin-bottom: 70px;
}

.reviews-list-head {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.review-list-grid {
    gap: 18px;
}

.reviews-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.reviews-load-more {
    padding: 12px 18px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    border-radius: 10px;
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.reviews-load-more:hover,
.reviews-load-more:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.reviews-empty-state {
    text-align: center;
}

.review-form-card h2 {
    margin-top: 8px;
}

.review-form-card > p {
    color: var(--text-soft);
    line-height: 1.7;
}

.form-feedback {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
}

.form-feedback p {
    margin: 0;
}

.form-feedback + .form-feedback {
    margin-top: 12px;
}

.form-feedback.is-success {
    background: rgba(196, 220, 192, 0.28);
    color: var(--text);
}

.form-feedback.is-error {
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
}

.form-protection-note {
    display: grid;
    gap: 4px;
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(41, 70, 51, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(234, 242, 229, 0.58), rgba(255, 252, 247, 0.9));
    color: var(--text-soft);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-protection-note:hover,
.form-protection-note:focus-visible {
    border-color: rgba(41, 70, 51, 0.2);
    background: linear-gradient(180deg, rgba(226, 238, 221, 0.8), rgba(255, 252, 247, 0.96));
    box-shadow: 0 10px 22px rgba(46, 39, 35, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.form-protection-note strong {
    color: var(--logo-green);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-protection-note p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-submit-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.form-protection-note.is-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding: 10px 12px;
}

.form-protection-note.is-inline p {
    font-size: 0.84rem;
}

.form-protection-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(196, 220, 192, 0.55);
    font-size: 0.9rem;
    line-height: 1;
}

.info-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 24px;
}

.info-lightbox[hidden] {
    display: none !important;
}

.info-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(32, 28, 26, 0.46);
    backdrop-filter: blur(4px);
}

.info-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 28px 26px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 24px 48px rgba(46, 39, 35, 0.18);
}

.info-lightbox-dialog h2 {
    margin-top: 10px;
}

.info-lightbox-copy {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.info-lightbox-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.info-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(46, 39, 35, 0.12);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.92);
    color: var(--text-soft);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.info-lightbox-close:hover,
.info-lightbox-close:focus-visible {
    background: rgba(196, 220, 192, 0.72);
    color: var(--text);
    transform: translateY(-1px);
    outline: none;
}

.review-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.review-form label,
.internal-review-form label {
    display: grid;
    gap: 8px;
}

.review-form label span,
.internal-review-form label span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea,
.internal-review-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.14);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.review-form button {
    width: fit-content;
    padding: 12px 18px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    border-radius: 10px;
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.review-form button:hover,
.review-form button:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.flower-rating {
    margin: 0;
    padding: 0;
    border: 0;
}

.flower-rating legend {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.flower-rating-options {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 8px;
}

.flower-rating-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.flower-rating-options label {
    cursor: pointer;
    color: rgba(41, 70, 51, 0.25);
    font-size: 2rem;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.flower-rating-options label:hover,
.flower-rating-options label:hover ~ label,
.flower-rating-options input:checked ~ label {
    color: var(--logo-green);
    transform: translateY(-1px);
}

.shop-banner {
    margin-bottom: 70px;
}

.shop-banner-image {
    height: 400px;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("../img/handmade-dekoration.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.shop-banner-copy {
    width: min(100%, 980px);
    margin: 0 auto;
    padding-top: 22px;
    text-align: center;
}

.shop-banner-copy h2 {
    max-width: 16ch;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.02;
    font-weight: 600;
}

.shop-banner-copy a {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.latest-feed {
    margin-bottom: 70px;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.feed-grid figure {
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
}

.feed-grid-trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.feed-grid img {
    transform: scale(1.08);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.feed-grid-trigger:hover img,
.feed-grid-trigger:focus-visible img {
    transform: scale(1);
    filter: saturate(1.03);
}

.feed-follow {
    margin-top: 18px;
    font-size: 0.76rem;
    color: var(--text-soft);
}

.next-step {
    margin-bottom: 70px;
}

.next-actions {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 18px;
}

.next-actions a {
    font-size: 0.78rem;
}

.next-image {
    height: 400px;
    margin: 34px 0 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("../img/blumenladen-interior.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.shop-banner-image img,
.next-image img {
    opacity: 0;
    pointer-events: none;
}

.site-footer {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.footer-logo {
    width: 118px;
    margin: 0 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.25fr) minmax(0, 1.75fr);
    gap: 52px;
    text-align: left;
    align-items: start;
}

.footer-primary {
    max-width: 460px;
    padding-right: 24px;
}

.footer-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.footer-secondary {
    min-width: 0;
    padding-left: 8px;
}

.footer-grid h3 {
    margin-bottom: 14px;
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 0 0 5px;
    color: var(--text-soft);
}

.footer-contact-line {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-icon {
    flex: 0 0 auto;
    line-height: 1.4;
}

.footer-contact-line span:last-child {
    min-width: 0;
    line-height: 1.7;
}

.footer-grid a {
    width: fit-content;
    padding: 5px 8px;
    margin-left: -8px;
    border-radius: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    background: rgba(196, 220, 192, 0.62);
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

.footer-social-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: rgb(110, 146, 104);
    background: rgba(196, 220, 192, 0.18);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
    background: rgba(196, 220, 192, 0.72);
    color: #294633;
    transform: translateY(-1px);
}

.footer-social-links svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.footer-legal-links a {
    transition: color 0.2s ease;
}

.footer-cookie-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
    color: rgb(110, 146, 104);
}

.footer-cookie-link:focus-visible {
    outline: none;
}

.page-up-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(162, 188, 157, 0.55);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(234, 242, 229, 0.96), rgba(211, 225, 210, 0.96));
    color: #274131;
    box-shadow: 0 16px 30px rgba(46, 39, 35, 0.18), 0 4px 10px rgba(46, 39, 35, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background-color 0.2s ease, color 0.2s ease;
}

.page-up-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.page-up-button svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.page-up-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-up-button:hover,
.page-up-button:focus-visible {
    background: linear-gradient(180deg, rgba(220, 235, 216, 1), rgba(196, 220, 192, 1));
    color: #1f3427;
}

.cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(32, 28, 26, 0.4);
    backdrop-filter: blur(4px);
}

.cookie-banner-card {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    max-height: min(88vh, 760px);
    padding: 24px 24px 20px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.97);
    box-shadow: 0 24px 48px rgba(46, 39, 35, 0.18);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cookie-banner-copy h2 {
    margin-top: 10px;
}

.cookie-banner-copy p {
    margin: 12px 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.cookie-banner-copy a {
    color: var(--logo-green);
}

.cookie-banner-actions,
.cookie-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-banner-actions {
    margin-top: 22px;
}

.cookie-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.cookie-button-primary {
    border: 1px solid rgba(41, 70, 51, 0.18);
    background: rgba(196, 220, 192, 0.82);
    color: var(--logo-green);
}

.cookie-button-primary:hover,
.cookie-button-primary:focus-visible {
    background: rgba(196, 220, 192, 1);
    color: var(--text);
}

.cookie-button-secondary {
    border: 1px solid rgba(46, 39, 35, 0.12);
    background: rgba(255, 252, 247, 0.92);
    color: var(--text);
}

.cookie-button-secondary:hover,
.cookie-button-secondary:focus-visible {
    background: rgba(242, 237, 231, 0.96);
}

.cookie-button-ghost {
    border: 1px solid rgba(46, 39, 35, 0.08);
    background: transparent;
    color: var(--text-soft);
}

.cookie-button-ghost:hover,
.cookie-button-ghost:focus-visible {
    border-color: rgba(46, 39, 35, 0.16);
    background: rgba(242, 237, 231, 0.64);
    color: var(--text);
}

.cookie-banner-settings {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(46, 39, 35, 0.08);
}

.cookie-banner-settings[hidden] {
    display: none !important;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 16px;
    background: rgba(251, 248, 242, 0.86);
}

.cookie-toggle-copy {
    display: grid;
    gap: 4px;
}

.cookie-toggle-copy strong {
    color: var(--text);
    font-size: 0.96rem;
}

.cookie-toggle-copy small {
    color: var(--text-soft);
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch span {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: rgba(46, 39, 35, 0.16);
    transition: background-color 0.2s ease;
}

.cookie-switch span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fffdfa;
    box-shadow: 0 2px 6px rgba(46, 39, 35, 0.14);
    transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
    background: rgba(196, 220, 192, 0.96);
}

.cookie-switch input:checked + span::after {
    transform: translateX(22px);
}

.cookie-switch input:disabled + span {
    background: rgba(110, 146, 104, 0.48);
}

.internal-login-page,
.internal-page {
    min-height: 100vh;
}

.internal-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.internal-login-card,
.internal-content-card,
.internal-tile,
.internal-sidebar {
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 18px 36px rgba(46, 39, 35, 0.08);
}

.internal-login-card {
    width: min(100%, 520px);
    padding: 32px 28px;
    text-align: center;
}

.internal-login-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

.internal-login-brand {
    display: inline-block;
    width: 140px;
    margin-bottom: 0;
}

.internal-login-kicker,
.internal-eyebrow {
    display: inline-block;
    color: var(--logo-green);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.internal-login-kicker {
    margin-top: 8px;
    text-align: right;
}

.internal-login-card h1,
.internal-content-card h1,
.internal-tile h2 {
    margin-top: 10px;
    color: var(--text);
}

.internal-login-card p,
.internal-content-card p,
.internal-tile p {
    color: var(--text-soft);
    line-height: 1.7;
}

.internal-login-error {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
}

.internal-login-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    text-align: left;
}

.internal-login-form label {
    display: grid;
    gap: 8px;
}

.internal-login-form span {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.internal-login-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.16);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.internal-upload-dropzone {
    position: relative;
    display: grid;
    gap: 6px;
    justify-items: center;
    padding: 26px 18px;
    border: 1px dashed rgba(41, 70, 51, 0.28);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(234, 242, 229, 0.38), rgba(255, 252, 247, 0.92));
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.internal-upload-dropzone strong {
    color: var(--logo-green);
    font-size: 0.98rem;
}

.internal-upload-dropzone p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.internal-upload-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.internal-upload-dropzone.is-dragover,
.internal-upload-dropzone:hover,
.internal-upload-dropzone:focus-visible {
    border-color: rgba(41, 70, 51, 0.52);
    background: linear-gradient(180deg, rgba(220, 235, 216, 0.7), rgba(255, 252, 247, 0.96));
    transform: translateY(-1px);
}

.internal-upload-selection {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.72);
    border: 1px solid rgba(46, 39, 35, 0.08);
}

.internal-upload-selection-title {
    margin: 0;
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.internal-upload-file-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.internal-upload-file-list li + li {
    margin-top: 4px;
}

.internal-upload-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.internal-upload-preview-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.88);
}

.internal-upload-preview-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.internal-upload-preview-card figcaption {
    padding: 10px 12px;
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
    word-break: break-word;
}

.internal-login-form button,
.internal-tile a,
.internal-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.internal-login-form button:hover,
.internal-tile a:hover,
.internal-logout:hover,
.internal-login-form button:focus-visible,
.internal-tile a:focus-visible,
.internal-logout:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
    transform: translateY(-1px);
}

.internal-shell {
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 28px 22px 40px;
}

.internal-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.internal-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.internal-brand img {
    width: 120px;
    max-width: none;
}

.internal-brand strong,
.internal-brand span,
.internal-userbar span {
    display: block;
}

.internal-brand span,
.internal-userbar span {
    color: var(--text-soft);
}

.internal-userbar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.internal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.internal-sidebar {
    padding: 20px;
    align-self: start;
}

.internal-nav {
    display: grid;
    gap: 8px;
}

.internal-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-soft);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.internal-nav a:hover,
.internal-nav a:focus-visible {
    background: rgba(196, 220, 192, 0.62);
    color: var(--text);
}

.internal-nav a.is-active,
.internal-nav a[aria-current="page"] {
    background: rgba(196, 220, 192, 0.82);
    color: var(--text);
    font-weight: 600;
}

.internal-main {
    display: grid;
    gap: 24px;
}

.internal-content-card {
    padding: 28px;
}

.internal-form-stack {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.internal-form-field {
    display: grid;
    gap: 8px;
}

.internal-form-field > span {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.internal-form-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.16);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.internal-form-field-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.internal-form-field-row input {
    flex: 1 1 auto;
}

.internal-link-test-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(41, 70, 51, 0.16);
    background: rgba(255, 252, 247, 0.92);
    color: var(--logo-green);
    font: inherit;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.internal-link-test-button:hover,
.internal-link-test-button:focus-visible {
    background: rgba(238, 245, 234, 0.96);
    color: var(--text);
    transform: translateY(-1px);
}

.internal-select-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.16);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.internal-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
}

.internal-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.internal-action-button:hover,
.internal-action-button:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
    transform: translateY(-1px);
}

.internal-action-button.is-danger {
    background: rgba(225, 208, 205, 0.8);
    border-color: rgba(162, 86, 73, 0.18);
    color: #8d3d33;
}

.internal-action-button.is-danger:hover,
.internal-action-button.is-danger:focus-visible {
    background: rgba(233, 216, 213, 0.96);
    color: #7d352c;
}

.internal-helper-note,
.internal-empty-state {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.internal-backup-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.internal-backup-card {
    padding: 22px 22px 20px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.92);
}

.internal-backup-accordion {
    padding: 0;
    overflow: hidden;
}

.internal-backup-summary {
    display: grid;
    gap: 18px;
    padding: 22px;
    cursor: pointer;
    list-style: none;
}

.internal-backup-summary::-webkit-details-marker {
    display: none;
}

.internal-backup-summary-main {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.internal-backup-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.internal-backup-head h3 {
    margin-top: 8px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.internal-backup-summary h3 {
    margin-top: 8px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.internal-backup-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(196, 220, 192, 0.42);
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.internal-backup-summary-arrow {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 999px;
    border: 1px solid rgba(46, 39, 35, 0.1);
    background: rgba(251, 248, 242, 0.95);
    color: var(--logo-green);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.internal-backup-accordion[open] .internal-backup-summary-arrow {
    transform: rotate(180deg);
    background: rgba(196, 220, 192, 0.72);
}

.internal-backup-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 0;
}

.internal-backup-meta dt {
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.internal-backup-meta dd {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.internal-backup-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.internal-backup-target {
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(251, 248, 242, 0.9);
    border: 1px solid rgba(46, 39, 35, 0.08);
}

.internal-backup-target strong {
    color: var(--text);
    font-size: 0.95rem;
}

.internal-backup-target span {
    color: var(--text-soft);
    font-size: 0.84rem;
}

.internal-backup-target small {
    color: rgba(79, 64, 56, 0.78);
    font-size: 0.74rem;
    line-height: 1.45;
}

.internal-backup-target.is-warning {
    border-color: rgba(171, 108, 63, 0.24);
    background: rgba(255, 247, 237, 0.95);
}

.internal-backup-warning-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.internal-backup-warning-list p {
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 247, 237, 0.95);
    border: 1px solid rgba(171, 108, 63, 0.2);
    color: #8a5b3d;
    font-size: 0.88rem;
    line-height: 1.55;
}

.internal-backup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.internal-backup-accordion-panel {
    padding: 0 22px 22px;
    border-top: 1px solid rgba(46, 39, 35, 0.08);
}

.internal-inline-form {
    margin: 0;
}

.internal-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.internal-social-placeholder {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.internal-social-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(196, 220, 192, 0.42);
    color: var(--logo-green);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.internal-social-pill-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.internal-social-pill-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.internal-social-feed-placeholder {
    padding: 18px 18px 16px;
    border: 1px dashed rgba(41, 70, 51, 0.26);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(234, 242, 229, 0.34), rgba(255, 252, 247, 0.94));
}

.internal-social-feed-placeholder strong {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
}

.internal-social-feed-placeholder p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.internal-social-news-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.internal-social-feed-list {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.internal-social-feed-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.92);
}

.internal-social-feed-thumb {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
}

.internal-social-feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.internal-social-feed-copy {
    display: grid;
    gap: 12px;
}

.internal-social-feed-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.internal-social-feed-copy h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.02;
}

.internal-social-feed-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
}

.internal-social-feed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.internal-action-button.is-subtle {
    background: rgba(251, 248, 242, 0.9);
    border-color: rgba(46, 39, 35, 0.12);
    color: var(--text-soft);
}

.internal-social-feed-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.internal-social-feed-current-image {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 18px;
    background: rgba(251, 248, 242, 0.82);
}

.internal-social-feed-current-image img {
    width: min(100%, 280px);
    border-radius: 14px;
}

.internal-social-news-card {
    padding: 16px 16px 14px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.88);
}

.internal-social-news-card h3 {
    margin: 14px 0 12px;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.internal-social-news-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.internal-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.internal-user-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.internal-content-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    margin-top: 18px;
}

.internal-content-preview {
    display: grid;
    gap: 14px;
    align-content: start;
}

.internal-content-preview-panel {
    display: grid;
    gap: 12px;
}

.internal-content-preview-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.88);
}

.internal-content-preview-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.internal-content-preview-image-compact {
    max-width: 88px;
    border-radius: 12px;
}

.internal-content-preview-image-compact img {
    aspect-ratio: 1 / 1;
}

.internal-content-preview-image-hero {
    position: relative;
    min-height: 520px;
    background: rgba(46, 39, 35, 0.08);
}

.internal-content-preview-image-hero img {
    height: 100%;
    aspect-ratio: auto;
}

.internal-content-preview-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    background: linear-gradient(180deg, rgba(20, 16, 15, 0.08), rgba(20, 16, 15, 0.24));
}

.internal-content-preview-box {
    width: min(100%, 310px);
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(46, 39, 35, 0.24);
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 28px rgba(20, 16, 15, 0.12);
    text-align: center;
    color: #f9f4ee;
}

.internal-content-preview-kicker {
    display: block;
    margin-bottom: 6px;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.internal-content-preview-box h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.1vw, 2.15rem);
    line-height: 0.98;
    font-weight: 600;
}

.internal-content-note {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.internal-content-reset-form {
    margin-top: 4px;
}

.internal-content-reset-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(188, 81, 69, 0.18);
    border-radius: 10px;
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.internal-content-reset-button:hover,
.internal-content-reset-button:focus-visible {
    background: rgba(188, 81, 69, 0.2);
    transform: translateY(-1px);
    outline: none;
}

.internal-content-form {
    display: grid;
    gap: 14px;
}

.internal-content-form label {
    display: grid;
    gap: 8px;
}

.internal-content-form span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.internal-content-form input[type="text"],
.internal-content-form input[type="file"],
.internal-content-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.14);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.internal-content-form input[type="file"] {
    padding: 10px 12px;
}

.internal-content-form small {
    color: var(--text-soft);
    line-height: 1.6;
}

.internal-content-preview-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.internal-content-preview-header h2 {
    margin: 8px 0 0;
}

.internal-content-preview-header p {
    max-width: 420px;
    margin: 0;
}

.internal-page-switcher-card {
    padding-top: 20px;
    padding-bottom: 20px;
}

.internal-page-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.internal-page-switcher-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.internal-page-switcher-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid rgba(41, 70, 51, 0.14);
    border-radius: 999px;
    background: rgba(251, 248, 242, 0.76);
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.internal-page-switcher-nav a:hover,
.internal-page-switcher-nav a:focus-visible {
    background: rgba(196, 220, 192, 0.62);
    color: var(--text);
    outline: none;
}

.internal-page-switcher-nav a.is-active {
    background: rgba(196, 220, 192, 0.82);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(46, 39, 35, 0.08);
}

.internal-page-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.internal-page-overview-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.84);
}

.internal-page-overview-card h3 {
    margin: 0;
}

.internal-page-overview-card p {
    margin: 0;
}

.internal-home-preview-shell {
    display: grid;
    gap: 22px;
}

.internal-home-block,
.internal-home-dynamic-note {
    padding: 18px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.84);
}

.internal-home-block.is-active {
    border-color: rgba(41, 70, 51, 0.28);
    box-shadow: 0 18px 36px rgba(41, 70, 51, 0.08);
}

.internal-home-block-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.internal-home-block-label,
.internal-home-dynamic-title {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.internal-home-block-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(41, 70, 51, 0.16);
    border-radius: 999px;
    background: rgba(196, 220, 192, 0.48);
    color: var(--logo-green);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.internal-home-block-edit:hover,
.internal-home-block-edit:focus-visible {
    background: rgba(196, 220, 192, 0.82);
    color: var(--text);
    outline: none;
}

.internal-home-dynamic-note p {
    margin: 8px 0 0;
}

.internal-home-preview-stage {
    max-width: 760px;
    margin: 0 auto;
}

.internal-home-preview-stage.hero {
    min-height: 0;
}

.internal-home-preview-stage .hero-image {
    height: 320px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-home-preview-stage .hero-copy-box {
    width: min(100%, 332px);
    max-width: 332px;
    padding: 14px 18px 12px;
    overflow: hidden;
}

.internal-home-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-home-preview-stage .hero-copy h1,
.internal-home-preview-stage .hero-copy h2 {
    margin: 0;
    max-width: 100%;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.7vw, 2.15rem);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.internal-home-preview-stage.home-intro,
.internal-home-preview-stage.shop-banner,
.internal-home-preview-stage.next-step {
    margin-bottom: 0;
}

.internal-home-preview-stage .home-intro-card {
    padding: 28px 24px;
}

.internal-home-preview-stage .home-intro h2,
.internal-home-preview-stage .home-intro-card h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.internal-home-preview-stage .home-intro-copy {
    max-width: 640px;
}

.internal-home-preview-stage .shop-banner-image {
    height: 260px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-home-preview-stage .shop-banner-copy {
    padding-top: 18px;
}

.internal-home-preview-stage .shop-banner-copy h2 {
    max-width: 13ch;
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.internal-home-preview-stage .next-step {
    text-align: center;
}

.internal-home-preview-stage .next-step h2,
.internal-home-preview-stage.next-step h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.internal-home-preview-stage .next-actions,
.internal-home-preview-stage.next-step .next-actions {
    gap: 20px;
}

.internal-home-preview-stage .next-image {
    margin-top: 24px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-home-preview-stage .next-image img,
.internal-home-preview-stage .shop-banner-image img {
    opacity: 1;
    pointer-events: auto;
}

.internal-about-preview-stage.legal-hero {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-about-preview-stage .legal-hero-image {
    width: 100%;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-about-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-about-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-about-preview-stage .legal-hero-box h1,
.internal-about-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-about-preview-stage.about-story-section {
    margin-bottom: 0;
}

.internal-about-preview-stage .about-story-card {
    max-width: 100%;
    padding: 28px 24px;
}

.internal-about-preview-stage .about-story-copy {
    gap: 14px;
}

.internal-about-preview-card {
    max-width: 100%;
}

.internal-services-preview-stage.legal-hero,
.internal-services-preview-stage.services-intro-section,
.internal-services-preview-stage.services-band {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-services-preview-stage .legal-hero-image,
.internal-services-preview-stage .services-band-image {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-services-preview-stage .legal-hero-image {
    height: 280px;
}

.internal-services-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-services-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-services-preview-stage .legal-hero-box h1,
.internal-services-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-services-preview-stage .services-intro-card,
.internal-services-preview-card {
    max-width: 100%;
}

.internal-services-preview-stage .services-intro-card {
    padding: 28px 24px;
}

.internal-services-preview-stage .services-band-image {
    height: 260px;
}

.internal-services-preview-stage .services-band-image.services-band-image-small {
    height: 220px;
}

.internal-news-preview-stage.legal-hero,
.internal-news-preview-stage.news-page-section {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-news-preview-stage .legal-hero-image {
    width: 100%;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-news-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-news-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-news-preview-stage .legal-hero-box h1,
.internal-news-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-news-preview-stage .news-page-head {
    max-width: 100%;
    margin-bottom: 0;
    padding: 28px 24px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 14px 30px rgba(46, 39, 35, 0.06);
}

.internal-gallery-preview-stage.legal-hero,
.internal-gallery-preview-stage.gallery-page-hero,
.internal-gallery-preview-stage.gallery-page-section {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-gallery-preview-stage .legal-hero-image {
    width: 100%;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-gallery-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-gallery-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-gallery-preview-stage .legal-hero-box h1,
.internal-gallery-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-gallery-preview-stage .gallery-page-head {
    max-width: 100%;
    margin-bottom: 0;
    padding: 28px 24px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 14px 30px rgba(46, 39, 35, 0.06);
}

.internal-reviews-preview-stage.legal-hero,
.internal-reviews-preview-stage.review-form-section {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-reviews-preview-stage .legal-hero-image {
    width: 100%;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-reviews-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-reviews-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-reviews-preview-stage .legal-hero-box h1,
.internal-reviews-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-reviews-preview-stage .review-form-card {
    max-width: 100%;
    margin: 0;
    padding: 28px 24px;
}

.internal-contact-preview-stage.legal-hero,
.internal-contact-preview-stage.contact-info-card {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-contact-preview-stage .legal-hero-image {
    width: 100%;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-contact-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-contact-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-contact-preview-stage .legal-hero-box h1,
.internal-contact-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-contact-preview-stage.contact-info-card {
    padding: 28px 24px;
}

.internal-legal-preview-stage.legal-hero,
.internal-legal-preview-card {
    margin-top: 0;
    margin-bottom: 0;
}

.internal-legal-preview-stage .legal-hero-image {
    width: 100%;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    background-attachment: scroll;
}

.internal-legal-preview-stage .legal-hero-box {
    max-width: 320px;
    padding: 14px 16px 12px;
    overflow: hidden;
}

.internal-legal-preview-stage .hero-kicker {
    font-size: 0.58rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.internal-legal-preview-stage .legal-hero-box h1,
.internal-legal-preview-stage .legal-hero-box h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
}

.internal-legal-preview-card {
    max-width: 100%;
    padding: 28px 24px;
}

.internal-content-layout {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 18px;
}

.internal-contact-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.internal-contact-fields-grid label {
    display: grid;
    gap: 8px;
}

.internal-content-aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.internal-editor-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.internal-editor-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 15, 0.42);
    backdrop-filter: blur(3px);
}

.internal-editor-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.internal-content-card-modal {
    margin: 0;
}

.internal-editor-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.94);
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1;
}

.internal-editor-lightbox-close:hover,
.internal-editor-lightbox-close:focus-visible {
    background: #fffdfa;
    color: var(--logo-green);
    outline: none;
}

.internal-user-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.internal-user-card {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.88);
}

.internal-user-card strong {
    color: var(--text);
}

.internal-user-card span {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(196, 220, 192, 0.48);
    color: var(--logo-green);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.internal-user-delete-form {
    margin-top: 6px;
}

.internal-user-delete-form button {
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(188, 81, 69, 0.18);
    border-radius: 10px;
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
    font: inherit;
    cursor: pointer;
}

.internal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.internal-gallery-bulk-form {
    display: grid;
    gap: 16px;
}

.internal-gallery-bulk-actions {
    display: flex;
    justify-content: flex-end;
}

.internal-gallery-bulk-actions-bottom {
    justify-content: flex-start;
}

.internal-gallery-delete-selected {
    width: fit-content;
    padding: 10px 14px;
    border: 1px solid rgba(188, 81, 69, 0.18);
    border-radius: 10px;
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
    font: inherit;
    cursor: pointer;
}

.internal-gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 12px 28px rgba(46, 39, 35, 0.06);
}

.internal-gallery-select {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.94);
    box-shadow: 0 8px 18px rgba(46, 39, 35, 0.1);
}

.internal-gallery-select span {
    color: var(--text);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.internal-gallery-select input {
    margin: 0;
}

.internal-gallery-card figure {
    margin: 0;
    aspect-ratio: 1 / 1;
}

.internal-gallery-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.internal-gallery-card-copy {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.internal-gallery-card-copy p {
    margin: 0;
    color: var(--text-soft);
    word-break: break-word;
    font-size: 0.8rem;
    line-height: 1.4;
}

.internal-review-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.internal-review-column {
    display: grid;
    gap: 18px;
    align-content: start;
}

.internal-review-column-approved {
    margin-top: 10px;
}

.internal-review-column h2 {
    margin: 0;
}

.internal-review-card {
    padding: 22px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 14px 30px rgba(46, 39, 35, 0.06);
}

.internal-review-card-compact {
    padding: 0;
    overflow: hidden;
}

.internal-review-summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.internal-review-summary::-webkit-details-marker {
    display: none;
}

.internal-review-summary-main {
    display: grid;
    gap: 8px;
}

.internal-review-summary-email {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.internal-review-details {
    padding: 0 20px 20px;
}

.internal-review-meta {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

.internal-review-meta span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.internal-review-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.internal-review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-review-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    border-radius: 10px;
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.internal-review-actions button:hover,
.internal-review-actions button:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.internal-review-actions .is-danger {
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
    border-color: rgba(188, 81, 69, 0.18);
}

.internal-news-list {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.internal-news-card {
    padding: 22px;
}

.internal-news-accordion {
    padding: 0;
    overflow: hidden;
}

.internal-news-accordion[open] {
    background: rgba(255, 252, 247, 0.92);
}

.internal-news-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    cursor: pointer;
    list-style: none;
}

.internal-news-summary::-webkit-details-marker {
    display: none;
}

.internal-news-summary-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.internal-news-summary-copy .internal-news-date {
    margin: 0;
}

.internal-news-summary-copy h3 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.05;
}

.internal-news-summary-arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(46, 39, 35, 0.1);
    background: rgba(251, 248, 242, 0.95);
    color: var(--logo-green);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.internal-news-accordion[open] .internal-news-summary-arrow {
    transform: rotate(180deg);
    background: rgba(196, 220, 192, 0.72);
}

.internal-news-accordion-panel {
    padding: 0 22px 22px;
    border-top: 1px solid rgba(46, 39, 35, 0.08);
}

.internal-news-form {
    display: grid;
    gap: 14px;
}

.internal-news-form label {
    display: grid;
    gap: 8px;
}

.internal-news-form span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.internal-news-form input[type="date"],
.internal-news-form input[type="text"],
.internal-news-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(46, 39, 35, 0.14);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--text);
    font: inherit;
}

.internal-news-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.internal-news-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
}

.internal-news-checkbox input {
    margin-top: 2px;
}

.internal-news-checkbox span {
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
    line-height: 1.6;
}

.internal-news-social-prep {
    display: grid;
    gap: 14px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(46, 39, 35, 0.08);
    border-radius: 18px;
    background: rgba(251, 248, 242, 0.72);
}

.internal-news-social-title {
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.internal-news-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.internal-news-save,
.internal-news-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.internal-news-save {
    width: fit-content;
    padding: 11px 16px;
    border: 1px solid rgba(41, 70, 51, 0.18);
    background: rgba(196, 220, 192, 0.72);
    color: var(--logo-green);
}

.internal-news-delete {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(188, 81, 69, 0.18);
    background: rgba(188, 81, 69, 0.12);
    color: #8d3d33;
    font-size: 1.5rem;
    line-height: 1;
}

.internal-news-save:hover,
.internal-news-save:focus-visible,
.internal-news-delete:hover,
.internal-news-delete:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.internal-news-save:hover,
.internal-news-save:focus-visible {
    background: rgba(196, 220, 192, 0.95);
    color: var(--text);
}

.internal-news-delete:hover,
.internal-news-delete:focus-visible {
    background: rgba(188, 81, 69, 0.2);
}

.internal-tile {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.internal-tile span {
    color: var(--logo-green);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.internal-tile a {
    width: fit-content;
}

@media (max-width: 980px) {
    .brand-row,
    .feed-grid {
        grid-template-columns: 1fr;
    }

    .primary-nav,
    .secondary-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-row {
        gap: 12px;
    }

    .brand {
        width: 176px;
    }

    .site-header-inner {
        padding: 0 22px 10px;
    }

    .feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-news-list {
        grid-template-columns: 1fr;
    }

    .home-social-feed-list {
        grid-template-columns: 1fr;
    }

    .footer-primary {
        max-width: none;
        padding-right: 0;
    }

    .footer-grid,
    .footer-secondary-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-secondary {
        padding-left: 0;
    }

    .internal-layout,
    .internal-dashboard-grid,
    .internal-review-section,
    .internal-user-grid,
    .internal-user-list,
    .internal-content-grid {
        grid-template-columns: 1fr;
    }

    .internal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .internal-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    :root {
        --header-offset: 92px;
    }

    .page-shell {
        padding: calc(var(--header-offset) + 30px) 14px 24px;
    }

    .home-intro-card {
        padding: 24px 18px;
    }

    .home-intro h2,
    .home-intro-card h2 {
        max-width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.7rem, 6.6vw, 2.25rem);
        line-height: 1.08;
    }

    .header-line {
        display: none;
    }

    .site-header {
        box-shadow: 0 14px 26px rgba(46, 39, 35, 0.08);
    }

    .site-header-inner {
        padding: 0 14px 8px;
    }

    .brand-row {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 12px 0;
        align-items: center;
    }

    .primary-nav,
    .secondary-nav {
        display: none;
    }

    .brand {
        grid-column: 1;
        justify-self: start;
        width: 138px;
        margin: 0;
    }

    .site-header.is-condensed .brand {
        width: 116px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-column: 3;
    }

    .mobile-menu-panel {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
    }

    .site-header.menu-open .mobile-menu-panel {
        max-height: 420px;
        opacity: 1;
        padding-top: 8px;
    }

    .mobile-menu-nav {
        display: grid;
        gap: 8px;
        padding: 0 0 8px;
    }

    .mobile-menu-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 5px;
        color: var(--logo-green);
        font-size: 0.82rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:focus-visible {
        background: rgba(196, 220, 192, 0.62);
        color: var(--text);
    }

    .mobile-menu-nav a.is-active {
        background: rgba(196, 220, 192, 0.82);
        color: var(--text);
        box-shadow: inset 0 0 0 1px rgba(46, 39, 35, 0.08);
        font-weight: 600;
    }

    .mobile-menu-nav a[aria-current="page"] {
        background: rgba(196, 220, 192, 0.82);
        color: var(--text);
        box-shadow: inset 0 0 0 1px rgba(46, 39, 35, 0.08);
        font-weight: 600;
    }

    .hero-image {
        min-height: 320px;
        background-attachment: scroll;
    }

    .legal-hero-image {
        height: 260px;
        background-attachment: scroll;
    }

    .hero,
    .legal-hero {
        margin-top: -40px;
    }

    .hero-copy {
        padding-left: 20px;
        padding-right: 20px;
        align-content: center;
    }

    .hero-copy-box {
        width: min(100%, 360px);
        max-width: calc(100vw - 40px);
        margin: 0 auto;
        box-sizing: border-box;
        padding: 14px 30px 12px;
        overflow: hidden;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(1.35rem, 6vw, 1.95rem);
        line-height: 1.14;
    }

    .hero-copy-box {
        border-radius: 18px;
    }

    .hero-kicker {
        font-size: 0.64rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .shop-banner-image,
    .next-image {
        height: 220px;
        background-attachment: scroll;
    }

    .shop-banner-copy h2 {
        max-width: calc(100% - 60px);
        font-size: clamp(1.75rem, 7vw, 2.45rem);
        line-height: 1.08;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .error-page-card {
        padding: 28px 22px 26px;
    }

    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .internal-backup-summary-main,
    .internal-backup-head,
    .internal-inline-actions,
    .internal-backup-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .internal-backup-meta {
        grid-template-columns: 1fr;
    }

    .internal-backup-target {
        min-width: 0;
    }

    .internal-backup-summary {
        padding: 18px;
    }

    .internal-backup-accordion-panel {
        padding: 0 18px 18px;
    }

    .internal-social-grid {
        grid-template-columns: 1fr;
    }

    .internal-form-field-row {
        flex-direction: column;
    }

    .internal-upload-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internal-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-highlights-grid {
        grid-template-columns: 1fr;
    }

    .home-news-card,
    .news-item-card,
    .internal-news-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .services-grid,
    .services-bottom-grid,
    .contact-top-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .internal-content-preview-header,
    .internal-home-block-toolbar,
    .internal-page-switcher {
        flex-direction: column;
        align-items: flex-start;
    }

    .internal-social-feed-card,
    .internal-social-feed-editor-grid {
        grid-template-columns: 1fr;
    }

    .internal-page-overview-grid {
        grid-template-columns: 1fr;
    }

    .internal-content-layout {
        grid-template-columns: 1fr;
    }

    .internal-contact-fields-grid {
        grid-template-columns: 1fr;
    }

    .internal-editor-lightbox {
        padding: 12px;
    }

    .internal-editor-lightbox-dialog {
        max-height: calc(100vh - 24px);
    }

    .internal-home-block,
    .internal-home-dynamic-note {
        padding: 16px;
        border-radius: 18px;
    }

    .internal-home-preview-stage .hero-image {
        height: 240px;
    }

    .internal-home-preview-stage .shop-banner-image,
    .internal-home-preview-stage .next-image {
        height: 220px;
    }

    .internal-about-preview-stage .legal-hero-image {
        height: 220px;
    }

    .internal-news-preview-stage .legal-hero-image {
        height: 220px;
    }

    .internal-news-summary {
        padding: 18px;
        gap: 14px;
    }

    .internal-news-summary-copy h3 {
        font-size: 1.45rem;
    }

    .internal-news-accordion-panel {
        padding: 0 18px 18px;
    }

    .internal-gallery-preview-stage .legal-hero-image {
        height: 220px;
    }

    .internal-reviews-preview-stage .legal-hero-image {
        height: 220px;
    }

    .internal-contact-preview-stage .legal-hero-image {
        height: 220px;
    }

    .internal-legal-preview-stage .legal-hero-image {
        height: 220px;
    }

    .internal-services-preview-stage .legal-hero-image,
    .internal-services-preview-stage .services-band-image {
        height: 220px;
    }

    .internal-services-preview-stage .services-band-image.services-band-image-small {
        height: 200px;
    }

    .services-band-image,
    .services-band-image-small {
        height: 220px;
        background-attachment: scroll;
    }

    .gallery-lightbox-dialog {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 56px 14px 20px;
    }

    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
    }

    .gallery-lightbox-nav:hover,
    .gallery-lightbox-nav:focus-visible {
        transform: translateY(calc(-50% - 1px));
    }

    .gallery-lightbox-nav.is-prev {
        left: 10px;
    }

    .gallery-lightbox-nav.is-next {
        right: 10px;
    }

    .gallery-lightbox-stage img {
        max-height: 72vh;
    }

    .review-form-card {
        padding: 24px 18px;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .next-actions,
    .footer-bottom {
        flex-direction: column;
    }

    .cookie-banner {
        padding: 14px;
    }

    .cookie-banner-card {
        max-height: calc(100vh - 28px);
        padding: 20px 18px 18px;
        border-radius: 20px;
    }

    .cookie-banner-actions,
    .cookie-settings-actions,
    .cookie-toggle {
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions,
    .cookie-settings-actions {
        display: grid;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-toggle {
        align-items: flex-start;
    }

    .page-up-button {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}
