:root {
  --ink: #20355f;
  --ink-soft: #4f5e68;
  --line: rgba(32, 53, 95, 0.12);
  --brand-blue: #20355f;
  --brand-green: #4a9b97;
  --brand-aqua: #63b8b5;
  --paper: #f7f3ea;
  --stone: #ece6d8;
  --shadow: 0 20px 60px rgba(32, 53, 95, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(99, 184, 181, 0.16), transparent 28%),
    linear-gradient(180deg, #faf7f0 0%, var(--paper) 100%);
  font-family: Bahnschrift, "Aptos", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 240, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 84px;
}

.footer-logo {
  width: auto;
  height: 78px;
}

.primary-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.primary-nav a,
.language-switcher a,
.filter-chip {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  transition: 180ms ease;
}

.primary-nav a:hover,
.language-switcher a:hover,
.filter-chip:hover {
  background: rgba(74, 155, 151, 0.12);
}

.primary-nav .is-active,
.language-switcher .is-active,
.filter-chip.is-active {
  background: var(--ink);
  color: white;
}

.language-switcher {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero,
.page-header {
  padding: 5rem 0 3.5rem;
}

.hero-grid,
.split-grid,
.product-header-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
}

.page-header {
  background: linear-gradient(180deg, rgba(99, 184, 181, 0.12), transparent);
}

.eyebrow,
.pill,
.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--brand-blue);
}

h1,
h2,
h3,
strong {
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  margin: 0.75rem 0 0.9rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.lead {
  max-width: 62ch;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-actions,
.filter-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  color: white;
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.hero-panel,
.card,
.list-card,
.product-visual {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(32, 53, 95, 0.88), rgba(74, 155, 151, 0.76)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 60%);
}

.hero-chip {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 2.5rem 0;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(236, 230, 216, 0.55), rgba(255, 255, 255, 0.42));
}

.section-heading {
  margin-bottom: 1.25rem;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.list-card,
.product-card,
.category-card {
  padding: 1.35rem;
}

.card p,
.list-card p,
.product-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.product-tagline {
  font-weight: 600;
}

.product-card,
.category-card {
  position: relative;
  overflow: hidden;
}

.product-card::after,
.category-card::after,
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.tone-blue {
  background: linear-gradient(135deg, rgba(32, 53, 95, 0.18), rgba(255, 255, 255, 0.92));
}

.tone-steel {
  background: linear-gradient(135deg, rgba(79, 94, 104, 0.2), rgba(255, 255, 255, 0.92));
}

.tone-sand {
  background: linear-gradient(135deg, rgba(236, 230, 216, 0.9), rgba(255, 255, 255, 0.96));
}

.tone-green {
  background: linear-gradient(135deg, rgba(74, 155, 151, 0.22), rgba(255, 255, 255, 0.92));
}

.tone-slate {
  background: linear-gradient(135deg, rgba(89, 118, 137, 0.18), rgba(255, 255, 255, 0.94));
}

.tone-charcoal {
  background: linear-gradient(135deg, rgba(32, 53, 95, 0.22), rgba(255, 255, 255, 0.92));
}

.split-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 1rem;
}

.product-header-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.product-visual {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.product-visual-mark {
  position: absolute;
  inset: 18% 22%;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  transform: rotate(-8deg);
}

.definition-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.definition-list div {
  display: grid;
  gap: 0.25rem;
}

.definition-list dt {
  font-weight: 700;
}

.definition-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.back-link,
.text-link {
  color: var(--brand-blue);
  font-weight: 700;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(32, 53, 95, 0.98), rgba(52, 95, 115, 0.96));
  color: white;
}

.site-footer a {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contact-hero-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(236, 230, 216, 0.7), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-image-frame {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(99, 184, 181, 0.18), rgba(32, 53, 95, 0.06));
}

.contact-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-copy h2 {
  margin-top: 0.4rem;
  margin-bottom: 0.75rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .header-row,
  .hero-grid,
  .split-grid,
  .product-header-grid,
  .footer-grid,
  .contact-hero-grid,
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .header-row {
    align-items: center;
    flex-direction: column;
  }

  .primary-nav {
    width: 100%;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-header {
    padding: 3.25rem 0 2.5rem;
  }

  .container {
    width: min(100% - 1.2rem, 1120px);
  }

  .brand span {
    display: none;
  }

  .brand-logo {
    height: 68px;
  }

  .footer-logo {
    height: 64px;
  }
}
