:root {
    --color-natural-white: #F8F4EC;
    --color-cream: #EFE3D1;
    --color-brown: #7A4E2D;
    --color-green-dark: #304734;
    --color-sage: #8A9A78;
    --color-caramel: #C68A3A;
    --color-text: #2C2118;
    --color-elderberry: #5A2D4E;
    --color-white: #FFFFFF;
    --color-linen: #FBF7EF;
    --color-clay: #A66E3A;
    --color-moss: #233426;
    --color-elderberry-soft: #EEE3EA;
    --font-heading: "Cormorant Garamond", "Libre Baskerville", "Iowan Old Style", Georgia, serif;
    --font-body: "Avenir Next", "Source Sans 3", "Lato", "Helvetica Neue", sans-serif;
    --shadow-soft: 0 28px 90px rgba(44, 33, 24, 0.14);
    --shadow-card: 0 18px 54px rgba(44, 33, 24, 0.12);
    --shadow-lift: 0 28px 70px rgba(44, 33, 24, 0.18);
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 42px;
    --section-padding: clamp(4rem, 8vw, 7rem);
    --shell-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-natural-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.98;
}

h1 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 9vw, 6.9rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    letter-spacing: 0;
}

h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    letter-spacing: 0;
}

p {
    margin: 0;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.85rem 1rem;
    clip: auto;
    border-radius: var(--radius-small);
    background: var(--color-green-dark);
    color: var(--color-natural-white);
}

.section-shell {
    width: min(calc(100% - 2rem), var(--shell-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(122, 78, 45, 0.15);
    background: rgba(248, 244, 236, 0.9);
    backdrop-filter: blur(18px);
}

body.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height, 32px);
}

.site-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-text);
    text-decoration: none;
}

.site-brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-green-dark);
    color: var(--color-natural-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.site-brand__text {
    display: grid;
    gap: 0.1rem;
    line-height: 1.2;
}

.site-brand__text strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0;
}

.site-brand__text span {
    color: rgba(44, 33, 24, 0.68);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.admin-bar .site-nav {
    top: calc(var(--wp-admin--admin-bar--height, 32px) + 84px);
}

.site-nav__list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.35rem);
    list-style: none;
}

.site-nav a {
    color: var(--color-text);
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--color-green-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(48, 71, 52, 0.18);
    border-radius: 999px;
    background: var(--color-natural-white);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-green-dark);
    content: "";
}

.nav-toggle__line::before {
    transform: translateY(-6px);
}

.nav-toggle__line::after {
    transform: translateY(4px);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--color-green-dark);
    border-radius: 999px;
    background: var(--color-green-dark);
    color: var(--color-natural-white);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    border-color: #25382a;
    background: #25382a;
    transform: translateY(-1px);
}

.button--secondary {
    background: transparent;
    color: var(--color-green-dark);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    color: var(--color-natural-white);
}

.button--light {
    border-color: var(--color-natural-white);
    background: var(--color-natural-white);
    color: var(--color-green-dark);
}

.button--small {
    min-height: 42px;
    padding: 0.7rem 1rem;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7.5rem) 0 var(--section-padding);
    background:
        radial-gradient(circle at 82% 16%, rgba(198, 138, 58, 0.26), transparent 28rem),
        linear-gradient(145deg, var(--color-natural-white) 0%, var(--color-cream) 100%);
}

.page-hero {
    background:
        radial-gradient(circle at 86% 0%, rgba(198, 138, 58, 0.22), transparent 20rem),
        var(--color-cream);
}

.page-hero h1 {
    max-width: 12ch;
}

.hero::before {
    position: absolute;
    inset: auto -8rem -14rem auto;
    width: 32rem;
    height: 32rem;
    border-radius: 999px;
    background: rgba(138, 154, 120, 0.23);
    content: "";
}

.hero__grid {
    position: relative;
    display: grid;
    align-items: center;
    gap: clamp(2.5rem, 7vw, 5rem);
}

.hero__content {
    display: grid;
    gap: 1.35rem;
}

.hero__lead {
    max-width: 45rem;
    color: rgba(44, 33, 24, 0.78);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero__visual {
    position: relative;
    min-height: 420px;
}

.eyebrow {
    color: var(--color-brown);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.image-card {
    display: grid;
    min-height: 320px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-large);
    background:
        linear-gradient(135deg, rgba(48, 71, 52, 0.2), rgba(198, 138, 58, 0.32)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 14px),
        var(--color-sage);
    box-shadow: var(--shadow-soft);
    color: rgba(248, 244, 236, 0.88);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
}

.image-card--large {
    min-height: 460px;
    transform: rotate(1.5deg);
}

.image-card--story {
    background:
        linear-gradient(135deg, rgba(122, 78, 45, 0.45), rgba(239, 227, 209, 0.16)),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px),
        var(--color-brown);
}

.image-card--elderberry {
    background:
        radial-gradient(circle at 70% 28%, rgba(248, 244, 236, 0.28), transparent 9rem),
        linear-gradient(135deg, var(--color-elderberry), #2f2130);
}

.page-section {
    padding: var(--section-padding) 0;
}

.page-section--cream {
    background: var(--color-cream);
}

.page-section--green {
    background:
        radial-gradient(circle at 8% 12%, rgba(198, 138, 58, 0.18), transparent 22rem),
        var(--color-green-dark);
    color: var(--color-natural-white);
}

.page-section--green h2,
.page-section--green h3 {
    color: var(--color-natural-white);
}

.section-heading {
    display: grid;
    gap: 0.75rem;
    max-width: 760px;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--inline {
    max-width: none;
}

.section-heading--inline > p,
.section-heading--inline div + p {
    max-width: 40rem;
    color: rgba(248, 244, 236, 0.78);
}

.quick-grid,
.product-grid,
.contact-grid,
.site-footer__grid {
    display: grid;
    gap: 1rem;
}

.quick-card {
    display: grid;
    min-height: 230px;
    align-content: space-between;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 1.6rem);
    border: 1px solid rgba(122, 78, 45, 0.16);
    border-radius: var(--radius-medium);
    background: rgba(248, 244, 236, 0.62);
    color: var(--color-text);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover,
.quick-card:focus-visible {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.quick-card span {
    color: var(--color-caramel);
    font-weight: 900;
}

.quick-card p,
.prose p,
.feature-band p,
.trust-section p,
.tours-section p,
.map-placeholder p {
    color: rgba(44, 33, 24, 0.76);
}

.split-layout {
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.prose {
    display: grid;
    gap: 1rem;
    max-width: 660px;
}

.text-link {
    color: var(--color-green-dark);
    font-weight: 900;
}

.product-grid {
    gap: 1.25rem;
}

.product-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(248, 244, 236, 0.16);
    border-radius: var(--radius-medium);
    background: var(--color-natural-white);
    color: var(--color-text);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.product-card__image {
    display: grid;
    min-height: 190px;
    place-items: center;
    background:
        radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.36), transparent 5rem),
        var(--color-cream);
    color: rgba(44, 33, 24, 0.35);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__image--sage {
    background-color: var(--color-sage);
}

.product-card__image--caramel {
    background-color: var(--color-caramel);
}

.product-card__image--elderberry {
    background-color: var(--color-elderberry);
    color: rgba(248, 244, 236, 0.55);
}

.product-card__image--brown {
    background-color: var(--color-brown);
    color: rgba(248, 244, 236, 0.55);
}

.product-card__content {
    display: grid;
    gap: 0.9rem;
    padding: 1.15rem;
}

.product-card__content p {
    color: rgba(44, 33, 24, 0.74);
    font-size: 0.96rem;
}

.product-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(198, 138, 58, 0.18);
    color: var(--color-brown);
    font-size: 0.72rem;
    font-weight: 900;
}

.badge--sage {
    background: rgba(138, 154, 120, 0.22);
    color: var(--color-green-dark);
}

.badge--outline {
    border: 1px solid rgba(90, 45, 78, 0.35);
    background: transparent;
    color: var(--color-elderberry);
}

.product-card__meta {
    display: grid;
    gap: 0.1rem;
    margin-top: auto;
}

.product-card__meta strong {
    font-size: 1.04rem;
}

.product-card__meta span {
    color: rgba(44, 33, 24, 0.58);
    font-size: 0.88rem;
}

.product-card__button {
    justify-self: start;
}

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.feature-band {
    display: grid;
    gap: 2rem;
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 94% 10%, rgba(198, 138, 58, 0.2), transparent 16rem),
        var(--color-cream);
}

.feature-band__content {
    display: grid;
    gap: 1rem;
}

.feature-band__aside {
    display: grid;
    gap: 0.4rem;
    align-content: center;
    padding: 1.4rem;
    border-radius: var(--radius-medium);
    background: var(--color-natural-white);
}

.feature-band__aside strong {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.9;
}

.feature-band__aside span {
    color: var(--color-green-dark);
    font-weight: 900;
}

.video-section {
    background:
        radial-gradient(circle at 82% 18%, rgba(138, 154, 120, 0.14), transparent 22rem),
        linear-gradient(180deg, rgba(248, 244, 236, 0.84), rgba(239, 227, 209, 0.72));
}

.video-section__grid {
    display: grid;
    gap: clamp(1.5rem, 5vw, 3rem);
    align-items: center;
}

.video-section__media {
    display: grid;
    gap: 0.75rem;
}

.video-poster,
.video-player {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(122, 78, 45, 0.15);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 9;
}

.video-poster {
    position: relative;
    display: block;
    padding: 0;
    background: var(--color-green-dark);
    color: var(--color-natural-white);
    cursor: pointer;
}

.video-poster img,
.video-player {
    display: block;
    height: auto;
    object-fit: cover;
}

.video-poster img {
    width: 100%;
    height: 100%;
    transition: transform 240ms ease, filter 240ms ease;
}

.video-poster__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, rgba(35, 52, 38, 0.08), rgba(35, 52, 38, 0.36));
    color: var(--color-natural-white);
    font-weight: 900;
    text-align: center;
}

.video-poster__play {
    display: grid;
    width: clamp(4rem, 8vw, 5.75rem);
    height: clamp(4rem, 8vw, 5.75rem);
    place-items: center;
    border: 1px solid rgba(248, 244, 236, 0.74);
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.9);
    box-shadow: 0 18px 42px rgba(44, 33, 24, 0.28);
}

.video-poster__play::before {
    width: 0;
    height: 0;
    margin-left: 0.26rem;
    border-top: 0.72rem solid transparent;
    border-bottom: 0.72rem solid transparent;
    border-left: 1.08rem solid var(--color-green-dark);
    content: "";
}

.video-poster:hover img,
.video-poster:focus-visible img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.025);
}

.video-poster:focus-visible {
    outline: 3px solid var(--color-caramel);
    outline-offset: 4px;
}

.video-player {
    background: var(--color-text);
}

.elderberry-section {
    background:
        linear-gradient(90deg, rgba(90, 45, 78, 0.08), transparent 46%),
        var(--color-natural-white);
}

.values-list {
    display: grid;
    gap: 1rem;
}

.values-list div {
    display: grid;
    gap: 0.25rem;
    padding: 1.15rem;
    border-left: 4px solid var(--color-caramel);
    border-radius: var(--radius-small);
    background: rgba(248, 244, 236, 0.7);
}

.values-list strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1;
}

.map-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(198, 138, 58, 0.16), transparent 22rem),
        radial-gradient(circle at 10% 70%, rgba(138, 154, 120, 0.16), transparent 20rem),
        var(--color-natural-white);
}

.map-section__grid {
    display: grid;
    gap: clamp(1.75rem, 5vw, 3.5rem);
    align-items: center;
}

.map-card {
    display: grid;
    gap: 0.8rem;
}

.map-card__preview,
.map-card__iframe {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(122, 78, 45, 0.16);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-lift);
    aspect-ratio: 16 / 10;
}

.map-card__preview {
    position: relative;
    display: grid;
    min-height: 320px;
    align-content: end;
    justify-items: start;
    gap: 0.7rem;
    padding: clamp(1.3rem, 4vw, 2rem);
    background:
        linear-gradient(180deg, rgba(35, 52, 38, 0.04), rgba(35, 52, 38, 0.72)),
        radial-gradient(circle at 18% 22%, rgba(248, 244, 236, 0.38), transparent 8rem),
        radial-gradient(circle at 78% 36%, rgba(198, 138, 58, 0.35), transparent 11rem),
        linear-gradient(135deg, rgba(138, 154, 120, 0.92), rgba(48, 71, 52, 0.86));
    color: var(--color-natural-white);
    cursor: pointer;
    text-align: left;
}

.map-card__preview::before {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(248, 244, 236, 0.24);
    border-radius: calc(var(--radius-large) - 12px);
    pointer-events: none;
    content: "";
}

.map-card__preview::after {
    position: absolute;
    top: 14%;
    right: 12%;
    width: clamp(7rem, 17vw, 12rem);
    height: clamp(7rem, 17vw, 12rem);
    border: 1px solid rgba(248, 244, 236, 0.24);
    border-radius: 48% 52% 55% 45%;
    background:
        linear-gradient(135deg, rgba(248, 244, 236, 0.22), rgba(198, 138, 58, 0.12)),
        repeating-linear-gradient(45deg, rgba(248, 244, 236, 0.12) 0 1px, transparent 1px 12px);
    content: "";
}

.map-card__label,
.map-card__title,
.map-card__text,
.map-card__load {
    position: relative;
    z-index: 1;
}

.map-card__label {
    padding: 0.4rem 0.62rem;
    border: 1px solid rgba(248, 244, 236, 0.32);
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.12);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.map-card__title {
    max-width: 12ch;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 0.94;
}

.map-card__text {
    max-width: 27rem;
    color: rgba(248, 244, 236, 0.82);
    font-weight: 700;
}

.map-card__load {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.95);
    color: var(--color-green-dark);
    font-weight: 900;
}

.map-card__preview:hover,
.map-card__preview:focus-visible {
    box-shadow: 0 30px 80px rgba(44, 33, 24, 0.24);
}

.map-card__preview:focus-visible {
    outline: 3px solid var(--color-caramel);
    outline-offset: 4px;
}

.map-card__iframe {
    display: block;
    min-height: 360px;
    background: var(--color-cream);
}

.map-card__note {
    color: rgba(44, 33, 24, 0.62);
    font-size: 0.9rem;
    font-weight: 700;
}

.trust-section {
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.trust-section__inner {
    display: grid;
    gap: 1.2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(122, 78, 45, 0.18);
}

.tours-section {
    padding-top: 0;
}

.feature-band--quiet {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(138, 154, 120, 0.28), rgba(239, 227, 209, 0.8)),
        var(--color-cream);
}

.contact-section {
    background: var(--color-cream);
}

.map-placeholder {
    display: grid;
    gap: 0.75rem;
    align-content: center;
    min-height: 300px;
    padding: 1.5rem;
    border: 1px dashed rgba(48, 71, 52, 0.32);
    border-radius: var(--radius-large);
    background: rgba(248, 244, 236, 0.72);
}

.site-footer {
    padding: clamp(3rem, 6vw, 5rem) 0 1.4rem;
    background: var(--color-text);
    color: var(--color-natural-white);
}

.site-footer h2,
.site-footer h3 {
    color: var(--color-natural-white);
}

.site-footer h2 {
    margin-top: 0.45rem;
    max-width: 9.5ch;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.site-footer p,
.site-footer a {
    color: rgba(248, 244, 236, 0.78);
}

.site-footer__grid {
    align-items: start;
    gap: clamp(2rem, 5vw, 4rem);
}

.site-footer__bottom {
    display: flex;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 1rem;
    border-top: 1px solid rgba(248, 244, 236, 0.16);
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
}

.site-footer__bottom p {
    color: rgba(248, 244, 236, 0.66);
}

.site-footer__legal {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer__legal a {
    color: rgba(248, 244, 236, 0.66);
    font-size: 0.88rem;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: var(--color-natural-white);
}

@media (min-width: 680px) {
    .quick-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (min-width: 920px) {
    .hero__grid,
    .split-layout,
    .feature-band,
    .trust-section__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    }

    .split-layout--reverse .image-card {
        order: 2;
    }

    .section-heading--inline {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
        align-items: end;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
    }

    .video-section__grid {
        grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
    }

    .map-section__grid {
        grid-template-columns: minmax(0, 0.62fr) minmax(460px, 1fr);
    }

    .site-footer__grid {
        grid-template-columns: minmax(300px, 1.1fr) minmax(220px, 0.72fr) minmax(220px, 0.72fr);
    }
}

@media (max-width: 1060px) {
    .nav-toggle {
        display: grid;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        right: 1rem;
        left: 1rem;
        display: none;
        padding: 1rem;
        border: 1px solid rgba(122, 78, 45, 0.16);
        border-radius: var(--radius-medium);
        background: var(--color-natural-white);
        box-shadow: var(--shadow-card);
    }

    body.admin-bar .site-nav {
        top: calc(var(--wp-admin--admin-bar--height, 32px) + 76px);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav__list {
        display: grid;
        gap: 0;
    }

    .site-nav__list a {
        display: block;
        padding: 0.72rem 0;
    }

}

@media (max-width: 679px) {
    .site-brand__text span {
        display: none;
    }

    .site-brand__text strong {
        font-size: 1.05rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero__visual {
        min-height: 300px;
    }

    .image-card,
    .image-card--large {
        min-height: 300px;
    }

    .button,
    .hero__actions {
        width: 100%;
    }

    .site-footer__bottom {
        display: grid;
    }
}

.product-world--bestsellers .section-heading {
    margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.product-world--bestsellers .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 6vw, 5rem);
}

.product-world--bestsellers .section-heading--inline {
    align-items: center;
}

.product-grid--compact {
    gap: clamp(0.9rem, 2vw, 1.15rem);
}

.product-grid--compact .product-card {
    border-radius: 18px;
}

.product-grid--compact .product-card__image {
    min-height: clamp(150px, 18vw, 190px);
}

.product-grid--compact .product-card__image::after {
    display: none;
}

.product-grid--compact .product-card__content {
    min-height: 0;
    gap: 0.65rem;
    padding: 0.9rem;
}

.product-grid--compact .product-card__content h3 {
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
}

.product-grid--compact .product-card__content p {
    font-size: 0.88rem;
    line-height: 1.45;
}

.product-grid--compact .badge {
    padding: 0.25rem 0.48rem;
    font-size: 0.6rem;
}

.product-grid--compact .product-card__meta strong {
    font-size: 0.95rem;
}

.product-grid--compact .product-card__button {
    min-height: 40px;
    padding: 0.62rem 0.9rem;
    font-size: 0.82rem;
}

.map-card__iframe {
    border-radius: var(--radius-medium);
}

.tours-section__band {
    align-items: center;
}

.tours-section__band > div {
    display: grid;
    gap: 0.55rem;
}

.tours-section__band .button {
    align-self: center;
    justify-self: end;
}

@media (max-width: 919px) {
    .tours-section__band .button {
        justify-self: start;
    }
}

.tours-section {
    display: grid;
    min-height: clamp(360px, 36vw, 520px);
    align-items: center;
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.tours-section__band {
    width: min(calc(100% - clamp(2rem, 5vw, 4rem)), var(--shell-width));
}

/*
 * Design refinement layer.
 * Keeps Phase 1 structure intact while giving the site a warmer, more handcrafted visual voice.
 */
body {
    background:
        radial-gradient(circle at 12% 0%, rgba(198, 138, 58, 0.1), transparent 23rem),
        linear-gradient(180deg, var(--color-linen) 0%, var(--color-natural-white) 42%, var(--color-cream) 100%);
    color: var(--color-text);
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(122, 78, 45, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 78, 45, 0.028) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 70%);
    content: "";
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.section-shell {
    width: min(calc(100% - clamp(2rem, 5vw, 4rem)), var(--shell-width));
}

.site-header {
    border-bottom: 1px solid rgba(122, 78, 45, 0.12);
    background:
        linear-gradient(180deg, rgba(248, 244, 236, 0.96), rgba(248, 244, 236, 0.86));
    box-shadow: 0 10px 36px rgba(44, 33, 24, 0.055);
}

.site-brand__mark {
    background:
        radial-gradient(circle at 35% 25%, rgba(248, 244, 236, 0.22), transparent 42%),
        var(--color-green-dark);
    box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.14);
}

.site-brand__text strong {
    color: var(--color-green-dark);
}

.site-nav a {
    position: relative;
    color: rgba(44, 33, 24, 0.82);
    letter-spacing: 0.01em;
}

.site-nav__list > li > a::after {
    position: absolute;
    right: 0;
    bottom: -0.28rem;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--color-caramel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    content: "";
}

.site-nav__list > li > a:hover::after,
.site-nav__list > li > a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    min-height: 50px;
    padding: 0.92rem 1.28rem;
    border-color: var(--color-green-dark);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        var(--color-green-dark);
    box-shadow: 0 12px 26px rgba(48, 71, 52, 0.18);
    font-size: 0.94rem;
    letter-spacing: 0.015em;
}

.button:hover,
.button:focus-visible {
    border-color: var(--color-moss);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        var(--color-moss);
    box-shadow: 0 15px 32px rgba(48, 71, 52, 0.22);
}

.button--secondary {
    border-color: rgba(48, 71, 52, 0.48);
    background: rgba(248, 244, 236, 0.42);
    box-shadow: none;
    color: var(--color-green-dark);
}

.button--light {
    border-color: rgba(248, 244, 236, 0.75);
    background: rgba(248, 244, 236, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.hero {
    isolation: isolate;
    padding: clamp(4.5rem, 8vw, 8.25rem) 0 clamp(4.8rem, 8vw, 7.6rem);
    background:
        radial-gradient(circle at 18% 18%, rgba(248, 244, 236, 0.92), transparent 18rem),
        radial-gradient(circle at 79% 22%, rgba(198, 138, 58, 0.31), transparent 26rem),
        radial-gradient(circle at 92% 78%, rgba(138, 154, 120, 0.31), transparent 23rem),
        linear-gradient(135deg, var(--color-linen) 0%, var(--color-cream) 72%, #E5D1B5 100%);
}

.hero::after {
    position: absolute;
    z-index: -1;
    inset: 1.2rem clamp(1rem, 3vw, 2.2rem);
    border: 1px solid rgba(122, 78, 45, 0.12);
    border-radius: clamp(26px, 5vw, 58px);
    pointer-events: none;
    content: "";
}

.hero__grid {
    gap: clamp(2.6rem, 8vw, 6.5rem);
}

.hero__content {
    gap: 1.5rem;
}

.hero .eyebrow {
    width: fit-content;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(122, 78, 45, 0.18);
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.52);
    color: var(--color-brown);
}

.hero h1 {
    max-width: 10.7ch;
    color: var(--color-green-dark);
    text-shadow: 0 1px 0 rgba(248, 244, 236, 0.75);
}

.hero__lead {
    max-width: 42rem;
    color: rgba(44, 33, 24, 0.76);
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

.hero__visual {
    min-height: clamp(340px, 46vw, 560px);
}

.image-card {
    position: relative;
    border: 1px solid rgba(248, 244, 236, 0.48);
    box-shadow: var(--shadow-soft);
}

.image-card::before {
    position: absolute;
    z-index: 1;
    inset: 1rem;
    border: 1px solid rgba(248, 244, 236, 0.28);
    border-radius: calc(var(--radius-large) - 12px);
    pointer-events: none;
    content: "";
}

.image-card span {
    position: relative;
    max-width: 8ch;
    text-align: center;
    text-shadow: 0 2px 22px rgba(44, 33, 24, 0.22);
}

.image-card img {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card--large {
    min-height: clamp(360px, 44vw, 550px);
    border-radius: 48% 52% 46% 54% / 58% 42% 58% 42%;
    background:
        radial-gradient(circle at 32% 22%, rgba(248, 244, 236, 0.42), transparent 7rem),
        linear-gradient(145deg, rgba(48, 71, 52, 0.82), rgba(138, 154, 120, 0.72) 52%, rgba(198, 138, 58, 0.64)),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 18px);
    transform: rotate(1.8deg);
}

.page-section--cream {
    background:
        radial-gradient(circle at 6% 20%, rgba(198, 138, 58, 0.11), transparent 19rem),
        var(--color-cream);
}

.section-heading {
    gap: 0.95rem;
}

.section-heading .eyebrow,
.prose .eyebrow {
    color: var(--color-clay);
}

.quick-grid,
.product-grid,
.contact-grid,
.site-footer__grid {
    gap: clamp(1rem, 2vw, 1.45rem);
}

.quick-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border: 1px solid rgba(122, 78, 45, 0.13);
    background:
        linear-gradient(160deg, rgba(248, 244, 236, 0.78), rgba(239, 227, 209, 0.72)),
        var(--color-cream);
    box-shadow: 0 16px 44px rgba(44, 33, 24, 0.07);
}

.quick-card::after {
    position: absolute;
    right: -2.6rem;
    bottom: -3.6rem;
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    background: rgba(198, 138, 58, 0.12);
    content: "";
}

.quick-card span,
.quick-card h3,
.quick-card p {
    position: relative;
}

.quick-card span {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(198, 138, 58, 0.16);
}

.story-section {
    background:
        linear-gradient(180deg, var(--color-natural-white), rgba(248, 244, 236, 0.72));
}

.image-card--story {
    min-height: clamp(320px, 38vw, 480px);
    background:
        radial-gradient(circle at 32% 26%, rgba(248, 244, 236, 0.3), transparent 8rem),
        linear-gradient(145deg, rgba(122, 78, 45, 0.9), rgba(48, 71, 52, 0.72)),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 18px);
}

.page-section--green {
    background:
        radial-gradient(circle at 8% 7%, rgba(198, 138, 58, 0.2), transparent 23rem),
        radial-gradient(circle at 92% 22%, rgba(138, 154, 120, 0.18), transparent 23rem),
        linear-gradient(145deg, var(--color-green-dark), var(--color-moss));
}

.page-section--green .eyebrow {
    color: rgba(239, 227, 209, 0.8);
}

.product-world {
    position: relative;
    overflow: hidden;
}

.product-world::before {
    position: absolute;
    inset: 2rem auto auto 50%;
    width: 1px;
    height: calc(100% - 4rem);
    background: linear-gradient(to bottom, transparent, rgba(248, 244, 236, 0.18), transparent);
    content: "";
}

.product-card {
    position: relative;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(122, 78, 45, 0.12);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(248, 244, 236, 0.98)),
        var(--color-natural-white);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.13);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover,
.product-card:focus-within {
    border-color: rgba(198, 138, 58, 0.38);
    box-shadow: var(--shadow-lift);
    transform: translateY(-5px);
}

.product-card__image {
    position: relative;
    min-height: 215px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.42), transparent 5rem),
        linear-gradient(145deg, rgba(239, 227, 209, 0.95), rgba(198, 138, 58, 0.26)),
        var(--color-cream);
}

.product-card__image::after {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 5.5rem;
    height: 5.5rem;
    border: 1px solid rgba(248, 244, 236, 0.36);
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.12);
    content: "";
}

.product-card__image span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 5.2rem;
    height: 5.2rem;
    place-items: center;
    border: 1px solid rgba(248, 244, 236, 0.52);
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.18);
    color: rgba(44, 33, 24, 0.42);
    font-size: 3.5rem;
    line-height: 1;
}

.product-card__image--sage {
    background:
        radial-gradient(circle at 76% 20%, rgba(248, 244, 236, 0.34), transparent 6rem),
        linear-gradient(145deg, rgba(138, 154, 120, 0.92), rgba(48, 71, 52, 0.48));
}

.product-card__image--caramel {
    background:
        radial-gradient(circle at 24% 24%, rgba(248, 244, 236, 0.36), transparent 6rem),
        linear-gradient(145deg, rgba(198, 138, 58, 0.92), rgba(122, 78, 45, 0.58));
}

.product-card__image--elderberry {
    background:
        radial-gradient(circle at 72% 24%, rgba(248, 244, 236, 0.28), transparent 6rem),
        linear-gradient(145deg, var(--color-elderberry), #342030);
}

.product-card__image--brown {
    background:
        radial-gradient(circle at 72% 24%, rgba(248, 244, 236, 0.22), transparent 6rem),
        linear-gradient(145deg, var(--color-brown), #4D3322);
}

.product-card__image--sage span,
.product-card__image--caramel span,
.product-card__image--elderberry span,
.product-card__image--brown span {
    color: rgba(248, 244, 236, 0.76);
}

.product-card__content {
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.35rem;
}

.product-card__content h3 {
    color: var(--color-green-dark);
    font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.product-card__content h3 a {
    color: inherit;
    text-decoration: none;
}

.product-card__content h3 a:hover,
.product-card__content h3 a:focus-visible {
    color: var(--color-brown);
    text-decoration: underline;
}

.product-card__content p {
    color: rgba(44, 33, 24, 0.7);
}

.product-card__badges {
    gap: 0.42rem;
    margin-bottom: 0.1rem;
}

.badge {
    padding: 0.34rem 0.62rem;
    border: 1px solid rgba(198, 138, 58, 0.14);
    background: rgba(198, 138, 58, 0.14);
    font-size: 0.68rem;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.badge--sage {
    border-color: rgba(48, 71, 52, 0.12);
    background: rgba(138, 154, 120, 0.2);
}

.badge--outline {
    border-color: rgba(90, 45, 78, 0.28);
    background: rgba(90, 45, 78, 0.06);
}

.product-card__meta {
    margin-top: 0.25rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(122, 78, 45, 0.12);
}

.product-card__meta strong {
    color: var(--color-brown);
    font-size: 1.12rem;
}

.product-card__button {
    width: 100%;
    margin-top: 0.2rem;
}

.breadcrumbs {
    align-self: start;
    margin-bottom: clamp(1rem, 2vw, 1.4rem);
    color: rgba(44, 33, 24, 0.62);
    font-size: 0.86rem;
    font-weight: 800;
}

.breadcrumbs ol {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.breadcrumbs li + li::before {
    color: rgba(122, 78, 45, 0.5);
    content: "/";
}

.breadcrumbs a {
    color: var(--color-green-dark);
    text-decoration: none;
}

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

.product-detail {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.product-detail__content {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(122, 78, 45, 0.13);
    border-radius: var(--radius-large);
    background:
        linear-gradient(160deg, rgba(248, 244, 236, 0.9), rgba(239, 227, 209, 0.62)),
        var(--color-natural-white);
    box-shadow: var(--shadow-card);
}

.product-detail__price {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(122, 78, 45, 0.12);
    border-bottom: 1px solid rgba(122, 78, 45, 0.12);
}

.product-detail__price strong {
    color: var(--color-brown);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.product-detail__price span {
    color: rgba(44, 33, 24, 0.62);
}

.product-detail__description {
    display: grid;
    gap: 0.75rem;
}

.product-detail__description h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.product-detail__description p {
    color: rgba(44, 33, 24, 0.74);
}

.product-detail__facts {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.product-detail__facts div {
    display: grid;
    gap: 0.18rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(122, 78, 45, 0.1);
}

.product-detail__facts dt {
    color: var(--color-brown);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-detail__facts dd {
    margin: 0;
    color: rgba(44, 33, 24, 0.76);
}

.feature-band {
    border: 1px solid rgba(122, 78, 45, 0.12);
    background:
        radial-gradient(circle at 94% 10%, rgba(198, 138, 58, 0.2), transparent 16rem),
        linear-gradient(135deg, rgba(239, 227, 209, 0.95), rgba(248, 244, 236, 0.7));
    box-shadow: var(--shadow-card);
}

.feature-band__aside {
    border: 1px solid rgba(122, 78, 45, 0.12);
    background:
        linear-gradient(180deg, rgba(248, 244, 236, 0.96), rgba(239, 227, 209, 0.66));
}

.elderberry-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(90, 45, 78, 0.14), transparent 22rem),
        linear-gradient(135deg, var(--color-elderberry-soft), var(--color-natural-white) 52%, var(--color-cream));
}

.elderberry-section::before {
    position: absolute;
    top: 8%;
    right: clamp(1rem, 5vw, 6rem);
    width: clamp(9rem, 20vw, 18rem);
    height: clamp(9rem, 20vw, 18rem);
    border: 1px solid rgba(90, 45, 78, 0.12);
    border-radius: 48% 52% 56% 44%;
    background: rgba(90, 45, 78, 0.055);
    content: "";
}

.elderberry-section .prose {
    position: relative;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-left: 4px solid rgba(90, 45, 78, 0.34);
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    background: rgba(248, 244, 236, 0.36);
}

.elderberry-section .eyebrow,
.elderberry-section .text-link {
    color: var(--color-elderberry);
}

.image-card--elderberry {
    min-height: clamp(320px, 38vw, 480px);
    border-color: rgba(90, 45, 78, 0.22);
    background:
        radial-gradient(circle at 28% 22%, rgba(248, 244, 236, 0.32), transparent 7rem),
        radial-gradient(circle at 68% 68%, rgba(198, 138, 58, 0.2), transparent 9rem),
        linear-gradient(145deg, var(--color-elderberry), #2B1C2A);
}

.values-list div {
    border-left-color: var(--color-sage);
    background:
        linear-gradient(90deg, rgba(248, 244, 236, 0.86), rgba(248, 244, 236, 0.48));
    box-shadow: 0 10px 28px rgba(44, 33, 24, 0.055);
}

.trust-section {
    background: rgba(248, 244, 236, 0.74);
}

.trust-section__inner {
    gap: 1.5rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(122, 78, 45, 0.14);
}

.trust-section h2 {
    max-width: 11ch;
    color: rgba(48, 71, 52, 0.88);
    font-size: clamp(1.9rem, 3.6vw, 3.25rem);
}

.trust-section p:not(.eyebrow) {
    max-width: 58rem;
    color: rgba(44, 33, 24, 0.62);
    font-size: 0.98rem;
}

.tours-section {
    background: rgba(248, 244, 236, 0.74);
}

.feature-band--quiet {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-color: rgba(138, 154, 120, 0.18);
    background:
        linear-gradient(135deg, rgba(138, 154, 120, 0.18), rgba(239, 227, 209, 0.56));
    box-shadow: none;
}

.feature-band--quiet h2 {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.feature-band--quiet .button {
    box-shadow: none;
}

.contact-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(198, 138, 58, 0.12), transparent 18rem),
        var(--color-cream);
}

.map-placeholder {
    border: 1px dashed rgba(48, 71, 52, 0.24);
    background:
        linear-gradient(145deg, rgba(248, 244, 236, 0.86), rgba(239, 227, 209, 0.58));
    box-shadow: inset 0 0 0 8px rgba(248, 244, 236, 0.28);
}

.site-footer {
    background:
        radial-gradient(circle at 10% 12%, rgba(198, 138, 58, 0.14), transparent 20rem),
        linear-gradient(145deg, var(--color-text), #1D1712);
}

@media (min-width: 680px) {
    .product-card__content {
        min-height: 330px;
    }
}

@media (min-width: 920px) {
    .hero__grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
    }

    .feature-band--quiet {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .feature-band--quiet .button {
        align-self: center;
        white-space: nowrap;
    }

    .product-detail {
        grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
    }
}

@media (max-width: 1060px) {
    .site-nav {
        top: 84px;
        right: clamp(1rem, 4vw, 2rem);
        left: clamp(1rem, 4vw, 2rem);
        padding: 1rem 1.1rem 1.15rem;
        border-color: rgba(122, 78, 45, 0.14);
        background:
            linear-gradient(180deg, rgba(248, 244, 236, 0.98), rgba(239, 227, 209, 0.96));
    }

    .site-nav__list a {
        padding: 0.82rem 0;
        border-bottom: 1px solid rgba(122, 78, 45, 0.1);
    }

    .site-nav__list > li > a::after {
        display: none;
    }
}

@media (max-width: 679px) {
    :root {
        --section-padding: clamp(3rem, 14vw, 4.5rem);
    }

    body {
        font-size: 0.98rem;
    }

    .section-shell {
        width: min(calc(100% - 1.25rem), var(--shell-width));
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-brand {
        gap: 0.62rem;
    }

    .site-brand__mark {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .site-brand__text strong {
        max-width: 13rem;
        font-size: 1rem;
        line-height: 1;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        background: rgba(248, 244, 236, 0.74);
    }

    .site-nav {
        top: 76px;
    }

    .hero {
        padding-top: 2.8rem;
    }

    .hero::after {
        inset: 0.65rem;
        border-radius: 28px;
    }

    .hero h1 {
        max-width: 9.6ch;
        font-size: clamp(3.15rem, 16vw, 4.35rem);
    }

    .hero__lead {
        font-size: 1.03rem;
    }

    .hero__actions {
        gap: 0.65rem;
    }

    .button {
        min-height: 52px;
        padding-inline: 1rem;
    }

    .hero__visual {
        min-height: 326px;
    }

    .image-card,
    .image-card--large,
    .image-card--story,
    .image-card--elderberry {
        min-height: 292px;
        border-radius: 30px;
        transform: none;
    }

    .image-card--large {
        border-radius: 38% 62% 44% 56% / 52% 44% 56% 48%;
    }

    .section-heading {
        margin-bottom: 1.65rem;
    }

    .quick-card {
        min-height: 190px;
        border-radius: 22px;
    }

    .product-grid {
        gap: 1rem;
    }

    .product-card {
        border-radius: 24px;
    }

    .product-card:hover,
    .product-card:focus-within {
        transform: none;
    }

    .product-card__image {
        min-height: 176px;
    }

    .product-card__content {
        padding: 1rem;
    }

    .product-card__badges {
        gap: 0.35rem;
    }

    .badge {
        font-size: 0.64rem;
    }

    .feature-band,
    .feature-band--quiet {
        border-radius: 26px;
    }

    .elderberry-section .prose {
        padding: 1.1rem;
        border-left-width: 3px;
    }

    .trust-section h2,
    .feature-band--quiet h2 {
        max-width: none;
    }

    .map-placeholder {
        min-height: 240px;
        border-radius: 26px;
    }

    .map-card__preview,
    .map-card__iframe {
        min-height: 260px;
        border-radius: 26px;
    }

    .map-card__preview::before {
        inset: 0.7rem;
        border-radius: 20px;
    }

    .video-poster,
    .video-player {
        border-radius: 26px;
    }
}

/* Subpage components */
.page-hero__inner {
    display: grid;
    min-height: clamp(300px, 38vw, 470px);
    align-items: center;
}

.page-hero .prose {
    max-width: 780px;
}

.page-hero .prose > p:not(.eyebrow) {
    max-width: 46rem;
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.page-hero--elderberry {
    background:
        radial-gradient(circle at 78% 16%, rgba(90, 45, 78, 0.18), transparent 23rem),
        radial-gradient(circle at 8% 26%, rgba(198, 138, 58, 0.12), transparent 20rem),
        linear-gradient(135deg, var(--color-elderberry-soft), var(--color-natural-white) 58%, var(--color-cream));
}

.detail-grid {
    display: grid;
    gap: clamp(1rem, 2vw, 1.35rem);
}

.detail-card,
.contact-panel,
.form-placeholder,
.privacy-placeholder {
    position: relative;
    display: grid;
    gap: 0.85rem;
    padding: clamp(1.2rem, 3vw, 1.65rem);
    border: 1px solid rgba(122, 78, 45, 0.13);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(160deg, rgba(248, 244, 236, 0.82), rgba(239, 227, 209, 0.62)),
        var(--color-natural-white);
    box-shadow: 0 16px 42px rgba(44, 33, 24, 0.075);
}

.detail-card {
    overflow: hidden;
}

.detail-card::after {
    position: absolute;
    right: -2rem;
    bottom: -2.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: rgba(198, 138, 58, 0.1);
    content: "";
}

.detail-card span {
    position: relative;
    z-index: 1;
    width: fit-content;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(198, 138, 58, 0.14);
    color: var(--color-brown);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.detail-card h3,
.detail-card p {
    position: relative;
    z-index: 1;
}

.detail-card p,
.privacy-placeholder p,
.form-placeholder p,
.contact-panel p,
.category-pills + p {
    color: rgba(44, 33, 24, 0.72);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.category-pills a,
.category-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(48, 71, 52, 0.18);
    border-radius: 999px;
    background: rgba(248, 244, 236, 0.66);
    color: var(--color-green-dark);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.category-pills a:hover,
.category-pills a:focus-visible {
    border-color: var(--color-green-dark);
    background: var(--color-green-dark);
    color: var(--color-natural-white);
}

.product-category-stack {
    display: grid;
    gap: clamp(3rem, 7vw, 5.5rem);
}

.product-category {
    scroll-margin-top: 105px;
}

.product-category .section-heading {
    max-width: 820px;
}

.hours-highlight {
    display: grid;
    gap: 0.45rem;
    justify-items: center;
    padding: clamp(1.5rem, 5vw, 3rem);
    border: 1px solid rgba(122, 78, 45, 0.13);
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 88% 12%, rgba(198, 138, 58, 0.2), transparent 16rem),
        linear-gradient(145deg, rgba(248, 244, 236, 0.95), rgba(239, 227, 209, 0.76));
    box-shadow: var(--shadow-card);
    text-align: center;
}

.hours-highlight strong {
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(3.7rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.hours-highlight span {
    color: var(--color-brown);
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    font-weight: 900;
}

.hours-highlight p:not(.eyebrow) {
    max-width: 32rem;
    color: rgba(44, 33, 24, 0.72);
}

.hours-highlight--compact {
    align-content: center;
    border-radius: var(--radius-medium);
}

.hours-highlight--compact strong {
    font-size: clamp(2.8rem, 7vw, 5rem);
}

.contact-panel h2,
.form-placeholder h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-panel a {
    color: var(--color-green-dark);
    font-weight: 900;
}

.form-placeholder__fields {
    display: grid;
    gap: 0.65rem;
    margin: 0.35rem 0;
}

.form-placeholder__fields span {
    display: block;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(122, 78, 45, 0.12);
    border-radius: var(--radius-small);
    background: rgba(248, 244, 236, 0.7);
    color: rgba(44, 33, 24, 0.46);
    font-weight: 800;
}

.privacy-placeholder {
    min-height: 100%;
    align-content: center;
    border-style: dashed;
    background:
        linear-gradient(145deg, rgba(248, 244, 236, 0.86), rgba(239, 227, 209, 0.5));
    box-shadow: inset 0 0 0 8px rgba(248, 244, 236, 0.26);
}

.privacy-placeholder .button {
    justify-self: start;
}

@media (min-width: 680px) {
    .detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 679px) {
    .page-hero__inner {
        min-height: 280px;
    }

    .detail-grid {
        gap: 0.85rem;
    }

    .detail-card,
    .contact-panel,
    .form-placeholder,
    .privacy-placeholder,
    .hours-highlight {
        border-radius: 24px;
    }

    .category-pills {
        display: grid;
    }

    .category-pills a,
    .category-pills span {
        justify-content: center;
        text-align: center;
    }

    .product-category {
        scroll-margin-top: 84px;
    }

    .hours-highlight {
        padding: 1.25rem;
    }
}

/* Client-supplied brand and media assets. */
.site-brand__logo,
.site-brand .custom-logo {
    display: block;
    width: clamp(190px, 18vw, 250px);
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.site-brand__fallback,
.site-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.trust-section__content {
    display: grid;
    gap: 1rem;
}

.media-links {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    list-style: none;
}

.media-links a {
    color: var(--color-green-dark);
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.partner-logos {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    align-items: center;
}

.partner-logos img {
    width: 100%;
    height: 110px;
    padding: 0.8rem;
    border: 1px solid rgba(122, 78, 45, 0.12);
    border-radius: 18px;
    background: #fff;
    object-fit: contain;
}

@media (min-width: 680px) {
    .partner-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 679px) {
    .site-brand__logo,
    .site-brand .custom-logo {
        width: 178px;
        max-height: 48px;
    }
}

/* Subtle full-page pasture background from the client-supplied Ziegen_Wiese image. */
body {
    background:
        radial-gradient(circle at 12% 0%, rgba(198, 138, 58, 0.12), transparent 24rem),
        linear-gradient(180deg, rgba(251, 247, 239, 0.91) 0%, rgba(248, 244, 236, 0.9) 42%, rgba(239, 227, 209, 0.94) 100%),
        url("../images/hof/ziegenherde.jpg") center center / cover fixed no-repeat;
}

body::before {
    background-image:
        linear-gradient(rgba(122, 78, 45, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 78, 45, 0.024) 1px, transparent 1px),
        linear-gradient(180deg, rgba(251, 247, 239, 0.18), rgba(251, 247, 239, 0.08));
    background-size: 38px 38px, 38px 38px, cover;
    opacity: 0.72;
}

@media (max-width: 679px) {
    body {
        background-attachment: scroll;
        background-position: center top;
    }
}

/*
 * Minimal design pass.
 * Reduces playful organic shapes and oversized bubbles in favor of calmer,
 * cleaner surfaces with modest corners and clearer hover states.
 */
:root {
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 18px;
    --shadow-soft: 0 18px 42px rgba(44, 33, 24, 0.1);
    --shadow-card: 0 12px 30px rgba(44, 33, 24, 0.08);
    --shadow-lift: 0 18px 42px rgba(44, 33, 24, 0.13);
}

body {
    background:
        linear-gradient(180deg, rgba(251, 247, 239, 0.82) 0%, rgba(248, 244, 236, 0.8) 45%, rgba(239, 227, 209, 0.84) 100%),
        url("../images/hof/ziegenherde.jpg") center center / cover fixed no-repeat;
}

body::before {
    opacity: 0.2;
}

.hero::before,
.hero::after,
.image-card::before,
.quick-card::after,
.product-world::before,
.product-card__image::after,
.elderberry-section::before,
.map-card__preview::after,
.detail-card::after {
    display: none;
}

.site-header {
    background: rgba(251, 247, 239, 0.96);
    box-shadow: 0 8px 24px rgba(44, 33, 24, 0.045);
}

.site-nav__list > li > a::after {
    height: 1px;
    border-radius: 0;
    background: var(--color-green-dark);
}

.button,
.button--secondary,
.button--light,
.category-pills a,
.category-pills span,
.badge,
.map-card__load,
.video-poster__play,
.hero .eyebrow,
.detail-card span,
.quick-card span {
    border-radius: var(--radius-small);
}

.button {
    min-height: 46px;
    box-shadow: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:active {
    transform: translateY(0);
}

.nav-toggle {
    border-radius: 12px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(48, 71, 52, 0.64);
    background: rgba(248, 244, 236, 0.96);
    box-shadow: 0 0 0 4px rgba(48, 71, 52, 0.08);
    transform: translateY(-1px);
}

.nav-toggle:active,
.nav-toggle[aria-expanded="true"] {
    border-color: var(--color-green-dark);
    background: rgba(138, 154, 120, 0.18);
    transform: translateY(0);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
    transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
    transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
    transform: translateY(-2px) rotate(-45deg);
}

@media (max-width: 1060px) {
    .site-nav {
        background: rgba(251, 247, 239, 0.99);
        box-shadow: 0 18px 42px rgba(44, 33, 24, 0.12);
    }
}

.hero,
.page-hero,
.page-section--cream,
.story-section,
.video-section,
.elderberry-section,
.map-section,
.trust-section,
.tours-section,
.contact-section {
    background:
        linear-gradient(180deg, rgba(251, 247, 239, 0.74), rgba(239, 227, 209, 0.56));
}

.page-section--green {
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-moss));
}

.hero {
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.hero .eyebrow {
    padding: 0;
    border: 0;
    background: transparent;
}

.hero h1 {
    max-width: 11.4ch;
}

h1 {
    font-size: clamp(2.9rem, 7.2vw, 5.85rem);
}

.page-hero h1 {
    max-width: 13ch;
}

.page-hero--compact {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.page-hero--compact .page-hero__inner {
    min-height: clamp(170px, 20vw, 260px);
    padding-block: 0;
}

.page-hero--compact h1 {
    max-width: 15ch;
    font-size: clamp(2.45rem, 5vw, 4.65rem);
}

.page-hero--compact .prose > p:not(.eyebrow) {
    max-width: 54rem;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.image-card,
.image-card--large,
.image-card--story,
.image-card--elderberry,
.video-poster,
.video-player,
.map-card__preview,
.map-card__iframe,
.map-placeholder,
.feature-band,
.feature-band--quiet,
.hours-highlight,
.detail-card,
.contact-panel,
.form-placeholder,
.privacy-placeholder,
.product-detail__content,
.partner-logos img {
    border-radius: var(--radius-large);
}

.image-card,
.image-card--large,
.image-card--story,
.image-card--elderberry {
    min-height: clamp(300px, 36vw, 470px);
    border-color: rgba(122, 78, 45, 0.12);
    transform: none;
}

.hero__visual {
    min-height: clamp(310px, 38vw, 480px);
}

.hero__visual .image-card img {
    filter: brightness(1.16) contrast(1.04) saturate(1.03);
}

.map-embed {
    min-height: 0;
    padding: clamp(1rem, 2.5vw, 1.35rem);
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    margin-top: 0.9rem;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-medium);
    aspect-ratio: 4 / 3;
}

.embed-privacy-note {
    margin: 0.75rem 0 0;
    color: rgba(44, 33, 24, 0.62);
    font-size: 0.84rem;
    line-height: 1.5;
}

.embed-privacy-note a {
    color: var(--color-green-dark);
    font-weight: 800;
}

.legal-section {
    background: var(--color-cream);
}

.legal-layout {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.legal-content {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.legal-block,
.legal-card {
    border: 1px solid rgba(122, 78, 45, 0.12);
    border-radius: var(--radius-large);
    background:
        linear-gradient(145deg, rgba(248, 244, 236, 0.92), rgba(248, 244, 236, 0.74));
    box-shadow: var(--shadow-soft);
}

.legal-block {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.legal-block h2,
.legal-card h3 {
    max-width: 18ch;
}

.legal-block p {
    max-width: 70ch;
    color: rgba(44, 33, 24, 0.74);
    line-height: 1.72;
}

.legal-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0 0;
}

.legal-list div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(122, 78, 45, 0.1);
}

.legal-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-list dt {
    color: rgba(44, 33, 24, 0.56);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-list dd {
    margin: 0;
    color: var(--color-text);
}

.legal-card {
    align-self: start;
    padding: clamp(1.25rem, 3vw, 1.8rem);
}

.legal-card p {
    color: rgba(44, 33, 24, 0.72);
}

.legal-card .button {
    margin-top: 0.35rem;
}

@media (min-width: 920px) {
    .contact-grid--compact {
        grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 0.55fr) minmax(380px, 1fr);
    }

    .legal-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
        align-items: start;
    }
}

.quick-card,
.product-card,
.values-list div,
.feature-band,
.feature-band--quiet,
.hours-highlight,
.detail-card,
.contact-panel,
.form-placeholder,
.privacy-placeholder {
    border: 1px solid rgba(122, 78, 45, 0.13);
    background: rgba(251, 247, 239, 0.76);
    box-shadow: var(--shadow-card);
}

.quick-card,
.product-card {
    border-radius: var(--radius-medium);
}

.quick-card:hover,
.quick-card:focus-visible,
.product-card:hover,
.product-card:focus-within {
    border-color: rgba(48, 71, 52, 0.34);
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
}

.product-card__image {
    min-height: 205px;
    background: var(--color-cream);
}

.product-card__image span {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.product-card__content h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
}

.product-card__button {
    width: auto;
    justify-self: start;
}

.section-heading--inline > p,
.section-heading--inline div + p {
    color: rgba(44, 33, 24, 0.72);
}

.page-section--green .section-heading--inline > p,
.page-section--green .section-heading--inline div + p,
.page-section--green .product-category .section-heading p {
    color: rgba(248, 244, 236, 0.78);
}

.page-section--cream .section-heading--inline > p,
.page-section--cream .section-heading--inline div + p {
    color: rgba(44, 33, 24, 0.74);
}

.feature-band__aside,
.elderberry-section .prose {
    border-radius: var(--radius-medium);
    background: rgba(251, 247, 239, 0.62);
}

.elderberry-section .prose {
    border-left: 2px solid rgba(90, 45, 78, 0.24);
}

.values-list div {
    border-left-width: 2px;
}

.category-pills {
    gap: 0.5rem;
}

.category-pills a,
.category-pills span {
    background: rgba(251, 247, 239, 0.64);
}

.map-card__preview {
    background:
        linear-gradient(135deg, rgba(48, 71, 52, 0.92), rgba(48, 71, 52, 0.72)),
        var(--color-green-dark);
}

.map-card__preview::before {
    border-radius: var(--radius-medium);
}

.video-poster__overlay {
    background: linear-gradient(180deg, rgba(35, 52, 38, 0.08), rgba(35, 52, 38, 0.46));
}

.partner-logos img {
    height: 96px;
}

@media (max-width: 679px) {
    body {
        background-attachment: scroll;
    }

    .hero::after {
        display: none;
    }

    .image-card,
    .image-card--large,
    .image-card--story,
    .image-card--elderberry,
    .video-poster,
    .video-player,
    .map-card__preview,
    .map-card__iframe,
    .map-placeholder,
    .feature-band,
    .feature-band--quiet,
    .hours-highlight,
    .detail-card,
    .contact-panel,
    .form-placeholder,
    .privacy-placeholder {
        border-radius: 14px;
    }
}

/* Final mobile landingpage polish: keep this at the end so it wins all earlier responsive rules. */
@media (max-width: 679px) {
    body {
        padding-top: 68px;
    }

    body.admin-bar {
        padding-top: calc(68px + var(--wp-admin--admin-bar--height, 46px));
    }

    .site-header {
        position: fixed;
        z-index: 1000;
        top: 0;
        right: 0;
        left: 0;
        border-bottom: 1px solid rgba(122, 78, 45, 0.13);
        background: rgba(251, 247, 239, 0.98);
        backdrop-filter: blur(14px);
    }

    body.admin-bar .site-header {
        top: var(--wp-admin--admin-bar--height, 46px);
    }

    .site-header__inner {
        min-height: 68px;
        padding-block: 0.35rem;
    }

    .site-brand__logo,
    .site-brand .custom-logo {
        width: min(176px, 56vw);
        max-height: 44px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
    }

    .site-nav {
        position: fixed;
        z-index: 999;
        top: 76px;
        right: 0.75rem;
        left: 0.75rem;
        max-height: calc(100svh - 92px);
        overflow-y: auto;
        padding: 0.95rem 1.05rem;
        border-radius: 16px;
        background: rgba(251, 247, 239, 0.98);
        box-shadow: 0 18px 46px rgba(44, 33, 24, 0.16);
    }

    body.admin-bar .site-nav {
        top: calc(var(--wp-admin--admin-bar--height, 46px) + 76px);
    }

    .site-nav__list a {
        padding: 0.72rem 0;
        font-size: 0.95rem;
    }

    .hero {
        padding-top: 2.25rem;
    }

    .hero h1 {
        max-width: 8.4ch;
        font-size: clamp(3.05rem, 14.4vw, 4rem);
        line-height: 1.08;
        letter-spacing: 0;
    }

    .hero__content {
        gap: 1.05rem;
    }

    .hero__visual {
        min-height: 0;
    }

    .hero__visual .image-card,
    .hero__visual .image-card--large {
        min-height: 0;
        aspect-ratio: 1.24 / 1;
        box-shadow: 0 16px 42px rgba(44, 33, 24, 0.12);
    }

    .hero__visual .image-card img {
        filter: none;
        image-rendering: auto;
        object-fit: cover;
        object-position: center center;
        transform: translateZ(0);
    }

    .tours-section {
        padding-block: 2.5rem;
    }

    .tours-section__band {
        margin-top: 0;
        padding: 1.3rem;
    }

    .tours-section__band .button {
        width: 100%;
        justify-self: stretch;
    }
}

/* Senior polish for product, Genussladen, Holunder and tour pages. */
.product-card__image {
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(245px, 27vw, 330px);
    min-height: 0;
    padding: clamp(0.65rem, 1.4vw, 1rem);
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 7rem),
        linear-gradient(145deg, rgba(251, 247, 239, 0.92), rgba(239, 227, 209, 0.72)),
        var(--color-cream);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-card__content h3 {
    color: var(--color-green-dark);
}

.product-intro {
    padding-block: clamp(2.4rem, 5vw, 4rem);
}

.product-intro__inner {
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.2rem);
}

.product-intro__content {
    display: grid;
    gap: 1rem;
}

.product-intro .prose {
    max-width: 760px;
}

.product-intro h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 5vw, 4.35rem);
}

.product-intro__cards {
    align-items: stretch;
}

.product-intro__cards .detail-card {
    min-height: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
}

.product-intro__cards .detail-card h3 {
    font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.detail-card {
    align-content: start;
}

.detail-card span {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.video-poster__overlay {
    display: block;
}

.video-poster__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-poster__overlay > span:not(.video-poster__play) {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: block;
}

.genussladen-hours-section {
    padding-top: 0;
}

.page-hero--with-image .page-hero__inner--media {
    display: grid;
    gap: clamp(1.5rem, 5vw, 3rem);
}

.page-hero--with-image .breadcrumbs {
    margin-bottom: 0.4rem;
}

.page-hero__image {
    min-height: clamp(320px, 38vw, 500px);
}

.tour-gallery-section {
    padding-top: 0;
}

.tour-gallery {
    display: grid;
    gap: clamp(0.9rem, 2vw, 1.2rem);
}

.tour-gallery figure {
    position: relative;
    height: clamp(260px, 28vw, 380px);
    min-height: clamp(240px, 30vw, 360px);
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(122, 78, 45, 0.13);
    border-radius: var(--radius-medium);
    background: var(--color-cream);
    box-shadow: var(--shadow-card);
}

.tour-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-gallery figcaption {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.42rem 0.62rem;
    border-radius: var(--radius-small);
    background: rgba(251, 247, 239, 0.9);
    color: var(--color-green-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 760px) {
    .product-intro .prose {
        max-width: 31rem;
    }

    .product-intro__inner {
        grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
        column-gap: clamp(2.8rem, 5vw, 4.5rem);
        align-items: end;
    }

    .product-intro__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-hero--with-image .page-hero__inner--media {
        grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
        align-items: center;
    }

    .tour-gallery {
        grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.1fr) minmax(0, 0.84fr);
        align-items: stretch;
    }

    .tour-gallery figure:nth-child(2) {
        height: clamp(320px, 34vw, 440px);
        min-height: clamp(300px, 34vw, 430px);
    }
}

@media (max-width: 679px) {
    .product-intro {
        padding-block: 2rem;
    }

    .product-intro__cards {
        gap: 0.75rem;
    }

    .detail-card span {
        font-size: 0.66rem;
    }

    .page-hero--with-image .page-hero__inner--media {
        min-height: 0;
    }

    .page-hero__image {
        min-height: 280px;
    }

    .video-poster__play {
        width: 4.5rem;
        height: 4.5rem;
    }

    .tour-gallery figure {
        height: 255px;
        min-height: 250px;
        border-radius: 16px;
    }

    .product-card__image {
        height: 250px;
    }
}

/* Final product image fit: show full product packshots without clipping. */
.product-card__image > img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center;
}

.product-intro__cards .detail-card h3 {
    overflow-wrap: anywhere;
    overflow: visible;
    hyphens: auto;
    line-height: 1.14;
}

/*
 * Final typography consistency pass.
 * Keeps headings elegant, but prevents tight line collisions across all pages.
 */
h1,
h2,
h3,
.site-brand__text strong {
    letter-spacing: 0 !important;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    hyphens: auto;
    text-wrap: balance;
}

h1 {
    font-size: 5.05rem;
    line-height: 1.08;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.12;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.18;
}

.page-hero h1 {
    max-width: 13.5ch;
    font-size: 5.05rem;
    line-height: 1.08;
}

.hero h1 {
    max-width: 12ch;
    font-size: 5.05rem;
    line-height: 1.08;
}

.product-intro h1 {
    font-size: 4.15rem;
    line-height: 1.1;
}

.page-hero--compact h1 {
    font-size: 4.15rem;
    line-height: 1.1;
}

.product-card__content h3,
.detail-card h3,
.feature-band h2,
.hours-highlight strong,
.product-detail__price strong,
.map-card__title,
.site-footer h2 {
    line-height: 1.12;
}

.prose,
.section-heading,
.feature-band__content,
.product-intro__content,
.contact-panel,
.form-placeholder,
.privacy-placeholder,
.detail-card {
    gap: 1rem;
}

.prose p,
.section-heading > p,
.detail-card p,
.contact-panel p,
.form-placeholder p,
.privacy-placeholder p,
.product-card__content p,
.feature-band p {
    line-height: 1.65;
}

.page-hero .prose > p:not(.eyebrow),
.product-intro .prose > p:not(.eyebrow) {
    max-width: 48rem;
}

.split-layout .split-title {
    max-width: 12.5ch;
    font-size: 3.6rem;
    line-height: 1.12;
}

.breadcrumbs {
    line-height: 1.45;
}

.contact-grid--compact .contact-panel h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 2.4vw, 2.15rem);
    line-height: 1.16;
}

.contact-grid--compact .hours-highlight {
    gap: 0.85rem;
    padding: clamp(1.6rem, 4vw, 2.35rem);
}

.contact-grid--compact .hours-highlight strong {
    font-size: clamp(2.75rem, 5vw, 3.35rem);
    line-height: 1.05;
    white-space: nowrap;
}

.contact-grid--compact .hours-highlight span {
    max-width: none;
    font-size: clamp(1.35rem, 2.7vw, 1.75rem);
    line-height: 1.25;
}

.contact-grid--compact .hours-highlight p:not(.eyebrow) {
    max-width: 18rem;
    font-size: 1rem;
}

@media (max-width: 919px) {
    h1,
    .hero h1,
    .page-hero h1 {
        font-size: 4.05rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 3rem;
        line-height: 1.14;
    }

    .split-layout .split-title {
        font-size: 3rem;
    }

    .product-intro h1,
    .page-hero--compact h1 {
        font-size: 3.35rem;
    }

    .contact-grid--compact .contact-panel h2 {
        font-size: 2.05rem;
    }

    .contact-grid--compact .hours-highlight strong {
        font-size: 3rem;
    }

    .contact-grid--compact .hours-highlight span {
        font-size: 1.55rem;
    }
}

@media (max-width: 679px) {
    h1,
    .hero h1,
    .page-hero h1 {
        max-width: 100%;
        font-size: 3.25rem;
        line-height: 1.12;
    }

    h2 {
        font-size: 2.45rem;
        line-height: 1.16;
    }

    .split-layout .split-title {
        max-width: 100%;
        font-size: 2.45rem;
        line-height: 1.16;
    }

    h3 {
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .product-intro h1,
    .page-hero--compact h1 {
        font-size: 2.85rem;
    }

    .contact-grid--compact .contact-panel h2 {
        font-size: 1.95rem;
    }

    .contact-grid--compact .hours-highlight strong {
        font-size: 2.65rem;
    }

    .contact-grid--compact .hours-highlight span {
        max-width: none;
        font-size: 1.35rem;
    }

    .page-hero__inner {
        min-height: 0;
    }
}
