* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f1ed;
  --ink: #231f1a;
  --muted: #6b6258;
  --accent: #4f6d61;
  --accent-2: #b4875f;
  --panel: #ffffff;
  --panel-2: #efe6db;
  --dark: #1f2321;
  --light: #fbfaf8;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 24px 7vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom: 2px solid var(--accent);
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 7vw 60px;
  background: var(--light);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  background-color: #c7c1b7;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  border-radius: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--light);
  font-size: 0.95rem;
  letter-spacing: 0.02rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.section {
  padding: 60px 7vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: var(--panel-2);
}

.section.dark {
  background: var(--dark);
  color: var(--light);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(31, 35, 33, 0.08);
}

.panel.dark {
  background: #2c332f;
  color: var(--light);
}

.media-box {
  min-height: 260px;
  background-color: #d8d1c7;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 14px 26px rgba(35, 31, 26, 0.08);
}

.card img {
  width: 100%;
  height: 190px;
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 12px;
  background: var(--light);
  border: 1px solid rgba(35, 31, 26, 0.08);
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(35, 31, 26, 0.18);
  font-size: 1rem;
  width: 100%;
}

.form-shell button {
  border: none;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 4;
  background: var(--ink);
  color: var(--light);
  padding: 14px 7vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta a {
  background: var(--accent-2);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
}

.footer {
  margin-top: auto;
  padding: 40px 7vw;
  background: var(--dark);
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px auto;
  max-width: 320px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(35, 31, 26, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-fabric {
  background-image: url("https://images.unsplash.com/photo-1516822003754-cca485356ecb?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 880px) {
  .hero-split,
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-image {
    min-height: 420px;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 calc(50% - 16px);
  }
}
