* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f2;
  --bg-dark: #161616;
  --text: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #c0384f;
  --accent-soft: #f2c9d2;
  --sand: #efe6dd;
  --leaf: #3b5249;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-cta {
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 0 24px;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 42px 0;
}

.section-tone {
  background: var(--sand);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-dark a {
  color: var(--accent-soft);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.story-line {
  font-size: 1.05rem;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.stat-row,
.badge-row,
.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.card-row .card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
}

.lookbook {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lookbook img {
  border-radius: 18px;
}

.quote {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 14px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.6;
}

.form-fields.active {
  opacity: 1;
}

.form-fields input,
.form-fields select,
textarea {
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-fields label {
  font-weight: 600;
  margin-bottom: 6px;
}

.footer {
  padding: 48px 0 60px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 14px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.simple-header {
  padding: 32px 0 10px;
}

.simple-section {
  padding: 24px 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 820px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-cta {
    align-self: center;
  }

  .hero-card {
    flex-direction: row;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stat-row,
  .badge-row,
  .card-row,
  .lookbook,
  .price-table,
  .footer-columns,
  .contact-grid {
    flex-direction: row;
  }

  .stat,
  .badge,
  .card,
  .price-card,
  .quote {
    flex: 1;
  }
}
