* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2327;
  --muted: #5a666f;
  --sand: #f7f3ee;
  --sage: #d9e4db;
  --sea: #e1eef1;
  --clay: #f0e3da;
  --leaf: #2f6b4f;
  --accent: #1f4e79;
  --surface: #ffffff;
  --shadow: 0 20px 40px rgba(29, 35, 39, 0.12);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  flex: 1;
  padding: 32px 6vw 64px;
}

.site-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--surface);
  padding: 32px 24px;
  border-right: 1px solid #e1e5e9;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand h1 {
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  font-weight: 600;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--sage);
  padding: 16px;
  border-radius: 16px;
}

.sidebar-cta button {
  border: none;
  background: var(--leaf);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.hero {
  display: flex;
  gap: 32px;
  background: var(--surface);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: var(--clay);
  color: var(--ink);
}

.hero-image,
.feature-image,
.service-card img,
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.image-frame {
  flex: 1 1 280px;
  min-height: 260px;
  background: #d2d8db;
  border-radius: 18px;
  overflow: hidden;
}

.frame-sand {
  background: #dfe6e8;
}

.frame-clay {
  background: #e7dfd3;
}

.frame-blush {
  background: #e6e0e2;
}

.section {
  margin-top: 48px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.story-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 240px;
  background: var(--sea);
  padding: 20px;
  border-radius: 18px;
}

.split-panel {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split-panel.reverse {
  flex-direction: row-reverse;
}

.feature-image-frame {
  flex: 1 1 260px;
  min-height: 240px;
  background: #c7d3d6;
  border-radius: 18px;
  overflow: hidden;
}

.feature-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card h4 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.testimonial {
  background: var(--clay);
  padding: 18px;
  border-radius: 18px;
}

.form-wrap {
  background: var(--surface);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd4da;
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-cta {
  font-weight: 600;
  color: var(--leaf);
}

.info-band {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--sage);
  padding: 20px;
  border-radius: 18px;
}

.info-tile {
  flex: 1 1 220px;
}

footer {
  margin-top: 64px;
  padding: 24px;
  background: var(--surface);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--leaf);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #dfe3e8;
  color: var(--ink);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.small-note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
