* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b19;
  --sand: #f6f1eb;
  --sun: #f3b66d;
  --leaf: #2e5d4a;
  --sky: #dfe8f1;
  --stone: #8a7c6d;
  --accent: #c96a4a;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  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;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 8px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sun);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-top: 6px;
}

.hero {
  position: relative;
  padding: 64px 0 80px;
}

.hero-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.hero-text {
  flex: 1;
  background: #fff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(28, 27, 25, 0.12);
  transform: translateY(20px);
}

.hero-image {
  flex: 1;
  height: 420px;
  background: var(--sky);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--leaf);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(28, 27, 25, 0.08);
}

.panel.offset {
  transform: translateY(-20px);
}

.image-card {
  flex: 1;
  background: var(--sky);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 14px 28px rgba(28, 27, 25, 0.08);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--ink);
  font-size: 0.85rem;
}

.cta-inline {
  color: var(--leaf);
  text-decoration: underline;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(28, 27, 25, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5cfc7;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #fff;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  margin: 0 20px 20px 0;
  z-index: 5;
}

.sticky-cta .button {
  box-shadow: 0 10px 24px rgba(28, 27, 25, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(28, 27, 25, 0.18);
  display: none;
  width: min(640px, 92vw);
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 48px 0 28px;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.note {
  background: var(--sun);
  padding: 14px 18px;
  border-radius: 16px;
  display: inline-flex;
  margin-top: 16px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(28, 27, 25, 0.08);
}

.image-slab {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-slab .slab {
  flex: 1 1 280px;
  background: var(--sky);
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-care {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-path {
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.divider {
  height: 2px;
  background: rgba(28, 27, 25, 0.08);
  margin: 24px 0;
}

.hidden {
  display: none;
}

.mt-20 {
  margin-top: 20px;
}
