:root {
    --color-background: #f7f4ed;
    --color-surface: #fffdf9;
    --color-text: #1f1a14;
    --color-muted: #665f55;
    --color-border: #d7cebf;
    --color-accent: #6a3d1f;
    --container-width: 72rem;
    --container-padding: 1rem;
    --shadow-soft: 0 1rem 2rem rgba(31, 26, 20, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lexend", sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: "Alegreya", serif;
    font-weight: 400;
    line-height: 1.2;
}

h4,
h5,
h6 {
    font-family: "Alegreya", serif;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.65rem;
}

body.has-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

main {
    display: block;
}

.container {
    width: min(100% - (var(--container-padding) * 2), var(--container-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(0.5rem);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.25rem;
    padding-top: 0.45rem;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.site-header__logo img {
    display: block;
    height: 3.8rem;
    width: auto;
}

.site-header__logo--desktop {
    display: none;
}

.site-nav {
    display: none;
}

.site-nav__list,
.mobile-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.site-nav__link,
.mobile-nav__link {
    color: var(--color-text);
    text-decoration: none;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    padding: 0.35rem 0;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: currentColor;
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link[aria-current="page"]::after {
    opacity: 0.72;
    transform: scaleX(1);
}

.mobile-nav__link[aria-current="page"] {
    font-weight: 700;
}

.site-header__toggle,
.mobile-nav__close,
.button,
.button--secondary {
    appearance: none;
    font: inherit;
}

.site-header__toggle,
.mobile-nav__close {
    border-radius: 999px;
}

.button,
.button--secondary {
    border-radius: 0;
}

.site-header__toggle,
.mobile-nav__close {
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
}

.site-header__toggle {
    padding: 0.65rem 1rem;
    font-weight: 300;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 30;
}

.mobile-nav[aria-hidden="false"] {
    display: block;
}

.mobile-nav__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100svh;
    padding: 1.25rem var(--container-padding) 2rem;
    background-color: var(--color-surface);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav__logo {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.mobile-nav__logo img {
    display: block;
    height: 4.8rem;
    width: auto;
}

.mobile-nav__close {
    padding: 0.6rem 0.95rem;
}

.mobile-nav__list {
    display: grid;
    gap: 0;
    padding-top: 1.5rem;
}

.mobile-nav__link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.25rem;
    line-height: 1.25;
}

.hero {
    padding: 3rem 0 2rem;
}

.hero__inner {
    display: grid;
    gap: 2rem;
}

.hero__content {
    max-width: 42rem;
}

.hero__eyebrow {
    margin: 0 0 0.75rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-size: clamp(2rem, 7vw, 3.5rem);
    line-height: 1.1;
}

.hero__lead {
    margin: 1rem 0 0;
    max-width: 40rem;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.hero__support {
    margin: 1rem 0 0;
    max-width: 40rem;
    color: var(--color-text);
}

.hero__support-label {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero__contact-list {
    display: grid;
    gap: 0.75rem;
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
}

.hero__contact-item {
    margin: 0;
}

.hero__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    font-size: 1.05rem;
    line-height: 1.4;
    text-decoration: none;
}

.hero__contact-link:hover,
.hero__contact-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.hero__contact-icon {
    width: 1.3rem;
    height: 1.3rem;
    flex: 0 0 1.3rem;
    fill: currentColor;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.site-header--transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    color: #ffffff;
}

.site-header--transparent .site-nav__link {
    color: inherit;
}

.site-header--transparent .site-header__logo img {
    filter: brightness(0) invert(1);
}

.site-header--transparent .site-header__toggle {
    border-color: rgba(255, 255, 255, 0.72);
    background-color: rgba(0, 0, 0, 0.16);
    color: inherit;
}

.site-header--transparent-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    color: var(--color-text);
}

.site-header--transparent-light .site-header__toggle {
    background-color: transparent;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"])::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.44) 42%,
        rgba(0, 0, 0, 0.24) 72%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__inner {
    position: relative;
    z-index: 1;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__content {
    max-width: 38rem;
    text-align: left;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__title {
    margin: 0 0 1.1rem;
    max-width: 18ch;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__lead {
    color: rgba(255, 255, 255, 0.88);
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__lead {
    margin: 0;
    max-width: 34rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.hero[style*="nisse-taelling-jagtgaarden-juletraeer.avif"] .hero__lead {
    white-space: pre-line;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__title,
.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__support {
    color: #ffffff;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions {
    margin-top: 1.85rem;
    gap: 0.85rem;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button,
.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button--secondary {
    font-family: "Lexend", sans-serif;
    font-weight: 300;
    border-radius: 0;
    min-width: 11.5rem;
    max-width: 13.5rem;
    flex: 1 1 11.5rem;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button:not(.button--secondary) {
    background-color: #00786f;
    color: #ffffff;
}

.hero:is(.hero--default, [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button,
.hero:is(.hero--default, [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button--secondary {
    max-width: none;
    flex: 0 0 auto;
    white-space: nowrap;
}

.hero[style*="hero-home.avif"] .hero__actions .button,
.hero[style*="hero-home.avif"] .hero__actions .button--secondary {
    width: 15rem;
    max-width: none;
    flex: 0 0 15rem;
    white-space: nowrap;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button:not(.button--secondary):hover,
.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__actions .button:not(.button--secondary):focus-visible {
    background-color: #00665e;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .button--secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .button--secondary:hover,
.hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .button--secondary:focus-visible {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.button,
.button--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.875rem;
    padding: 0.65rem 1.2rem;
    border: 1px solid transparent;
    font-family: "Lexend", sans-serif;
    font-weight: 300;
    text-decoration: none;
}

.button {
    background-color: var(--color-accent);
    color: #ffffff;
}

.button--secondary {
    border-color: var(--color-border);
    background-color: transparent;
    color: var(--color-text);
}

.juletraeer-business-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: 8rem 0 4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    isolation: isolate;
}

.juletraeer-business-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.juletraeer-business-hero:not(.store-trees-top-hero)::before {
    background: rgba(0, 0, 0, 0.58);
}

.juletraeer-business-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    text-align: center;
}

.juletraeer-business-hero__content {
    display: grid;
    justify-items: center;
    gap: 1.25rem;
    max-width: 68rem;
}

.juletraeer-business-hero__title {
    margin: 0;
    max-width: 19ch;
    color: #ffffff;
    font-family: "Alegreya", serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 400;
    line-height: 1.08;
}

.juletraeer-business-hero__lead {
    margin: 0;
    max-width: 54rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.55;
}

.juletraeer-business-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 10px;
}

.juletraeer-business-hero .button,
.juletraeer-business-decoration .button,
.juletraeer-business-store-trees__actions .button,
.juletraeer-business-form .button {
    border-radius: 0;
}

.juletraeer-business-hero__actions .button--secondary {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.juletraeer-business-hero__actions .button--secondary:hover,
.juletraeer-business-hero__actions .button--secondary:focus-visible {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.juletraeer-business-hero__actions .button:not(.button--secondary),
.juletraeer-business-decoration__content .button {
    background-color: #734540;
    color: #ffffff;
}

.juletraeer-business-hero__actions .button:not(.button--secondary):hover,
.juletraeer-business-hero__actions .button:not(.button--secondary):focus-visible,
.juletraeer-business-decoration__content .button:hover,
.juletraeer-business-decoration__content .button:focus-visible {
    background-color: #734540;
    color: #ffffff;
}

.juletraeer-business-hero__caption {
    position: absolute;
    z-index: 1;
    left: var(--container-padding);
    bottom: 1.25rem;
    margin: 0;
    max-width: min(24rem, calc(100% - (var(--container-padding) * 2)));
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    line-height: 1.35;
    text-shadow: 0 1px 0.9rem rgba(0, 0, 0, 0.5);
}

.store-trees-top-hero .juletraeer-business-hero__actions .button:not(.button--secondary),
.store-trees-setup-package__actions .button,
.store-trees-gallery--store-juletraeer .store-trees-gallery__actions .button {
    background-color: #793733;
    color: #ffffff;
}

.store-trees-top-hero .juletraeer-business-hero__actions .button:not(.button--secondary):hover,
.store-trees-top-hero .juletraeer-business-hero__actions .button:not(.button--secondary):focus-visible,
.store-trees-setup-package__actions .button:hover,
.store-trees-setup-package__actions .button:focus-visible,
.store-trees-gallery--store-juletraeer .store-trees-gallery__actions .button:hover,
.store-trees-gallery--store-juletraeer .store-trees-gallery__actions .button:focus-visible {
    background-color: #7f1f1b;
    color: #ffffff;
}

.store-trees-top-hero .juletraeer-business-hero__title {
    max-width: 23ch;
    font-size: clamp(2.55rem, 5.6vw, 4.9rem);
    line-height: 1.06;
}

.store-trees-process {
    padding: 3.6rem 0;
    background-color: #f4efe6;
}

.store-trees-process__inner {
    display: grid;
    justify-items: center;
    gap: 1.85rem;
    text-align: center;
}

.store-trees-process__header {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    max-width: 62rem;
}

.store-trees-process__eyebrow {
    margin: 0;
    color: #734540;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
}

.store-trees-process__header h2 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    line-height: 1.12;
}

.store-trees-process__items {
    display: grid;
    gap: 1.7rem;
    width: 100%;
    max-width: 68rem;
}

.store-trees-process__item {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    max-width: 20rem;
    margin-inline: auto;
}

.store-trees-process__icon {
    width: 4.4rem;
    height: 4.4rem;
    object-fit: contain;
}

.store-trees-process__item h3 {
    margin: 0.35rem 0 0;
    font-size: 1.2rem;
    line-height: 1.25;
}

.store-trees-process__item p {
    margin: 0;
    color: #38514f;
    font-size: 1rem;
    line-height: 1.5;
}

.store-trees-setup-package {
    background-color: #f4efe6;
}

.store-trees-setup-package__inner {
    display: grid;
    grid-template-areas:
        "intro"
        "media"
        "details";
}

.store-trees-setup-package__intro-block {
    grid-area: intro;
    padding: 3.8rem var(--container-padding) 0;
}

.store-trees-setup-package__details {
    grid-area: details;
    padding: 2rem var(--container-padding) 3.8rem;
}

.store-trees-setup-package__content-inner {
    max-width: 40rem;
    margin-inline: auto;
}

.store-trees-setup-package__eyebrow {
    margin: 0 0 0.85rem;
    color: #734540;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
}

.store-trees-setup-package h2 {
    margin: 0;
    font-size: clamp(2.05rem, 6vw, 3.1rem);
    line-height: 1.08;
}

.store-trees-setup-package__intro,
.store-trees-setup-package__closing {
    margin: 1.35rem 0 0;
    color: #2f2922;
    font-size: 1.02rem;
    line-height: 1.58;
}

.store-trees-setup-package__list {
    margin-top: 0;
}

.store-trees-setup-package__list h3 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    line-height: 1.2;
}

.store-trees-setup-package__list ul {
    margin: 0;
    padding-left: 1.15rem;
    color: #2f2922;
    font-size: 1rem;
    line-height: 1.5;
}

.store-trees-setup-package__list li + li {
    margin-top: 0.25rem;
}

.store-trees-setup-package__actions {
    margin-top: 2rem;
}

.store-trees-setup-package__media {
    grid-area: media;
    position: relative;
    margin: 2rem var(--container-padding) 0;
    aspect-ratio: 37 / 44;
    overflow: hidden;
}

.store-trees-setup-package__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.store-trees-setup-package__media figcaption {
    position: absolute;
    left: 1rem;
    bottom: 0.9rem;
    margin: 0;
    max-width: calc(100% - 2rem);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.35;
    text-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.58);
}

.juletraeer-business-feature .store-trees-setup-package__closing + .store-trees-setup-package__closing {
    margin-top: 1rem;
}

.juletraeer-business-feature .store-trees-setup-package__actions .button {
    white-space: nowrap;
}

.juletraeer-business-decoration {
    padding: 4.8rem 0;
    background-color: var(--color-background);
}

.juletraeer-business-decoration__inner {
    display: grid;
    gap: 2.4rem;
    align-items: center;
}

.juletraeer-business-decoration__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.juletraeer-business-decoration__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.juletraeer-business-decoration__caption {
    position: absolute;
    left: 1rem;
    bottom: 0.85rem;
    margin: 0;
    max-width: calc(100% - 2rem);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    line-height: 1.35;
    text-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.65);
}

.juletraeer-business-decoration__content {
    max-width: 34rem;
}

.juletraeer-business-decoration__content h2 {
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 2.85rem);
    line-height: 1.08;
}

.juletraeer-business-decoration__content p {
    margin: 1.35rem 0 0;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.55;
}

.juletraeer-business-decoration__package {
    margin-top: 2rem;
}

.juletraeer-business-decoration__package-title {
    font-family: "Alegreya", serif;
    font-size: 1.35rem;
    line-height: 1.25;
}

.juletraeer-business-decoration__package ul {
    margin: 0.8rem 0 0;
    padding-left: 1.15rem;
}

.juletraeer-business-decoration__package li {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.45;
}

.juletraeer-business-decoration__closing {
    max-width: 30rem;
}

.juletraeer-business-decoration__content .button {
    margin-top: 2rem;
    border-radius: 0;
    font-weight: 300;
}

@media (min-width: 64rem) {
    .juletraeer-business-decoration {
        padding: 5.6rem 0;
    }

    .juletraeer-business-decoration__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2.5rem, 5vw, 4.25rem);
    }

    .juletraeer-business-decoration__content {
        justify-self: center;
    }

    .juletraeer-business-decoration--reverse .juletraeer-business-decoration__media {
        grid-column: 2;
        grid-row: 1;
    }

    .juletraeer-business-decoration--reverse .juletraeer-business-decoration__content {
        grid-column: 1;
        grid-row: 1;
    }
}

.juletraeer-business-logo-strip {
    padding: 4.6rem 0 5rem;
    background-color: #ffffff;
}

.juletraeer-business-logo-strip__inner {
    display: grid;
    justify-items: center;
    gap: 2rem;
    text-align: center;
}

.juletraeer-business-logo-strip__inner h2 {
    margin: 0;
    max-width: 52rem;
    font-size: clamp(2rem, 4.6vw, 2.85rem);
    line-height: 1.12;
}

.juletraeer-business-logo-strip__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 1rem;
    align-items: center;
    width: min(100%, 44rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.juletraeer-business-logo-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.8rem;
    padding: 0.55rem 0.75rem;
}

.juletraeer-business-logo-strip__item img {
    width: 100%;
    height: auto;
    max-width: 8.4rem;
    max-height: 3.7rem;
    object-fit: contain;
    opacity: 0.76;
    filter: grayscale(1);
}

@media (min-width: 48rem) {
    .juletraeer-business-logo-strip__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.8rem 1.25rem;
    }
}

@media (min-width: 64rem) {
    .juletraeer-business-logo-strip {
        padding: 5.8rem 0 6.1rem;
    }

    .store-trees-reference-gallery {
        margin-top: -4.5rem;
        padding-bottom: 6.1rem;
    }

}

.juletraeer-business-store-trees__actions .button {
    margin-top: 0;
}

.juletraeer-business-store-trees {
    padding: 4.8rem 0 1.35rem;
    background-color: #ffffff;
}

.juletraeer-business-store-trees__header {
    max-width: 58rem;
    margin-inline: auto;
    text-align: center;
}

.juletraeer-business-store-trees__header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 3.15rem);
    line-height: 1.06;
}

.juletraeer-business-store-trees__header p {
    max-width: 48rem;
    margin: 1rem auto 0;
    color: #38514f;
    font-size: 1.08rem;
    line-height: 1.65;
}

.juletraeer-business-store-trees + .store-trees-reference-gallery {
    margin-top: 0;
    padding-bottom: 1.7rem;
    padding-top: 0;
    background-color: #ffffff;
}

.juletraeer-business-store-trees__actions {
    display: flex;
    justify-content: center;
    padding: 0 var(--container-padding) 5rem;
    background-color: #ffffff;
}

@media (min-width: 64rem) {
    .juletraeer-business-store-trees {
        padding: 5.8rem 0 1.65rem;
    }

    .juletraeer-business-store-trees + .store-trees-reference-gallery {
        margin-top: 0;
        padding-bottom: 2rem;
    }

    .juletraeer-business-store-trees__actions {
        padding-bottom: 6.2rem;
    }
}

.store-trees-reference-gallery {
    margin-top: -2.7rem;
    padding: 0 0 5rem;
    background-color: #ffffff;
}

.store-trees-reference-gallery__controls {
    display: none;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.store-trees-reference-gallery__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #793733;
    border-radius: 999px;
    padding: 0;
    background-color: #793733;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    line-height: 1;
}

.store-trees-reference-gallery__control:hover,
.store-trees-reference-gallery__control:focus-visible {
    border-color: #7f1f1b;
    background-color: #7f1f1b;
    color: #ffffff;
}

.store-trees-reference-gallery__control:disabled {
    border-color: #f4efe6;
    background-color: #f4efe6;
    color: var(--color-text);
    opacity: 0.58;
    cursor: default;
}

.store-trees-reference-gallery__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
}

.store-trees-reference-gallery__card {
    position: relative;
    min-width: 0;
    flex: 0 0 calc(100% - 3rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
    scroll-snap-align: start;
    margin: 0;
    background-color: #f4efe6;
}

.store-trees-reference-gallery__card img,
.store-trees-reference-gallery__card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.juletraeer-business-store-trees__actions .button--secondary {
    border-color: var(--color-text);
    background-color: transparent;
    color: var(--color-text);
}

.store-trees-lead-wizard.juletraeer-business-form {
    background-color: var(--color-background);
}

.juletraeer-business-form .juletraeer-business-form__layout {
    display: block;
    width: min(100%, 68rem);
    max-width: none;
    margin: 0 auto;
}

.juletraeer-business-form__form {
    width: 100%;
}

.juletraeer-business-form__header a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.juletraeer-business-form .store-trees-lead-wizard__field select {
    width: 100%;
    border: 1px solid rgba(31, 26, 20, 0.18);
    border-radius: 0.65rem;
    padding: 0.78rem 0.85rem;
    background-color: #fffdf9;
    color: var(--color-text);
    font: inherit;
    font-weight: 400;
}

.juletraeer-business-form .store-trees-lead-wizard__field select:focus {
    border-color: #00786f;
    outline: 2px solid rgba(0, 120, 111, 0.18);
    outline-offset: 0;
}

.juletraeer-business-form__submit {
    margin-top: 1.45rem;
}

.juletraeer-business-form .juletraeer-business-form__submit.store-trees-lead-wizard__submit {
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    border-color: #734540;
    border-radius: 0;
    background-color: #734540;
    color: #ffffff;
    font-size: 0.95rem;
}

.juletraeer-business-form .juletraeer-business-form__submit.store-trees-lead-wizard__submit:hover,
.juletraeer-business-form .juletraeer-business-form__submit.store-trees-lead-wizard__submit:focus-visible {
    border-color: #734540;
    background-color: #734540;
    color: #ffffff;
}

@media (max-width: 47.99rem) {
    .juletraeer-business-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 18rem);
    }

    .juletraeer-business-hero__actions .button {
        width: 100%;
    }

    .juletraeer-business-hero__caption {
        display: none;
    }

    .store-trees-top-hero .juletraeer-business-hero__title {
        font-size: clamp(2.2rem, 11vw, 3.05rem);
        line-height: 1.08;
    }

    .store-trees-process {
        padding: 3.2rem 0;
    }

    .store-trees-process__header h2 {
        max-width: 100%;
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }
}

@media (min-width: 64rem) {
    .juletraeer-business-form .juletraeer-business-form__layout {
        width: min(100%, 72rem);
    }

    .juletraeer-business-form__form {
        padding: 2.25rem;
    }

    .juletraeer-business-form .store-trees-lead-wizard__fields {
        gap: 1.15rem 1.35rem;
    }
}

.store-trees-hero {
    padding: 6.4rem 0 3.8rem;
    background-color: #ffffff;
}

.store-trees-hero__inner {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.store-trees-hero__content {
    max-width: 38rem;
}

.store-trees-hero__title {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.05;
}

.store-trees-hero__lead {
    margin: 1.35rem 0 0;
    max-width: 36rem;
    font-family: "Alegreya", serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
}

.store-trees-hero__body {
    margin: 1.35rem 0 0;
    max-width: 37rem;
    font-size: 1.05rem;
    line-height: 1.45;
}

.store-trees-hero__body strong {
    font-weight: 700;
}

.store-trees-hero__actions {
    margin-top: 1.4rem;
}

.store-trees-hero__actions .button {
    border-radius: 0;
    background-color: #00786f;
    color: #ffffff;
    white-space: nowrap;
}

.store-trees-hero__actions .button:hover,
.store-trees-hero__actions .button:focus-visible {
    background-color: #00665e;
}

.store-trees-hero__phone {
    margin: 1.8rem 0 0;
    font-size: 1.05rem;
    line-height: 1.45;
}

.store-trees-hero__phone-link {
    text-underline-offset: 0.14em;
}

.store-trees-hero__media img {
    width: 100%;
    aspect-ratio: 37 / 44;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 63.999rem) {
    .store-trees-hero__inner {
        gap: 0;
    }

    .store-trees-hero__content {
        display: contents;
    }

    .store-trees-hero__title {
        order: 1;
        font-size: 2rem;
        line-height: 1.08;
    }

    .store-trees-hero__media {
        order: 2;
        margin-top: 1.2rem;
    }

    .store-trees-hero__lead {
        order: 3;
        margin-top: 1.2rem;
    }

    .store-trees-hero__actions {
        order: 4;
        margin-top: 1.2rem;
    }

    .store-trees-hero__body {
        order: 5;
        margin-top: 1.2rem;
    }

    .store-trees-hero__phone {
        order: 6;
        margin-top: 1rem;
    }

    .store-trees-hero__media img {
        height: auto;
        max-height: none;
        aspect-ratio: auto;
        object-fit: initial;
        object-position: initial;
    }
}

.thank-you-page {
    padding: 6.4rem 0 3.8rem;
    background-color: #ffffff;
}

.thank-you-page__inner {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.thank-you-page__content {
    max-width: 38rem;
}

.thank-you-page__content h1 {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.05;
}

.thank-you-page__content p {
    margin: 1.35rem 0 0;
    font-size: 1.05rem;
    line-height: 1.45;
}

.thank-you-page__content a {
    text-underline-offset: 0.15em;
}

.thank-you-page__media img {
    width: 100%;
    aspect-ratio: 37 / 44;
    object-fit: cover;
    object-position: center center;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
}

.store-trees-benefits {
    padding: 4.8rem 0 5rem;
    background-color: #f4efe6;
}

.store-trees-benefits__inner {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.store-trees-benefits__content {
    max-width: 35rem;
}

.store-trees-benefits__title {
    margin: 0;
    font-size: 2.45rem;
    line-height: 1.08;
}

.store-trees-benefits__intro {
    margin: 1.5rem 0 0;
    color: #38514f;
    font-size: 1.28rem;
    line-height: 1.5;
}

.store-trees-benefits__supporting {
    margin: 2rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.store-trees-benefits__logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    align-items: center;
    margin-top: 1.1rem;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.store-trees-benefits__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.4rem;
}

.store-trees-benefits__logo img {
    width: 100%;
    height: 100%;
    max-width: 7rem;
    max-height: 3.25rem;
    object-fit: contain;
}

.store-trees-benefits__logos-link {
    display: inline-block;
    margin-top: 32px;
    color: var(--color-text);
    font-size: 1.28rem;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.store-trees-benefits__logos-link:hover,
.store-trees-benefits__logos-link:focus-visible {
    color: #38514f;
}

.store-trees-benefits__logos-link:focus-visible {
    outline: 2px solid rgba(0, 120, 111, 0.35);
    outline-offset: 0.25rem;
}

.store-trees-benefits__card {
    overflow: hidden;
    border-radius: 1.55rem;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.store-trees-benefits__item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.1rem;
    padding: 1.45rem 1.35rem;
}

.store-trees-benefits__item + .store-trees-benefits__item {
    border-top: 1px solid rgba(31, 26, 20, 0.14);
}

.store-trees-benefits__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.55rem;
    color: var(--color-text);
    background-color: #e3f0ec;
}

.store-trees-benefits__icon--ruler {
    background-color: #f7e4f1;
}

.store-trees-benefits__icon--delivery {
    background-color: #fff0d4;
}

.store-trees-benefits__icon--decoration {
    background-color: #fff4dc;
}

.store-trees-benefits__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
    stroke: none;
}

.store-trees-benefits__item-content h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.15;
}

.store-trees-benefits__item-content p {
    margin: 0.6rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
}

.store-trees-gallery {
    padding: 4.8rem 0 5rem;
    background-color: #ffffff;
}

.store-trees-gallery--store-juletraeer {
    padding-bottom: 6rem;
}

.store-trees-gallery__header {
    max-width: 52rem;
    margin: 0 auto 2.1rem;
    text-align: center;
}

.store-trees-gallery__title {
    margin: 0;
    font-size: clamp(2.3rem, 7vw, 3.25rem);
    line-height: 1.05;
}

.store-trees-gallery__header p {
    max-width: 48rem;
    margin: 1.05rem auto 0;
    font-size: 1.18rem;
    line-height: 1.5;
}

.store-trees-gallery__track {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    list-style: none;
}

.store-trees-gallery__item {
    flex: 0 0 min(78vw, 21rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
    scroll-snap-align: start;
}

.store-trees-gallery__trigger {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: zoom-in;
}

.store-trees-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.store-trees-gallery--store-juletraeer .store-trees-gallery__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.85rem;
}

.store-trees-testimonial {
    padding: 4.8rem 0 5rem;
    background-color: #f4efe6;
}

.store-trees-testimonial__card {
    display: grid;
    gap: 1.9rem;
    padding: 1.3rem;
    border-radius: 1.55rem;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.store-trees-testimonial__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.store-trees-testimonial__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 0;
}

.store-trees-testimonial__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.store-trees-testimonial__quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.store-trees-testimonial__quote blockquote {
    margin: 0;
}

.store-trees-testimonial__quote blockquote p {
    margin: 0;
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.28;
}

.store-trees-testimonial__caption {
    margin-top: 2.2rem;
    font-size: 1.02rem;
    line-height: 1.35;
}

.store-trees-testimonial__caption cite {
    display: block;
    font-style: normal;
    font-weight: 700;
}

.store-trees-testimonial__caption span {
    display: block;
    margin-top: 0.2rem;
}

.store-trees-video {
    padding: 4.8rem 0 5rem;
    background-color: #f4efe6;
}

.store-trees-video__inner {
    display: grid;
    gap: 1.9rem;
    padding: 1.3rem;
    border-radius: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.store-trees-video__media {
    position: relative;
    width: min(100%, 28rem);
    margin: 0;
    margin-inline: auto;
}

.store-trees-video__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border-radius: 0;
    background-color: #1f241c;
}

.store-trees-video__frame::after {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
    content: "";
    pointer-events: none;
}

.store-trees-video__video,
.store-trees-video__poster {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-trees-video__poster {
    z-index: 1;
    transition: opacity 180ms ease;
}

.store-trees-video.is-playing .store-trees-video__poster {
    opacity: 0;
    visibility: hidden;
}

.store-trees-video__play {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background-color: rgba(121, 55, 51, 0.9);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.store-trees-video__play::before {
    display: block;
    width: 0;
    height: 0;
    margin-left: 0.24rem;
    border-top: 0.72rem solid transparent;
    border-bottom: 0.72rem solid transparent;
    border-left: 1.05rem solid #ffffff;
    content: "";
}

.store-trees-video__play:hover,
.store-trees-video__play:focus-visible {
    background-color: #7f1f1b;
}

.store-trees-video__play:focus-visible {
    outline: 3px solid rgba(121, 55, 51, 0.32);
    outline-offset: 0.25rem;
}

.store-trees-video.is-playing .store-trees-video__play {
    display: none;
}

.store-trees-video.is-playing .store-trees-video__caption {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.store-trees-video__caption {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 0.95rem;
    left: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    line-height: 1.4;
    text-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.store-trees-video__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-trees-video__content h2 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 2.7rem);
    line-height: 1.08;
}

.store-trees-video__content p {
    margin: 1rem 0 0;
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.62;
}

.store-trees-video__supporting {
    color: var(--color-text);
}

.store-trees-business-bridge {
    padding: 4.8rem 0 5rem;
    background-color: #ffffff;
}

.store-trees-business-bridge__header {
    max-width: 58rem;
    margin: 0 auto;
    text-align: center;
}

.store-trees-business-bridge__header h2 {
    margin: 0;
    font-size: clamp(2.1rem, 6vw, 3rem);
    line-height: 1.08;
}

.store-trees-business-bridge__header p {
    max-width: 52rem;
    margin: 1.05rem auto 0;
    color: #38514f;
    font-size: 1.08rem;
    line-height: 1.62;
}

.store-trees-business-bridge__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2.15rem;
}

.store-trees-business-bridge__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #f4efe6;
}

.store-trees-business-bridge__item:first-child,
.store-trees-business-bridge__item:nth-child(10) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.store-trees-business-bridge__item img,
.store-trees-business-bridge__item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-trees-business-bridge__item img {
    object-position: center;
}

.store-trees-business-bridge__cta-card {
    grid-column: auto;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.35rem;
    border: 1px solid rgba(31, 26, 20, 0.22);
    background-color: var(--color-surface);
}

.store-trees-business-bridge__cta-title {
    margin: 0;
    font-family: "Alegreya", serif;
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    font-weight: 400;
    line-height: 1.05;
}

.store-trees-business-bridge__cta-button {
    align-self: flex-start;
    padding: 0.68rem 0.9rem;
    font-size: 0.78rem;
}

.store-trees-business-bridge__item:nth-child(10) {
    order: 11;
}

.store-trees-business-bridge__item:nth-child(11) {
    order: 10;
}

.store-trees-business-bridge__cta-card {
    order: -1;
}

.store-trees-business-bridge__item:first-child {
    order: -2;
}

.store-trees-business-bridge__item:nth-child(11) {
    grid-column: auto;
}

.store-trees-about .homepage-about-trees-section {
    background-color: #ffffff;
}

.store-trees-about .homepage-about-trees-section__inner h2 {
    color: var(--color-text);
}

.store-trees-about .homepage-about-trees-section__inner p {
    color: var(--color-muted);
}

.store-trees-faq {
    padding: 4.8rem 0 5rem;
    background-color: #f7faf7;
}

.store-trees-faq__header {
    max-width: 52rem;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.store-trees-faq__header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 3.15rem);
    line-height: 1.06;
}

.store-trees-faq__header p {
    margin: 1rem auto 0;
    max-width: 43rem;
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.store-trees-faq__list {
    max-width: 58rem;
    margin: 0 auto;
}

.store-trees-faq__item {
    border-top: 1px solid rgba(33, 53, 47, 0.16);
}

.store-trees-faq__item:last-child {
    border-bottom: 1px solid rgba(33, 53, 47, 0.16);
}

.store-trees-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 1.2rem;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
}

.store-trees-faq__item summary::-webkit-details-marker {
    display: none;
}

.store-trees-faq__item summary span {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.store-trees-faq__item summary::after {
    content: "";
    display: block;
    grid-column: 2;
    grid-row: 1;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(33, 53, 47, 0.24);
    border-radius: 50%;
    box-sizing: border-box;
}

.store-trees-faq__item summary:focus-visible {
    outline: 3px solid rgba(79, 112, 99, 0.35);
    outline-offset: 0.3rem;
}

.store-trees-faq__answer {
    max-width: 48rem;
    padding: 0 3.2rem 1.35rem 0;
}

.store-trees-faq__answer p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.faeldselv-faq {
    padding: 4.8rem 0 5rem;
    background-color: #f7faf7;
}

.faeldselv-faq__header {
    max-width: 52rem;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.faeldselv-faq__header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 3.15rem);
    line-height: 1.06;
}

.faeldselv-faq__header p {
    margin: 1rem auto 0;
    max-width: 43rem;
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.faeldselv-faq__list {
    max-width: 58rem;
    margin: 0 auto;
}

.faeldselv-faq__item {
    border-top: 1px solid rgba(33, 53, 47, 0.16);
}

.faeldselv-faq__item:last-child {
    border-bottom: 1px solid rgba(33, 53, 47, 0.16);
}

.faeldselv-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 1.2rem;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
}

.faeldselv-faq__item summary::-webkit-details-marker {
    display: none;
}

.faeldselv-faq__item summary span {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.faeldselv-faq__item summary::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(33, 53, 47, 0.24);
    border-radius: 50%;
    box-sizing: border-box;
}

.faeldselv-faq__item summary:focus-visible {
    outline: 3px solid rgba(79, 112, 99, 0.35);
    outline-offset: 0.3rem;
}

.faeldselv-faq__answer {
    max-width: 48rem;
    padding: 0 3.2rem 1.35rem 0;
}

.faeldselv-faq__answer p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.gaardbutik-faq {
    padding: 4.8rem 0 5rem;
    background-color: #f7faf7;
}

.gaardbutik-faq__header {
    max-width: 52rem;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.gaardbutik-faq__header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 3.15rem);
    line-height: 1.06;
}

.gaardbutik-faq__header p {
    margin: 1rem auto 0;
    max-width: 43rem;
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.gaardbutik-faq__list {
    max-width: 58rem;
    margin: 0 auto;
}

.gaardbutik-faq__item {
    border-top: 1px solid rgba(33, 53, 47, 0.16);
}

.gaardbutik-faq__item:last-child {
    border-bottom: 1px solid rgba(33, 53, 47, 0.16);
}

.gaardbutik-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 1.2rem;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
}

.gaardbutik-faq__item summary::-webkit-details-marker {
    display: none;
}

.gaardbutik-faq__item summary span {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.gaardbutik-faq__item summary::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(33, 53, 47, 0.24);
    border-radius: 50%;
    box-sizing: border-box;
}

.gaardbutik-faq__item summary:focus-visible {
    outline: 3px solid rgba(79, 112, 99, 0.35);
    outline-offset: 0.3rem;
}

.gaardbutik-faq__answer {
    max-width: 48rem;
    padding: 0 3.2rem 1.35rem 0;
}

.gaardbutik-faq__answer p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.homepage-faq {
    padding: 4.8rem 0 5rem;
    background-color: #f7faf7;
}

.homepage-faq__header {
    max-width: 52rem;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.homepage-faq__header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 3.15rem);
    line-height: 1.06;
}

.homepage-faq__header p {
    margin: 1rem auto 0;
    max-width: 43rem;
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.homepage-faq__list {
    max-width: 58rem;
    margin: 0 auto;
}

.homepage-faq__item {
    border-top: 1px solid rgba(33, 53, 47, 0.16);
}

.homepage-faq__item:last-child {
    border-bottom: 1px solid rgba(33, 53, 47, 0.16);
}

.homepage-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 1.2rem;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
}

.homepage-faq__item summary::-webkit-details-marker {
    display: none;
}

.homepage-faq__item summary span {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.homepage-faq__item summary::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(33, 53, 47, 0.24);
    border-radius: 50%;
    box-sizing: border-box;
}

.store-trees-faq__item summary,
.faeldselv-faq__item summary,
.gaardbutik-faq__item summary,
.homepage-faq__item summary {
    position: relative;
}

.store-trees-faq__item summary::after,
.faeldselv-faq__item summary::after,
.gaardbutik-faq__item summary::after,
.homepage-faq__item summary::after {
    content: "";
    display: block;
    grid-column: 2;
    grid-row: 1;
    box-sizing: border-box;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: normal;
}

.store-trees-faq__item summary::before,
.store-trees-faq__item summary span::after,
.faeldselv-faq__item summary::before,
.faeldselv-faq__item summary span::after,
.gaardbutik-faq__item summary::before,
.gaardbutik-faq__item summary span::after,
.homepage-faq__item summary::before,
.homepage-faq__item summary span::after {
    content: "";
    position: absolute;
    left: calc(100% - 1rem);
    top: 50%;
    z-index: 1;
    background-color: var(--color-text);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.store-trees-faq__item summary::before,
.faeldselv-faq__item summary::before,
.gaardbutik-faq__item summary::before,
.homepage-faq__item summary::before {
    width: 0.74rem;
    height: 0.08rem;
}

.store-trees-faq__item summary span::after,
.faeldselv-faq__item summary span::after,
.gaardbutik-faq__item summary span::after,
.homepage-faq__item summary span::after {
    width: 0.08rem;
    height: 0.74rem;
}

.store-trees-faq__item[open] summary span::after,
.faeldselv-faq__item[open] summary span::after,
.gaardbutik-faq__item[open] summary span::after,
.homepage-faq__item[open] summary span::after {
    display: none;
}

.homepage-faq__item summary:focus-visible {
    outline: 3px solid rgba(79, 112, 99, 0.35);
    outline-offset: 0.3rem;
}

.homepage-faq__answer {
    max-width: 48rem;
    padding: 0 3.2rem 1.35rem 0;
}

.homepage-faq__answer p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.store-trees-lead-wizard {
    padding: 4.8rem 0 5rem;
    background-color: #f4efe6;
}

.store-trees-lead-wizard__header {
    max-width: 52rem;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.store-trees-lead-wizard__header h2 {
    margin: 0;
    font-size: clamp(2.3rem, 7vw, 3.25rem);
    line-height: 1.05;
}

.store-trees-lead-wizard__header p {
    max-width: 48rem;
    margin: 1.05rem auto 0;
    color: #38514f;
    font-size: 1.18rem;
    line-height: 1.5;
}

.store-trees-lead-wizard__layout {
    display: grid;
    gap: 1.4rem;
    align-items: start;
}

.store-trees-lead-wizard__form,
.store-trees-lead-wizard__summary {
    border-radius: 1.55rem;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.store-trees-lead-wizard__form {
    padding: 1.35rem;
}

.store-trees-lead-wizard__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.store-trees-lead-wizard__progress {
    display: none;
    margin-bottom: 1.45rem;
}

.store-trees-lead-wizard--enhanced .store-trees-lead-wizard__progress {
    display: block;
}

.store-trees-lead-wizard__progress p {
    margin: 0 0 0.7rem;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.store-trees-lead-wizard__progress-track {
    overflow: hidden;
    height: 0.45rem;
    border-radius: 999px;
    background-color: #f4efe6;
}

.store-trees-lead-wizard__progress-track span {
    display: block;
    width: 12.5%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--color-text);
    transition: width 180ms ease;
}

.store-trees-lead-wizard__step {
    margin: 0;
    padding: 0;
    border: 0;
}

.store-trees-lead-wizard__step + .store-trees-lead-wizard__step {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(31, 26, 20, 0.12);
}

.store-trees-lead-wizard--enhanced .store-trees-lead-wizard__step + .store-trees-lead-wizard__step {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.store-trees-lead-wizard__step[hidden] {
    display: none;
}

.store-trees-lead-wizard--enhanced .store-trees-lead-wizard__step {
    min-height: 22rem;
}

.store-trees-lead-wizard__step legend {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Alegreya", serif;
    font-size: clamp(1.85rem, 6vw, 2.45rem);
    line-height: 1.08;
}

.store-trees-lead-wizard__helper {
    margin: 0.8rem 0 0;
    color: #38514f;
    font-size: 1rem;
    line-height: 1.5;
}

.store-trees-lead-wizard__options {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.store-trees-lead-wizard__option {
    position: relative;
    display: block;
    cursor: pointer;
}

.store-trees-lead-wizard__option input {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.store-trees-lead-wizard__option span {
    display: block;
    min-height: 3rem;
    padding: 0.78rem 0.95rem;
    border: 1px solid rgba(31, 26, 20, 0.16);
    border-radius: 0.7rem;
    background-color: #fffdf9;
    font-size: 1rem;
    line-height: 1.35;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.store-trees-lead-wizard__option input:checked + span {
    border-color: #00786f;
    background-color: #e3f0ec;
}

.store-trees-lead-wizard__option input:focus-visible + span {
    outline: 2px solid #00786f;
    outline-offset: 3px;
}

.store-trees-lead-wizard__fields {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.35rem;
}

.store-trees-lead-wizard__field {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
}

.store-trees-lead-wizard__field[hidden] {
    display: none;
}

.store-trees-lead-wizard__field input,
.store-trees-lead-wizard__field textarea {
    width: 100%;
    border: 1px solid rgba(31, 26, 20, 0.18);
    border-radius: 0.65rem;
    padding: 0.78rem 0.85rem;
    background-color: #fffdf9;
    color: var(--color-text);
    font-family: "Lexend", sans-serif;
    font-size: 0.98rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.35;
}

.store-trees-lead-wizard__field input:focus,
.store-trees-lead-wizard__field textarea:focus {
    border-color: #00786f;
    outline: 2px solid rgba(0, 120, 111, 0.18);
    outline-offset: 0;
}

.store-trees-lead-wizard__field textarea {
    resize: vertical;
}

.store-trees-lead-wizard__pickup-date,
.store-trees-lead-wizard__step[data-step-index="5"] .store-trees-lead-wizard__field {
    margin-top: 1.2rem;
}

.store-trees-lead-wizard__pickup-date {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    inline-size: 100%;
    max-width: 100%;
    max-inline-size: 100%;
}

.store-trees-lead-wizard__pickup-date input[type="date"] {
    display: block;
    width: 100%;
    inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    max-width: 100%;
    max-inline-size: 100%;
    box-sizing: border-box;
}

.store-trees-lead-wizard__consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
    margin-top: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.store-trees-lead-wizard__consent input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.18rem;
    accent-color: #00786f;
}

.store-trees-lead-wizard__error,
.store-trees-lead-wizard__server-error,
.store-trees-lead-wizard__frontend-message {
    margin: 1.2rem 0 0;
    border-radius: 0.7rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.store-trees-lead-wizard__error,
.store-trees-lead-wizard__server-error {
    background-color: #fff0d4;
}

.store-trees-lead-wizard__frontend-message {
    background-color: #e3f0ec;
}

.store-trees-lead-wizard__navigation {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.8rem 1rem;
    align-items: center;
    margin-top: 1.45rem;
}

.store-trees-lead-wizard--enhanced .store-trees-lead-wizard__navigation {
    display: grid;
}

.store-trees-lead-wizard__navigation[hidden],
.store-trees-lead-wizard__navigation button[hidden] {
    display: none;
}

.store-trees-lead-wizard__nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-width: 2.75rem;
    min-height: 2.75rem;
    border: 1px solid var(--color-text);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background-color: var(--color-text);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    line-height: 1.35;
    text-decoration: none;
}

.store-trees-lead-wizard__nav-link--next {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
}

.store-trees-lead-wizard__shortcut {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    border: 0;
    padding: 0.15rem 0;
    background-color: transparent;
    color: var(--color-text);
    cursor: pointer;
    font: inherit;
    font-size: 0.96rem;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.store-trees-lead-wizard__nav-link:hover,
.store-trees-lead-wizard__nav-link:focus-visible {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
}

.store-trees-lead-wizard__shortcut:hover,
.store-trees-lead-wizard__shortcut:focus-visible {
    color: #38514f;
}

.store-trees-lead-wizard__nav-link:focus-visible,
.store-trees-lead-wizard__shortcut:focus-visible {
    outline: 2px solid rgba(31, 26, 20, 0.35);
    outline-offset: 0.25rem;
}

.store-trees-lead-wizard__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 2.75rem;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    cursor: pointer;
    background-color: #00786f;
    color: #ffffff;
    font: inherit;
    font-size: 1rem;
    line-height: 1.35;
    white-space: nowrap;
}

.store-trees-lead-wizard__submit:hover,
.store-trees-lead-wizard__submit:focus-visible {
    background-color: #00665e;
}

.store-trees-lead-wizard__summary {
    display: none;
    padding: 1.35rem;
}

.store-trees-lead-wizard__summary h3 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.1;
}

.store-trees-lead-wizard__summary dl {
    display: grid;
    gap: 0;
    margin: 1rem 0 0;
}

.store-trees-lead-wizard__summary dl > div {
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(31, 26, 20, 0.12);
}

.store-trees-lead-wizard__summary dl > div[hidden] {
    display: none;
}

.store-trees-lead-wizard__summary dt {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

.store-trees-lead-wizard__summary dd {
    margin: 0;
    color: #38514f;
    font-size: 0.98rem;
    line-height: 1.4;
}

.store-trees-lead-wizard__summary > p {
    margin: 1rem 0 0;
    border-radius: 0.7rem;
    padding: 0.85rem 0.95rem;
    background-color: #f4efe6;
    font-size: 0.95rem;
    line-height: 1.4;
}

.store-trees-prices {
    padding: 4.8rem 0 5rem;
    background-color: #ffffff;
}

.store-trees-prices__header {
    max-width: 52rem;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.store-trees-prices__header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 3.15rem);
    line-height: 1.06;
}

.store-trees-prices__header p {
    margin: 1rem auto 0;
    max-width: 48rem;
    color: #38514f;
    font-size: 1.08rem;
    line-height: 1.65;
}

.store-trees-prices__table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    border: 1px solid rgba(33, 53, 47, 0.16);
    border-radius: 1.1rem;
    -webkit-overflow-scrolling: touch;
}

.store-trees-prices__table {
    width: 100%;
    min-width: 58rem;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 1.45;
}

.store-trees-prices__table th,
.store-trees-prices__table td {
    padding: 1rem 1.05rem;
    text-align: left;
    vertical-align: top;
}

.store-trees-prices__table thead th {
    background-color: #f4efe6;
    font-family: "Lexend", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}

.store-trees-prices__table tbody th {
    font-weight: 700;
    white-space: nowrap;
}

.store-trees-prices__table tbody tr:nth-child(odd) {
    background-color: #fffdf9;
}

.store-trees-prices__table tbody tr:nth-child(even) {
    background-color: #fbf8f2;
}

.store-trees-prices__table tbody th,
.store-trees-prices__table tbody td {
    border-top: 1px solid rgba(33, 53, 47, 0.12);
}

.store-trees-prices__table td:last-child {
    font-weight: 700;
}

.store-trees-prices__note {
    max-width: 58rem;
    margin: 1.35rem auto 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.store-trees-prices__link {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.store-trees-prices__link:hover,
.store-trees-prices__link:focus-visible {
    color: #38514f;
}

.store-trees-prices__link:focus-visible {
    outline: 2px solid rgba(0, 120, 111, 0.35);
    outline-offset: 0.25rem;
}

@media (min-width: 64rem) {
    .site-header__inner.container {
        width: min(100% - (var(--container-padding) * 2), 86rem);
    }

    .site-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        width: min(100%, 78rem);
        margin-inline: auto;
    }

    .site-nav__list {
        flex-wrap: nowrap;
        min-width: 0;
        gap: clamp(1.15rem, 2.05vw, 2.05rem);
        width: auto;
        max-width: 100%;
        justify-content: center;
    }

    .site-nav__item {
        display: flex;
        align-items: center;
    }

    .site-nav__link {
        align-items: center;
        justify-content: center;
        font-size: 0.94rem;
        font-weight: 300;
        min-block-size: 2.45rem;
        text-align: center;
        white-space: nowrap;
    }

    .site-header__inner {
        min-height: 8.25rem;
    }

    .site-header__logo--mobile {
        display: none;
    }

    .site-header__logo--desktop {
        display: inline-flex;
    }

    .site-header__logo img {
        height: 4.4rem;
    }

    .mobile-nav {
        display: none !important;
    }

    .site-header__toggle {
        display: none;
    }

    .hero {
        padding: 4.5rem 0 3rem;
    }

    .hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) {
        padding-top: 8rem;
        padding-bottom: 3.5rem;
    }

    .hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__content {
        max-width: 40rem;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.2fr);
    }

    .store-trees-hero {
        padding: 13.25rem 0 3.4rem;
    }

    .store-trees-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
        gap: 3.6rem;
    }

    .store-trees-hero__content {
        max-width: none;
    }

    .store-trees-hero__title {
        font-size: 2.95rem;
    }

    .store-trees-hero__media {
        justify-self: end;
        width: min(100%, 34.25rem);
    }

    .store-trees-hero__media img {
        height: min(661px, calc(100svh - 13rem));
        object-fit: cover;
        object-position: center center;
    }

    .store-trees-process {
        padding: 4.2rem 0;
    }

    .store-trees-process__items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    .store-trees-setup-package__inner {
        grid-template-areas:
            "intro media"
            "details media";
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        align-items: stretch;
    }

    .store-trees-setup-package--reverse .store-trees-setup-package__inner {
        grid-template-areas:
            "media intro"
            "media details";
    }

    .store-trees-setup-package__intro-block,
    .store-trees-setup-package__details {
        display: flex;
        justify-content: center;
    }

    .store-trees-setup-package__intro-block {
        align-items: end;
        padding: clamp(4.8rem, 6vw, 6.5rem) clamp(2.5rem, 5vw, 5.4rem) 0;
    }

    .store-trees-setup-package__details {
        align-items: start;
        padding: clamp(4.8rem, 6vw, 6.5rem) clamp(2.5rem, 5vw, 5.4rem);
        padding-top: 2rem;
    }

    .store-trees-setup-package__content-inner {
        position: sticky;
        top: 7rem;
        width: 100%;
        margin-inline: auto;
    }

    .store-trees-setup-package__media {
        margin: 0;
        min-height: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    .store-trees-setup-package__media figcaption {
        left: 1.45rem;
        bottom: 1.25rem;
        font-size: 0.82rem;
    }

    .store-trees-benefits {
        padding: 6.4rem 0 6.6rem;
    }

    .store-trees-benefits__inner {
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
        gap: 4rem;
    }

    .store-trees-benefits__title {
        font-size: 3.2rem;
    }

    .store-trees-benefits__logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.8rem 0.9rem;
    }

    .store-trees-benefits__logo {
        height: 3.2rem;
    }

    .store-trees-benefits__logo img {
        max-width: 6.7rem;
        max-height: 3rem;
    }

    .store-trees-benefits__card {
        padding: 1.35rem 2.35rem;
    }

    .store-trees-benefits__item {
        grid-template-columns: 3.1rem minmax(0, 1fr);
        gap: 1.35rem;
        padding: 1.7rem 0;
    }

    .store-trees-benefits__item-content h3 {
        font-size: 1.7rem;
    }

    .store-trees-gallery {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-gallery--store-juletraeer {
        padding-bottom: 7rem;
    }

    .store-trees-gallery__header {
        margin-bottom: 2.4rem;
    }

    .store-trees-gallery__track {
        display: grid;
        align-items: start;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.15rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .store-trees-gallery__item {
        flex: initial;
        scroll-snap-align: none;
    }

    .store-trees-gallery--store-juletraeer .store-trees-gallery__actions {
        margin-top: 2.25rem;
    }

    .store-trees-testimonial {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-testimonial__card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3rem;
        align-items: center;
        padding: 3rem;
    }

    .store-trees-testimonial__media {
        height: 574px;
        aspect-ratio: auto;
    }

    .store-trees-testimonial__quote blockquote p {
        font-size: clamp(2.1rem, 3vw, 2.85rem);
    }

    .store-trees-video {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-video__inner {
        grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.18fr);
        gap: 3rem;
        align-items: center;
        padding: 3rem;
    }

    .store-trees-video__media {
        width: min(100%, 28.75rem);
    }

    .store-trees-video__content h2 {
        font-size: clamp(2.45rem, 3vw, 3.2rem);
    }

    .store-trees-business-bridge {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-business-bridge__gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 2.4rem;
    }

    .store-trees-business-bridge__item:first-child {
        grid-column: span 2;
        aspect-ratio: 8 / 5;
        order: 0;
    }

    .store-trees-business-bridge__item:nth-child(10) {
        grid-column: span 2;
        aspect-ratio: 8 / 5;
        order: 0;
    }

    .store-trees-business-bridge__item:nth-child(11) {
        order: 0;
    }

    .store-trees-business-bridge__cta-card {
        grid-column: 1;
        grid-row: 2;
        order: 0;
        padding: 1.45rem;
    }

    .store-trees-business-bridge__cta-title {
        font-size: clamp(1.65rem, 2.2vw, 2.1rem);
    }

    .store-trees-lead-wizard {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-lead-wizard__header {
        margin-bottom: 2.4rem;
    }

    .store-trees-lead-wizard__layout {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
        gap: 1.5rem;
    }

    .store-trees-lead-wizard__form {
        padding: 2rem;
    }

    .store-trees-lead-wizard--enhanced .store-trees-lead-wizard__step {
        min-height: 25rem;
    }

    .store-trees-lead-wizard__options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-trees-lead-wizard__options--checkboxes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-trees-lead-wizard__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-trees-lead-wizard__field--full {
        grid-column: 1 / -1;
    }

    .store-trees-lead-wizard__summary {
        display: block;
        padding: 1.5rem;
    }

    .store-trees-prices {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-prices__header {
        margin-bottom: 2.4rem;
    }

    .store-trees-faq {
        padding: 5.8rem 0 6.2rem;
    }

    .store-trees-faq__header {
        margin-bottom: 2.4rem;
    }

    .faeldselv-faq {
        padding: 5.8rem 0 6.2rem;
    }

    .faeldselv-faq__header {
        margin-bottom: 2.4rem;
    }

    .gaardbutik-faq {
        padding: 5.8rem 0 6.2rem;
    }

    .gaardbutik-faq__header {
        margin-bottom: 2.4rem;
    }

    .homepage-faq {
        padding: 5.8rem 0 6.2rem;
    }

    .homepage-faq__header {
        margin-bottom: 2.4rem;
    }

    .thank-you-page {
        padding: 13.25rem 0 3.4rem;
    }

    .thank-you-page__inner {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
        gap: 3.6rem;
    }

    .thank-you-page__content {
        max-width: none;
    }

    .thank-you-page__content h1 {
        font-size: 2.95rem;
    }

    .thank-you-page__media {
        justify-self: end;
        width: min(100%, 34.25rem);
    }

    .thank-you-page__media img {
        height: min(600px, calc(100svh - 13rem));
    }
}

@media (min-width: 90rem) {
    .site-header--transparent .site-header__inner.container {
        width: min(100% - (var(--container-padding) * 2), 86rem);
    }

    .store-trees-testimonial > .container,
    .store-trees-video > .container {
        width: min(100% - (var(--container-padding) * 2), 78.75rem);
    }

    .hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__inner.container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .hero:is(.hero--default, [style*="hero-home.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"], [style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer.avif"], [style*="juletraesgolf-paa-jagtgaarden-juletraeer-1920.avif"], [style*="nisse-taelling-jagtgaarden-juletraeer.avif"]) .hero__content {
        max-width: 42rem;
    }

    .homepage-cards > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }
}

.entry-points {
    padding: 2.5rem 0;
}

.intro-section {
    padding: 4.9rem 0 3.3rem;
    background-color: #ffffff;
}

.intro-section__inner {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.intro-section__inner h2 {
    max-width: 12ch;
    margin: 0 auto;
    font-size: 2.75rem;
    line-height: 1.08;
}

.intro-section__inner h3 {
    max-width: 36rem;
    margin: 2.25rem auto 0;
    font-size: 1.65rem;
    line-height: 1.2;
}

.hero:is([style*="jagtgaarden-juletraeer-faeld-selv-10.avif"], [style*="jagtgaarden-juletraeer-faeld-selv-10-1920.avif"]) + .intro-section .intro-section__inner h2 {
    max-width: 16ch;
}

.hero:is([style*="Jagtgaarden-juletraer-gaardbutik.avif"], [style*="Jagtgaarden-juletraer-gaardbutik-1470.avif"]) + .intro-section .intro-section__inner h2 {
    max-width: 19ch;
}

@media (min-width: 48rem) {
    .hero[style*="hero-home.avif"] + .intro-section .intro-section__inner h2 {
        max-width: 22ch;
    }
}

.intro-section__inner p {
    max-width: 46rem;
    margin: 1.35rem auto 0;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
}

.intro-section__inner h3 + p {
    margin-top: 0.95rem;
}

.homepage-about-trees-section {
    padding: 4.8rem 0 5.1rem;
    background-color: #f4efe6;
}

.homepage-about-trees-section__inner {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.homepage-about-trees-section__inner h2 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(2.3rem, 7vw, 3.25rem);
    line-height: 1.05;
}

.homepage-about-trees-section__inner p {
    margin: 1.05rem auto 0;
    max-width: 44rem;
    color: var(--color-muted);
    font-size: 1.3rem;
    line-height: 1.5;
}

.homepage-about-trees-section__media {
    margin: 2.1rem 0 0;
}

.homepage-about-trees-section__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
}

.homepage-cards {
    padding: 0 0 3rem;
    background-color: #ffffff;
}

.juletraesgolf-winner-section {
    padding: 3rem 0 5.8rem;
    background-color: #ffffff;
}

.juletraesgolf-winner-section__inner {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.juletraesgolf-winner-section__inner h2 {
    margin: 0;
    font-family: "Alegreya", serif;
    font-size: 2.75rem;
    line-height: 1.08;
}

.juletraesgolf-winner-section__intro {
    margin: 1.35rem 0 0;
    color: #00665e;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.juletraesgolf-winner-section__body {
    margin: 1.2rem 0 0;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-family: "Lexend", sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
}

.juletraesgolf-winner-section--gaardbutik-intro .juletraesgolf-winner-section__inner {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.juletraesgolf-winner-section--gaardbutik-intro .juletraesgolf-winner-section__body {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

.juletraesgolf-winner-section__media {
    width: 100%;
    max-width: 42rem;
    margin: 2.25rem auto 0;
}

.juletraesgolf-winner-section__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 43% 22%;
    border-radius: 0;
    box-shadow: 0 1rem 2rem rgba(31, 26, 20, 0.08);
}

.juletraesgolf-previous-winners-section {
    padding: 0 0 5.8rem;
    background-color: #ffffff;
}

.juletraesgolf-previous-winners-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.65rem;
}

.juletraesgolf-previous-winners-section__header h2 {
    margin: 0;
    font-family: "Alegreya", serif;
    font-size: clamp(1.75rem, 5vw, 2.2rem);
    line-height: 1.08;
}

.juletraesgolf-previous-winners-section__controls {
    display: none;
    align-items: center;
    gap: 0.55rem;
}

.juletraesgolf-previous-winners-section__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #00786f;
    border-radius: 999px;
    background-color: #00786f;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
}

.juletraesgolf-previous-winners-section__control:hover,
.juletraesgolf-previous-winners-section__control:focus-visible {
    background-color: #00665e;
    border-color: #00665e;
}

.juletraesgolf-previous-winners-section__control:disabled {
    opacity: 0.4;
    cursor: default;
}

.juletraesgolf-previous-winners-section__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
}

.juletraesgolf-previous-winners-section__card {
    position: relative;
    min-width: 0;
    flex: 0 0 calc(100% - 3rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
    isolation: isolate;
    scroll-snap-align: start;
}

.juletraesgolf-previous-winners-section__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 18, 17, 0.12) 34%, rgba(6, 18, 17, 0.84) 100%);
}

.juletraesgolf-previous-winners-section__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.juletraesgolf-previous-winners-section__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.35rem 1.2rem 1.2rem;
    color: #ffffff;
}

.juletraesgolf-previous-winners-section__name {
    margin: 0;
    font-family: "Lexend", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.juletraesgolf-previous-winners-section__distance {
    margin: 0.4rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.image-slider-section {
    padding: 0 0 5.8rem;
    background-color: #ffffff;
}

.image-slider-section__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1.65rem;
}

.image-slider-section__header h2 {
    margin: 0;
    margin-right: auto;
    font-family: "Alegreya", serif;
    font-size: clamp(1.75rem, 5vw, 2.2rem);
    line-height: 1.08;
}

.image-slider-section__controls {
    display: none;
    align-items: center;
    gap: 0.55rem;
}

.image-slider-section__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #00786f;
    border-radius: 999px;
    background-color: #00786f;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
}

.image-slider-section__control:hover,
.image-slider-section__control:focus-visible {
    background-color: #00665e;
    border-color: #00665e;
}

.image-slider-section__control:disabled {
    opacity: 0.4;
    cursor: default;
}

.image-slider-section__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
}

.image-slider-section__card {
    position: relative;
    min-width: 0;
    flex: 0 0 calc(100% - 3rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
    scroll-snap-align: start;
}

.image-slider-section__card--with-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 18, 17, 0.12) 34%, rgba(6, 18, 17, 0.84) 100%);
}

.image-slider-section__link {
    display: block;
    width: 100%;
    height: 100%;
}

.image-slider-section__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-slider-section__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.35rem 1.2rem 1.2rem;
    color: #ffffff;
}

.image-slider-section__item-title {
    margin: 0;
    font-family: "Lexend", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.image-slider-section__item-text {
    margin: 0.4rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.homepage-cards__grid {
    display: grid;
    gap: 1.9rem;
    align-items: stretch;
}

.homepage-cards__card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    height: 100%;
}

.homepage-cards__media {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.homepage-cards__media:focus-visible {
    outline: 3px solid rgba(79, 112, 99, 0.35);
    outline-offset: 0.3rem;
}

.homepage-cards__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.15) 42%, rgba(0, 0, 0, 0) 68%);
    z-index: 1;
    pointer-events: none;
}

.homepage-cards__media img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-cards__card--one .homepage-cards__media,
.homepage-cards__card--two .homepage-cards__media {
    border-radius: 0;
}

.homepage-cards__card--three .homepage-cards__media {
    border-radius: 0;
}

.homepage-cards__media h2 {
    position: absolute;
    left: 1.75rem;
    right: 1.4rem;
    top: 1.55rem;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 2.35vw, 2.7rem);
    line-height: 1.06;
    text-shadow: 0 0.16rem 0.44rem rgba(0, 0, 0, 0.48);
}

.homepage-cards__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 1.6rem 0 0;
}

.homepage-cards__body p {
    margin: 0;
    flex: 1;
    width: 100%;
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
}

.homepage-cards__body .button {
    margin-top: 1.95rem;
    align-self: center;
    width: min(100%, 17rem);
    border-radius: 0;
    background-color: #00786f;
    color: #ffffff;
    font-weight: 300;
}

.homepage-cards__body .button:hover,
.homepage-cards__body .button:focus-visible {
    background-color: #00665e;
}

.image-text-section {
    padding: 4.8rem 0;
    background-color: #F3F8F8;
}

.image-text-section--white {
    background-color: #ffffff;
}

.image-text-section__inner {
    display: grid;
    gap: 2.2rem;
    align-items: center;
}

.image-text-section__content {
    max-width: 36rem;
}

.image-text-section__content h2 {
    margin: 0;
    font-size: 2.75rem;
    line-height: 1.08;
}

.image-text-section__content p {
    margin: 1.35rem 0 0;
    max-width: 31rem;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
}

.image-text-section__body-html {
    margin: 1.35rem 0 0;
    max-width: 31rem;
}

.image-text-section__rules-list {
    margin: 0;
    padding-left: 1.35rem;
}

.image-text-section__rules-list li,
.image-text-section__rules-note {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text);
}

.image-text-section__rules-list li + li {
    margin-top: 0.5rem;
}

.image-text-section__rules-note {
    margin: 1rem 0 0;
}

.image-text-section__body-append-html {
    margin: 1rem 0 0;
    max-width: 31rem;
}

.image-text-section__body-append-html .button {
    font-family: "Lexend", sans-serif;
    font-weight: 300;
    border-radius: 0;
    background-color: #00786f;
    color: #ffffff;
    white-space: nowrap;
}

.image-text-section__body-append-html .button:hover,
.image-text-section__body-append-html .button:focus-visible {
    background-color: #00665e;
}

.image-text-section--nissetaelling-cta-spacing .image-text-section__body-append-html .button {
    margin-top: 0.75rem;
}

.image-text-section__table-wrapper {
    width: 100%;
}

.image-text-section__table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    color: var(--color-text);
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 300;
}

.image-text-section__table thead th {
    border-bottom: 1px solid rgba(31, 26, 20, 0.18);
    padding: 0 0.95rem 0.7rem;
    color: #38514f;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
    text-align: left;
}

.image-text-section__table tbody tr {
    border-bottom: 1px solid rgba(31, 26, 20, 0.1);
}

.image-text-section__table tbody tr:nth-child(even) {
    background-color: rgba(255, 253, 249, 0.42);
}

.image-text-section__table td {
    padding: 0.85rem 0.95rem;
    vertical-align: middle;
}

.image-text-section__table th:first-child,
.image-text-section__table td:first-child {
    width: 70%;
    text-align: left;
}

.image-text-section__table th:last-child,
.image-text-section__table td:last-child {
    width: 30%;
    text-align: right;
    white-space: nowrap;
}

.image-text-section__location {
    margin: 1rem 0 0;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.45;
    color: var(--color-text);
}

.image-text-section__location span {
    display: block;
}

.image-text-section__location-name {
    font-weight: 600;
}

.image-text-section--map-copy .image-text-section__content p {
    margin-top: 1.9rem;
    max-width: 34rem;
    white-space: pre-line;
    line-height: 1.45;
}

.image-text-section--map-copy .image-text-section__location {
    margin-top: 2rem;
}

.image-text-section__media img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.image-text-section__map-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.image-text-section__map-link img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--color-border);
    border-radius: 0;
}

.image-text-section__map-link--fallback {
    padding: 1rem;
    border: 1px solid var(--color-border);
}

.video-text-section .image-text-section__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0;
}

.video-text-section .image-text-section__media video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text-section__media iframe {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--color-border);
    border-radius: 0;
}

@media (max-width: 37.5rem) {
    .image-text-section__table {
        font-size: 1.05rem;
    }

    .image-text-section__table td,
    .image-text-section__table thead th {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 47.999rem) {
    .image-text-section--hide-media-mobile .image-text-section__media {
        display: none;
    }

    .image-text-section--hide-media-mobile .image-text-section__content,
    .image-text-section--hide-media-mobile .image-text-section__body-html {
        max-width: none;
    }
}

.testimonials-section {
    padding: 4.8rem 0 5.1rem;
    background-color: #f4efe6;
}

.testimonials-section__header h2 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(2.3rem, 7vw, 3.25rem);
    line-height: 1.05;
}

.testimonials-section__header p {
    margin: 1.05rem 0 0;
    max-width: 44rem;
    color: #38514f;
    font-size: 1.3rem;
    line-height: 1.5;
}

.testimonials-section__grid {
    display: grid;
    gap: 1.35rem;
    margin-top: 2.1rem;
}

.homepage-masonry-gallery-section {
    padding: 4.8rem 0 5.1rem;
    background-color: #F3F8F8;
}

.homepage-masonry-gallery-section__header {
    text-align: center;
}

.homepage-masonry-gallery-section__header h2 {
    margin: 0;
    font-size: clamp(2.3rem, 7vw, 3.25rem);
    line-height: 1.05;
}

.homepage-masonry-gallery-section__header p {
    margin: 1.05rem auto 0;
    max-width: 44rem;
    color: var(--color-muted);
    font-size: 1.3rem;
    line-height: 1.5;
}

.homepage-masonry-gallery-section__grid {
    margin: 2.1rem 0 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    column-gap: 1rem;
}

.homepage-masonry-gallery-section__item {
    break-inside: avoid;
    margin: 0 0 1rem;
}

@media (max-width: 47.999rem) {
    .homepage-masonry-gallery-section__item--landscape .homepage-masonry-gallery-card__trigger {
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }

    .homepage-masonry-gallery-section__item--landscape .homepage-masonry-gallery-card img {
        height: 100%;
        object-fit: cover;
    }
}

.homepage-masonry-gallery-card {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.homepage-masonry-gallery-card__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    background-color: transparent;
    cursor: zoom-in;
    text-align: left;
}

.homepage-masonry-gallery-card img {
    display: block;
    width: 100%;
    height: auto;
}

.homepage-masonry-gallery-card figcaption {
    margin: 0;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--color-muted);
}

.homepage-masonry-gallery-lightbox[hidden] {
    display: none;
}

.homepage-masonry-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.homepage-masonry-gallery-lightbox__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background-color: rgba(10, 14, 16, 0.78);
    cursor: pointer;
}

.homepage-masonry-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(72rem, 100%);
    max-height: calc(100svh - 2rem);
    padding: 0.8rem;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.homepage-masonry-gallery-lightbox__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background-color: #ffffff;
    color: var(--color-text);
    cursor: pointer;
    font: inherit;
    font-size: 1.45rem;
    line-height: 1;
    padding: 0;
}

.homepage-masonry-gallery-lightbox__content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
}

.homepage-masonry-gallery-lightbox__nav {
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background-color: #ffffff;
    color: var(--color-text);
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
}

.homepage-masonry-gallery-lightbox__figure {
    margin: 0;
    max-height: calc(100svh - 4rem);
    display: grid;
    justify-items: center;
}

.homepage-masonry-gallery-lightbox__figure img {
    display: block;
    max-width: 100%;
    max-height: calc(100svh - 8rem);
    height: auto;
    border-radius: 12px;
}

.homepage-masonry-gallery-lightbox__figure figcaption {
    margin: 0.75rem 0 0;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.35;
    color: var(--color-muted);
}

.testimonial-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-surface);
    border: 1px solid rgba(31, 26, 20, 0.12);
    box-shadow: 0 0.6rem 1.4rem rgba(31, 26, 20, 0.05);
}

.testimonial-card__media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #ece6dc;
}

.testimonial-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.testimonial-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    padding: 1.35rem;
    color: var(--color-text);
}

.testimonial-card__content blockquote {
    margin: 0;
    flex: 1;
}

.testimonial-card__content blockquote p {
    margin: 0;
    color: #2b3f3d;
    font-size: 1.04rem;
    line-height: 1.55;
}

.testimonial-card__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 26, 20, 0.12);
}

.testimonial-card__name {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.35;
}

.testimonial-card__meta {
    margin: 0.3rem 0 0;
    color: var(--color-muted);
    font-size: 0.98rem;
    line-height: 1.35;
}

.entry-points__grid {
    display: grid;
    gap: 1.5rem;
}

.entry-point h2 {
    margin: 0;
    font-size: 1.25rem;
}

.entry-point p {
    margin: 0.5rem 0 0;
    color: var(--color-muted);
}

.entry-point a {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
}

@media (min-width: 48rem) {
    .intro-section {
        padding: 5.4rem 0 3.6rem;
    }

    .homepage-masonry-gallery-section__grid {
        column-count: 2;
        column-gap: 1.2rem;
    }

    .homepage-masonry-gallery-section__item {
        margin-bottom: 1.2rem;
    }

    .homepage-masonry-gallery-section__item--landscape .homepage-masonry-gallery-card__trigger {
        aspect-ratio: auto;
    }

    .homepage-masonry-gallery-section__item--landscape .homepage-masonry-gallery-card img {
        height: auto;
    }

    .juletraesgolf-winner-section {
        padding-bottom: 6.2rem;
    }

    .juletraesgolf-winner-section__media {
        margin-top: 2.5rem;
    }

    .juletraesgolf-previous-winners-section__controls {
        display: inline-flex;
    }

    .store-trees-reference-gallery__controls {
        display: flex;
    }

    .juletraesgolf-previous-winners-section__card {
        flex-basis: calc(50% - 0.7rem);
    }

    .store-trees-reference-gallery__card {
        flex-basis: calc(50% - 0.7rem);
    }

    .image-slider-section__controls {
        display: inline-flex;
    }

    .image-slider-section__card {
        flex-basis: calc(50% - 0.7rem);
    }

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

@media (min-width: 64rem) {
    .juletraesgolf-winner-section > .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: start;
    }

    .juletraesgolf-winner-section__inner {
        max-width: none;
        margin: 0;
        text-align: left;
    }

    .juletraesgolf-winner-section__body {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .juletraesgolf-winner-section__media {
        max-width: none;
        margin: 0;
    }

    .juletraesgolf-winner-section__media img {
        aspect-ratio: 4 / 3;
    }

    .juletraesgolf-winner-section--gaardbutik-intro > .container {
        display: block;
    }

    .juletraesgolf-winner-section--gaardbutik-intro .juletraesgolf-winner-section__inner {
        max-width: 52rem;
        margin: 0 auto;
        text-align: center;
    }

    .juletraesgolf-winner-section--gaardbutik-intro .juletraesgolf-winner-section__body {
        max-width: 46rem;
        margin-left: auto;
        margin-right: auto;
    }

    .juletraesgolf-previous-winners-section__track {
        display: flex;
        flex-wrap: nowrap;
        gap: 1.25rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.35rem;
    }

    .store-trees-reference-gallery__track {
        display: flex;
        flex-wrap: nowrap;
        gap: 1.25rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.35rem;
    }

    .juletraesgolf-previous-winners-section__card {
        flex: 0 0 calc((100% - 3.75rem) / 4);
        scroll-snap-align: start;
    }

    .store-trees-reference-gallery__card {
        flex: 0 0 calc((100% - 3.75rem) / 4);
        scroll-snap-align: start;
    }

    .image-slider-section__card {
        flex: 0 0 calc((100% - 3.75rem) / 4);
    }

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

    .homepage-cards__media h2 {
        white-space: nowrap;
    }

    .homepage-cards__body {
        padding-top: 1.75rem;
    }

    .homepage-cards__body .button {
        width: min(100%, 17.2rem);
    }

    .homepage-about-trees-section {
        padding: 5.4rem 0 5.8rem;
    }

    .image-text-section {
        padding: 5.6rem 0;
    }

    .image-text-section__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: start;
    }

    .image-text-section__media {
        justify-self: end;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .image-text-section__media img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .testimonials-section {
        padding: 5.4rem 0 5.8rem;
    }

    .homepage-masonry-gallery-section {
        padding: 5.4rem 0 5.8rem;
    }

    .testimonials-section__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.75rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .homepage-masonry-gallery-section__grid {
        column-count: 3;
        column-gap: 1.3rem;
    }

    .homepage-masonry-gallery-section__item {
        margin-bottom: 1.3rem;
    }

    .testimonial-card {
        flex: initial;
        scroll-snap-align: none;
    }
}

@media (min-width: 90rem) {
    .juletraesgolf-winner-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .juletraesgolf-previous-winners-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .store-trees-reference-gallery > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .image-text-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .homepage-about-trees-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .homepage-masonry-gallery-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .image-slider-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .testimonials-section > .container {
        width: min(100% - (var(--container-padding) * 2), 78rem);
    }

    .homepage-masonry-gallery-section__grid {
        column-count: 4;
    }

    .homepage-masonry-gallery-section__item--landscape .homepage-masonry-gallery-card__trigger {
        aspect-ratio: 15 / 8;
        overflow: hidden;
    }

    .homepage-masonry-gallery-section__item--landscape .homepage-masonry-gallery-card img {
        height: 100%;
        object-fit: cover;
    }
}

body.has-gallery-lightbox-open {
    overflow: hidden;
}

.site-footer {
    padding: 4.5rem 0 2rem;
    background-color: #F3F8F8;
}

.site-footer__inner {
    display: grid;
    gap: 3rem;
}

.site-footer__top {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.site-footer__column {
    min-width: 0;
}

.site-footer__column h2 {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
}

.site-footer__column p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.site-footer__column a {
    color: inherit;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.5;
}

.site-footer__map {
    position: relative;
    overflow: hidden;
    min-height: 12rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
}

.site-footer__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 12rem;
    border: 0;
}

.site-footer__map-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.site-footer__social-group {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.site-footer__nav,
.site-footer__social {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav a,
.site-footer__social a {
    display: inline-block;
}

.site-footer__nav li + li,
.site-footer__social li + li {
    margin-top: 1rem;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.site-footer__social a {
    display: inline-block;
    line-height: 0;
}

.site-footer__social svg {
    display: block;
    width: 2rem;
    height: 2rem;
}

.site-footer__sr-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer__social li + li {
    margin-top: 0;
}

.site-footer__bottom {
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-muted);
}

@media (min-width: 64rem) {
    .site-footer__top {
        grid-template-columns: minmax(0, 0.85fr) minmax(11rem, 0.65fr) minmax(18rem, 1.5fr);
        gap: 2.5rem;
    }

    .site-footer__map,
    .site-footer__map iframe {
        min-height: 17rem;
    }
}
