:root {
  --ink: #10251d;
  --ink-soft: #526159;
  --forest: #123d2e;
  --forest-deep: #09281d;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --sage: #dce8dd;
  --lime: #dce49a;
  --peach: #efb49f;
  --rose: #9b3c4b;
  --line: rgba(16, 37, 29, 0.14);
  --shadow: 0 22px 60px rgba(16, 37, 29, 0.12);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  touch-action: pan-x pan-y;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
}

body.menu-open {
  overflow: hidden;
}

body.shop-modal-open {
  overflow: hidden;
}

.shop-modal {
  position: fixed;
  z-index: 1900;
  inset: 0;
  display: grid;
  padding: 1rem;
  place-items: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background: rgba(4, 28, 19, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.shop-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.shop-modal-card {
  position: relative;
  width: min(100%, 42rem);
  padding: clamp(2rem, 6vw, 4rem);
  color: #fff;
  text-align: center;
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(1rem) scale(0.98);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
}

.shop-modal.is-open .shop-modal-card {
  transform: translateY(0) scale(1);
}

.shop-modal-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

.shop-modal-intro {
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.shop-modal-card em {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 1.14em;
}

.shop-modal-kicker {
  margin: 0.8rem 0 0.6rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font: 300 1.5rem/1 var(--sans);
  cursor: pointer;
}

.shop-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.shop-modal-action {
  display: inline-flex;
  min-height: 3.35rem;
  padding: 0.8rem 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.shop-modal-action-primary {
  color: var(--forest-deep);
  background: var(--lime);
}

.shop-modal-action-secondary {
  color: #fff;
  background: transparent;
}

.shop-modal-action:hover,
.shop-modal-action:focus-visible {
  color: var(--forest-deep);
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.shop-modal-action.is-counting {
  pointer-events: none;
  opacity: 0.52;
  transform: none;
}

.shop-countdown {
  min-height: 3.1em;
  margin: 1rem 0 0;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.shop-countdown:empty {
  display: none;
}

.shop-loader {
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.shop-loader span {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--peach);
  border-radius: 50%;
  animation: shop-loading 1.15s ease-in-out infinite;
}

.shop-loader span:nth-child(2) { animation-delay: 0.14s; }
.shop-loader span:nth-child(3) { animation-delay: 0.28s; }

@keyframes shop-loading {
  0%, 70%, 100% { opacity: 0.35; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(-0.38rem); }
}

body[data-page] {
  --floral-art: url("../import-media/floral-bloom.svg");
  --floral-left: 58%;
  --floral-top: -8rem;
  --floral-size: 38rem;
  --floral-rotate: 8deg;
  --floral-scale: 1;
  --floral-speed: 14s;
  --floral-direction: alternate;
}

body[data-page="about"] { --floral-art: url("../import-media/floral-stem.svg"); --floral-left: 62%; --floral-top: -6rem; --floral-rotate: -7deg; --floral-speed: 17s; }
body[data-page="services"] { --floral-art: url("../import-media/floral-branch.svg"); --floral-left: 55%; --floral-top: -10rem; --floral-rotate: 11deg; --floral-speed: 19s; --floral-direction: alternate-reverse; }
body[data-page="depot"] { --floral-art: url("../import-media/floral-bloom.svg"); --floral-left: 2%; --floral-top: -4rem; --floral-size: 34rem; --floral-rotate: -14deg; --floral-speed: 16s; }
body[data-page="memories"] { --floral-art: url("../import-media/floral-branch.svg"); --floral-left: 64%; --floral-top: -3rem; --floral-rotate: -19deg; --floral-scale: 1.08; --floral-speed: 21s; }
body[data-page="journey"] { --floral-art: url("../import-media/floral-stem.svg"); --floral-left: 52%; --floral-top: -8rem; --floral-rotate: 18deg; --floral-scale: .94; --floral-speed: 18s; --floral-direction: alternate-reverse; }
body[data-page="contact"] { --floral-art: url("../import-media/floral-bloom.svg"); --floral-left: 66%; --floral-top: -5rem; --floral-rotate: 21deg; --floral-scale: .88; --floral-speed: 15s; }
body[data-page="privacy"] { --floral-art: url("../import-media/floral-branch.svg"); --floral-left: 60%; --floral-top: -9rem; --floral-rotate: 4deg; --floral-speed: 22s; }
body[data-page="cookies"] { --floral-art: url("../import-media/floral-stem.svg"); --floral-left: 64%; --floral-top: -4rem; --floral-rotate: -16deg; --floral-scale: .9; --floral-speed: 20s; --floral-direction: alternate-reverse; }
body[data-page="error"] { --floral-art: url("../import-media/floral-bloom.svg"); --floral-left: 48%; --floral-top: -2rem; --floral-rotate: -24deg; --floral-scale: 1.16; --floral-speed: 13s; }

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

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--forest);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 0.5rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.section-sm {
  padding-block: clamp(3rem, 5vw, 5rem);
}

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

.section-dark {
  color: #fff;
  background: var(--forest-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 7.4vw, 7.3rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 2rem 5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  overflow: hidden;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  z-index: 0;
  inset: -45% auto -45% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg) translateX(-220%);
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: skewX(-18deg) translateX(500%);
}

.button-primary {
  color: #fff;
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-deep);
}

.button-light {
  color: var(--forest-deep);
  background: var(--lime);
}

.button-light:hover {
  background: #edf1b6;
}

.button-ghost {
  color: currentColor;
  background: transparent;
  border-color: currentColor;
}

.button-ghost:hover {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.section-dark .button-ghost:hover,
.hero .button-ghost:hover {
  color: var(--forest-deep);
  background: #fff;
  border-color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(18px);
  backface-visibility: hidden;
  backdrop-filter: blur(18px);
  transform: translateZ(0);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1.4rem);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0.1rem;
  color: var(--ink-soft);
  backface-visibility: hidden;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateZ(0);
  transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
}

.site-nav .nav-shop {
  padding: 0.7rem 0.95rem;
  color: var(--forest);
  background: rgba(220, 228, 154, 0.18);
  border: 1px solid rgba(18, 61, 46, 0.24);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav .nav-shop::after {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav .nav-shop:hover {
    color: var(--forest-deep);
    background: var(--lime);
  }
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.23rem auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.29rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.29rem) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(800px, calc(100svh - 5.25rem));
  align-items: stretch;
  overflow: clip;
  color: #fff;
  background: var(--forest-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18, 61, 46, 0.08), transparent 55%);
  content: "";
  pointer-events: none;
}

.hero-mobile-cinema {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 28, 19, 0.94) 0%, rgba(4, 28, 19, 0.8) 34%, rgba(4, 28, 19, 0.22) 68%, rgba(4, 28, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 28, 19, 0.46), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.hero-copy {
  width: min(100%, 47rem);
}

.hero-copy h1 {
  max-width: 9.5ch;
}

.hero-copy .lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 0.48rem 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: clamp(4.25rem, 7vw, 6.75rem);
  color: #fff;
  background: var(--forest-deep);
}

.page-hero::before,
.page-hero::after,
.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-hero::before,
.hero::before {
  z-index: 2;
  top: var(--floral-top);
  left: var(--floral-left);
  width: var(--floral-size);
  height: var(--floral-size);
  background: var(--floral-art) center / contain no-repeat;
  opacity: 0.32;
  rotate: var(--floral-rotate);
  scale: var(--floral-scale);
  will-change: translate, opacity;
}

.page-hero::after,
.hero::after {
  z-index: 2;
  right: 7%;
  bottom: -14rem;
  width: 29rem;
  height: 24rem;
  border: 1px solid rgba(232, 239, 191, 0.14);
  border-radius: 68% 32% 61% 39%;
  opacity: 0.8;
  rotate: -8deg;
  will-change: translate;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
}

.page-hero .lead {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero-image {
  display: grid;
  height: clamp(33.5rem, 74vh, 38rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

.page-hero-image .page-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 0;
  align-items: center;
  padding: clamp(3rem, 4vw, 4rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  padding-right: clamp(2rem, 5vw, 5rem);
}

.page-hero-image .page-hero-copy > div {
  max-width: 36rem;
}

.page-hero-image h1 {
  max-width: 10ch;
  font-size: clamp(3.35rem, 5vw, 5.35rem);
}

.page-hero-image .page-hero-photo {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cinematic rhythm */
.marquee {
  overflow: hidden;
  color: var(--forest-deep);
  background: var(--lime);
  border-block: 1px solid rgba(16, 37, 29, 0.14);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.2rem;
  padding-block: 1.1rem;
  animation: marquee-flow 34s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2.45rem);
  font-style: italic;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  font-size: 0.8rem;
}

@keyframes marquee-flow {
  to { transform: translateX(-50%); }
}

/* Cards and grids */
.story-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.story-quote {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story-quote::before {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  content: "“";
}

.story-quote p {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.story-quote footer {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cards-3,
.cards-4,
.category-grid,
.season-grid {
  display: grid;
  gap: 1rem;
}

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

.cards-4,
.category-grid,
.season-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

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

.card-accent::after {
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--sage);
  border-radius: 50%;
  content: "";
}

.card-number,
.icon-disc {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--forest-deep);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.card p,
.category-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1.6rem;
  margin-inline: -0.08rem;
  padding-inline: 0.08rem;
  padding-bottom: 0.08rem;
  overflow: visible;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.card-link:hover {
  color: var(--rose);
}

.category-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
  border-radius: var(--radius-md);
}

.category-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 19, 0.08) 18%, rgba(6, 27, 19, 0.84) 100%);
  content: "";
  pointer-events: none;
}

.category-card-media {
  position: absolute;
  inset: 0;
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 800ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-card-media img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.category-card-copy {
  position: relative;
  z-index: 2;
}

.category-kicker {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: auto;
  align-self: flex-start;
  padding: 0.42rem 0.62rem;
  background: rgba(6, 27, 19, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.category-card h3 {
  max-width: 10ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.category-card p,
.category-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(16rem, 0.9fr);
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  counter-increment: process;
}

.process-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-item::before {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 2rem;
  content: "0" counter(process);
}

.process-item h3,
.process-item p {
  margin-bottom: 0;
}

.process-item p {
  color: rgba(255, 255, 255, 0.62);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.8rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  flex: 0 0 auto;
  color: var(--forest);
  font-weight: 900;
  content: "✓";
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--sage);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: clamp(25rem, 48vw, 42rem);
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 15rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.season-card {
  position: relative;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.season-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 19, 0.2), rgba(6, 27, 19, 0.12) 44%, rgba(6, 27, 19, 0.88));
  content: "";
  pointer-events: none;
}

.season-card::after {
  position: absolute;
  z-index: 2;
  right: -3rem;
  bottom: -4rem;
  width: 14rem;
  height: 18rem;
  border: 1px solid currentColor;
  border-radius: 55% 45% 65% 35%;
  content: "";
  opacity: 0.28;
  transform: rotate(30deg);
}

.season-name {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 2.25rem;
}

.season-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 800ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.season-card:hover .season-card-media {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.season-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.photo-tile {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--sage);
  border-radius: var(--radius-md);
}

.photo-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 20, 14, 0.28) 100%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 42%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.photo-tile:nth-child(6n + 1),
.photo-tile:nth-child(6n + 4) { grid-column: span 5; }

.photo-tile:nth-child(6n + 2),
.photo-tile:nth-child(6n + 3) { grid-column: span 7; }

.photo-tile:nth-child(6n + 6) { grid-column: span 8; }

.photo-tile img {
  width: 100%;
  height: clamp(21rem, 38vw, 36rem);
  object-fit: cover;
  transition: filter 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.photo-tile:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.photo-tile:hover::after { opacity: 0.48; }

.photo-tile figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.75rem 0.9rem;
  color: #fff;
  background: rgba(6, 27, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  font-size: 0.76rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.photo-grid--cinematic .photo-tile img {
  height: clamp(22rem, 34vw, 32rem);
}

.photo-grid--depot .photo-tile img {
  height: clamp(22rem, 32vw, 30rem);
}

.photo-grid--archive .photo-tile {
  content-visibility: auto;
  contain-intrinsic-size: auto 31rem;
}

.photo-grid--archive .photo-tile img {
  height: clamp(20rem, 31vw, 31rem);
}

.gallery-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.map-frame {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  background: var(--sage);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  display: grid;
  min-height: inherit;
  padding: clamp(2rem, 6vw, 5rem);
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 78% 16%, rgba(220, 228, 154, 0.32), transparent 18rem),
    var(--sage);
}

.map-consent h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.map-consent > p:not(.eyebrow) {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.map-consent .button-row {
  justify-content: center;
}

.archive-note {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.archive-note + .photo-grid,
.split-grid + .photo-grid,
.story-grid + .photo-grid {
  margin-top: 3rem;
}

.archive-note strong {
  color: var(--ink);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.42rem 0.72rem;
  color: var(--forest);
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.distribution-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.distribution-section::before {
  position: absolute;
  top: -18rem;
  right: -10rem;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 57% 43% 63% 37%;
  content: "";
  transform: rotate(18deg);
}

.distribution-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.distribution-copy h2 {
  max-width: 10.5ch;
  color: #fff;
}

.distribution-copy .eyebrow {
  color: var(--lime);
}

.distribution-copy .lead {
  color: rgba(255, 255, 255, 0.72);
}

.distribution-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.distribution-facts li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.distribution-facts strong {
  color: var(--lime);
  font-size: 0.82rem;
}

.distribution-facts span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.distribution-map {
  position: relative;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 68%, rgba(220, 228, 154, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
}

.distribution-map svg {
  width: 100%;
  height: auto;
}

.romania-shape {
  fill: url(#romania-fill);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-route {
  fill: none;
  stroke: var(--peach);
  stroke-dasharray: 6 11;
  stroke-linecap: round;
  stroke-width: 2;
  opacity: 0.72;
  vector-effect: non-scaling-stroke;
}

.map-city circle {
  fill: var(--lime);
  stroke: var(--forest-deep);
  stroke-width: 3;
}

.map-glow {
  fill: var(--lime);
  opacity: 0.55;
}

.map-hub-ring {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
}

.map-hub {
  fill: var(--lime);
}

.map-label {
  fill: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.distribution-map figcaption {
  max-width: 38rem;
  margin: 0.25rem auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  text-align: center;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: clamp(18rem, 19vw, 22rem);
  padding: clamp(3rem, 4.5vw, 4.5rem) clamp(1.8rem, 4vw, 4rem);
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-panel > :first-child {
  display: grid;
  align-content: center;
}

.cta-panel h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  line-height: 0.98;
}

.cta-panel .eyebrow {
  display: none;
  margin: 0;
}

/* Contact */
.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  padding-block: 1.3rem;
  border-top: 1px solid var(--line);
}

.contact-details small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address,
.contact-details span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: normal;
  line-height: 1.25;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  font-size: 1rem;
  outline: none;
}

.mobile-sentence-break {
  display: inline;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(18, 61, 46, 0.12);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.file-upload-field {
  position: relative;
  gap: 0.55rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background:
    radial-gradient(circle at 100% 0, rgba(220, 228, 154, 0.32), transparent 11rem),
    rgba(255, 255, 255, 0.72);
  border: 1.5px dashed rgba(18, 61, 46, 0.3);
  border-radius: 1.1rem;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.file-upload-field.is-dragging {
  background-color: rgba(220, 232, 221, 0.58);
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(18, 61, 46, 0.08);
}

.file-upload-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 850;
}

.file-upload-help {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.file-upload-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 0.45rem;
}

.file-upload-pick {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  cursor: pointer;
}

.file-upload-button {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  color: #fff;
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(18, 61, 46, 0.16);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.file-upload-button::before {
  content: "+";
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 0.8;
}

.file-upload-pick:hover .file-upload-button,
.file-upload-pick:focus-within .file-upload-button {
  background: var(--forest-deep);
  box-shadow: 0 10px 24px rgba(18, 61, 46, 0.22);
  transform: translateY(-1px);
}

.file-upload-pick:focus-within .file-upload-button {
  outline: 3px solid rgba(18, 61, 46, 0.2);
  outline-offset: 3px;
}

.file-upload-pick .file-upload-picker-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-status {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.file-upload-status.is-error {
  color: #9b2c2c;
  font-weight: 750;
}

.file-upload-drop-hint {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.file-upload-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.file-upload-list:empty {
  display: none;
}

.file-upload-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.file-upload-file-name {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-remove {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  color: var(--forest);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.file-upload-remove:hover,
.file-upload-remove:focus-visible {
  color: #fff;
  background: var(--forest);
}

.file-upload-native {
  display: none;
}

.file-upload-field.photo-upload-fallback .file-upload-picker,
.file-upload-field.photo-upload-fallback .file-upload-drop-hint {
  display: none;
}

.file-upload-field.photo-upload-fallback .file-upload-native {
  display: grid;
  gap: 0.65rem;
}

.file-upload-field.photo-upload-fallback .file-upload-native input[type="file"] {
  width: 100%;
}

.anti-spam-field .wpcf7-form-control-wrap,
.anti-spam-field .wpcf7-quiz-label {
  display: block;
}

.anti-spam-field .wpcf7-quiz-label {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 850;
}

.check-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.check-field input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.form-note,
.form-status {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status:not(:empty) {
  padding: 0.8rem 1rem;
  color: var(--forest-deep);
  background: var(--sage);
  border-radius: 0.65rem;
}

.honey-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Pagini juridice în același sistem vizual cu restul site-ului */
.legal-page-hero h1 {
  max-width: 14ch;
}

.legal-page-hero .lead {
  max-width: 50rem;
  color: rgba(255, 255, 255, 0.74);
}

.legal-updated {
  margin: 1.6rem 0 0;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-policy-section {
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 17rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 0;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-toc strong {
  margin-bottom: 0.85rem;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.legal-toc a {
  padding: 0.7rem 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--rose);
}

.legal-content {
  min-width: 0;
}

.legal-content > section {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.legal-content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.legal-content h3 {
  margin-top: 2rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.legal-content p,
.legal-content li,
.legal-table th,
.legal-table td {
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-content p,
.legal-content ul {
  max-width: 52rem;
}

.legal-content a {
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.legal-content ul {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-table-wrap {
  width: 100%;
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  color: #fff;
  background: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Prose and 404 */
.prose {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.prose h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.prose h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.prose a {
  color: var(--forest);
  font-weight: 700;
}

.not-found {
  height: calc(100svh - 5.25rem);
  min-height: calc(100svh - 5.25rem);
  color: #fff;
  background: var(--forest-deep);
}

.not-found-grid {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.not-found-copy {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 3vw, 2.75rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  padding-right: clamp(2rem, 7vw, 7rem);
}

.not-found-copy::before {
  position: absolute;
  z-index: -1;
  top: var(--floral-top);
  left: 20%;
  width: var(--floral-size);
  height: var(--floral-size);
  background: var(--floral-art) center / contain no-repeat;
  content: "";
  opacity: 0.3;
  pointer-events: none;
  rotate: var(--floral-rotate);
  scale: var(--floral-scale);
}

.not-found .eyebrow {
  color: var(--lime);
}

.not-found h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.4vw, 5.5rem);
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.not-found-visual {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.not-found-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 40, 29, 0.35), transparent 42%), linear-gradient(0deg, rgba(9, 40, 29, 0.42), transparent 52%);
  content: "";
}

.not-found-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-code {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 3%;
  margin: 0;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--serif);
  font-size: clamp(9rem, 19vw, 20rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
}

.lost-petal {
  position: absolute;
  z-index: 3;
  width: 1.1rem;
  height: 2.1rem;
  background: var(--peach);
  border-radius: 80% 15% 70% 30%;
  box-shadow: 0 8px 18px rgba(9, 40, 29, 0.22);
  opacity: 0.86;
}

.lost-petal-one { top: 16%; left: 18%; animation: drifting-petal 8s ease-in-out infinite alternate; }
.lost-petal-two { top: 30%; right: 16%; animation: drifting-petal 10s 1.2s ease-in-out infinite alternate-reverse; }
.lost-petal-three { right: 37%; bottom: 17%; animation: drifting-petal 7s 0.6s ease-in-out infinite alternate; }

@keyframes drifting-petal {
  from { transform: translate3d(-0.8rem, -0.7rem, 0) rotate(-18deg); }
  to { transform: translate3d(1.2rem, 1.5rem, 0) rotate(34deg); }
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #061b13;
}

.footer-signoff {
  padding-block: clamp(4rem, 9vw, 8rem) 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-signoff p {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.footer-signoff em {
  display: inline-block;
  margin-inline-start: 0.12em;
  padding-block-start: 0.04em;
  color: var(--lime);
  font-weight: 400;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(17rem, 1.4fr) repeat(2, minmax(10rem, 0.6fr));
  gap: 3rem;
  padding-block: 4.5rem;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-subtitle {
  color: rgba(255, 255, 255, 0.54);
}

.footer-intro p {
  max-width: 28rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-group h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-links li small {
  display: block;
  margin-bottom: 0.05rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-shop-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
}

.footer-shop-link span {
  padding: 0.16rem 0.42rem;
  color: var(--lime);
  border: 1px solid rgba(220, 228, 154, 0.38);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.68);
  text-underline-offset: 0.25em;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: #fff;
}

.consumer-info {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.consumer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consumer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.consumer-badges a {
  display: block;
  padding: 0;
  line-height: 0;
  background: transparent;
  border-radius: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.consumer-badges a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.consumer-badges img {
  width: 130px;
  max-width: 100%;
  height: auto;
}

/* Cinematic reveals */
@media (prefers-reduced-motion: no-preference) {
  .cinematic-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 2.25rem, 0) scale(0.985);
    transition:
      opacity 850ms cubic-bezier(0.2, 0.75, 0.2, 1),
      filter 950ms cubic-bezier(0.2, 0.75, 0.2, 1),
      transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
  }

  .cinematic-reveal.reveal-left {
    transform: translate3d(-2.75rem, 0, 0);
  }

  .cinematic-reveal.reveal-image {
    clip-path: inset(0 0 12% 0 round var(--radius-md));
    filter: saturate(0.82) brightness(0.9);
    transform: translate3d(0, 2rem, 0) scale(0.97);
    transition:
      clip-path 1150ms cubic-bezier(0.16, 1, 0.3, 1),
      filter 1200ms ease,
      opacity 700ms ease,
      transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .cinematic-reveal.is-visible,
  .cinematic-reveal.reveal-left.is-visible {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .cinematic-reveal.reveal-image.is-visible {
    opacity: 1;
    clip-path: inset(0 0 0 0 round var(--radius-md));
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .reveal-delay-1 { transition-delay: 90ms; }
  .reveal-delay-2 { transition-delay: 180ms; }
  .reveal-delay-3 { transition-delay: 270ms; }
  .reveal-delay-4 { transition-delay: 360ms; }

  .cinematic-hero-media img {
    animation: cinematic-hero-arrival 1800ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .page-hero::before,
  .hero::before,
  .not-found-copy::before {
    animation: botanical-drift var(--floral-speed) ease-in-out infinite var(--floral-direction);
  }

  .page-hero::after,
  .hero::after {
    animation: botanical-orbit 18s 1.2s ease-in-out infinite alternate-reverse;
  }

  .map-route {
    animation: map-route-flow 8s linear infinite;
  }

  .route-two { animation-delay: -1.4s; }
  .route-three { animation-delay: -2.8s; }
  .route-four { animation-delay: -4.2s; }
  .route-five { animation-delay: -5.6s; }

  .map-hub-ring {
    animation: map-hub-pulse 2.8s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }
}

@keyframes cinematic-hero-arrival {
  from {
    filter: saturate(0.78) brightness(0.82);
    transform: scale(1.055);
  }
  to {
    filter: none;
    transform: scale(1);
  }
}

@keyframes botanical-drift {
  from { translate: -0.8rem 0.7rem; opacity: 0.24; }
  to { translate: 1.4rem -1rem; opacity: 0.4; }
}

@keyframes botanical-orbit {
  from { translate: -1rem 0.4rem; }
  to { translate: 1.2rem -0.8rem; }
}

@keyframes map-route-flow {
  to { stroke-dashoffset: -68; }
}

@keyframes map-hub-pulse {
  0%, 35% { opacity: 1; transform: scale(0.72); }
  100% { opacity: 0; transform: scale(1.8); }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .cards-4,
  .category-grid,
  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-tile,
  .photo-tile:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(calc(100% - 2rem), var(--content));
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .file-upload-picker {
    align-items: stretch;
    flex-direction: column;
  }

  .file-upload-pick,
  .file-upload-button {
    width: 100%;
  }

  .mobile-sentence-break {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    top: 5.25rem;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - 5.25rem);
    gap: 0;
    padding: 1rem;
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(16, 37, 29, 0.15);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform 220ms ease, opacity 180ms ease, visibility 220ms;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 0.85rem 0.4rem;
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
  }

  .site-nav .nav-shop {
    margin: 1rem 0 0;
    color: var(--forest-deep);
    text-align: center;
    background: rgba(220, 228, 154, 0.28);
    border: 1px solid rgba(18, 61, 46, 0.22);
    border-radius: 999px;
  }

  .site-nav a[aria-current="page"]::after {
    right: auto;
    width: 2.5rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .split-grid,
  .contact-grid {
    gap: 3rem;
  }

  .process-item {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .process-item p {
    grid-column: 2;
  }

  .page-hero-image {
    height: auto;
    grid-template-columns: 1fr;
  }

  .page-hero-image .page-hero-copy {
    height: auto;
    min-height: auto;
    padding: clamp(4rem, 9vw, 5.5rem) 1.5rem;
  }

  .page-hero-image .page-hero-photo {
    height: auto;
    min-height: clamp(21rem, 56vw, 26rem);
    order: 2;
  }

  .not-found-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .not-found {
    height: auto;
  }

  .not-found-copy {
    padding: clamp(4rem, 10vw, 6rem) 1.5rem;
  }

  .not-found-visual {
    height: auto;
    min-height: clamp(22rem, 66vw, 31rem);
    order: -1;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 6rem;
  }

  .shop-modal {
    padding: 0.75rem;
    overflow-y: auto;
  }

  .shop-modal-card {
    padding: 3.4rem 1.25rem 1.5rem;
    border-radius: 1.5rem;
  }

  .shop-modal-card h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .shop-modal-actions {
    grid-template-columns: 1fr;
  }

  .shop-countdown {
    min-height: 4.6em;
  }

  .section {
    padding-block: 4.25rem;
  }

  .brand-subtitle {
    max-width: none;
    white-space: nowrap;
    overflow: visible;
    font-size: 0.54rem;
    letter-spacing: 0.1em;
    text-overflow: clip;
  }

  .hero {
    display: block;
    min-height: auto;
    color: #fff;
    background: var(--forest-deep);
  }

  .hero-media,
  .hero-overlay {
    position: relative;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    object-position: 70% center;
  }

  .hero-mobile-cinema {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    align-items: end;
    padding: 1.35rem 1.25rem;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 34%, rgba(4, 28, 19, 0.12) 54%, rgba(4, 28, 19, 0.82) 100%);
    pointer-events: none;
  }

  .hero-mobile-message {
    display: none;
    grid-area: 1 / 1;
    max-width: 19rem;
    margin: 0;
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .hero-mobile-message:first-child {
    display: block;
  }

  .hero-mobile-message small,
  .hero-mobile-message span {
    display: block;
  }

  .hero-mobile-message small {
    margin-bottom: 0.3rem;
    color: var(--lime);
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero-mobile-message span {
    max-width: 15ch;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
  }

  .hero-overlay {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 3.6rem 4.5rem;
  }

  .hero-copy h1 {
    max-width: 7.2ch;
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

  .story-grid,
  .split-grid,
  .contact-grid,
  .distribution-grid,
  .cta-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    min-height: 0;
    padding-block: clamp(2.5rem, 8vw, 3.5rem);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .legal-toc {
    position: static;
    top: auto;
  }

  .distribution-grid {
    gap: 2.5rem;
  }

  .distribution-copy h2 {
    max-width: 13ch;
  }

  .distribution-facts li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .distribution-map {
    padding: 0.75rem;
  }

  .cards-4,
  .category-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .season-card {
    min-height: 19rem;
  }

  .story-quote {
    border-radius: var(--radius-md);
  }

  .image-frame,
  .contact-form,
  .distribution-map,
  .cta-panel {
    border-radius: var(--radius-md);
  }

  .image-frame img {
    height: 28rem;
  }

  .image-note {
    position: static;
    max-width: none;
    background: var(--cream);
    border-radius: 0;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .footer-main {
    gap: 2.5rem;
    padding-block: 3.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

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

  .photo-tile,
  .photo-tile:nth-child(n) {
    grid-column: auto;
  }

  .photo-tile img {
    height: min(135vw, 36rem);
  }

  body[data-page="memories"] .photo-tile img {
    height: min(150vw, 40rem);
  }

  .map-frame {
    min-height: 24rem;
    border-radius: var(--radius-md);
  }

  .consumer-info {
    grid-template-columns: 1fr;
  }

  .consumer-badges {
    justify-content: flex-start;
  }

  .consumer-badges img {
    width: min(130px, 100%);
  }
}

@keyframes hero-mobile-fade {
  0%, 100% {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 0.7rem, 0);
  }
  6%, 20% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
  25% {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, -0.35rem, 0);
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .header-inner {
    min-height: 4.8rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand {
    max-width: calc(100% - 3.4rem);
    gap: 0.58rem;
  }

  .brand-subtitle {
    font-size: 0.47rem;
    letter-spacing: 0.075em;
  }

  .site-nav {
    top: 4.8rem;
    max-height: calc(100svh - 4.8rem);
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .process-item {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .process-item::before {
    font-size: 1.5rem;
  }

  .contact-details a,
  .contact-details address,
  .contact-details span {
    font-size: 1.22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  .hero-mobile-message {
    display: none;
  }

  .hero-mobile-message:first-child {
    display: block;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
/* Galeria oficială din depozit */
.photo-grid--official {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.photo-grid--official .photo-tile {
  content-visibility: auto;
  contain-intrinsic-size: auto 540px;
}

.photo-grid--official .photo-tile img {
  height: clamp(20rem, 31vw, 34rem);
}

@media (max-width: 640px) {
  .photo-grid--official .photo-tile img {
    height: min(132vw, 36rem);
  }
}

/* WordPress, Elementor și Contact Form 7 */
.elementor-widget-gradina_urbana_page,
.elementor-widget-gradina_urbana_page > .elementor-widget-container,
.elementor-widget-gradina_urbana_page main {
  width: 100%;
  margin: 0;
  padding: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section > .elementor-container {
  max-width: none;
}

.elementor-column-gap-no > .elementor-column > .elementor-element-populated {
  padding: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

.contact-form .wpcf7-form {
  margin-top: 1.35rem;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.45rem;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  color: #9b2c2c;
  font-size: 0.88rem;
}

.contact-form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 0.65rem;
}

.contact-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.contact-form .wpcf7-spinner {
  margin: 0 0.5rem;
}

.gradina-form-preview [disabled] {
  cursor: not-allowed;
}

/*
 * Elementor aplică implicit `height: auto` imaginilor. Tema deține explicit
 * dimensiunile imaginilor de compoziție, atât în site, cât și în preview.
 */
.elementor-widget-gradina_urbana_page .hero-media > img,
.elementor-widget-gradina_urbana_page .page-hero-photo > img,
.elementor-widget-gradina_urbana_page .not-found-visual > img,
.elementor-widget-gradina_urbana_page .category-card-media > img,
.elementor-widget-gradina_urbana_page .season-card > img.season-card-media,
body.elementor-page .hero-media > img,
body.elementor-page .page-hero-photo > img,
body.elementor-page .not-found-visual > img,
body.elementor-page .category-card-media > img,
body.elementor-page .season-card > img.season-card-media {
  width: 100%;
  max-width: none;
  height: 100% !important;
  object-fit: cover;
}

.elementor-widget-gradina_urbana_page .image-frame > img,
body.elementor-page .image-frame > img {
  width: 100%;
  height: clamp(25rem, 48vw, 42rem) !important;
  object-fit: cover;
}

.elementor-widget-gradina_urbana_page .photo-tile > img,
body.elementor-page .photo-tile > img {
  width: 100%;
  height: clamp(21rem, 38vw, 36rem) !important;
  object-fit: cover;
}

.elementor-widget-gradina_urbana_page .photo-grid--cinematic .photo-tile > img,
body.elementor-page .photo-grid--cinematic .photo-tile > img {
  height: clamp(22rem, 34vw, 32rem) !important;
}

.elementor-widget-gradina_urbana_page .photo-grid--depot .photo-tile > img,
body.elementor-page .photo-grid--depot .photo-tile > img {
  height: clamp(22rem, 32vw, 30rem) !important;
}

.elementor-widget-gradina_urbana_page .photo-grid--archive .photo-tile > img,
body.elementor-page .photo-grid--archive .photo-tile > img {
  height: clamp(20rem, 31vw, 31rem) !important;
}

.elementor-widget-gradina_urbana_page .photo-grid--official .photo-tile > img,
body.elementor-page .photo-grid--official .photo-tile > img {
  height: clamp(20rem, 31vw, 34rem) !important;
}

@media (max-width: 720px) {
  .elementor-widget-gradina_urbana_page .image-frame > img,
  body.elementor-page .image-frame > img {
    height: 28rem !important;
  }
}

@media (max-width: 640px) {
  .elementor-widget-gradina_urbana_page .photo-tile > img,
  body.elementor-page .photo-tile > img {
    height: min(135vw, 36rem) !important;
  }

  body[data-page="memories"] .elementor-widget-gradina_urbana_page .photo-tile > img,
  body[data-page="memories"].elementor-page .photo-tile > img {
    height: min(150vw, 40rem) !important;
  }

  .elementor-widget-gradina_urbana_page .photo-grid--official .photo-tile > img,
  body.elementor-page .photo-grid--official .photo-tile > img {
    height: min(132vw, 36rem) !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
