/*
Theme Name: Gartlzeit
Theme URI: https://gartlzeit.local
Author: Codex
Description: Blog- und Magazin-Theme fuer Gartlzeit im Stil eines ruhigen Natur- und Rosengartens.
Version: 1.1.53
Text Domain: sartor-garten
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
*/

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/google/cormorant-garamond-400.ttf") format("truetype");
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/google/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/google/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/google/cormorant-garamond-700.ttf") format("truetype");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/google/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/google/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/google/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/google/inter-700.ttf") format("truetype");
}

@font-face {
  font-family: 'Parisienne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/google/parisienne-400.ttf") format("truetype");
}

:root {
  --paper: #f7f0e4;
  --paper-deep: #efe1cf;
  --paper-soft: #fbf7ef;
  --ink: #34412e;
  --muted: #6e644f;
  --olive: #596746;
  --olive-dark: #3f4d38;
  --rose: #c8717b;
  --rose-dark: #a75762;
  --line: #d9c7ac;
  --shadow: 0 18px 48px rgba(71, 53, 33, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Parisienne", "Brush Script MT", cursive;
  --sans: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 113, 123, .09), transparent 28%),
    radial-gradient(circle at 86% 42%, rgba(89, 103, 70, .09), transparent 25%),
    linear-gradient(90deg, rgba(116, 92, 54, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(116, 92, 54, .025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  background: rgba(250, 245, 235, .94);
  border-bottom: 1px solid rgba(167, 141, 104, .35);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark,
.footer-monogram {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-dark);
  background: #fbf5ea;
  font: 700 24px/1 var(--serif);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .55);
}

.brand strong {
  display: block;
  color: var(--ink);
  font: 700 22px/.9 var(--serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand em {
  display: block;
  margin-top: 4px;
  color: var(--rose-dark);
  font: 22px/1 var(--script);
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #2e332d;
  font: 600 12px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-list a:hover::after,
.nav-list .current-menu-item a::after,
.nav-list a.is-active::after {
  transform: scaleX(1);
}

.header-cup {
  justify-self: end;
  width: 68px;
  height: 46px;
  display: grid;
  place-items: center;
}

.header-cup span,
.season-branch.tea,
.note-icon.cup,
.card-medallion.cup {
  position: relative;
  width: 46px;
  height: 28px;
  border: 2px solid #b59b75;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(#f8f0e2, #e7d4b8);
}

.header-cup span::before,
.season-branch.tea::before,
.note-icon.cup::before,
.card-medallion.cup::before {
  content: "";
  position: absolute;
  right: -13px;
  top: 6px;
  width: 16px;
  height: 14px;
  border: 2px solid #b59b75;
  border-left: 0;
  border-radius: 0 14px 14px 0;
}

.header-cup span::after,
.season-branch.tea::after,
.note-icon.cup::after,
.card-medallion.cup::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -12px;
  bottom: -8px;
  height: 4px;
  border: 1px solid #b59b75;
  border-radius: 50%;
  background: #ead9bf;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--olive);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 36, 24, .14), transparent 42%),
    linear-gradient(0deg, rgba(38, 31, 22, .2), transparent 32%);
  pointer-events: none;
}

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

.hero-video {
  display: block;
  background: var(--olive) center / cover no-repeat;
}

.blog-hero[data-parallax-hero] .hero-image,
.article-hero[data-parallax-hero] > img {
  top: -7%;
  right: 0;
  bottom: auto;
  left: 0;
  height: 114%;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.03);
  transform-origin: center;
  will-change: transform;
}

.hero-audio-toggle {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  color: #fff8ee;
  border: 1px solid rgba(255, 248, 238, .32);
  border-radius: 999px;
  background: rgba(30, 42, 48, .76);
  box-shadow: 0 12px 30px rgba(14, 20, 23, .28);
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.hero-audio-toggle:hover,
.hero-audio-toggle:focus-visible {
  background: rgba(112, 128, 93, .92);
  border-color: rgba(255, 248, 238, .58);
  outline: 0;
  transform: translateY(-2px);
}

.hero .hero-cinematographer-credit {
  position: absolute;
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(96px, 8vw, 122px);
  z-index: 3;
  margin: 0;
  color: rgba(255, 248, 238, .54);
  font: 500 14px/1.1 var(--serif);
  letter-spacing: .045em;
  text-transform: none;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(8, 13, 15, .32);
  white-space: nowrap;
}

.audio-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 20px;
}

.audio-speaker {
  position: absolute;
  top: 5px;
  left: 2px;
  width: 7px;
  height: 10px;
  border-radius: 2px 0 0 2px;
  background: currentColor;
}

.audio-speaker::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 6px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 10px solid currentColor;
}

.audio-wave {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 9px;
  height: 16px;
  border: 2px solid currentColor;
  border-color: transparent currentColor transparent transparent;
  border-radius: 50%;
}

.audio-wave::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 5px;
  height: 8px;
  border: 2px solid currentColor;
  border-color: transparent currentColor transparent transparent;
  border-radius: 50%;
}

.hero-audio-toggle.is-muted .audio-wave,
.hero-audio-toggle.is-muted .audio-wave::after {
  opacity: 0;
}

.hero-audio-toggle.is-muted .audio-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 11px;
  width: 2px;
  height: 22px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
  .blog-hero[data-parallax-hero] .hero-image,
  .article-hero[data-parallax-hero] > img {
    inset: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 760px) {
  .hero .hero-cinematographer-credit {
    display: none;
  }
}

.hero-plaque {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 42px));
  margin-left: clamp(34px, 14vw, 210px);
  padding: 84px 74px 64px;
  text-align: center;
  color: var(--ink);
  background: url("assets/ornaments/plaque-frame.png") center / 100% 100% no-repeat;
  border: 0;
  box-shadow: 0 20px 46px rgba(45, 36, 22, .23);
  clip-path: polygon(10% 7%, 31% 7%, 39% 2%, 61% 2%, 69% 7%, 90% 7%, 96% 14%, 96% 86%, 90% 93%, 69% 93%, 61% 98%, 39% 98%, 31% 93%, 10% 93%, 4% 86%, 4% 14%);
}

.mini-rose,
.card-medallion.rose,
.note-icon.rose {
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #b65764 0 16%, transparent 17%),
    conic-gradient(from 18deg, #e8a6ac, #b94f60, #e7afb2, #c8717b, #f0c7c8, #b85765, #e8a6ac);
  border: 4px solid #f2e4d1;
  box-shadow: 0 0 0 1px #bdab8e;
}

.hero-plaque .mini-rose {
  display: none;
}

.hero h1 {
  margin: 16px 0 10px;
  color: var(--olive-dark);
  font: 700 clamp(48px, 5vw, 68px)/.9 var(--serif);
  letter-spacing: .05em;
}

.hero p {
  margin: 0 auto 24px;
  color: var(--rose-dark);
  font: 34px/1.08 var(--script);
}

.hero-actions,
.visit-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  font: 700 12px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 9px 18px rgba(83, 55, 42, .16);
  transition: transform .18s ease, filter .18s ease;
}

.btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-green {
  background: var(--olive);
}

.btn-rose,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--rose);
}

.paper-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(141, 111, 71, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(141, 111, 71, .03) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto;
}

.welcome {
  padding: 70px 0 56px;
  overflow: hidden;
}

.welcome-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(34px, 8vw, 116px);
  align-items: center;
}

.welcome-copy {
  max-width: 410px;
  margin-left: clamp(0px, 12vw, 175px);
}

.script-label {
  margin: 0 0 8px;
  color: var(--rose-dark);
  font: 26px/1 var(--script);
}

.welcome h2,
.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: var(--olive-dark);
  font: 700 clamp(36px, 4vw, 58px)/.92 var(--serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.welcome p:not(.script-label) {
  margin: 18px 0;
  color: #3d3c35;
  font-size: 15px;
}

.welcome strong {
  color: var(--rose-dark);
  font: 34px/1 var(--script);
  font-weight: 400;
}

.portrait-frame {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0;
  padding: 11px;
  border: 1px solid #b9a789;
  border-radius: 50%;
  background: rgba(255, 250, 241, .9);
  box-shadow: 0 16px 38px rgba(78, 57, 33, .16);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 190px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 50%;
  border-top: 1px solid #a4a17b;
}

.portrait-frame::before {
  top: -13px;
}

.portrait-frame::after {
  bottom: -13px;
  transform: translateX(-50%) rotate(180deg);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.floral-corner {
  position: absolute;
  width: min(330px, 30vw);
  height: min(330px, 30vw);
  opacity: .86;
  pointer-events: none;
  background: url("assets/ornaments/floral-corner.png") left bottom / contain no-repeat;
  mix-blend-mode: multiply;
}

.floral-left {
  left: -24px;
  bottom: 10px;
}

.floral-right {
  right: -24px;
  top: 14px;
  transform: scaleX(-1) rotate(-4deg);
}

.cards-section {
  padding: 34px 0 62px;
}

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

.garden-card,
.product-grid article,
.woocommerce ul.products li.product {
  position: relative;
  min-height: 310px;
  padding: 0 0 25px;
  text-align: center;
  background: rgba(251, 247, 238, .82);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .32);
}

.garden-card::before,
.product-grid article::before,
.woocommerce ul.products li.product::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(178, 151, 112, .35);
  pointer-events: none;
}

.garden-card > img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-medallion,
.note-icon,
.season-branch {
  display: inline-block;
  margin: -30px auto 14px;
}

.card-medallion {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #fbf5ea;
  box-shadow: 0 0 0 1px var(--line), inset 0 0 0 6px #f4eadb;
}

.card-medallion,
.note-icon {
  border-radius: 50%;
  background-image: url("assets/ornaments/medallion-set.png");
  background-repeat: no-repeat;
  background-size: 600% 100%;
  background-position: 0% 50%;
  border: 1px solid rgba(176, 143, 105, .68);
  box-shadow: 0 0 0 4px rgba(251, 246, 235, .92), 0 0 0 5px rgba(176, 143, 105, .42);
}

.card-medallion.rose,
.note-icon.rose {
  background-image: url("assets/ornaments/medallion-set.png");
  background-position: 0% 50%;
}

.card-medallion.butterfly {
  background-position: 20% 50%;
}

.card-medallion.cup,
.note-icon.cup {
  background-position: 40% 50%;
}

.note-icon.bouquet {
  background-position: 60% 50%;
}

.card-medallion.cup::before,
.card-medallion.cup::after,
.note-icon.cup::before,
.note-icon.cup::after {
  display: none;
}

.card-medallion.butterfly,
.note-icon.bouquet {
  background-image: url("assets/ornaments/medallion-set.png");
}

.garden-card h3,
.product-grid h3,
.woocommerce-loop-product__title {
  margin: 0 20px 8px;
  color: var(--olive-dark);
  font: 700 24px/1.05 var(--serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.garden-card p,
.product-grid p {
  max-width: 255px;
  margin: 0 auto 14px;
  color: #393833;
  font-size: 14px;
}

.garden-card a,
.product-grid a:not(.btn),
.woocommerce ul.products li.product .price {
  color: var(--rose-dark);
  font: 700 12px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(220px, 33%) minmax(240px, 1fr) minmax(430px, 1.45fr);
  align-items: stretch;
  min-height: 188px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .38)),
    var(--paper-deep);
  border-block: 1px solid rgba(176, 143, 105, .35);
}

.visit-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-copy {
  flex-direction: column;
  gap: 12px;
  padding: 26px 32px;
  text-align: center;
}

.visit-copy h2 {
  margin: 0;
  color: var(--rose-dark);
  font: 38px/1 var(--script);
}

.visit-copy p {
  max-width: 310px;
  margin: 0;
  font-size: 14px;
}

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

.visit-notes article {
  padding: 16px 14px 14px;
  text-align: center;
  background: rgba(251, 246, 235, .68);
  border: 1px solid var(--line);
  clip-path: polygon(9% 0, 91% 0, 100% 18%, 100% 100%, 0 100%, 0 18%);
}

.note-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
}

.visit-notes h3 {
  margin: 0 0 5px;
  color: var(--olive-dark);
  font: 700 18px/1 var(--serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.visit-notes p {
  margin: 0;
  font-size: 12px;
}

.seasons {
  padding: 46px 0 54px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0 0 6px;
  color: var(--rose-dark);
  font: 28px/1 var(--script);
}

.section-heading span {
  display: block;
  width: min(260px, 66vw);
  height: 24px;
  margin: 6px auto 0;
  border: 0;
  background: url("assets/ornaments/divider-ornament.png") center 50% / 260px 86px no-repeat;
  mix-blend-mode: multiply;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.season-grid article {
  min-height: 156px;
  padding: 2px 21px 0;
  text-align: center;
  border-right: 1px dashed rgba(171, 143, 104, .54);
}

.season-grid article:last-child {
  border-right: 0;
}

.season-branch {
  width: 66px;
  height: 62px;
  margin: 0 auto 12px;
}

.season-branch.spring,
.season-branch.rose,
.season-branch.hydrangea,
.season-branch.autumn,
.season-branch.winter {
  border-radius: 48% 52% 46% 54%;
  background:
    radial-gradient(circle at 50% 27%, rgba(200, 113, 123, .8) 0 9%, transparent 10%),
    radial-gradient(circle at 36% 48%, rgba(241, 197, 198, .88) 0 12%, transparent 13%),
    radial-gradient(circle at 63% 52%, rgba(231, 175, 178, .88) 0 12%, transparent 13%),
    linear-gradient(70deg, transparent 45%, #7f8a61 46% 50%, transparent 51%),
    linear-gradient(-70deg, transparent 45%, #7f8a61 46% 50%, transparent 51%);
}

.season-branch.hydrangea {
  filter: hue-rotate(130deg) saturate(.65);
}

.season-branch.autumn {
  filter: hue-rotate(245deg) saturate(1.25);
}

.season-branch.winter {
  filter: grayscale(.65) brightness(1.05);
}

.season-grid h3 {
  margin: 0 0 6px;
  color: var(--olive-dark);
  font: 700 18px/1 var(--serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.season-grid p {
  margin: 0;
  font-size: 12px;
}

.shop-preview {
  padding: 54px 0 42px;
  background-color: var(--paper-soft);
}

.product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-grid article {
  min-height: 0;
  padding-bottom: 24px;
}

.product-grid img,
.woocommerce ul.products li.product img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.product-grid strong,
.woocommerce ul.products li.product .price {
  display: block;
  margin: 10px 0 16px;
}

.gallery {
  padding: 45px 0 56px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-strip img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  padding: 5px;
  background: #fdf9ef;
  border: 1px solid var(--line);
  box-shadow: 0 5px 14px rgba(77, 58, 38, .13);
}

.gallery-btn {
  margin: 26px auto 0;
  width: fit-content;
}

.quote-band {
  position: relative;
  min-height: 166px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e6e0cf;
  border-top: 1px solid rgba(162, 139, 103, .45);
}

.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 24px;
  color: #a76358;
  text-align: center;
  font: 42px/1.18 var(--script);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #eee6d6;
  background:
    radial-gradient(circle at 9% 28%, rgba(245, 222, 194, .08), transparent 24%),
    linear-gradient(rgba(47, 61, 42, .94), rgba(47, 61, 42, .94)),
    var(--olive-dark);
}

.footer-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(410px, 38vw);
  height: 100%;
  opacity: .34;
  background: url("assets/images/gartlzeit/013-rosenbogen-lavendel.jpg") center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent, #000 36%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 38px;
  padding: 46px 0 34px;
}

.footer-brand {
  text-align: center;
}

.footer-monogram {
  margin: 0 auto 10px;
  background: transparent;
  color: #f4e2cd;
}

.footer-brand strong {
  display: block;
  color: #fff3df;
  font: 700 34px/.9 var(--serif);
  letter-spacing: .04em;
}

.footer-brand em {
  display: block;
  margin-top: 12px;
  color: #e9cfc0;
  font: 28px/1 var(--script);
}

.site-footer h3 {
  margin: 0 0 15px;
  color: #f7ead7;
  font: 700 15px/1 var(--serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer p,
.footer-nav,
.footer-fallback {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(246, 239, 224, .82);
  font-size: 13px;
}

.site-footer p + p {
  margin-top: 14px;
}

.footer-nav a,
.footer-legal a {
  color: rgba(246, 239, 224, .82);
}

.footer-nav li + li {
  margin-top: 4px;
}

.footer-legal {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px 22px;
  border-top: 1px solid rgba(243, 230, 205, .16);
  font: 600 11px/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.standard-page,
.shop-shell {
  padding: 72px 0;
}

.content-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(251, 247, 238, .78);
  border: 1px solid var(--line);
}

.entry-content {
  color: #3d3c35;
}

.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce .quantity .qty,
.woocommerce select,
.woocommerce input.input-text {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--ink);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: 46px;
}

.woocommerce div.product div.images img {
  border: 1px solid var(--line);
  background: #fff8ec;
}

.woocommerce div.product .product_title {
  color: var(--olive-dark);
  font: 700 48px/.95 var(--serif);
  letter-spacing: .03em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
  }

  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    padding: 18px;
    background: rgba(250, 245, 235, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

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

  .nav-toggle {
    position: relative;
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: rgba(255, 248, 238, .92);
    border: 1px solid rgba(246, 240, 231, .34);
    border-radius: 999px;
    background: rgba(246, 240, 231, .07);
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 238, .06),
      0 12px 28px rgba(5, 12, 14, .18);
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
  }

  .nav-toggle span {
    position: absolute;
    left: 14px;
    right: 14px;
    width: auto;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .22s ease, opacity .18s ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .nav-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(246, 240, 231, .12);
    border-color: rgba(246, 240, 231, .56);
    transform: translateY(-1px);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .header-cup {
    width: 46px;
  }

  .welcome-grid,
  .card-grid,
  .product-grid,
  .woocommerce ul.products,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .welcome-copy {
    margin-left: 0;
  }

  .portrait-frame {
    justify-self: center;
  }

  .visit-band {
    grid-template-columns: 1fr;
  }

  .visit-band > img {
    height: 250px;
  }

  .season-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand strong {
    font-size: 18px;
  }

  .brand em {
    font-size: 18px;
  }

  .hero {
    min-height: 610px;
    align-items: end;
    padding-bottom: 32px;
  }

  .hero-plaque {
    margin: 0 auto;
    padding: 66px 42px 50px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 28px;
  }

  .welcome {
    padding-top: 46px;
  }

  .portrait-frame {
    width: min(320px, 86vw);
    height: min(320px, 86vw);
  }

  .visit-notes,
  .season-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .season-grid article {
    border-right: 0;
    border-bottom: 1px dashed rgba(171, 143, 104, .54);
    padding-bottom: 22px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* Reference redesign: dark natural garden direction */
:root {
  --paper: #f4efe7;
  --paper-deep: #ebe3d7;
  --paper-soft: #f7f3ec;
  --ink: #2d3740;
  --muted: #62685f;
  --charcoal: #26323a;
  --charcoal-2: #202a31;
  --sage: #65735b;
  --sage-soft: #77856e;
  --line: #cfc8bb;
  --cream: #f6f0e7;
  --shadow: 0 20px 45px rgba(22, 30, 31, .28);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(38, 50, 58, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(38, 50, 58, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto;
}

.site-header {
  position: relative;
  height: 116px;
  grid-template-columns: minmax(270px, 1fr) auto minmax(40px, 1fr);
  padding: 0 clamp(28px, 7vw, 86px);
  color: var(--cream);
  background:
    radial-gradient(circle at 14% -20%, rgba(255, 255, 255, .07), transparent 34%),
    linear-gradient(135deg, #2d3a42, #222d35);
  border-bottom: 0;
  backdrop-filter: none;
}

.brand {
  gap: 18px;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 70px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(82deg, transparent 48%, rgba(230, 225, 215, .62) 49% 51%, transparent 52%) center / 42px 64px no-repeat;
  box-shadow: none;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 28px;
  border: 1px solid rgba(230, 225, 215, .58);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  transform: rotate(-35deg);
}

.brand-mark::before {
  left: 8px;
  top: 13px;
}

.brand-mark::after {
  right: 3px;
  top: 36px;
  transform: rotate(145deg);
}

.brand strong {
  color: #fff8ee;
  font: 600 27px/.95 var(--serif);
  letter-spacing: .055em;
}

.brand em {
  color: rgba(246, 240, 231, .78);
  font-size: 22px;
}

.nav-list {
  gap: 42px;
}

.nav-list a {
  color: rgba(247, 242, 233, .9);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .13em;
}

.nav-list a::after {
  bottom: 2px;
  background: rgba(247, 242, 233, .75);
}

.header-cup {
  display: none;
}

.hero {
  min-height: 650px;
  align-items: center;
  background: var(--charcoal);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(10, 17, 18, .16), transparent 44%),
    linear-gradient(0deg, rgba(10, 17, 18, .24), transparent 36%);
}

.hero-image {
  object-position: center center;
}

.hero-plaque {
  width: min(565px, calc(100% - 90px));
  margin-left: clamp(38px, 8vw, 110px);
  padding: 72px 76px 58px;
  color: var(--cream);
  background:
    linear-gradient(rgba(39, 50, 58, .94), rgba(39, 50, 58, .94)),
    var(--charcoal);
  border: 1px solid rgba(234, 230, 220, .32);
  box-shadow: 0 18px 40px rgba(5, 12, 14, .34);
  clip-path: none;
}

.hero-plaque::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(235, 230, 220, .22);
  pointer-events: none;
}

.line-flourish,
.line-divider,
.small-divider {
  display: block;
  width: 170px;
  height: 26px;
  margin: 0 auto 18px;
  opacity: .82;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 3px, transparent 4px),
    linear-gradient(currentColor, currentColor) center / 120px 1px no-repeat;
  color: rgba(247, 242, 233, .68);
}

.line-flourish::before,
.line-divider::before,
.small-divider::before {
  content: "";
}

.line-divider {
  width: 190px;
  height: 18px;
  margin: 18px auto 24px;
}

.hero h1 {
  margin: 0;
  color: #fff8ee;
  font: 500 clamp(46px, 5vw, 68px)/1.03 var(--serif);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero p {
  margin: 0 auto 30px;
  color: rgba(255, 248, 238, .9);
  font: 25px/1.45 var(--serif);
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 44px;
  padding: 0 25px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  box-shadow: none;
}

.btn-light {
  color: var(--charcoal);
  background: var(--cream);
}

.btn-green,
.btn-rose,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff8ee;
  background: var(--sage);
}

.paper-section {
  background:
    linear-gradient(90deg, rgba(38, 50, 58, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(38, 50, 58, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto;
}

.welcome {
  padding: 76px 0 82px;
}

.welcome-grid {
  grid-template-columns: minmax(340px, .86fr) minmax(420px, 1fr);
  gap: clamp(52px, 9vw, 128px);
  min-height: 360px;
}

.welcome-copy {
  max-width: 430px;
  margin-left: clamp(20px, 12vw, 170px);
}

.script-label {
  color: #7c8178;
  font-size: 25px;
}

.welcome h2,
.essentials h2,
.visit-copy h2,
.section-heading h1,
.section-heading h2 {
  color: var(--ink);
  font: 600 clamp(34px, 4vw, 48px)/1.05 var(--serif);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.welcome p:not(.script-label),
.essentials-copy p,
.feature-list p,
.visit-copy p,
.visit-facts p {
  color: #404845;
  font-size: 15px;
  line-height: 1.75;
}

.small-divider {
  width: 105px;
  height: 18px;
  margin: 18px 0 20px;
  color: rgba(52, 62, 65, .38);
}

.welcome-photo {
  position: relative;
  margin: 0;
  max-width: 560px;
}

.welcome-photo::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  background: rgba(96, 111, 91, .55);
  border-radius: 10px;
}

.welcome-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(25, 34, 33, .18);
}

.botanical-line {
  position: absolute;
  width: 150px;
  height: 330px;
  opacity: .24;
  pointer-events: none;
  background:
    linear-gradient(78deg, transparent 49%, #2e3a3e 49.5% 50.5%, transparent 51%) center / 110px 315px no-repeat,
    radial-gradient(ellipse at 39% 22%, rgba(46,58,62,.75) 0 12%, transparent 13%),
    radial-gradient(ellipse at 63% 33%, rgba(46,58,62,.65) 0 11%, transparent 12%),
    radial-gradient(ellipse at 36% 49%, rgba(46,58,62,.62) 0 10%, transparent 11%),
    radial-gradient(ellipse at 67% 64%, rgba(46,58,62,.62) 0 10%, transparent 11%),
    radial-gradient(ellipse at 43% 81%, rgba(46,58,62,.52) 0 9%, transparent 10%);
  filter: grayscale(1);
}

.botanical-left {
  left: -26px;
  bottom: -20px;
}

.dark-section {
  padding: 70px 0 78px;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% -8%, rgba(255,255,255,.06), transparent 28%),
    linear-gradient(145deg, #26333b, #1f2930);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.inverted h2 {
  color: #fff8ee;
}

.section-heading span {
  width: 180px;
  height: 22px;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 3px, transparent 4px),
    linear-gradient(currentColor, currentColor) center / 132px 1px no-repeat;
  color: rgba(247, 242, 233, .58);
  mix-blend-mode: normal;
}

.garden-worlds .card-grid {
  gap: 34px;
}

.garden-worlds .garden-card {
  min-height: 360px;
  color: rgba(255, 248, 238, .9);
  background: transparent;
  border: 1px solid rgba(239, 234, 224, .22);
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

.garden-worlds .garden-card::before {
  display: none;
}

.garden-worlds .garden-card > img {
  height: 170px;
  border: 0;
  border-radius: 8px 8px 0 0;
}

.garden-worlds .garden-card h3 {
  color: #fff8ee;
  font: 500 23px/1.1 var(--serif);
  letter-spacing: .08em;
}

.garden-worlds .garden-card p {
  color: rgba(255, 248, 238, .88);
  font-size: 14px;
}

.garden-worlds .garden-card a {
  color: rgba(255, 248, 238, .85);
}

.card-icon,
.round-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -32px auto 22px;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(44, 54, 58, .2);
}

.card-icon::before,
.round-icon::before {
  content: "";
  width: 26px;
  height: 30px;
  opacity: .85;
  background:
    linear-gradient(72deg, transparent 47%, currentColor 48% 52%, transparent 53%) center / 24px 30px no-repeat;
}

.card-icon::after,
.round-icon::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 23px;
  border: 1.7px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  opacity: .85;
  transform: translate(4px, -4px) rotate(34deg);
}

.card-icon.can::before,
.round-icon.ticket::before,
.round-icon.calendar::before {
  border: 2px solid currentColor;
  border-radius: 3px;
  background: none;
}

.card-icon.can::after,
.round-icon.ticket::after,
.round-icon.calendar::after {
  display: none;
}

.round-icon.calendar::before {
  width: 24px;
  height: 22px;
  border-top-width: 6px;
}

.essentials {
  padding: 72px 0 66px;
}

.essentials-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(360px, .95fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.essentials-copy {
  padding-left: clamp(10px, 12vw, 150px);
}

.essentials-copy img {
  width: 100%;
  height: 155px;
  margin-top: 42px;
  object-fit: cover;
  border-radius: 7px;
}

.botanical-low {
  left: -24px;
  bottom: -42px;
}

.feature-list {
  display: grid;
  gap: 28px;
}

.feature-list article,
.visit-facts article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: start;
}

.feature-list .round-icon,
.visit-facts .round-icon {
  margin: 0;
  background: transparent;
  color: var(--sage);
  border-color: rgba(65, 76, 67, .42);
}

.feature-list h3,
.visit-facts h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font: 500 21px/1.1 var(--serif);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.feature-list p,
.visit-facts p {
  margin: 0;
}

.feature-list .btn {
  width: fit-content;
  margin-left: 90px;
}

.visit-panel {
  color: var(--cream);
  background: linear-gradient(90deg, #6a785f, #56684f);
}

.visit-grid {
  display: grid;
  grid-template-columns: 330px minmax(320px, .95fr) minmax(300px, .8fr);
  align-items: stretch;
  min-height: 310px;
}

.visit-grid > img {
  width: 100%;
  height: 250px;
  align-self: center;
  object-fit: cover;
  border-radius: 7px;
}

.visit-copy {
  padding: 54px 48px;
}

.visit-copy .script-label {
  margin: 0 0 6px;
  color: rgba(255, 248, 238, .78);
}

.visit-copy h2,
.visit-copy p,
.visit-facts h3,
.visit-facts p {
  color: #fff8ee;
}

.visit-copy .small-divider {
  color: rgba(255, 248, 238, .42);
}

.visit-facts {
  display: grid;
  gap: 26px;
  padding: 42px 0 42px 38px;
  border-left: 1px solid rgba(255, 248, 238, .18);
}

.visit-facts .round-icon {
  color: #fff8ee;
  border-color: rgba(255, 248, 238, .45);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(246, 240, 231, .86);
  background:
    radial-gradient(circle at 12% -18%, rgba(255, 255, 255, .07), transparent 30%),
    linear-gradient(145deg, #26333b, #202a31);
}

.footer-art {
  width: min(360px, 32vw);
  opacity: .16;
  background: none;
}

.footer-art::before {
  content: "";
  position: absolute;
  inset: 30px 40px;
  background:
    linear-gradient(74deg, transparent 49%, #f6f0e7 50%, transparent 51%),
    radial-gradient(ellipse at 38% 34%, transparent 48%, #f6f0e7 49% 51%, transparent 52%),
    radial-gradient(ellipse at 65% 46%, transparent 48%, #f6f0e7 49% 51%, transparent 52%),
    radial-gradient(ellipse at 48% 70%, transparent 48%, #f6f0e7 49% 51%, transparent 52%);
}

.footer-grid {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  padding: 58px 0 52px;
}

.footer-grid-compact {
  grid-template-columns: minmax(240px, .95fr) minmax(190px, 280px) minmax(260px, 1.25fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.footer-brand {
  text-align: left;
}

.footer-brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 330px);
  justify-self: center;
  padding-top: 2px;
  text-align: center;
}

.footer-robin-mark {
  display: block;
  width: min(255px, 92%);
  aspect-ratio: 1536 / 1024;
  margin: -34px auto -34px;
  background: url("assets/provided/brand/rotkehlchen-gartlzeit.png") 48% center / contain no-repeat;
  filter: drop-shadow(0 6px 14px rgba(5, 12, 13, .22));
}

.footer-monogram {
  width: 76px;
  height: 76px;
  margin: 0 0 22px;
  color: #f6f0e7;
  font: 500 18px/.82 var(--serif);
  white-space: pre-line;
}

.footer-brand strong {
  display: inline-block;
  max-width: 290px;
  margin-inline: auto;
  padding-left: .16em;
  color: #fff8ee;
  font-size: clamp(28px, 2.4vw, 37px);
  line-height: 1.03;
  letter-spacing: .16em;
  text-indent: 0;
  text-align: center;
}

.footer-brand em {
  display: block;
  margin: 10px auto 0;
  color: rgba(246, 240, 231, .76);
  font-size: 27px;
  line-height: 1.08;
  text-align: center;
}

.footer-link-group {
  justify-self: center;
  min-width: 190px;
}

.footer-gallery-space {
  min-height: 170px;
}

.footer-design-credit {
  position: relative;
  justify-self: end;
  align-self: center;
  min-width: min(200px, 100%);
  padding: 10px 14px 9px;
  color: rgba(255, 248, 238, .92);
  text-align: center;
}

.footer-design-credit::before,
.footer-design-credit::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(220px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 240, 231, .24), transparent);
  transform: translateX(-50%);
}

.footer-design-credit::before {
  top: 0;
}

.footer-design-credit::after {
  bottom: 0;
}

.footer-design-credit span {
  display: block;
  margin-bottom: 5px;
  color: rgba(246, 240, 231, .62);
  font: 800 7px/1.2 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-design-credit strong {
  display: block;
  color: #fff8ee;
  font: 500 clamp(17px, 1.55vw, 22px)/.92 var(--serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-design-credit em {
  display: block;
  margin-top: 5px;
  color: rgba(177, 193, 143, .92);
  font: 400 clamp(14px, 1.35vw, 18px)/1.05 var(--script);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: min(1060px, calc(100% - 48px));
  margin: -24px auto 0;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(246, 240, 231, .16);
  color: rgba(246, 240, 231, .62);
  font: 700 11px/1.2 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-legal a,
.footer-legal span {
  color: inherit;
}

.footer-legal a:hover {
  color: rgba(255, 248, 238, .92);
}

.legal-page {
  min-height: 70vh;
  padding: clamp(72px, 8vw, 118px) 0 clamp(78px, 9vw, 132px);
}

.legal-shell {
  width: min(920px, calc(100% - 48px));
}

.legal-hero {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font: 600 clamp(46px, 7vw, 82px)/.95 var(--serif);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-hero p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 620px;
  color: #49514d;
  font-size: 16px;
  line-height: 1.75;
}

.legal-card {
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(38, 50, 58, .16);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, .86), rgba(246, 240, 231, .9)),
    var(--paper-soft);
  box-shadow: 0 22px 60px rgba(38, 50, 58, .09);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(38, 50, 58, .13);
}

.legal-card section {
  position: relative;
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(38, 50, 58, .12);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font: 700 15px/1.25 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-card p {
  margin: 0;
  color: #3f4744;
  font-size: 16px;
  line-height: 1.75;
}

.legal-card a {
  color: var(--olive);
  font-weight: 700;
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header {
    height: 86px;
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    top: 86px;
    background: rgba(38, 50, 58, .98);
    border-color: rgba(246, 240, 231, .18);
  }

  .hero {
    min-height: 620px;
  }

  .hero-plaque {
    margin-inline: auto;
  }

  .welcome-grid,
  .essentials-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .welcome-copy,
  .essentials-copy {
    margin-left: 0;
    padding-left: 0;
  }

  .visit-grid {
    padding: 34px 0;
  }

  .visit-facts {
    padding: 0;
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid-compact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-gallery-space {
    display: none;
  }

  .footer-design-credit {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 16px;
  }

  .brand-mark {
    display: none;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand em {
    font-size: 17px;
  }

  .hero {
    min-height: 610px;
    padding: 34px 0;
  }

  .hero-plaque {
    width: calc(100% - 34px);
    padding: 48px 28px 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 20px;
  }

  .welcome-photo img {
    height: 250px;
  }

  .garden-worlds .garden-card > img {
    height: 190px;
  }

  .essentials-copy img {
    height: 126px;
  }

  .feature-list article,
  .visit-facts article {
    grid-template-columns: 56px 1fr;
  }

  .feature-list .btn {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-compact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-link-group {
    justify-self: center;
  }
}

/* Transparent PNG ornament pass */
.brand-mark {
  background: url("assets/ornaments/botanical-sprig-transparent.png") center / contain no-repeat;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.line-flourish,
.line-divider,
.small-divider,
.section-heading span {
  background: url("assets/ornaments/divider-transparent.png") center / contain no-repeat;
  color: inherit;
}

.line-flourish {
  width: 190px;
  height: 30px;
  margin-bottom: 18px;
}

.line-divider {
  width: 210px;
  height: 28px;
  margin: 14px auto 22px;
}

.small-divider {
  width: 124px;
  height: 22px;
  margin: 16px 0 20px;
  filter: brightness(0) opacity(.34);
}

.section-heading span {
  width: 210px;
  height: 30px;
}

.paper-section .section-heading span {
  filter: brightness(0) opacity(.34);
}

.botanical-line {
  width: 150px;
  height: 360px;
  background: url("assets/ornaments/botanical-sprig-transparent.png") center bottom / contain no-repeat;
  filter: brightness(0) opacity(.18);
}

.footer-art::before {
  inset: 34px 36px;
  background: url("assets/ornaments/botanical-sprig-transparent.png") center / contain no-repeat;
}

.card-icon,
.round-icon {
  background-image: url("assets/ornaments/icon-set-transparent.png");
  background-repeat: no-repeat;
  background-size: 600% 100%;
  background-position: 0% 50%;
}

.card-icon::before,
.card-icon::after,
.round-icon::before,
.round-icon::after {
  display: none;
}

.card-icon.flower,
.round-icon.flower,
.round-icon.bouquet {
  background-position: 0% 50%;
}

.card-icon.leaf,
.round-icon.leaf {
  background-position: 20% 50%;
}

.card-icon.can {
  background-position: 40% 50%;
}

.round-icon.calendar {
  background-position: 60% 50%;
}

.round-icon.ticket {
  background-position: 80% 50%;
}

.round-icon.paw {
  background-position: 100% 50%;
}

.feature-list .round-icon,
.visit-facts .round-icon {
  background-color: transparent;
}

/* Make transparent icon sheet readable on light and dark medallions. */
.card-icon,
.round-icon {
  background-image: none;
  overflow: hidden;
}

.card-icon::before,
.round-icon::before {
  content: "";
  display: block;
  width: 76%;
  height: 76%;
  background-image: url("assets/ornaments/icon-set-transparent.png");
  background-repeat: no-repeat;
  background-size: 600% 100%;
  background-position: 0% 50%;
  filter: brightness(0) opacity(.72);
  transform: scale(1.42);
}

.card-icon::after,
.round-icon::after {
  display: none;
}

.card-icon.flower::before,
.round-icon.flower::before,
.round-icon.bouquet::before {
  background-position: 0% 50%;
}

.card-icon.leaf::before,
.round-icon.leaf::before {
  background-position: 20% 50%;
}

.card-icon.can::before {
  background-position: 40% 50%;
}

.round-icon.calendar::before {
  background-position: 60% 50%;
}

.round-icon.ticket::before {
  background-position: 80% 50%;
}

.round-icon.paw::before {
  background-position: 100% 50%;
}

.visit-facts .round-icon::before {
  filter: brightness(0) invert(1) opacity(.72);
}

/* Client-provided botanical asset pass */
:root {
  --asset-brand-sprig: url("assets/provided/selected/brand-sprig.svg");
  --asset-footer-sprig: url("assets/provided/selected/footer-sprig.svg");
  --asset-berry-sprig: url("assets/provided/selected/berry-sprig.svg");
  --asset-flower-sprig: url("assets/provided/selected/flower-sprig.svg");
  --asset-soft-frame: url("assets/provided/selected/soft-frame.svg");
  --asset-heading-flourish: url("assets/provided/selected/heading-flourish.svg");
  --asset-hd-hero: url("assets/provided/hand-drawn-floral/selected/journal-hero-floral.png");
  --asset-hd-entry: url("assets/provided/hand-drawn-floral/selected/journal-entry-floral.png");
  --asset-hd-sidebar: url("assets/provided/hand-drawn-floral/selected/sidebar-flower.png");
  --asset-hd-quote: url("assets/provided/hand-drawn-floral/selected/quote-flower.png");
  --asset-hd-footer: url("assets/provided/hand-drawn-floral/floral_06.png");
}

.brand-mark {
  background: rgba(248, 242, 233, .76);
  -webkit-mask: var(--asset-brand-sprig) center / contain no-repeat;
  mask: var(--asset-brand-sprig) center / contain no-repeat;
  filter: none;
}

.hero-plaque {
  overflow: hidden;
}

.hero-plaque > * {
  position: relative;
  z-index: 1;
}

.hero-plaque::before {
  z-index: 0;
}

.hero-plaque::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  background: rgba(248, 242, 233, .16);
  -webkit-mask: var(--asset-soft-frame) center / 104% 104% no-repeat;
  mask: var(--asset-soft-frame) center / 104% 104% no-repeat;
}

.line-flourish,
.line-divider,
.small-divider,
.section-heading span {
  background: rgba(248, 242, 233, .68);
  -webkit-mask: var(--asset-heading-flourish) center 43% / 230px 230px no-repeat;
  mask: var(--asset-heading-flourish) center 43% / 230px 230px no-repeat;
  filter: none;
}

.line-flourish {
  width: 220px;
  height: 34px;
}

.line-divider {
  width: 226px;
  height: 34px;
}

.small-divider {
  width: 150px;
  height: 28px;
  background-color: rgba(48, 58, 51, .42);
}

.paper-section .section-heading span {
  background-color: rgba(48, 58, 51, .42);
  filter: none;
}

.line-flourish,
.line-divider,
.small-divider,
.section-heading span {
  position: relative;
  display: block;
  background: none;
  -webkit-mask: none;
  mask: none;
  filter: none;
}

.line-flourish::before,
.line-divider::before,
.small-divider::before,
.section-heading span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    currentColor 18%,
    currentColor calc(50% - 18px),
    transparent calc(50% - 18px),
    transparent calc(50% + 18px),
    currentColor calc(50% + 18px),
    currentColor 82%,
    transparent
  );
  opacity: .74;
}

.line-flourish::after,
.line-divider::after,
.small-divider::after,
.section-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 10px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 38% 50%, currentColor 0 28%, transparent 31%),
    radial-gradient(ellipse at 62% 50%, currentColor 0 28%, transparent 31%),
    linear-gradient(90deg, transparent 0 44%, currentColor 46% 54%, transparent 56%);
  opacity: .78;
}

.small-divider,
.paper-section .section-heading span {
  color: rgba(48, 58, 51, .44);
  background: none;
}

.dark-section .small-divider,
.blog-section-head .small-divider,
.quote-band .small-divider,
.section-heading.inverted span,
.visit-copy .small-divider {
  color: rgba(248, 242, 233, .62);
}

.section-heading.inverted span,
.visit-copy .small-divider {
  background: none;
}

.botanical-line {
  background: rgba(35, 45, 39, .18);
  -webkit-mask: var(--asset-footer-sprig) center bottom / contain no-repeat;
  mask: var(--asset-footer-sprig) center bottom / contain no-repeat;
  filter: none;
}

.botanical-line.left {
  transform: translateX(-12px) scaleX(-1);
}

.botanical-line.right {
  transform: translateX(12px);
}

.footer-art::before {
  background: rgba(248, 242, 233, .78);
  -webkit-mask: var(--asset-footer-sprig) center / contain no-repeat;
  mask: var(--asset-footer-sprig) center / contain no-repeat;
}

.card-icon,
.round-icon {
  --icon-asset: var(--asset-brand-sprig);
  background-image: none;
}

.card-icon::before,
.round-icon::before {
  width: 42px;
  height: 42px;
  background: currentColor;
  -webkit-mask: var(--icon-asset) center / contain no-repeat;
  mask: var(--icon-asset) center / contain no-repeat;
  filter: none;
  opacity: .82;
  transform: none;
}

.card-icon.flower,
.round-icon.flower,
.round-icon.bouquet {
  --icon-asset: var(--asset-flower-sprig);
}

.card-icon.leaf,
.round-icon.leaf {
  --icon-asset: var(--asset-brand-sprig);
}

.card-icon.can,
.round-icon.calendar {
  --icon-asset: var(--asset-berry-sprig);
}

.round-icon.ticket,
.round-icon.paw {
  --icon-asset: var(--asset-footer-sprig);
}

.visit-facts .round-icon::before {
  background-color: rgba(248, 242, 233, .76);
  filter: none;
}

.hero-plaque {
  overflow: visible;
}

.hero h1 {
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: .055em;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 38px;
    letter-spacing: .045em;
  }
}

/* Clean hero plaque composition */
.hero-plaque {
  padding: 66px 72px 54px;
  background:
    linear-gradient(rgba(38, 51, 59, .94), rgba(38, 51, 59, .94)),
    var(--charcoal);
  border-color: rgba(248, 242, 233, .36);
}

.hero-plaque::before {
  inset: 18px;
  z-index: 0;
  border-color: rgba(248, 242, 233, .28);
}

.hero-plaque::after {
  display: none;
}

.hero .line-flourish {
  width: 58px;
  height: 52px;
  margin: 0 auto 22px;
  opacity: 1;
  background: rgba(248, 242, 233, .46);
  -webkit-mask: var(--asset-brand-sprig) center / contain no-repeat;
  mask: var(--asset-brand-sprig) center / contain no-repeat;
}

.hero .line-divider {
  position: relative;
  width: 286px;
  height: 20px;
  margin: 17px auto 23px;
  opacity: 1;
  background: none;
  -webkit-mask: none;
  mask: none;
}

.hero .line-divider::before,
.hero .line-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 118px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 242, 233, .38));
}

.hero .line-divider::before {
  left: 0;
}

.hero .line-divider::after {
  right: 0;
  transform: scaleX(-1);
}

.hero h1 {
  margin-top: 0;
}

.hero p {
  max-width: 330px;
  margin-bottom: 29px;
  font-size: 23px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .hero-plaque {
    padding: 44px 28px 40px;
  }

  .hero .line-flourish {
    width: 46px;
    height: 42px;
    margin-bottom: 16px;
  }

  .hero .line-divider {
    width: 230px;
    margin: 15px auto 18px;
  }

  .hero .line-divider::before,
  .hero .line-divider::after {
    width: 94px;
  }

  .hero p {
    font-size: 19px;
  }
}

/* Blog magazine direction */
.site-header {
  height: 116px;
  grid-template-columns: minmax(310px, 1fr) auto 44px;
  padding-inline: clamp(28px, 7vw, 86px);
}

.brand {
  gap: 18px;
}

.brand-mark {
  width: 56px;
  height: 78px;
}

.brand strong {
  font-size: 36px;
  line-height: .9;
  letter-spacing: .055em;
}

.brand em {
  color: rgba(246, 240, 231, .78);
  font-size: 22px;
}

.nav-list {
  gap: clamp(22px, 2.5vw, 40px);
}

.nav-list a {
  font: 500 15px/1 var(--serif);
  letter-spacing: .02em;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  text-transform: none;
}

.header-search {
  justify-self: end;
  align-self: center;
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: rgba(248, 242, 233, .9);
}

.header-search span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.header-search span::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.blog-hero {
  min-height: 660px;
}

.blog-hero .hero-image {
  object-position: center 48%;
}

.blog-plaque {
  width: min(500px, calc(100% - 90px));
  margin-left: clamp(48px, 8vw, 126px);
  padding: 74px 72px 64px;
  background:
    linear-gradient(rgba(36, 48, 55, .9), rgba(36, 48, 55, .9)),
    var(--charcoal);
}

.blog-plaque::before {
  inset: 18px;
}

.blog-plaque::after {
  content: "";
  display: block;
  position: absolute;
  left: -76px;
  bottom: 32px;
  width: 190px;
  height: 310px;
  z-index: 0;
  background: rgba(248, 242, 233, .32);
  -webkit-mask: var(--asset-footer-sprig) center / contain no-repeat;
  mask: var(--asset-footer-sprig) center / contain no-repeat;
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 14px;
  color: rgba(248, 242, 233, .86);
  font: 500 23px/1.1 var(--serif);
}

.blog-plaque h1 {
  font-size: clamp(48px, 4.4vw, 70px);
  letter-spacing: .075em;
}

.blog-plaque .line-flourish {
  display: none;
}

.blog-plaque .line-divider {
  width: 278px;
  margin: 22px auto 27px;
}

.blog-plaque .line-divider::before,
.blog-plaque .line-divider::after {
  width: 112px;
}

.blog-plaque p:not(.hero-kicker) {
  max-width: 265px;
  color: rgba(255, 248, 238, .92);
  font-size: 24px;
  line-height: 1.28;
}

.blog-plaque .hero-actions {
  justify-content: center;
}

.blog-plaque .btn {
  min-width: 260px;
}

.blog-intro {
  padding: 76px 0;
  overflow: hidden;
}

.blog-intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(520px, 1.25fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.blog-intro .botanical-left {
  top: clamp(4px, 3vw, 28px);
  bottom: auto;
  left: clamp(-170px, -9vw, -86px);
  z-index: 0;
  width: clamp(280px, 30vw, 460px);
  height: clamp(430px, 45vw, 650px);
  opacity: .17;
  background: url("assets/provided/hand-drawn-floral/floral_05.png") left top / contain no-repeat;
  -webkit-mask: none;
  mask: none;
  filter: saturate(.75) contrast(.9);
  transform: rotate(-5deg);
  mix-blend-mode: multiply;
}

.blog-intro .welcome-copy,
.blog-intro .featured-post {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(42, 50, 47, .68);
  font: 700 12px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 365px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(235, 228, 216, .88);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.featured-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .42s ease, transform .42s ease;
}

.featured-post div {
  padding: clamp(34px, 4vw, 58px);
}

.featured-post h3 {
  margin: 0 0 24px;
  color: var(--charcoal);
  font: 500 35px/1.12 var(--serif);
}

.featured-post p:not(.eyebrow) {
  color: rgba(35, 43, 39, .76);
}

.featured-post a,
.post-card a,
.topic-items a {
  font: 700 12px/1 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.blog-section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.blog-section-head h2,
.newsletter-card h2,
.topic-list h2 {
  margin: 0;
  color: inherit;
  font: 500 34px/1.05 var(--serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-posts {
  padding: 58px 0 72px;
}

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

.post-card {
  overflow: hidden;
  color: var(--charcoal);
  background: #f3eee4;
  border: 1px solid rgba(248, 242, 233, .28);
  border-radius: 4px;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: filter .42s ease, transform .42s ease;
}

.post-card div {
  min-height: 232px;
  padding: 22px 24px 26px;
  text-align: center;
}

.post-card time {
  display: block;
  margin-bottom: 16px;
  color: rgba(42, 50, 47, .68);
  font: 700 11px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0 0 14px;
  font: 500 27px/1.08 var(--serif);
}

.post-card p {
  min-height: 66px;
  margin: 0 0 22px;
  color: rgba(35, 43, 39, .76);
  font-size: 14px;
}

.blog-topics {
  padding: 58px 0 60px;
}

.topics-grid {
  position: relative;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.newsletter-card {
  padding: 28px 30px;
  text-align: center;
  border: 1px solid rgba(40, 49, 44, .18);
  border-radius: 6px;
  background: rgba(249, 245, 238, .78);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.newsletter-card p:not(.eyebrow) {
  color: rgba(35, 43, 39, .76);
  font-size: 14px;
}

.newsletter-card input {
  width: 100%;
  height: 46px;
  margin: 12px 0;
  padding: 0 14px;
  color: var(--charcoal);
  background: #fffaf2;
  border: 1px solid rgba(40, 49, 44, .2);
  border-radius: 3px;
  font: 500 13px/1 var(--sans);
}

.newsletter-card .btn {
  width: 100%;
}

.newsletter-card .small-divider {
  margin-left: auto;
  margin-right: auto;
}

.topic-list .section-heading {
  margin-bottom: 28px;
}

.topic-list .section-heading span {
  background: transparent !important;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.topic-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.topic-items article {
  position: relative;
  min-height: 235px;
  padding: 0 12px;
  text-align: center;
  border-left: 1px solid rgba(40, 49, 44, .18);
  transition: background-color .28s ease, transform .28s ease;
}

.topic-items article:first-child {
  border-left: 0;
}

.topic-items .round-icon {
  margin: 0 auto 18px;
  background: transparent;
  border: 0;
}

.topic-asset {
  display: block;
  width: min(100%, 220px);
  height: 128px;
  margin: 0 auto 20px;
  background: url("assets/Saisonkalender/topics/naturgarten.png") center bottom / contain no-repeat;
  opacity: .92;
  filter: saturate(.82) sepia(.2) hue-rotate(8deg) brightness(.72) contrast(1.08);
  transform-origin: 50% 88%;
  transition: filter .32s ease, opacity .32s ease, transform .32s ease;
}

.topic-asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.topic-asset-pflanzenliebe {
  background-image: url("assets/Saisonkalender/topics/pflanzenliebe.png");
  background-position-y: calc(100% + 8px);
}

.topic-asset-gartenpraxis {
  background-image: url("assets/Saisonkalender/topics/gartenpraxis.png");
  background-position-y: calc(100% + 17px);
}

.topic-asset-inspiration {
  background-image: url("assets/Saisonkalender/topics/inspiration.png");
  background-position-y: calc(100% + 17px);
}

.topic-items h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.topic-items p {
  min-height: 58px;
  margin: 0 0 18px;
  color: rgba(35, 43, 39, .72);
  font-size: 14px;
}

.topic-items a,
.post-card a,
.featured-post a,
.journal-entry h3 a,
.journal-entry a,
.sidebar-card a:not(.btn),
.related-posts a:not(.btn) {
  display: inline-flex;
  transition: color .22s ease, letter-spacing .22s ease, transform .22s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover,
  .btn:focus-visible,
  .woocommerce a.button:hover,
  .woocommerce a.button:focus-visible,
  .woocommerce button.button:hover,
  .woocommerce button.button:focus-visible,
  .woocommerce input.button:hover,
  .woocommerce input.button:focus-visible {
    transform: translateY(-2px);
  }

  .featured-post:hover,
  .featured-post:focus-within,
  .post-card:hover,
  .post-card:focus-within,
  .newsletter-card:hover,
  .newsletter-card:focus-within,
  .sidebar-card:hover,
  .sidebar-card:focus-within,
  .related-posts article:hover,
  .related-posts article:focus-within {
    border-color: rgba(89, 103, 70, .32);
    box-shadow: 0 20px 46px rgba(31, 41, 48, .16);
    transform: translateY(-5px);
  }

  .featured-post:hover img,
  .featured-post:focus-within img,
  .post-card:hover img,
  .post-card:focus-within img,
  .related-posts article:hover img,
  .related-posts article:focus-within img,
  .about-gallery img:hover,
  .about-gallery img:focus-visible {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.035);
  }

  .topic-items article:hover,
  .topic-items article:focus-within {
    background-color: rgba(89, 103, 70, .035);
    transform: translateY(-3px);
  }

  .topic-items article:hover .topic-asset,
  .topic-items article:focus-within .topic-asset {
    opacity: 1;
    filter: saturate(.92) sepia(.14) hue-rotate(8deg) brightness(.64) contrast(1.18);
    transform: translateY(-8px) scale(1.055);
  }

  .topic-items article:hover a,
  .topic-items article:focus-within a,
  .post-card:hover a,
  .post-card:focus-within a,
  .featured-post:hover a,
  .featured-post:focus-within a,
  .journal-entry:hover h3 a,
  .journal-entry:focus-within h3 a,
  .sidebar-card a:not(.btn):hover,
  .sidebar-card a:not(.btn):focus-visible,
  .related-posts article:hover a:not(.btn),
  .related-posts article:focus-within a:not(.btn) {
    transform: translateY(-1px);
  }

  .journal-entry:hover,
  .journal-entry:focus-within {
    background-color: rgba(89, 103, 70, .035);
    transform: translateX(6px);
  }

  .journal-entry:hover .journal-entry-image img,
  .journal-entry:focus-within .journal-entry-image img,
  .journal-entry:hover figure > img,
  .journal-entry:focus-within figure > img {
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.035);
  }

  .season-inspiration-card:hover,
  .season-inspiration-card:focus-within {
    box-shadow: 0 18px 42px rgba(31, 41, 48, .22);
    transform: translateY(-4px);
  }

  .about-value-grid article:hover,
  .about-value-grid article:focus-within {
    background-color: rgba(248, 242, 233, .045);
    transform: translateY(-4px);
  }

  .about-value-grid article:hover .about-value-icon,
  .about-value-grid article:focus-within .about-value-icon {
    opacity: 1;
    transform: translateY(-4px) scale(1.08);
  }

  .about-gallery img:hover,
  .about-gallery img:focus-visible {
    box-shadow: 0 26px 58px rgba(82, 63, 43, .18);
  }
}

.quote-band {
  position: relative;
  padding: 40px 0;
  color: rgba(248, 242, 233, .94);
  overflow: visible;
  background:
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, .06), transparent 26%),
    linear-gradient(135deg, #243038, #1f2930);
}

.quote-band::after {
  content: "";
  position: absolute;
  right: clamp(-24px, 1.8vw, 28px);
  bottom: -66px;
  z-index: 0;
  width: clamp(170px, 18vw, 270px);
  height: clamp(235px, 27vw, 385px);
  opacity: .26;
  background: rgba(205, 216, 204, .86);
  -webkit-mask: url("assets/provided/hand-drawn-floral/floral_01.png") center bottom / contain no-repeat;
  mask: url("assets/provided/hand-drawn-floral/floral_01.png") center bottom / contain no-repeat;
  transform: rotate(7deg);
  transform-origin: 50% 90%;
  pointer-events: none;
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.quote-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.quote-grid blockquote {
  margin: 0;
  max-width: 530px;
  color: rgba(248, 242, 233, .94);
  font: 500 clamp(34px, 4vw, 48px)/1.24 var(--serif);
}

.blog-home .quote-band img {
  position: static;
  inset: auto;
  width: 100%;
  height: 210px;
  object-fit: cover;
  opacity: 1;
}

.blog-home .quote-band blockquote {
  position: relative;
  z-index: 1;
  color: rgba(248, 242, 233, .94);
}

.instagram-strip {
  padding: 36px 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 190px repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.instagram-grid strong {
  color: var(--charcoal);
  font: 500 24px/1 var(--serif);
}

.gallery-heading {
  align-self: center;
}

.gallery-thumb {
  display: block;
  width: 100%;
  height: 118px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 10px 24px rgba(38, 50, 58, .08);
  transition: box-shadow .28s ease, transform .28s ease;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .34s ease, transform .34s ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(38, 50, 58, .15);
  outline: 0;
}

.gallery-thumb:focus-visible {
  box-shadow:
    0 0 0 3px rgba(112, 128, 93, .26),
    0 18px 34px rgba(38, 50, 58, .15);
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.055);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 56px);
  background: rgba(28, 39, 44, .86);
  opacity: 0;
  transition: opacity .22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
}

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

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

.gallery-lightbox figure {
  width: min(1040px, 82vw);
  margin: 0;
  color: rgba(255, 248, 238, .86);
  text-align: center;
}

.gallery-lightbox img {
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  border: 1px solid rgba(255, 248, 238, .26);
  border-radius: 8px;
  background: rgba(13, 22, 24, .36);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.gallery-lightbox figcaption {
  margin-top: 16px;
  font: 500 22px/1.2 var(--serif);
}

.gallery-lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff8ee;
  border: 1px solid rgba(255, 248, 238, .28);
  background: rgba(32, 42, 49, .68);
  transition: background-color .22s ease, transform .22s ease;
}

.gallery-lightbox button:hover,
.gallery-lightbox button:focus-visible {
  background: rgba(112, 128, 93, .9);
  outline: 0;
  transform: translateY(-1px);
}

.gallery-lightbox-close {
  top: clamp(18px, 3vw, 36px);
  right: clamp(18px, 3vw, 36px);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 72px;
  border-radius: 999px;
  font: 400 44px/1 var(--serif);
}

.gallery-lightbox-prev {
  left: clamp(14px, 3vw, 42px);
}

.gallery-lightbox-next {
  right: clamp(14px, 3vw, 42px);
}

.contact-letter-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 44px);
  overflow-y: auto;
  background: rgba(18, 27, 30, .78);
  opacity: 0;
  transition: opacity .24s ease;
}

.contact-letter-modal.is-open {
  opacity: 1;
}

.contact-letter-modal[hidden] {
  display: none;
}

.has-contact-letter-modal {
  overflow: hidden;
}

.contact-letter-shell {
  position: relative;
  width: min(940px, calc(100vw - 28px));
  margin: auto;
  transform: translateY(14px) scale(.985);
  transition: transform .28s ease;
}

.contact-letter-modal.is-open .contact-letter-shell {
  transform: translateY(0) scale(1);
}

.contact-letter-close {
  position: absolute;
  top: clamp(-12px, -1vw, -8px);
  right: clamp(-12px, -1vw, -8px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  color: #fff8ee;
  border: 1px solid rgba(255, 248, 238, .32);
  border-radius: 999px;
  background: rgba(89, 103, 70, .94);
  box-shadow: 0 16px 36px rgba(18, 27, 30, .26);
  font: 400 32px/1 var(--serif);
  transition: background-color .22s ease, transform .22s ease;
}

.contact-letter-close:hover,
.contact-letter-close:focus-visible {
  background: var(--olive-dark);
  outline: 0;
  transform: translateY(-1px);
}

.contact-letter-paper {
  position: relative;
  min-height: min(930px, calc(100vh - 48px));
  padding: clamp(74px, 7vw, 116px) clamp(72px, 8vw, 120px) clamp(190px, 18vw, 250px) clamp(150px, 16vw, 206px);
  color: var(--ink);
  background: url("assets/generated/contact/brief-overlay.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, .34));
}

.contact-letter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .52fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.contact-letter-main {
  max-width: 520px;
}

.contact-letter-kicker {
  margin: 0 0 10px;
  color: rgba(52, 65, 46, .74);
  font: 800 12px/1.2 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-letter-main h2 {
  margin: 0;
  color: var(--charcoal, #26323a);
  font: 500 clamp(42px, 5vw, 66px)/.96 var(--serif);
  letter-spacing: 0;
}

.contact-letter-note {
  margin: 8px 0 18px;
  color: var(--olive);
  font: 400 clamp(28px, 3.2vw, 40px)/1 var(--script);
}

.contact-letter-copy {
  max-width: 460px;
  margin: 0 0 22px;
  color: rgba(38, 50, 58, .86);
  font: 500 15px/1.7 var(--sans);
}

.contact-letter-form {
  display: grid;
  gap: 14px;
}

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

.contact-letter-form label {
  display: grid;
  gap: 6px;
  color: rgba(38, 50, 58, .76);
  font: 700 12px/1.35 var(--sans);
  letter-spacing: .01em;
}

.contact-letter-form input:not([type="checkbox"]),
.contact-letter-form textarea {
  width: 100%;
  min-height: 42px;
  color: var(--charcoal, #26323a);
  border: 1px solid rgba(105, 96, 78, .28);
  border-radius: 2px;
  background: rgba(255, 251, 243, .58);
  box-shadow: inset 0 1px 2px rgba(64, 52, 34, .04);
  font: 500 15px/1.45 var(--sans);
  padding: 10px 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-letter-form textarea {
  resize: vertical;
  min-height: 116px;
}

.contact-letter-form input:not([type="checkbox"]):focus,
.contact-letter-form textarea:focus {
  outline: 0;
  border-color: rgba(89, 103, 70, .72);
  background: rgba(255, 251, 243, .82);
  box-shadow: 0 0 0 3px rgba(112, 128, 93, .18);
}

.contact-letter-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: rgba(38, 50, 58, .76);
  font-weight: 500;
}

.contact-letter-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--olive);
}

.contact-letter-consent a {
  border-bottom: 1px solid rgba(89, 103, 70, .42);
}

.contact-letter-form .btn {
  justify-self: start;
  min-width: 210px;
  margin-top: 2px;
}

.contact-letter-aside {
  min-height: 430px;
  padding: clamp(116px, 10vw, 152px) 0 0 clamp(20px, 3vw, 34px);
  border-left: 1px solid rgba(105, 96, 78, .22);
}

.contact-letter-aside .contact-letter-note {
  margin-top: 0;
}

.contact-letter-aside dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.contact-letter-aside div {
  display: grid;
  gap: 4px;
}

.contact-letter-aside dt {
  color: rgba(38, 50, 58, .78);
  font: 800 12px/1.2 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-letter-aside dd {
  margin: 0;
  color: rgba(38, 50, 58, .82);
  font: 500 14px/1.55 var(--sans);
}

.contact-letter-aside a {
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}

.contact-letter-aside a:hover,
.contact-letter-aside a:focus-visible {
  color: var(--olive-dark);
  border-color: rgba(89, 103, 70, .46);
  outline: 0;
}

.contact-letter-signature {
  margin: 34px 0 0;
  color: var(--olive);
  font: 400 clamp(44px, 5vw, 66px)/.9 var(--script);
}

@media (max-width: 820px) {
  .contact-letter-modal {
    align-items: start;
  }

  .contact-letter-paper {
    min-height: auto;
    padding: 58px 26px 150px;
    background:
      url("assets/generated/contact/brief-overlay.png") center bottom / cover no-repeat,
      linear-gradient(135deg, rgba(255, 251, 243, .98), rgba(239, 225, 207, .94));
  }

  .contact-letter-inner {
    grid-template-columns: 1fr;
  }

  .contact-letter-main {
    max-width: none;
  }

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

  .contact-letter-aside {
    min-height: auto;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(105, 96, 78, .22);
  }
}

@media (max-width: 520px) {
  .contact-letter-modal {
    padding: 10px;
  }

  .contact-letter-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .contact-letter-paper {
    padding: 54px 18px 130px;
  }

  .contact-letter-main h2 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .contact-letter-form .btn {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto 44px;
    padding-inline: 28px;
  }

  .nav-list {
    gap: 18px;
  }

  .post-grid,
  .topic-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-items article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 86px;
  }

  .header-search {
    display: none;
  }

  .blog-intro-grid,
  .topics-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post img {
    height: 270px;
  }

  .blog-intro .botanical-left {
    top: 42px;
    left: -128px;
    width: 320px;
    height: 480px;
    opacity: .1;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-grid div {
    grid-column: 1 / -1;
  }

  .gallery-thumb {
    height: 132px;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 20px;
  }

  .blog-intro .botanical-left {
    top: 68px;
    left: -174px;
    width: 285px;
    height: 430px;
    opacity: .075;
  }

  .brand em {
    font-size: 17px;
  }

  .blog-hero {
    min-height: 650px;
  }

  .blog-plaque {
    width: calc(100% - 34px);
    margin-inline: auto;
    padding: 46px 28px 42px;
  }

  .blog-plaque::after {
    display: none;
  }

  .hero-kicker {
    font-size: 19px;
  }

  .blog-plaque h1 {
    font-size: 40px;
  }

  .blog-plaque p:not(.hero-kicker) {
    font-size: 20px;
  }

  .blog-plaque .btn {
    min-width: 0;
    width: 100%;
  }

  .blog-section-head {
    display: block;
  }

  .blog-section-head .btn {
    margin-top: 18px;
  }

  .post-grid,
  .topic-items,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    text-align: center;
  }

  .gallery-thumb {
    height: 180px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox figure {
    width: min(100%, 92vw);
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 24px;
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .gallery-lightbox-prev {
    left: calc(50% - 58px);
  }

  .gallery-lightbox-next {
    right: calc(50% - 58px);
  }

  .topic-items article {
    border-left: 0;
    border-top: 1px solid rgba(40, 49, 44, .18);
    padding: 28px 0;
  }

  .topic-asset {
    width: min(280px, 86%);
  }

  .topic-items article:first-child {
    border-top: 0;
  }
}

/* Gartentagebuch archive page */
.journal-page {
  background:
    linear-gradient(90deg, rgba(116, 92, 54, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(116, 92, 54, .025) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 44px 44px, 44px 44px, auto;
}

.journal-hero {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(248, 242, 233, .94);
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, .06), transparent 28%),
    linear-gradient(135deg, #243038, #1f2930);
}

.journal-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journal-hero::before {
  content: none;
}

.journal-hero::after {
  content: none;
}

.journal-hero-copy {
  position: relative;
  z-index: 3;
  width: min(560px, calc(100% - 84px));
  margin-left: clamp(42px, 12vw, 190px);
  padding: clamp(44px, 5vw, 62px) clamp(38px, 5vw, 58px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 4%, rgba(248, 242, 233, .08), transparent 34%),
    linear-gradient(rgba(35, 47, 52, .94), rgba(31, 42, 47, .95)),
    var(--charcoal);
  border: 1px solid rgba(248, 242, 233, .36);
  box-shadow: 0 22px 60px rgba(8, 16, 18, .34);
}

.journal-hero-copy::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(248, 242, 233, .28);
}

.journal-hero-copy > * {
  position: relative;
  z-index: 1;
}

.journal-hero-copy .eyebrow {
  margin-bottom: 12px;
  color: rgba(248, 242, 233, .78);
}

.journal-hero-copy h1 {
  margin: 0;
  color: #fff8ee;
  letter-spacing: 0;
  text-transform: none;
}

.journal-hero-copy h1 span {
  display: block;
}

.journal-hero-copy h1 span:first-child {
  color: #fff8ee;
  font: 400 62px/.9 var(--script);
  letter-spacing: 0;
  text-transform: none;
}

.journal-hero-copy h1 span:nth-child(2) {
  margin-top: 2px;
  color: #fff8ee;
  font: 700 56px/.9 var(--serif);
  letter-spacing: .075em;
  text-transform: uppercase;
}

.journal-hero-copy .line-divider {
  width: 270px;
  margin: 26px auto 28px;
}

.journal-hero-copy p:not(.eyebrow) {
  max-width: 410px;
  margin: 0 auto 30px;
  font: 22px/1.45 var(--serif);
}

.journal-content {
  padding: 52px 0 56px;
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 54px;
  align-items: start;
}

.journal-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(40, 49, 44, .17);
}

.journal-list-head h2 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--charcoal);
  font: 500 22px/1 var(--serif);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.leaf-dot {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: rgba(48, 58, 51, .7);
  -webkit-mask: var(--asset-brand-sprig) center / contain no-repeat;
  mask: var(--asset-brand-sprig) center / contain no-repeat;
}

.journal-list-head button {
  height: 36px;
  padding: 0 16px;
  color: rgba(35, 43, 39, .72);
  background: transparent;
  border: 0;
  font: 500 13px/1 var(--sans);
}

.journal-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 365px) 1fr;
  gap: 54px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(40, 49, 44, .16);
  transition: background-color .28s ease, transform .28s ease;
}

.journal-entry::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 20px;
  width: 105px;
  height: 145px;
  opacity: .18;
  background: var(--charcoal);
  -webkit-mask: var(--asset-footer-sprig) center / contain no-repeat;
  mask: var(--asset-footer-sprig) center / contain no-repeat;
}

.journal-entry figure {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.journal-entry-image,
.journal-entry figure > img {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 5px;
}

.journal-entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform .28s ease, filter .28s ease;
}

.journal-entry figure > img {
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.journal-entry-image:hover img,
.journal-entry-image:focus-visible img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.journal-entry time {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 58px;
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 9px 0;
  text-align: center;
  color: rgba(248, 242, 233, .94);
  background: rgba(82, 97, 75, .92);
  font: 600 11px/1.15 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-entry time strong {
  display: block;
  font: 500 25px/.85 var(--serif);
}

.journal-entry > div {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 520px;
}

.entry-category {
  margin: 0 0 14px;
  color: rgba(35, 43, 39, .62);
  font: 700 12px/1 var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.journal-entry h3 {
  margin: 0 0 13px;
  color: var(--charcoal);
  font: 500 33px/1.12 var(--serif);
}

.journal-entry h3 a {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.journal-entry h3 a:hover,
.journal-entry h3 a:focus-visible {
  color: var(--olive-dark);
}

.journal-entry p:not(.entry-category) {
  margin: 0 0 22px;
  color: rgba(35, 43, 39, .76);
  font-size: 15px;
}

.journal-entry a,
.journal-pagination a,
.sidebar-card a:not(.btn) {
  font: 700 12px/1 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.journal-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(35, 43, 39, .66);
}

.journal-pagination span {
  display: flex;
  align-items: center;
  gap: 18px;
}

.journal-pagination b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff8ee;
  background: var(--olive);
  font: 600 13px/1 var(--sans);
}

.journal-pagination i {
  font-style: normal;
}

.journal-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(40, 49, 44, .18);
  border-radius: 3px;
  background: rgba(250, 246, 238, .72);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.sidebar-card h2 {
  margin: 0;
  color: var(--charcoal);
  font: 500 22px/1.05 var(--serif);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.about-card > img {
  width: 150px;
  height: 150px;
  margin: 16px auto 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(40, 49, 44, .18);
}

.about-card p {
  margin: 0 auto 14px;
  max-width: 215px;
  color: rgba(35, 43, 39, .74);
  font-size: 14px;
}

.about-card em {
  display: block;
  margin-top: 2px;
  color: var(--olive-dark);
  font: 34px/1 var(--script);
}

.sidebar-topics {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.sidebar-topics li {
  border-top: 1px solid rgba(40, 49, 44, .14);
}

.sidebar-topics a {
  display: flex;
  justify-content: space-between;
  padding: 15px 4px;
  color: rgba(35, 43, 39, .76);
}

.calendar-card,
.favorite-card {
  min-height: 0;
}

.calendar-card p,
.favorite-card p {
  color: rgba(35, 43, 39, .72);
  font-size: 14px;
}

.favorite-card img {
  width: 100%;
  height: 118px;
  margin: 18px 0 14px;
  object-fit: cover;
  border-radius: 4px;
}

.journal-quote {
  padding: 36px 0;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(226, 226, 214, .78), rgba(226, 226, 214, .78)),
    var(--paper);
}

.journal-quote .container {
  display: grid;
  grid-template-columns: minmax(300px, 470px) 1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.journal-quote img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.journal-quote blockquote {
  margin: 0;
  max-width: 520px;
  text-align: center;
  font: 500 clamp(29px, 3vw, 38px)/1.25 var(--serif);
}

@media (max-width: 1060px) {
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .journal-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .journal-hero {
    min-height: 610px;
  }

  .journal-hero > img {
    inset: 0;
    width: 100%;
  }

  .journal-hero::before {
    background:
      linear-gradient(90deg, rgba(31, 41, 48, .58), rgba(31, 41, 48, .28)),
      linear-gradient(0deg, rgba(31, 41, 48, .3), transparent 40%);
  }

  .journal-hero::after {
    display: none;
  }

  .journal-hero-copy {
    margin-inline: auto;
    padding: 42px 34px;
    width: calc(100% - 44px);
  }

  .journal-hero-copy h1 {
    line-height: .9;
  }

  .journal-hero-copy h1 span:first-child {
    font-size: 50px;
  }

  .journal-hero-copy h1 span:nth-child(2) {
    font-size: 40px;
    letter-spacing: .055em;
  }

  .journal-hero-copy .line-divider {
    margin-inline: auto;
  }

  .journal-entry {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journal-entry::after {
    display: none;
  }

  .journal-sidebar,
  .journal-quote .container {
    grid-template-columns: 1fr;
  }

  .journal-pagination {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Hand-drawn floral asset pass for closer journal reference */
.journal-hero::after {
  left: max(-30px, 1.5vw);
  bottom: -58px;
  width: min(300px, 30vw);
  height: 390px;
  background: var(--asset-hd-hero) left bottom / contain no-repeat;
  -webkit-mask: none;
  mask: none;
  filter: brightness(0) invert(1) opacity(.36);
}

.journal-entry::after {
  right: 4px;
  bottom: 18px;
  width: 124px;
  height: 158px;
  background: var(--asset-hd-entry) center bottom / contain no-repeat;
  -webkit-mask: none;
  mask: none;
  opacity: .16;
}

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

.sidebar-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -32px;
  width: 118px;
  height: 160px;
  pointer-events: none;
  background: var(--asset-hd-sidebar) center bottom / contain no-repeat;
  opacity: .08;
}

.about-card::after {
  width: 138px;
  height: 180px;
  opacity: .1;
}

.journal-quote {
  position: relative;
  overflow: hidden;
}

.journal-quote::after {
  content: "";
  position: absolute;
  right: clamp(24px, 9vw, 150px);
  bottom: -32px;
  width: 150px;
  height: 220px;
  background: var(--asset-hd-quote) center bottom / contain no-repeat;
  opacity: .2;
  pointer-events: none;
}

.journal-quote .container {
  position: relative;
  z-index: 1;
}

.footer-art::before {
  inset: 20px 26px;
  background: rgba(246, 240, 231, .82);
  -webkit-mask: var(--asset-hd-footer) center bottom / contain no-repeat;
  mask: var(--asset-hd-footer) center bottom / contain no-repeat;
  filter: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 10px;
  width: 145px;
  height: 250px;
  pointer-events: none;
  background: var(--asset-hd-entry) center bottom / contain no-repeat;
  filter: brightness(0) invert(1) opacity(.18);
}

.site-footer .container,
.site-footer .footer-legal {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .journal-hero::after {
    display: none;
  }

  .journal-quote::after,
  .site-footer::before {
    opacity: .12;
  }
}

/* Saisonkalender page */
.season-page {
  --active-month-art: var(--asset-flower-sprig);
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(116, 92, 54, .032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(116, 92, 54, .024) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 44px 44px, 44px 44px, auto;
}

.season-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px) 0 clamp(42px, 6vw, 74px);
}

.season-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 14%, rgba(89, 103, 70, .08), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(89, 103, 70, .09), transparent 24%);
}

.season-hero-art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .18;
}

.season-hero-art-left {
  left: -44px;
  bottom: 18px;
  width: min(280px, 26vw);
  height: 370px;
  background-image: var(--asset-hd-entry);
}

.season-hero-art-right {
  right: -24px;
  top: 18px;
  width: min(320px, 28vw);
  height: 390px;
  background-image: var(--asset-hd-sidebar);
}

.season-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(245px, .68fr) minmax(520px, 1.32fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.season-hero-copy {
  padding: 20px 0 28px;
}

.season-hero-copy h1 {
  max-width: 340px;
  margin: 0 0 22px;
  color: var(--charcoal);
  font: 500 clamp(44px, 4.4vw, 62px)/.94 var(--serif);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.season-hero-copy .script-note {
  max-width: 290px;
  margin: 0 0 20px;
  color: var(--olive-dark);
  font: 29px/1.1 var(--script);
}

.season-hero-copy p:not(.eyebrow):not(.script-note) {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(35, 43, 39, .76);
  font-size: 17px;
}

.season-calendar-wrap {
  display: grid;
  place-items: center;
}

.season-mobile-select {
  display: none;
}

.season-wheel {
  --wheel-size: min(680px, 58vw);
  --selected-start: 60deg;
  position: relative;
  width: var(--wheel-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(250, 246, 238, .98) 0 31%, transparent 31.2%),
    repeating-conic-gradient(from -90deg, rgba(48, 58, 51, .22) 0deg 1deg, transparent 1deg 30deg),
    radial-gradient(circle at center, transparent 0 30.8%, rgba(48, 58, 51, .22) 31% 31.3%, transparent 31.6% 71%, rgba(48, 58, 51, .18) 71.2% 71.5%, transparent 71.8%),
    linear-gradient(135deg, rgba(255, 252, 246, .94), rgba(238, 230, 216, .78));
  border: 1px solid rgba(48, 58, 51, .24);
  box-shadow: 0 30px 70px rgba(54, 45, 32, .12), inset 0 0 0 10px rgba(255, 255, 255, .25);
}

.season-wheel::before,
.season-wheel::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dotted rgba(48, 58, 51, .28);
  border-radius: 50%;
  pointer-events: none;
}

.season-wheel::after {
  inset: 28.5%;
  border-style: solid;
  border-color: rgba(48, 58, 51, .18);
}

.season-wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 3;
}

.season-quarter-ring {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-30deg);
  transform-origin: center;
}

.season-quarter {
  cursor: pointer;
  outline: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.season-quarter *,
.season-quarter:focus,
.season-quarter:focus-visible {
  outline: 0;
}

.season-quarter-hit {
  fill: transparent;
  pointer-events: all;
}

.season-quarter-shape {
  fill: #e9e3d6;
  stroke: rgba(48, 58, 51, .24);
  stroke-width: .35;
  transition: fill .24s ease, stroke .24s ease, filter .24s ease;
}

.season-quarter text {
  fill: rgba(35, 43, 39, .72);
  font: 4.2px/1 var(--script);
  dominant-baseline: middle;
  text-anchor: middle;
  pointer-events: none;
  transition: fill .24s ease;
}

.season-quarter:hover .season-quarter-shape {
  fill: rgba(96, 111, 91, .82);
  stroke: rgba(96, 111, 91, .7);
  filter: drop-shadow(0 2px 5px rgba(54, 45, 32, .14));
}

.season-quarter:hover text {
  fill: #fff8ee;
}

.season-quarter:focus-visible {
  outline: none;
}

.season-wheel-selection {
  position: absolute;
  inset: 13px;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    conic-gradient(
      from var(--hover-start, var(--selected-start)),
      rgba(96, 111, 91, .58) 0deg,
      rgba(96, 111, 91, .42) 25deg,
      rgba(96, 111, 91, .08) 29.6deg,
      transparent 30deg 360deg
    );
  -webkit-mask: radial-gradient(circle, transparent 0 31.5%, #000 32% 71.2%, transparent 71.8%);
  mask: radial-gradient(circle, transparent 0 31.5%, #000 32% 71.2%, transparent 71.8%);
  transition: transform .28s ease, opacity .22s ease;
}

.season-wheel-selection::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    conic-gradient(
      from var(--hover-start, var(--selected-start)),
      rgba(255, 255, 255, .24) 0deg,
      rgba(255, 255, 255, .1) 17deg,
      transparent 30deg 360deg
    );
  -webkit-mask: radial-gradient(circle, transparent 0 31.5%, #000 32% 71.2%, transparent 71.8%);
  mask: radial-gradient(circle, transparent 0 31.5%, #000 32% 71.2%, transparent 71.8%);
}

.season-wheel:has(.season-month:nth-child(1):is(:hover, :focus-visible)) {
  --hover-start: -90deg;
}

.season-wheel:has(.season-month:nth-child(2):is(:hover, :focus-visible)) {
  --hover-start: -60deg;
}

.season-wheel:has(.season-month:nth-child(3):is(:hover, :focus-visible)) {
  --hover-start: -30deg;
}

.season-wheel:has(.season-month:nth-child(4):is(:hover, :focus-visible)) {
  --hover-start: 0deg;
}

.season-wheel:has(.season-month:nth-child(5):is(:hover, :focus-visible)) {
  --hover-start: 30deg;
}

.season-wheel:has(.season-month:nth-child(6):is(:hover, :focus-visible)) {
  --hover-start: 60deg;
}

.season-wheel:has(.season-month:nth-child(7):is(:hover, :focus-visible)) {
  --hover-start: 90deg;
}

.season-wheel:has(.season-month:nth-child(8):is(:hover, :focus-visible)) {
  --hover-start: 120deg;
}

.season-wheel:has(.season-month:nth-child(9):is(:hover, :focus-visible)) {
  --hover-start: 150deg;
}

.season-wheel:has(.season-month:nth-child(10):is(:hover, :focus-visible)) {
  --hover-start: 180deg;
}

.season-wheel:has(.season-month:nth-child(11):is(:hover, :focus-visible)) {
  --hover-start: 210deg;
}

.season-wheel:has(.season-month:nth-child(12):is(:hover, :focus-visible)) {
  --hover-start: 240deg;
}

.season-month {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(70px, 8vw, 92px);
  min-height: clamp(96px, 11vw, 124px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 10px 8px;
  color: rgba(35, 43, 39, .88);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--wheel-size) * -.38)) rotate(var(--counter-angle));
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.season-month:hover,
.season-month:focus-visible {
  color: #fff8ee;
  background: transparent;
  outline: 0;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--wheel-size) * -.38)) rotate(var(--counter-angle));
}

.season-month.is-preview,
.season-month.is-active {
  color: #fff8ee;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  text-shadow: 0 1px 8px rgba(31, 42, 34, .22);
}

.season-wheel:has(.season-month:is(:hover, :focus-visible)) .season-month.is-active:not(:hover):not(:focus-visible),
.season-wheel:has(.season-month.is-preview) .season-month.is-active:not(.is-preview) {
  color: rgba(35, 43, 39, .88);
  text-shadow: none;
}

.season-month span {
  order: 2;
  font: 600 clamp(17px, 1.65vw, 24px)/1 var(--serif);
  letter-spacing: .08em;
}

.season-month small {
  display: none;
  font: 700 10px/1 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.season-month i {
  order: 1;
  width: clamp(50px, 5.8vw, 72px);
  height: clamp(40px, 4.9vw, 60px);
  display: block;
  background: currentColor;
  opacity: .7;
  -webkit-mask: var(--month-art, var(--asset-flower-sprig)) center / contain no-repeat;
  mask: var(--month-art, var(--asset-flower-sprig)) center / contain no-repeat;
  transition: opacity .22s ease, transform .22s ease;
}

.season-month:hover i,
.season-month:focus-visible i,
.season-month.is-preview i {
  opacity: .9;
  transform: translateY(-2px);
}

.season-month.is-active i {
  opacity: .94;
}

.season-wheel-center {
  position: absolute;
  inset: 30.5%;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(16px, 2vw, 28px);
  text-align: center;
  color: inherit;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(250, 246, 238, .94);
  box-shadow: inset 0 0 0 1px rgba(48, 58, 51, .18);
  cursor: pointer;
  transition: background .24s ease, box-shadow .24s ease, transform .24s ease;
}

.season-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 56px);
  background: rgba(28, 39, 44, .88);
  opacity: 0;
  transition: opacity .22s ease;
}

.season-video-lightbox.is-open {
  opacity: 1;
}

.season-video-lightbox[hidden] {
  display: none;
}

.has-season-video-lightbox {
  overflow: hidden;
}

.season-video-frame {
  width: min(1080px, 86vw);
}

.season-video-credit {
  margin: 0 auto clamp(16px, 2.4vw, 28px);
  color: rgba(255, 248, 238, .92);
  text-align: center;
  text-shadow: 0 2px 20px rgba(5, 12, 14, .34);
}

.season-video-credit span {
  display: block;
  color: rgba(246, 240, 231, .62);
  font: 800 clamp(11px, .95vw, 13px)/1.2 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.season-video-credit strong {
  display: block;
  margin-top: 8px;
  color: #fff8ee;
  font: 500 clamp(42px, 5.4vw, 78px)/.88 var(--serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.season-video-lightbox figure {
  width: 100%;
  margin: 0;
  color: rgba(255, 248, 238, .88);
  text-align: center;
}

.season-video-lightbox video {
  display: block;
  width: 100%;
  max-height: min(60vh, 660px);
  object-fit: contain;
  border: 1px solid rgba(255, 248, 238, .26);
  border-radius: 8px;
  background: rgba(13, 22, 24, .42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.season-video-lightbox figcaption {
  margin-top: 15px;
  font: 500 24px/1.2 var(--serif);
}

@media (max-width: 760px) {
  .season-video-frame {
    width: min(100%, 92vw);
  }

  .season-video-credit strong {
    font-size: clamp(30px, 9vw, 46px);
    letter-spacing: .08em;
  }

  .season-video-lightbox video {
    max-height: 52vh;
  }
}

.season-video-close {
  position: absolute;
  top: clamp(18px, 3vw, 36px);
  right: clamp(18px, 3vw, 36px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: #fff8ee;
  border: 1px solid rgba(255, 248, 238, .28);
  border-radius: 999px;
  background: rgba(32, 42, 49, .68);
  font-size: 30px;
  line-height: 1;
  transition: background-color .22s ease, transform .22s ease;
}

.season-video-close:hover,
.season-video-close:focus-visible {
  background: rgba(112, 128, 93, .9);
  outline: 0;
  transform: translateY(-1px);
}

.season-wheel-center:hover,
.season-wheel-center:focus-visible {
  background: rgba(255, 251, 243, .98);
  box-shadow:
    inset 0 0 0 1px rgba(48, 58, 51, .3),
    0 16px 36px rgba(54, 45, 32, .16);
  transform: scale(1.025);
  outline: 0;
}

.season-wheel-center:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(48, 58, 51, .34),
    0 0 0 3px rgba(96, 111, 91, .24),
    0 16px 36px rgba(54, 45, 32, .16);
}

.season-butterfly {
  width: clamp(46px, calc(var(--wheel-size) * .09), 64px);
  height: clamp(36px, calc(var(--wheel-size) * .075), 54px);
  margin-bottom: 9px;
  background: rgba(48, 58, 51, .72);
  -webkit-mask: var(--month-art, var(--active-month-art)) center / contain no-repeat;
  mask: var(--month-art, var(--active-month-art)) center / contain no-repeat;
}

.season-wheel-center h2 {
  margin: 0;
  color: var(--charcoal);
  max-width: 100%;
  font: 500 clamp(18px, calc(var(--wheel-size) * .04), 30px)/1 var(--serif);
  letter-spacing: .09em;
}

.season-wheel-center p {
  max-width: min(19ch, 86%);
  margin: 0 0 13px;
  color: rgba(35, 43, 39, .86);
  font: 500 clamp(13px, calc(var(--wheel-size) * .023), 16px)/1.18 var(--serif);
}

.season-wheel-center ul {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.season-wheel-center li {
  color: rgba(35, 43, 39, .76);
  font: 13px/1.2 var(--sans);
}

.season-detail {
  padding: clamp(46px, 6vw, 70px) 0 36px;
}

.season-detail-grid {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(330px, .95fr) minmax(360px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.season-month-card,
.season-info-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(40, 49, 44, .16);
  border-radius: 4px;
  background: rgba(250, 246, 238, .68);
}

.season-month-card {
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 46px);
}

.season-month-card::after,
.season-info-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 132px;
  height: 170px;
  pointer-events: none;
  background: rgba(48, 58, 51, .78);
  -webkit-mask: var(--active-month-art) center bottom / contain no-repeat;
  mask: var(--active-month-art) center bottom / contain no-repeat;
  opacity: .09;
}

.season-month-card h2 {
  margin: 0;
  color: var(--charcoal);
  font: 500 31px/1.05 var(--serif);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.season-month-card p:not(.eyebrow) {
  max-width: 300px;
  margin: 24px 0 46px;
  color: rgba(35, 43, 39, .76);
}

.btn-outline {
  color: var(--charcoal);
  background: transparent;
  border: 1px solid rgba(48, 58, 51, .35);
}

.btn-outline:hover {
  color: #fff8ee;
  background: var(--olive);
}

.season-feature-image {
  margin: 0;
}

.season-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.season-feature-image figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.season-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.season-info-card {
  min-height: 205px;
  padding: 28px 28px 24px;
}

.season-info-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--charcoal);
  font: 500 19px/1.1 var(--serif);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.season-info-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: rgba(35, 43, 39, .78);
  font-size: 14px;
}

.season-info-card a {
  position: relative;
  z-index: 1;
  color: rgba(35, 43, 39, .78);
  font: 700 11px/1 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.season-diary-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 21px;
  color: rgba(35, 43, 39, .74);
  font: 16px/1.45 var(--serif);
}

.season-inspiration {
  padding: 26px 0 64px;
}

.season-inspiration .section-heading {
  margin-bottom: 28px;
}

.season-inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.season-inspiration-card {
  position: relative;
  min-height: 205px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 30px 28px;
  color: #fff8ee;
  border-radius: 4px;
  isolation: isolate;
  transition: box-shadow .28s ease, transform .28s ease;
}

.season-inspiration-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.season-inspiration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(25, 34, 32, .74), rgba(25, 34, 32, .26));
}

.season-inspiration-card:hover img {
  transform: scale(1.045);
}

.season-inspiration-card span {
  margin-bottom: 10px;
  font: 500 22px/1.08 var(--serif);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.season-inspiration-card p {
  max-width: 230px;
  margin: 0 0 16px;
  color: rgba(255, 248, 238, .9);
  font-size: 14px;
}

.season-inspiration-card i {
  font: 700 13px/1 var(--sans);
  font-style: normal;
  letter-spacing: .12em;
}

.season-newsletter {
  position: relative;
  padding: 38px 0;
  color: rgba(248, 242, 233, .92);
  background:
    radial-gradient(circle at 86% 28%, rgba(255, 255, 255, .07), transparent 24%),
    linear-gradient(135deg, #243038, #1f2930);
}

.season-newsletter::after {
  content: "";
  position: absolute;
  right: 3vw;
  bottom: 12px;
  width: 165px;
  height: 210px;
  pointer-events: none;
  background: var(--asset-hd-footer) center bottom / contain no-repeat;
  filter: brightness(0) invert(1) opacity(.2);
}

.season-newsletter-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(300px, 560px);
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
}

.season-newsletter .eyebrow {
  color: rgba(248, 242, 233, .62);
}

.season-newsletter h2 {
  margin: 0 0 12px;
  color: #fff8ee;
  font: 500 28px/1.05 var(--serif);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.season-newsletter p:not(.eyebrow) {
  margin: 0;
  color: rgba(248, 242, 233, .78);
}

.season-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 0;
  border: 1px solid rgba(248, 242, 233, .22);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(248, 242, 233, .08);
}

.season-newsletter-form input {
  min-height: 56px;
  padding: 0 22px;
  color: var(--charcoal);
  background: rgba(250, 246, 238, .92);
  border: 0;
  font: 500 14px/1 var(--sans);
}

.season-newsletter-form .btn {
  border-radius: 0;
}

@media (max-width: 1120px) {
  .season-hero-grid,
  .season-detail-grid {
    grid-template-columns: 1fr;
  }

  .season-hero-copy {
    text-align: center;
  }

  .season-hero-copy h1,
  .season-hero-copy .script-note,
  .season-hero-copy p:not(.eyebrow):not(.script-note) {
    margin-inline: auto;
  }

  .season-wheel {
    --wheel-size: min(680px, 88vw);
  }

  .season-feature-image img {
    min-height: 360px;
  }

  .season-inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .season-hero {
    padding-top: 34px;
  }

  .season-hero-art {
    opacity: .1;
  }

  .season-mobile-select {
    width: min(360px, 100%);
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(35, 43, 39, .72);
    font: 700 11px/1 var(--sans);
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .season-mobile-select select {
    min-height: 48px;
    padding: 0 14px;
    color: var(--charcoal);
    background: rgba(250, 246, 238, .92);
    border: 1px solid rgba(40, 49, 44, .18);
    border-radius: 4px;
    font: 600 15px/1 var(--sans);
  }

  .season-wheel {
    --wheel-size: min(520px, 96vw);
    margin-inline: auto;
  }

  .season-month {
    width: 58px;
    min-height: 76px;
    gap: 4px;
    padding: 7px 4px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--wheel-size) * -.4)) rotate(var(--counter-angle));
  }

  .season-month:hover,
  .season-month:focus-visible {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--wheel-size) * -.4)) rotate(var(--counter-angle));
  }

  .season-month span {
    font-size: 14px;
  }

  .season-month i {
    display: none;
  }

  .season-wheel-center {
    inset: 27%;
    padding: 16px;
  }

  .season-wheel-center h2 {
    font-size: clamp(18px, calc(var(--wheel-size) * .04), 24px);
  }

  .season-wheel-center p {
    font-size: 14px;
  }

  .season-wheel-center li {
    display: none;
  }

  .season-info-grid,
  .season-inspiration-grid,
  .season-newsletter-grid,
  .season-newsletter-form {
    grid-template-columns: 1fr;
  }

  .season-month-card,
  .season-info-card {
    padding: 28px 24px;
  }

  .season-feature-image img {
    min-height: 300px;
  }

  .season-newsletter-form .btn {
    min-height: 52px;
  }
}

@media (max-width: 390px) {
  .season-wheel {
    --wheel-size: 330px;
  }

  .season-wheel-center {
    inset: 25.5%;
  }

  .season-wheel-center .small-divider,
  .season-butterfly {
    display: none;
  }

}

/* Single article page */
.single-article-page {
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(116, 92, 54, .032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(116, 92, 54, .024) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 44px 44px, 44px 44px, auto;
}

.article-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff8ee;
  background: #1f2930;
}

.article-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.article-hero::before {
  content: none;
}

.article-hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, calc(100% - 84px));
  margin-left: clamp(32px, 8vw, 96px);
  padding: clamp(44px, 5vw, 62px) clamp(38px, 5vw, 58px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 4%, rgba(248, 242, 233, .08), transparent 34%),
    linear-gradient(rgba(35, 47, 52, .94), rgba(31, 42, 47, .95)),
    var(--charcoal);
  border: 1px solid rgba(248, 242, 233, .36);
  box-shadow: 0 22px 60px rgba(8, 16, 18, .34);
}

.article-hero-copy::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(248, 242, 233, .28);
}

.article-hero-copy > * {
  position: relative;
  z-index: 1;
}

.article-hero-copy .eyebrow {
  margin: 0 0 14px;
  color: rgba(248, 242, 233, .76);
}

.article-hero-copy h1 {
  max-width: 590px;
  margin: 0 auto;
  color: #fffaf2;
  font: 500 clamp(54px, 6.4vw, 78px)/.96 var(--serif);
  letter-spacing: .012em;
}

.article-hero-copy .script-note {
  max-width: 560px;
  margin: 24px auto 25px;
  color: rgba(255, 248, 238, .9);
  font: 30px/1.16 var(--script);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 242, 233, .86);
  font: 600 13px/1 var(--sans);
}

.article-meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-body {
  position: relative;
  padding: 38px 0 58px;
}

.article-body::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 34px;
  width: min(220px, 18vw);
  height: 360px;
  pointer-events: none;
  background: var(--asset-hd-entry) left top / contain no-repeat;
  opacity: .22;
}

.article-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 750px) 330px;
  gap: clamp(50px, 7vw, 82px);
  align-items: start;
  justify-content: center;
}

.article-content {
  max-width: 750px;
}

.article-intro {
  max-width: 690px;
  color: rgba(35, 43, 39, .8);
  font: 18px/1.72 var(--serif);
}

.article-intro p:first-child::first-letter {
  float: left;
  margin: .07em 12px 0 0;
  color: var(--charcoal);
  font: 500 82px/.72 var(--serif);
}

.article-content p {
  color: rgba(35, 43, 39, .78);
  font-size: 16px;
  line-height: 1.86;
}

.article-feature {
  margin: 34px 0 30px;
}

.article-feature img {
  width: 100%;
  height: clamp(300px, 38vw, 430px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(43, 36, 24, .08);
}

.article-content h2 {
  margin: 30px 0 14px;
  color: var(--charcoal);
  font: 500 34px/1.1 var(--serif);
}

.article-quote {
  position: relative;
  overflow: hidden;
  width: min(610px, 92%);
  margin: 34px auto 38px;
  padding: 28px 38px 26px;
  text-align: center;
  border-radius: 4px;
  background: rgba(232, 226, 213, .58);
}

.article-quote::before {
  content: "“";
  display: block;
  margin-bottom: -6px;
  color: rgba(48, 58, 51, .55);
  font: 700 46px/.8 var(--serif);
}

.article-quote::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -10px;
  width: 105px;
  height: 145px;
  background: var(--asset-hd-entry) center bottom / contain no-repeat;
  opacity: .18;
}

.article-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(35, 43, 39, .82);
  font: 500 30px/1.25 var(--serif);
  font-style: italic;
}

.article-quote .small-divider {
  margin-top: 14px;
  margin-bottom: 0;
}

.plant-month h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.plant-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.plant-card-grid article {
  min-height: 220px;
  padding: 18px 16px 17px;
  text-align: center;
  border: 1px solid rgba(40, 49, 44, .19);
  border-radius: 5px;
  background: rgba(250, 246, 238, .72);
}

.plant-card-grid img {
  width: 86px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 8px;
  opacity: .64;
  filter: sepia(.18) saturate(.72) hue-rotate(18deg);
}

.plant-card-grid h3 {
  margin: 0;
  color: var(--charcoal);
  font: 500 20px/1.05 var(--serif);
}

.plant-card-grid em {
  display: block;
  margin: 3px 0 12px;
  color: rgba(35, 43, 39, .58);
  font: 15px/1 var(--serif);
}

.plant-card-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.diary-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  margin: 28px 0 26px;
  padding: 34px 44px;
  color: rgba(248, 242, 233, .9);
  border-radius: 6px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.06), transparent 30%),
    linear-gradient(135deg, #25343b, #1f2930);
}

.diary-note .diary-flower {
  min-height: 210px;
  background: var(--asset-hd-entry) center / contain no-repeat;
  filter: brightness(0) invert(1) opacity(.32);
}

.diary-note h2 {
  margin-top: 0;
  color: rgba(248, 242, 233, .95);
  font-size: 27px;
}

.diary-note p {
  margin: 0 0 13px;
  color: rgba(248, 242, 233, .82);
  font: 21px/1.38 var(--script);
}

.diary-note strong {
  display: block;
  margin-top: 12px;
  color: rgba(248, 242, 233, .78);
  font: 33px/1 var(--script);
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.article-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
}

.article-sidebar .sidebar-card {
  background: rgba(250, 246, 238, .64);
}

.article-season-card .season-mini-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 14px;
}

.season-mini-icons span {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(48, 58, 51, .32);
  border-radius: 50%;
  background: rgba(48, 58, 51, .64);
  -webkit-mask: none;
  mask: none;
}

.season-mini-icons span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff8ee;
  -webkit-mask: var(--asset-flower-sprig) center / 22px 22px no-repeat;
  mask: var(--asset-flower-sprig) center / 22px 22px no-repeat;
}

.season-mini-icons span:not(:first-child) {
  background: transparent;
}

.season-mini-icons span:not(:first-child)::before {
  background: rgba(48, 58, 51, .58);
}

.article-season-card strong,
.article-season-card small {
  display: block;
  color: rgba(35, 43, 39, .72);
  text-transform: uppercase;
}

.article-season-card strong {
  margin-top: 10px;
  font: 700 12px/1 var(--sans);
  letter-spacing: .12em;
}

.article-season-card small {
  margin: 5px 0 18px;
  font: 500 12px/1 var(--sans);
}

.article-newsletter input {
  width: 100%;
  height: 42px;
  margin: 12px 0;
  padding: 0 12px;
  color: var(--charcoal);
  background: rgba(255, 251, 244, .86);
  border: 1px solid rgba(40, 49, 44, .18);
  border-radius: 3px;
}

.newsletter-icon {
  display: block;
  width: 62px;
  height: 48px;
  margin: 0 auto 8px;
  border: 1px solid rgba(48, 58, 51, .34);
  border-radius: 4px;
  transform: rotate(-6deg);
}

.related-posts {
  text-align: left;
}

.related-posts h2 {
  text-align: center;
}

.related-posts article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 16px;
  transition: background-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.related-posts img {
  grid-row: span 2;
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 3px;
  transition: filter .34s ease, transform .34s ease;
}

.related-posts a:not(.btn) {
  color: var(--charcoal);
  font: 500 18px/1.08 var(--serif);
  letter-spacing: 0;
  text-transform: none;
}

.related-posts time {
  color: rgba(35, 43, 39, .62);
  font: 12px/1 var(--sans);
}

.related-posts .btn {
  width: 100%;
  margin-top: 22px;
}

.next-article-band {
  position: relative;
  overflow: hidden;
  padding: 44px 0;
  color: rgba(248, 242, 233, .9);
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.07), transparent 27%),
    linear-gradient(135deg, #26343a, #1f292f);
}

.next-article-band::after {
  content: "";
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  top: 22px;
  width: 190px;
  height: 260px;
  background: rgba(246, 240, 231, .84);
  -webkit-mask: var(--asset-hd-footer) center / contain no-repeat;
  mask: var(--asset-hd-footer) center / contain no-repeat;
  opacity: .2;
}

.next-article-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(300px, 520px);
  gap: clamp(38px, 8vw, 110px);
  align-items: center;
}

.next-article-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.next-article-grid h2 {
  margin: 0 0 12px;
  color: #fff8ee;
  font: 500 34px/1.05 var(--serif);
}

.next-article-grid p:not(.eyebrow) {
  max-width: 420px;
  margin: 0 0 22px;
  color: rgba(248, 242, 233, .72);
}

@media (max-width: 1060px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }

  .plant-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .article-hero {
    min-height: 560px;
  }

  .article-hero::before {
    background:
      linear-gradient(90deg, rgba(25, 34, 38, .58), rgba(25, 34, 38, .28)),
      linear-gradient(0deg, rgba(25, 34, 38, .35), transparent 40%);
  }

  .article-hero-copy {
    width: calc(100% - 40px);
    margin-inline: auto;
    padding: 38px 30px;
  }

  .article-hero-copy h1 {
    font-size: 45px;
  }

  .article-hero-copy .script-note {
    font-size: 25px;
  }

  .article-layout,
  .article-sidebar,
  .diary-note,
  .next-article-grid {
    grid-template-columns: 1fr;
  }

  .article-body::before,
  .next-article-band::after {
    display: none;
  }

  .article-content {
    max-width: none;
  }

  .article-quote {
    width: 100%;
    padding: 26px 22px;
  }

  .article-quote p {
    font-size: 24px;
  }

  .plant-card-grid,
  .article-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .diary-note {
    padding: 28px 24px;
  }

  .diary-note .diary-flower {
    min-height: 130px;
  }
}

@media (max-width: 460px) {
  .plant-card-grid,
  .article-gallery {
    grid-template-columns: 1fr;
  }
}

/* Robin brand mark */
.brand {
  position: relative;
  gap: 0;
}

.brand > span:not(.brand-mark) {
  position: relative;
  z-index: 2;
}

.brand strong {
  letter-spacing: .115em;
}

.brand-mark {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 72px;
  flex: 0 0 108px;
  margin-right: -16px;
  border: 0;
  border-radius: 0;
  background: url("assets/provided/brand/rotkehlchen-gartlzeit.png") 42% center / 158% auto no-repeat;
  box-shadow: none;
  filter: none;
  -webkit-mask: none;
  mask: none;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

@media (max-width: 640px) {
  .brand-mark {
    width: 82px;
    height: 56px;
    flex-basis: 82px;
    margin-right: -12px;
  }
}

/* Home hero brand tile */
.blog-plaque {
  width: min(540px, calc(100% - 90px));
  padding: 36px 64px 46px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 4%, rgba(248, 242, 233, .08), transparent 34%),
    linear-gradient(rgba(35, 47, 52, .94), rgba(31, 42, 47, .95)),
    var(--charcoal);
  box-shadow: 0 22px 60px rgba(8, 16, 18, .34);
}

.blog-plaque::before {
  inset: 18px;
  border-color: rgba(248, 242, 233, .28);
}

.blog-plaque::after,
.blog-plaque .line-flourish,
.blog-plaque .hero-kicker {
  display: none;
}

.hero-brand-lockup {
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: none;
}

.hero-brand-lockup:focus-visible {
  outline: 1px solid rgba(248, 242, 233, .65);
  outline-offset: 10px;
}

.hero-robin-mark {
  display: block;
  width: min(285px, 86%);
  aspect-ratio: 1364 / 768;
  height: auto;
  margin: -18px auto -4px;
  background: url("assets/videos/bird-fly-poster-alpha.png") center / contain no-repeat;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .18));
  opacity: 1;
  transition: opacity .18s ease;
}

.hero-robin-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-brand-lockup.is-bird-live .hero-robin-mark {
  opacity: 0;
}

.blog-plaque h1 {
  margin: 0;
  color: rgba(255, 251, 242, .96);
  font-size: clamp(48px, 4.4vw, 66px);
  line-height: .92;
  letter-spacing: .12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .14);
}

.blog-plaque .line-divider {
  width: min(330px, 82%);
  height: 24px;
  margin: 20px auto 12px;
}

.blog-plaque .line-divider::before,
.blog-plaque .line-divider::after {
  width: calc(50% - 24px);
  background: linear-gradient(90deg, transparent, rgba(248, 242, 233, .5));
}

.blog-plaque .line-divider::after {
  background: linear-gradient(90deg, transparent, rgba(248, 242, 233, .5));
}

.blog-plaque .hero-subline {
  max-width: none;
  margin: 14px auto 0;
  color: rgba(248, 242, 233, .82);
  font: 27px/1.05 var(--script);
}

.blog-plaque .hero-copy-divider {
  width: 170px;
  height: 24px;
  margin: 16px auto 18px;
  color: rgba(248, 242, 233, .46);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-blog-copy {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0 auto;
  padding-top: 0;
}

.hero-blog-copy::before {
  content: none;
}

.blog-plaque .hero-blog-copy p {
  max-width: none;
  margin: 0 0 25px;
  color: rgba(255, 248, 238, .9);
  font-size: 21px;
  line-height: 1.42;
}

.blog-plaque .btn {
  min-width: 250px;
}

@media (max-width: 640px) {
  .blog-plaque {
    width: calc(100% - 34px);
    padding: 30px 26px 38px;
  }

  .hero-robin-mark {
    width: min(230px, 88%);
    margin-top: -4px;
  }

  .blog-plaque h1 {
    font-size: clamp(32px, 10.8vw, 44px);
    letter-spacing: .07em;
  }

  .blog-plaque .hero-subline {
    font-size: 23px;
  }

  .hero-blog-copy {
    margin-top: 22px;
    padding-top: 20px;
  }

  .blog-plaque .hero-blog-copy p {
    font-size: 19px;
  }

  .blog-plaque .btn {
    min-width: min(250px, 100%);
  }
}

.bird-flight-landing {
  position: absolute;
  left: clamp(470px, 50vw, 850px);
  top: min(575px, calc(100% - 112px));
  z-index: 2;
  width: clamp(190px, 26vw, 360px);
  height: 105px;
  pointer-events: none;
}

/* Click-driven robin flight */
.scroll-bird-flight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  width: clamp(210px, 24vw, 420px);
  aspect-ratio: 1364 / 768;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0) scale(.72) rotate(0deg);
  transform-origin: 48% 52%;
  transition: opacity .18s ease;
  will-change: transform, opacity;
}

.scroll-bird-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: inset(3px);
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(18, 27, 28, .2));
}

.scroll-bird-flight.is-ready {
  opacity: var(--bird-opacity, 0);
}

.scroll-bird-flight.is-flying {
  opacity: 1;
  transition: none;
}

.scroll-bird-flight.is-landed {
  opacity: 1;
  transition: none;
}

@media (max-width: 720px), (prefers-reduced-motion: reduce) {
  .scroll-bird-flight {
    display: none;
  }

  .hero-brand-lockup {
    cursor: default;
  }
}

/* About page */
.about-page {
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(116, 92, 54, .032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(116, 92, 54, .024) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 42px 42px, 42px 42px, auto;
}

.about-hero {
  position: relative;
  min-height: clamp(520px, 67vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(248, 242, 233, .95);
  background: #202b31;
}

.about-hero::before {
  content: none;
}

.about-hero::after {
  content: none;
}

.about-hero-copy {
  position: relative;
  z-index: 3;
  width: min(540px, calc(100% - 90px));
  margin-left: clamp(38px, 8vw, 145px);
  padding: clamp(44px, 5vw, 58px) clamp(42px, 5vw, 64px) clamp(46px, 5vw, 62px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 4%, rgba(248, 242, 233, .08), transparent 34%),
    linear-gradient(rgba(35, 47, 52, .94), rgba(31, 42, 47, .95)),
    var(--charcoal);
  border: 1px solid rgba(248, 242, 233, .36);
  box-shadow: 0 22px 60px rgba(8, 16, 18, .34);
}

.about-hero-copy::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(248, 242, 233, .28);
}

.about-hero-copy > * {
  position: relative;
  z-index: 1;
}

.about-hero-copy .eyebrow,
.about-story-copy .eyebrow,
.about-contact-copy .eyebrow {
  color: inherit;
  font: 400 clamp(27px, 2.8vw, 36px)/.95 var(--script);
  letter-spacing: 0;
  text-transform: none;
}

.about-hero-copy .eyebrow {
  color: rgba(151, 166, 112, .96);
  margin: 0 auto 20px;
  font-size: clamp(30px, 2.7vw, 38px);
}

.about-story-copy .eyebrow,
.about-contact-copy .eyebrow {
  color: rgba(104, 121, 84, .92);
}

.about-hero-copy h1 {
  max-width: 450px;
  margin: 0 auto 12px;
  color: #fbf5ec;
  font: 600 clamp(39px, 3.4vw, 56px)/.94 var(--serif);
  letter-spacing: .055em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .14);
}

.about-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.about-hero-copy h1 em {
  display: block;
  margin-top: 2px;
  color: rgba(138, 153, 104, .95);
  font: 400 clamp(54px, 4.6vw, 72px)/.9 var(--script);
  letter-spacing: 0;
  text-shadow: none;
}

.about-hero-copy .small-divider {
  width: min(300px, 78%);
  height: 24px;
  margin: 22px auto 18px;
  color: rgba(248, 242, 233, .54);
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 3px, transparent 4px),
    linear-gradient(currentColor, currentColor) left 50% / calc(50% - 24px) 1px no-repeat,
    linear-gradient(currentColor, currentColor) right 50% / calc(50% - 24px) 1px no-repeat;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 26px auto 28px;
  color: rgba(248, 242, 233, .82);
  font: 21px/1.48 var(--serif);
}

.about-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: none;
}

.about-story {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
}

.about-story::before,
.about-story::after,
.about-day::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .18;
  background: var(--asset-hd-sidebar) center bottom / contain no-repeat;
}

.about-story::before {
  left: -36px;
  bottom: 0;
  width: 210px;
  height: 330px;
}

.about-story::after {
  right: clamp(20px, 5vw, 80px);
  top: 90px;
  width: 230px;
  height: 380px;
  transform: scaleX(-1);
}

.about-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 480px) minmax(320px, 1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.about-portrait {
  position: relative;
  margin: 0;
  padding: 18px;
  background: rgba(232, 226, 210, .86);
  transform: rotate(-3deg);
  box-shadow: 0 26px 64px rgba(82, 63, 43, .16);
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: var(--asset-soft-frame) center / 100% 100% no-repeat;
  opacity: .56;
  transform: rotate(4deg);
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-story-copy {
  max-width: 590px;
}

.about-story-copy h2,
.about-routine h2,
.about-contact-copy h2 {
  margin: 12px 0 18px;
  color: var(--charcoal);
  font: 500 clamp(40px, 4vw, 68px)/1.02 var(--serif);
  letter-spacing: .02em;
}

.about-story-copy p:not(.eyebrow):not(.about-signature) {
  max-width: 560px;
  color: rgba(35, 43, 39, .78);
  font-size: 16px;
  line-height: 1.85;
}

.about-signature {
  margin: 20px 0 0;
  color: var(--olive);
  font: 400 43px/1 var(--script);
}

.about-values {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 78px) 0;
  color: rgba(248, 242, 233, .86);
  background:
    linear-gradient(90deg, rgba(78, 91, 63, .96), rgba(69, 82, 58, .94)),
    #4f5f43;
}

.about-values::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -16px;
  width: 250px;
  height: 300px;
  background: var(--asset-hd-footer) left bottom / contain no-repeat;
  opacity: .18;
  pointer-events: none;
}

.about-values header {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-values h2 {
  margin: 0;
  color: rgba(248, 242, 233, .94);
  font: 500 25px/1 var(--serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
}

.about-value-grid article {
  min-height: 176px;
  padding: 16px clamp(22px, 3vw, 42px);
  text-align: center;
  border-left: 1px solid rgba(248, 242, 233, .23);
  transition: background-color .28s ease, transform .28s ease;
}

.about-value-grid article:first-child {
  border-left: 0;
}

.about-value-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 17px;
  background: rgba(248, 242, 233, .82);
  -webkit-mask: var(--asset-brand-sprig) center / contain no-repeat;
  mask: var(--asset-brand-sprig) center / contain no-repeat;
  transition: opacity .28s ease, transform .28s ease;
}

.about-value-icon.heart {
  -webkit-mask-image: var(--asset-flower-sprig);
  mask-image: var(--asset-flower-sprig);
}

.about-value-icon.sprig {
  -webkit-mask-image: var(--asset-berry-sprig);
  mask-image: var(--asset-berry-sprig);
}

.about-value-icon.can {
  -webkit-mask-image: var(--asset-footer-sprig);
  mask-image: var(--asset-footer-sprig);
}

.about-value-grid h3 {
  margin: 0 0 10px;
  color: rgba(248, 242, 233, .92);
  font: 700 12px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-value-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: rgba(248, 242, 233, .72);
  font-size: 13px;
  line-height: 1.65;
}

.about-day {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 110px) 0;
}

.about-day::after {
  right: 24px;
  bottom: 24px;
  width: 170px;
  height: 260px;
  opacity: .14;
}

.about-day-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 310px) 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.about-routine h2 {
  font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.about-routine ol {
  display: grid;
  gap: 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.about-routine li {
  position: relative;
  min-height: 72px;
  padding-left: 74px;
}

.about-routine li span {
  position: absolute;
  left: 0;
  top: 3px;
  width: 44px;
  height: 44px;
  background: rgba(89, 103, 70, .62);
  -webkit-mask: var(--asset-flower-sprig) center / contain no-repeat;
  mask: var(--asset-flower-sprig) center / contain no-repeat;
}

.about-routine li:nth-child(2) span {
  -webkit-mask-image: var(--asset-brand-sprig);
  mask-image: var(--asset-brand-sprig);
}

.about-routine li:nth-child(3) span {
  -webkit-mask-image: var(--asset-footer-sprig);
  mask-image: var(--asset-footer-sprig);
}

.about-routine li:nth-child(4) span {
  -webkit-mask-image: var(--asset-berry-sprig);
  mask-image: var(--asset-berry-sprig);
}

.about-routine strong {
  display: block;
  margin-bottom: 5px;
  color: var(--charcoal);
  font: 500 21px/1.1 var(--serif);
}

.about-routine p {
  margin: 0;
  color: rgba(35, 43, 39, .72);
  font-size: 14px;
  line-height: 1.65;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.about-gallery img {
  width: 100%;
  min-height: 260px;
  height: clamp(260px, 26vw, 380px);
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 46px rgba(82, 63, 43, .12);
  transition: filter .42s ease, box-shadow .42s ease, transform .42s ease;
}

.about-gallery blockquote {
  grid-column: 2 / 5;
  margin: 26px 0 0;
  color: rgba(35, 43, 39, .78);
  font: 500 clamp(27px, 3vw, 43px)/1.25 var(--serif);
  font-style: italic;
  text-align: center;
}

.about-contact-band {
  display: grid;
  grid-template-columns: minmax(320px, 44%) 1fr;
  min-height: 320px;
  background: rgba(241, 235, 224, .96);
}

.about-contact-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px) clamp(34px, 8vw, 130px);
}

.about-contact-copy::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: -20px;
  width: 180px;
  height: 280px;
  background: var(--asset-hd-sidebar) left bottom / contain no-repeat;
  opacity: .16;
  pointer-events: none;
}

.about-contact-copy > * {
  position: relative;
  z-index: 1;
}

.about-contact-copy h2 {
  font-size: clamp(28px, 2.7vw, 42px);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-contact-copy p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(35, 43, 39, .74);
  font-size: 15px;
  line-height: 1.8;
}

.about-newsletter {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  max-width: 520px;
  margin: 22px 0 10px;
}

.about-newsletter input {
  min-height: 48px;
  padding: 0 16px;
  color: var(--charcoal);
  background: rgba(255, 251, 244, .86);
  border: 1px solid rgba(40, 49, 44, .2);
  font: 500 14px/1 var(--sans);
}

.about-newsletter .btn {
  min-height: 48px;
}

.about-contact-copy small {
  color: rgba(35, 43, 39, .55);
  font-size: 12px;
}

.about-thanks {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #26343a;
}

.about-thanks::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 41, 48, .1), rgba(31, 41, 48, .78));
}

.about-thanks img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: right center;
  filter: saturate(.82);
}

@media (max-width: 980px) {
  .about-hero,
  .about-story-grid,
  .about-day-grid,
  .about-contact-band {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 650px;
  }

  .about-hero-copy {
    width: min(520px, calc(100% - 48px));
    margin: 0 auto;
    padding: 42px 34px 44px;
  }

  .about-hero-image {
    min-height: 0;
  }

  .about-story::after {
    display: none;
  }

  .about-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-grid article:nth-child(odd) {
    border-left: 0;
  }

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

  .about-gallery blockquote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .about-hero-copy h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    letter-spacing: .035em;
  }

  .about-hero-copy h1 em {
    font-size: clamp(50px, 13vw, 62px);
  }

  .about-hero-copy p:not(.eyebrow) {
    font-size: 20px;
    line-height: 1.45;
  }

  .about-hero-image {
    min-height: 0;
  }

  .about-story,
  .about-day {
    padding: 56px 0;
  }

  .about-story-grid,
  .about-day-grid {
    gap: 38px;
  }

  .about-portrait {
    padding: 12px;
  }

  .about-value-grid,
  .about-gallery,
  .about-newsletter {
    grid-template-columns: 1fr;
  }

  .about-value-grid article,
  .about-value-grid article:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid rgba(248, 242, 233, .2);
  }

  .about-value-grid article:first-child {
    border-top: 0;
  }

  .about-gallery img {
    min-height: 220px;
    height: 240px;
  }

  .about-contact-copy {
    padding: 44px 24px;
  }
}
