* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --ink: #1f1f1c;
  --muted: #6d675f;
  --accent: #b26a42;
  --accent-dark: #7f482d;
  --surface: #ffffff;
  --sand: #efe4d6;
  --sage: #c7d0c2;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e2ddd6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-list a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-list a:hover {
  border-color: var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.sidebar-cta a {
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-tight {
  padding: 32px 7vw;
}

.hero {
  background: linear-gradient(120deg, #f7efe5 0%, #e9dfd2 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.hero-image {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--surface);
  border: 1px solid #e1d8cd;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.06);
}

.layered {
  position: relative;
  background: var(--sand);
}

.layered::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 10%;
  width: 180px;
  height: 180px;
  background: var(--sage);
  border-radius: 40px;
  opacity: 0.7;
}

.layered-content {
  position: relative;
  z-index: 1;
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #ebe3d9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row a {
  padding: 12px 20px;
  border-radius: 999px;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d2c8;
  font-size: 15px;
  background: #fff;
}

button {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

button.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e0d6;
}

.price-item strong {
  font-size: 16px;
}

.price-item span {
  color: var(--muted);
}

.footer {
  background: #1f1f1c;
  color: #f5f0e9;
  padding: 32px 7vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner p {
  flex: 1 1 220px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  font-size: 13px;
  padding: 8px 14px;
}

.muted {
  color: var(--muted);
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 180px;
  border-radius: 16px;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid #e2ddd6;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
  }
}
