/* Base */
:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5a5a5a;
  --accent: #e35d4a;
  --accent-dark: #b54738;
  --sand: #f4f1ed;
  --steel: #1c2a39;
  --pale: #f9f7f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--pale);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 20px 8px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 56px 20px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 1.9rem;
  line-height: 1.2;
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 48px 20px 68px;
  background: var(--sand);
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0;
}

.hero-tag {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.hero-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -12px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
}

.story {
  background: #ffffff;
}

.story-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-panel {
  background: var(--steel);
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.story-panel p {
  color: #f0f0f0;
}

.offset {
  margin-left: 0;
}

.signal {
  background: var(--pale);
}

.signal-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signal-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e7e1db;
}

.signal-card strong {
  display: block;
  font-size: 1.4rem;
}

.layered {
  background: var(--sand);
  position: relative;
}

.layer-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layer {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border-left: 6px solid var(--accent);
}

.selection {
  background: #ffffff;
}

.selection-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #eadfda;
  background: var(--pale);
}

.service-card img {
  border-radius: 14px;
}

.service-card button {
  align-self: flex-start;
}

.trust {
  background: var(--steel);
  color: #ffffff;
}

.trust p {
  color: #e6e6e6;
}

.logo-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.pricing {
  background: #ffffff;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #ebdfd8;
}

.price-card span {
  font-size: 1.4rem;
  font-weight: 700;
}

.delivery {
  background: var(--pale);
}

.delivery-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.delivery-block {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-right: 6px solid var(--accent);
}

.form-section {
  background: #ffffff;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d2cc;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-band {
  background: var(--steel);
  color: #ffffff;
  text-align: center;
}

.cta-band p {
  color: #ececec;
}

.page-hero {
  background: var(--sand);
  padding: 52px 20px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #ece1da;
}

.footer {
  padding: 32px 20px 80px;
  background: #0f141c;
  color: #bfc5cc;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  width: 100%;
}

.cookie-actions .btn-outline {
  background: #ffffff;
}

@media (min-width: 900px) {
  .nav-row {
    flex-wrap: nowrap;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .story-wrap {
    flex-direction: row;
    align-items: center;
  }

  .offset {
    margin-left: 40px;
  }

  .signal-row {
    flex-direction: row;
  }

  .selection-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .logo-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .delivery-wrap {
    flex-direction: row;
  }

  .form-panel {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-panel .field {
    flex: 1 1 240px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-actions button {
    width: auto;
  }
}
