* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1a1a;
  --soft-ink: #4c3e3b;
  --accent: #b86d76;
  --accent-deep: #8a4551;
  --cream: #fff7f3;
  --mist: #f3ece7;
  --leaf: #dfe6db;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Arial", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 20px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 14px;
  color: var(--soft-ink);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: 56px 6vw;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  background: var(--mist);
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 40px;
  margin: 0;
}

.hero-copy p {
  color: var(--soft-ink);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  font-weight: 600;
  background: #fff;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.floating-link {
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: underline;
}

.story-block {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.story-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.story-card h2 {
  margin-top: 0;
}

.service-strip {
  background: var(--leaf);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
}

.service-card img {
  width: 78px;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  margin: 0 0 6px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-deep);
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.process {
  display: flex;
  flex-direction: row;
  gap: 32px;
  background: #fff;
}

.process-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--mist);
}

.gallery-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.gallery-row img {
  flex: 1;
  border-radius: 18px;
}

.pricing-reveal {
  background: #fff;
}

.pricing-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-tile {
  flex: 1 1 220px;
  border-radius: 18px;
  padding: 20px;
  background: var(--cream);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--mist);
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.faq {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  display: flex;
  flex-direction: row;
  gap: 32px;
  background: var(--leaf);
}

.form-panel {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5c6c2;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: underline;
}

.footer {
  padding: 28px 6vw;
  background: #f7f2ef;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent-deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.simple-page {
  padding: 40px 6vw 60px;
}

.simple-page h1 {
  margin-top: 0;
}

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--cream);
  padding: 20px;
  border-radius: 16px;
}

.service-highlight {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .hero,
  .story-block,
  .process,
  .form-section,
  .faq,
  .gallery-row {
    flex-direction: column;
  }
}
