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

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

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-muted: #f1ede7;
  --ink: #141414;
  --ink-soft: #454545;
  --accent: #1f4f46;
  --accent-strong: #0f2f2a;
  --accent-warm: #b08d57;
  --accent-soft: rgba(31, 79, 70, 0.08);
  --border: rgba(20, 20, 20, 0.12);
  --shadow-sm: 0 10px 30px rgba(15, 47, 42, 0.08);
  --shadow-md: 0 25px 60px rgba(15, 47, 42, 0.15);
  --shadow-lg: 0 40px 90px rgba(15, 47, 42, 0.2);
  --radius: 18px;
  --radius-lg: 28px;
  --max-width: 1200px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, #f9f6f1 40%, #f1ede7 100%);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover,
a:focus-visible {
  color: var(--accent);
}

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

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  z-index: 2000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
}

.brand-logo {
  width: 54px;
  height: 54px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.brand-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
}


.brand-text span {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  text-align: right;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[data-active="true"]::after {
  width: 100%;
}

.site-nav a[data-active="true"] {
  color: var(--accent);
}

.header-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  position: relative;
  background: transparent;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  position: absolute;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  margin: 0;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-bar:nth-child(2) {
  top: 14px;
}

.nav-toggle-bar:nth-child(3) {
  top: 21px;
}

.nav-toggle-bar:nth-child(4) {
  top: 28px;
}

.nav-open .nav-toggle-bar:nth-child(2) {
  transform: translate(-50%, 7px) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(3) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.nav-open .nav-toggle-bar:nth-child(4) {
  transform: translate(-50%, -7px) rotate(-45deg);
}

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

.fly-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  overflow: clip;
}

.fly-overlay__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: block;
  overflow: visible;
}

.fly-overlay__path {
  fill: none;
  stroke: transparent;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.fly-overlay__trail {
  fill: none;
  stroke: rgba(72, 96, 88, 0.52);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 7 14;
  vector-effect: non-scaling-stroke;
}

.fly-overlay__trail-cap {
  display: block;
  fill: none;
  stroke: rgba(72, 96, 88, 0.52);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.fly-overlay__trail-tip {
  fill: rgba(72, 96, 88, 0.7);
  opacity: 0;
}

.fly-overlay__anchor-point {
  fill: #7c4dff;
  opacity: 0;
}

.fly-overlay--debug-anchor .fly-overlay__trail-tip {
  fill: #ff5a5a;
  opacity: 1;
}

.fly-overlay--debug-anchor .fly-overlay__anchor-point {
  opacity: 1;
}

.fly-overlay__attach-debug {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1260;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 999px;
  background: #2b6fff;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0);
}

.fly-overlay--debug-anchor .fly-overlay__attach-debug {
  opacity: 1;
}

.fly-overlay__trail-mask {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.fly-overlay--debug .fly-overlay__path {
  stroke: #d94141;
}

.fly-overlay__fly {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1250;
  pointer-events: none;
  width: clamp(2.5rem, 4vw, 3.5rem);
  height: auto;
  transform: translate3d(-999px, -999px, 0);
  transform-origin: 0 0;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 899.98px) {

  .fly-overlay,
  .fly-overlay__fly,
  .fly-overlay__attach-debug {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 243, 238, 0.48), rgba(246, 243, 238, 0.48)),
    url("../assets/Hero-Background.png") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(31, 79, 70, 0.18), transparent 60%);
  filter: blur(10px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: opacity 420ms ease, transform 520ms ease, filter 520ms ease;
}

.hero-grid > div:first-child {
  position: relative;
  isolation: isolate;
}

.hero-grid > div:first-child::before {
  content: "";
  position: absolute;
  left: 46%;
  top: 50%;
  width: min(58vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.72) 44%, rgba(255, 255, 255, 0) 72%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero h1,
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.hero .lead,
.page-hero .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.8rem;
}

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

.badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 79, 70, 0.08), transparent 55%);
}

.hero-visual .floating-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: absolute;
  right: 12%;
  top: 18%;
  max-width: 220px;
}

.hero-visual .floating-card.secondary {
  top: auto;
  bottom: 16%;
  left: 12%;
  right: auto;
}

.hero-visual .floating-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.hero-visual .floating-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-visual .hero-lines {
  position: absolute;
  inset: 15% 10% 15% 10%;
  border: 1px dashed rgba(31, 79, 70, 0.2);
  border-radius: 24px;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.scroll-indicator span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  animation: float 2.4s ease-in-out infinite;
}

.section {
  padding: 4.8rem 0;
}

.section--alt {
  background: var(--surface-muted);
}

.section--dark {
  background: #121212;
  color: #f6f4f0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section-heading p {
  color: var(--ink-soft);
}

.section--dark .section-heading p {
  color: rgba(246, 244, 240, 0.8);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.8rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.6rem;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--ink-soft);
}

.card .card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent);
}

.card .card-link::after {
  content: "→";
}

.product-teaser {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}

.product-teaser .media-placeholder {
  width: 100%;
  align-self: stretch;
  flex: 0 0 auto;
}

.product-teaser .media-placeholder--landscape {
  aspect-ratio: auto;
  min-height: clamp(220px, 24vw, 250px);
  margin-bottom: 1.35rem;
}

.product-teaser .product-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft, rgba(31, 79, 70, 0.08));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.product-teaser .card-link {
  margin-top: auto;
}

.highlight-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(31, 79, 70, 0.12), rgba(176, 141, 87, 0.18));
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.highlight-band .btn {
  justify-self: start;
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.price-card h3 {
  margin-bottom: 0.4rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.6rem 0;
}

.price-label {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-note {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.price-teaser-panel {
  display: grid;
  gap: 1.6rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(31, 79, 70, 0.1), rgba(176, 141, 87, 0.12));
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.price-mini-grid {
  display: grid;
  gap: 1rem;
}

.price-mini {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.price-mini strong {
  font-size: 0.98rem;
}

.price-mini span {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.price-list-groups {
  display: grid;
  gap: 1.6rem;
}

.price-group {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.price-group__header {
  display: grid;
  gap: 0.45rem;
  padding: 1.6rem 1.6rem 1.1rem;
  background: linear-gradient(135deg, rgba(31, 79, 70, 0.07), rgba(176, 141, 87, 0.08));
}

.price-group__header p {
  color: var(--ink-soft);
}

.price-table {
  display: grid;
}

.price-table__row {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem 1.6rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.price-table__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.price-table__head strong {
  font-size: 1rem;
}

.price-table__head span {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.price-table__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.price-table__meta span {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-muted);
}

.price-disclaimer {
  padding: 1.1rem 1.6rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cta-band {
  background: var(--accent-strong);
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.2rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  padding: 4.2rem 0 3rem;
  background: linear-gradient(120deg, rgba(31, 79, 70, 0.08), transparent 60%);
}

.page-hero .hero-actions {
  margin-top: 1.5rem;
}

.page-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.page-hero .hero-meta span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.detail-grid {
  display: grid;
  gap: 2rem;
}

.detail-list {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.detail-list ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.detail-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
}

.page-hero--product {
  padding: 4.6rem 0 3.4rem;
}

.page-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-hero__copy .lead {
  max-width: 38rem;
}

.page-hero__media {
  justify-self: stretch;
}

.media-placeholder {
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(135deg, rgba(31, 79, 70, 0.12), rgba(176, 141, 87, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(31, 79, 70, 0.2);
  border-radius: 18px;
}

.media-placeholder strong,
.media-placeholder p,
.media-placeholder__eyebrow {
  position: relative;
  z-index: 1;
}

.media-placeholder strong {
  font-size: 1.05rem;
}

.media-placeholder p {
  color: var(--ink-soft);
  margin: 0;
}

.media-placeholder__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-placeholder--landscape {
  aspect-ratio: 16 / 9;
  min-height: 210px;
  margin-bottom: 1.3rem;
}

.media-placeholder--portrait {
  min-height: 360px;
}

.media-placeholder--compact {
  min-height: 190px;
  margin-bottom: 1.2rem;
}

.media-placeholder--tall {
  min-height: 280px;
}

.card-meta-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  padding-left: 0;
  /* wichtig: kein zusätzliches UL-Padding */
}

.card-meta-list li {
  position: relative;
  padding-left: 1.4rem;
  /* Platz für den Bullet */
}

.card-meta-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.2em;
  /* leichte vertikale Feinjustierung */
  color: var(--accent);
}

.product-world-card {
  display: flex;
  flex-direction: column;
}

.detail-grid--product {
  align-items: stretch;
}

.variant-card {
  display: flex;
  flex-direction: column;
}

.variant-card--wide {
  grid-column: 1 / -1;
}

.info-grid {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  height: 100%;
}

.info-card--notice {
  background: linear-gradient(135deg, rgba(31, 79, 70, 0.1), rgba(176, 141, 87, 0.16));
}

.product-focus {
  display: grid;
  gap: 1.8rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.product-focus__copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.product-focus__media {
  align-self: stretch;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin-bottom: 0.4rem;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-help {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.35;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

.form-status {
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 600;
}

.form-status--success {
  color: #174c35;
  background: #eaf7ef;
  border-color: #afd8bd;
}

.form-status--error {
  color: #7a2525;
  background: #fff0f0;
  border-color: #e5b5b5;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form .form-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.contact-form .form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-copy {
  display: grid;
  gap: 1.2rem;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
  max-width: 900px;
}

.legal-copy__group {
  display: grid;
  gap: 0.25rem;
}

.legal-copy h2 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.legal-copy ul {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.2rem;
}

.legal-copy strong {
  color: var(--ink);
}

.legal-copy a {
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  background: #121212;
  color: #f6f4f0;
  padding: 3.2rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.footer-column--brand {
  gap: 1rem;
}

.footer-grid h3 {
  font-size: 1rem;
  margin: 0;
}

.footer-grid a {
  color: #f6f4f0;
  display: block;
  margin: 0;
  opacity: 0.85;
  font-size: 0.98rem;
  line-height: 1.5;
  transition: opacity var(--transition), color var(--transition);
}

.footer-grid .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link__icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  opacity: 1;
  color: #ffffff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  filter: invert(1);
  flex: 0 0 auto;
}

.footer-brand span {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  margin: 0;
  max-width: 17rem;
  color: rgba(246, 244, 240, 0.72);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 244, 240, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(246, 244, 240, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(31, 79, 70, 0.08);
}

.btn--light {
  background: #fff;
  color: var(--accent-strong);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible>* {
  transition-delay: var(--delay, 0ms);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

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

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

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

  .price-list-groups {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  }

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

  .product-focus {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    right: 1.5rem;
    top: 78px;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .brand-text span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .header-cta {
    display: none;
  }

  .hero-visual {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-grid > div:first-child::before {
    left: 50%;
    top: 48%;
    width: clamp(560px, 145vw, 680px);
    filter: blur(10px);
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .cta-band {
    padding: 2rem;
  }

  .price-mini {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-table__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-teaser .media-placeholder,
  .product-world-card .media-placeholder {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
