* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --ink: #1c1a17;
  --muted: #6d6257;
  --accent: #a24a2c;
  --accent-soft: #f0d7cd;
  --surface: #ffffff;
  --line: #e5ddd6;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 240px;
  padding: 28px 22px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.sidebar .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 60px 40px;
  background: linear-gradient(135deg, rgba(162, 74, 44, 0.1), rgba(255, 255, 255, 0));
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-copy h1 {
  font-size: 2.7rem;
  line-height: 1.15;
}

.hero-copy p {
  max-width: 520px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(162, 74, 44, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 1 1 280px;
  position: relative;
}

.hero-image img {
  border-radius: 22px;
}

.hero-image .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section--dense {
  padding: 38px 60px;
  background: var(--surface);
}

.section--accent {
  background: var(--accent-soft);
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.6);
}

.bg-studio > * {
  position: relative;
  z-index: 1;
}

.bg-city {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-city::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.55);
}

.bg-city > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split .split-item {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  font-style: italic;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 32px 60px 48px;
  background: #1f1b17;
  color: #fdfaf6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7cbb9;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  border: 1px solid var(--line);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--accent);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-title {
  padding: 40px 60px 12px;
  font-size: 2rem;
  font-weight: 600;
}

.simple-section {
  padding: 24px 60px 46px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  header.hero,
  .section,
  .section--dense,
  .section--accent,
  .footer,
  .page-title,
  .simple-section {
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
