:root {
  --bg: #f6f2ee;
  --ink: #1e1b18;
  --muted: #5f5852;
  --accent: #2f5d62;
  --accent-light: #d7e3e1;
  --warm: #ede3d8;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

.main-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid #e3dcd4;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6vw 64px;
  background: var(--warm);
  gap: 32px;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  padding: 12px;
}

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

.split-section {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6vw;
  gap: 32px;
  align-items: center;
}

.split-tight {
  padding: 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 320px;
  padding: 12px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid #e5dfd7;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.sticky-callout {
  background: var(--accent-light);
  padding: 20px;
  border-radius: 6px;
  position: sticky;
  top: 16px;
}

.form-section {
  background: #fff;
  padding: 48px 6vw 64px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-full {
  flex: 1 1 100%;
}

input, select, textarea {
  padding: 10px 12px;
  border: 1px solid #cfc7be;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-actions {
  margin-top: 18px;
}

.footer {
  padding: 32px 6vw 40px;
  background: #1f1d1a;
  color: #f5f1ed;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5f1ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid #e1d9d1;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  background: #f2ebe3;
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.section-soft {
  background: #f9f6f2;
}

.section-mist {
  background: #f2ebe3;
}

.frame-warm {
  background-color: #d9d2c7;
}

.frame-mint {
  background-color: #dfe7e5;
}

.frame-sand {
  background-color: #e7e1da;
}

.frame-blue {
  background-color: #d9dde1;
}

.frame-stone {
  background-color: #e2ddd6;
}

.simple-page {
  padding: 40px 6vw 64px;
  background: #fff;
}

.simple-page h1 {
  margin-top: 0;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.list-row .card {
  flex: 1 1 260px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    gap: 12px;
  }
}
