@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Newsreader:opsz,wght@6..72,400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1d211c;
  --muted: #5b6457;
  --surface: #f7f4ef;
  --surface-strong: #efe7dc;
  --accent: #cf5f3f;
  --accent-dark: #a1462d;
  --leaf: #2f6b4f;
  --sand: #f1e9dd;
  --shadow: rgba(19, 23, 18, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: 18px;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 36px 28px;
  background: #f3eee6;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
  font-family: "Newsreader", serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.brand span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.nav a {
  padding: 8px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 14px 30px var(--shadow);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section h1,
.section h2,
.section h3 {
  font-family: "Newsreader", serif;
  margin: 0;
}

.hero {
  min-height: 70vh;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 35, 27, 0.55);
}

.hero-content {
  position: relative;
  max-width: 560px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button.secondary {
  background: var(--leaf);
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(207, 95, 63, 0.4);
}

.section--meadow {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1400&q=80");
}

.section--studio {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?auto=format&fit=crop&w=1400&q=80");
  color: #fff;
  position: relative;
}

.section--studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 29, 23, 0.6);
}

.section--studio > * {
  position: relative;
}

.section--studio,
.section--meadow {
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.timeline div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
}

.form-panel {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.section-muted {
  background: var(--surface-strong);
}

.footer {
  padding: 28px 8vw 40px;
  background: #f0e8dd;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 500;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  font-size: 2.4rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207, 95, 63, 0.1);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 920px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 48px 7vw;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
