:root {
  --cream: #f7f0df;
  --cream-deep: #efe2c8;
  --paper: #fffaf0;
  --olive: #173d2b;
  --olive-soft: #24583d;
  --olive-dark: #0f2a1d;
  --gold: #c9a24d;
  --gold-soft: #e6cf8b;
  --red: #a63b2e;
  --green-flag: #1f7a42;
  --white: #ffffff;
  --ink: #252018;
  --muted: #746a5b;
  --line: rgba(37, 32, 24, 0.14);
  --shadow: 0 22px 60px rgba(26, 24, 18, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 77, 0.12), transparent 34rem),
    var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--olive-dark);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--olive);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.flag-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 5px;
  position: relative;
  z-index: 100;
}

.flag-green {
  background: var(--green-flag);
}

.flag-white {
  background: var(--paper);
}

.flag-red {
  background: var(--red);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  min-height: var(--header-height);
  background: rgba(247, 240, 223, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 61, 43, 0.12);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--olive);
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a {
  position: relative;
  padding: 0.7rem 0.78rem;
  border-radius: 999px;
  color: var(--olive);
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--olive-dark);
  background: rgba(201, 162, 77, 0.14);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 34%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 61, 43, 0.18);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--olive);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Typography */

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--olive-dark);
}

h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.3rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--gold);
}

.eyebrow.light {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading p {
  color: var(--muted);
}

.dark-section .section-heading h2,
.dark-section .section-heading p,
.dark-section h2,
.dark-section h3 {
  color: var(--paper);
}

.dark-section .section-heading p {
  color: rgba(255, 250, 240, 0.78);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: var(--olive);
  color: var(--paper);
  border-color: var(--olive);
}

.btn-primary:hover {
  background: var(--olive-dark);
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.7);
  background: rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 250, 240, 0.22);
}

.btn-outline {
  color: var(--olive);
  border-color: rgba(23, 61, 43, 0.24);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--olive);
  background: rgba(23, 61, 43, 0.08);
}

.btn-gold {
  color: var(--olive-dark);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hero */

.hero {
  min-height: calc(100svh - var(--header-height));
  position: relative;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% -10%;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 77, 0.22), transparent 64%);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 26, 17, 0.86), rgba(9, 26, 17, 0.56), rgba(9, 26, 17, 0.2)),
    linear-gradient(0deg, rgba(9, 26, 17, 0.72), transparent 45%);
  z-index: -1;
}

.hero-content {
  max-width: 850px;
  padding-block: 7rem;
}

.hero-content h1,
.page-hero h1 {
  color: var(--paper);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.hero-text {
  max-width: 700px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.center-actions {
  justify-content: center;
}

.hero-card {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 2rem;
  width: min(360px, calc(100% - 40px));
  padding: 1.4rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: rgba(15, 42, 29, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin: 0.75rem 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-card p {
  color: rgba(255, 250, 240, 0.78);
  margin: 0;
}

.gold-line {
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-flag), var(--paper), var(--red));
  border-radius: 999px;
}

/* Page Hero */

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  color: var(--paper);
  text-align: center;
  isolation: isolate;
}

.page-hero-content {
  max-width: 850px;
  padding-block: 6rem;
}

.page-hero-content p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.12rem;
}

.wholesale-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 26, 17, 0.84), rgba(9, 26, 17, 0.58)),
    linear-gradient(0deg, rgba(9, 26, 17, 0.76), transparent 44%);
}

/* Sections */

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.cream-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.76), rgba(239, 226, 200, 0.72)),
    var(--cream);
}

.intro-section {
  background: var(--paper);
  position: relative;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 61, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 61, 43, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(247, 240, 223, 0.68);
  box-shadow: 0 16px 45px rgba(26, 24, 18, 0.08);
}

.feature-strip article {
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 1rem;
}

.feature-strip h3 {
  margin-bottom: 0.55rem;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  background: var(--paper);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-content p {
  color: var(--muted);
}

.image-panel {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.image-panel::after,
.product-hero-image::after,
.catalog-image::after,
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(15, 42, 29, 0.42)),
    radial-gradient(circle at 18% 18%, rgba(201, 162, 77, 0.2), transparent 36%);
  pointer-events: none;
}

.image-panel img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-panel:hover img {
  transform: scale(1.045);
}

.dark-section {
  background:
    radial-gradient(circle at top left, rgba(201, 162, 77, 0.18), transparent 30rem),
    linear-gradient(135deg, var(--olive-dark), var(--olive));
  color: var(--paper);
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.18), transparent 34%),
    var(--cream);
}

.cta-box,
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(201, 162, 77, 0.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(239, 226, 200, 0.78));
  box-shadow: var(--shadow);
}

.cta-box p {
  max-width: 730px;
  color: var(--muted);
}

.cta-inline {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.16);
}

.cta-inline p {
  color: rgba(255, 250, 240, 0.78);
  max-width: 740px;
}

/* Product Cards */

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 3rem;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(26, 24, 18, 0.1);
  border: 1px solid rgba(37, 32, 24, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(26, 24, 18, 0.18);
}

.product-image {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--olive-dark);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.badge.static {
  position: static;
  margin-bottom: 1rem;
}

.product-body {
  padding: 1.5rem;
}

.product-body p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--olive);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.product-card:hover .text-link::after {
  transform: translateX(4px);
}

/* Catalog */

.catalog-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
}

.catalog-item {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
  border: 1px solid rgba(37, 32, 24, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(26, 24, 18, 0.1);
}

.catalog-item.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.catalog-item.reverse .catalog-image {
  order: 2;
}

.catalog-image {
  position: relative;
  overflow: hidden;
}

.catalog-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.catalog-item:hover .catalog-image img {
  transform: scale(1.045);
}

.catalog-content {
  padding: clamp(2rem, 4vw, 3.4rem);
  align-self: center;
}

.catalog-content p {
  color: var(--muted);
}

.dot-list,
.check-list {
  padding: 0;
  margin: 1.3rem 0 1.6rem;
  list-style: none;
}

.dot-list li,
.check-list li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.dot-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.15);
}

.check-list li::before {
  content: "✓";
  top: 0.05em;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--gold);
  box-shadow: none;
  font-weight: 900;
}

/* Bundles */

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.bundle-card {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.045));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.bundle-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--green-flag), var(--paper), var(--red));
  opacity: 0.8;
}

.bundle-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 162, 77, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.14), rgba(255, 250, 240, 0.06));
}

.bundle-number {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.bundle-card p {
  color: rgba(255, 250, 240, 0.76);
}

.bundle-card a {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--gold-soft);
  font-weight: 900;
}

.bundle-card a::after {
  content: "→";
  margin-left: 0.35rem;
}

.bundle-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.7rem;
}

.bundle-mini-grid div {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(247, 240, 223, 0.72);
}

.bundle-mini-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.bundle-mini-grid p {
  margin: 0;
  font-size: 0.95rem;
}

/* Product detail pages */

.product-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 77, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--paper), var(--cream));
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  left: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 999px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.product-hero-copy p {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.08rem;
}

.product-hero-image {
  position: relative;
  height: min(64vh, 620px);
  min-height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-hero-image img {
  height: 100%;
  object-fit: cover;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.detail-card {
  padding: 2rem;
  border: 1px solid rgba(37, 32, 24, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 16px 40px rgba(26, 24, 18, 0.08);
}

.detail-card p {
  color: var(--muted);
  margin: 0;
}

.icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding-inline: 0.65rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.16);
  color: var(--gold);
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(23, 61, 43, 0.14);
  border-radius: 999px;
  background: rgba(247, 240, 223, 0.78);
  color: var(--olive);
  font-weight: 800;
  font-size: 0.9rem;
}

/* Process */

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.process-step {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(247, 240, 223, 0.95), rgba(239, 226, 200, 0.72));
  border: 1px solid var(--line);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
  margin: 0;
}

/* Forms */

.form-section {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 77, 0.18), transparent 28rem),
    var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.quote-form {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(37, 32, 24, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label,
.checkbox-group legend {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--olive);
  font-weight: 900;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(23, 61, 43, 0.18);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.16);
  background: #fffdf7;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-group {
  padding: 1rem;
  border: 1px solid rgba(23, 61, 43, 0.13);
  border-radius: var(--radius-md);
  background: rgba(247, 240, 223, 0.62);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.65rem 0;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-group input {
  width: auto;
  accent-color: var(--olive);
}

.hidden {
  display: none;
}

.contact-aside p {
  color: var(--muted);
}

.contact-card {
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.68);
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: var(--olive);
  font-weight: 900;
}

.flag-detail {
  position: relative;
  overflow: hidden;
}

.flag-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--green-flag), var(--paper), var(--red));
}

/* Thank you */

.thank-you-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 162, 77, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--paper), var(--cream-deep));
}

.thank-you-card {
  max-width: 780px;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(201, 162, 77, 0.34);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.thank-you-card p {
  color: var(--muted);
}

.success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(23, 61, 43, 0.22);
}

/* Footer */

.site-footer {
  background: var(--olive-dark);
  color: rgba(255, 250, 240, 0.78);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-grid h3 {
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 250, 240, 0.84);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  font-size: 0.9rem;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-cpsync-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  opacity: 0.92;
}

.mini-flag {
  display: inline-flex;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-flag) 0 33.33%, var(--paper) 33.33% 66.66%, var(--red) 66.66% 100%);
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-card {
  animation: gentleFloat 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .main-nav a {
    padding-inline: 0.55rem;
    font-size: 0.86rem;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -4rem auto 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }

  .product-card-grid,
  .bundle-grid,
  .details-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 101;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + 5px) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem 20px 1.5rem;
    background: rgba(247, 240, 223, 0.98);
    border-bottom: 1px solid rgba(23, 61, 43, 0.12);
    box-shadow: 0 24px 50px rgba(26, 24, 18, 0.16);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .intro-grid,
  .split-grid,
  .product-hero-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .split-grid .image-panel {
    order: -1;
  }

  .catalog-item,
  .catalog-item.reverse {
    grid-template-columns: 1fr;
  }

  .catalog-item.reverse .catalog-image {
    order: 0;
  }

  .catalog-image {
    min-height: 340px;
  }

  .product-hero-image {
    height: 460px;
  }

  .cta-box,
  .cta-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img,
  .footer-brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .product-card-grid,
  .bundle-grid,
  .details-grid,
  .process-grid,
  .bundle-mini-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 260px;
  }

  .image-panel {
    min-height: 340px;
  }

  .product-hero-image {
    min-height: 320px;
    height: 360px;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Sichtbareres Logo im Header */

.site-header.has-shadow {
  box-shadow: 0 14px 34px rgba(26, 24, 18, 0.12);
}

.site-header .brand {
  gap: 1rem;
}

.site-header .brand img {
  width: 72px;
  height: 72px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.96);
  border: 2px solid rgba(201, 162, 77, 0.55);
  box-shadow: 0 12px 28px rgba(15, 42, 29, 0.18);
}

.site-header .brand strong {
  font-size: 1.3rem;
}

.site-header .brand small {
  font-size: 0.76rem;
}

/* Großes Logo im Hero-Bereich */

.hero-logo {
  width: clamp(130px, 14vw, 205px);
  height: clamp(130px, 14vw, 205px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 250, 240, 0.94);
  border: 2px solid rgba(201, 162, 77, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: auto 18% 12px 18%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green-flag) 0 33.33%,
    var(--paper) 33.33% 66.66%,
    var(--red) 66.66% 100%
  );
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.page-hero-content .hero-logo,
.thank-you-card .hero-logo {
  margin-left: auto;
  margin-right: auto;
}

.product-hero-copy .hero-logo {
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 20px 50px rgba(26, 24, 18, 0.16);
}

@media (max-width: 680px) {
  .site-header .brand img {
    width: 56px;
    height: 56px;
    padding: 5px;
  }

  .site-header .brand strong {
    font-size: 1.05rem;
  }

  .site-header .brand small {
    font-size: 0.66rem;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 1.2rem;
  }
}
/* Products-Seite: kleines Logo oben rechts im Hero */

.products-page-hero {
  position: relative;
}

.products-corner-logo {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: max(20px, calc((100vw - var(--container)) / 2));
  z-index: 3;
  width: clamp(82px, 8vw, 128px);
  height: clamp(82px, 8vw, 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.94);
  border: 2px solid rgba(201, 162, 77, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.products-corner-logo::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green-flag) 0 33.33%,
    var(--paper) 33.33% 66.66%,
    var(--red) 66.66% 100%
  );
}

.products-corner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

@media (max-width: 680px) {
  .products-corner-logo {
    width: 76px;
    height: 76px;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem;
    border-radius: 18px;
  }

  .products-corner-logo::after {
    bottom: 7px;
    height: 2px;
  }
}