@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1c1a18;
  --muted: #5b564f;
  --accent: #b36b2c;
  --accent-dark: #7a4318;
  --sage: #e6efe6;
  --sun: #f5efe6;
  --stone: #f3f1ee;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 8vw 10px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 18, 17, 0.45);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 90px 8vw 80px;
  max-width: 720px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.secondary-btn {
  border: 1px solid #fff;
  color: #fff;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 8vw;
}

.section.alt {
  background: var(--stone);
}

.section.sage {
  background: var(--sage);
}

.section.sun {
  background: var(--sun);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-panel {
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-left: 0;
}

.offset-panel.right {
  margin-right: 0;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  font-size: 1.8rem;
  font-weight: 600;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d1ca;
  font-family: inherit;
}

.form-status {
  min-height: 20px;
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 50px 8vw;
  background: #151312;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #c9c3bc;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  background: #fff;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 20;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e9e4dd;
  color: var(--ink);
}

.hidden {
  display: none;
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.slim-section {
  padding: 50px 8vw;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-inner {
    padding: 140px 12vw 110px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-panel {
    margin-left: -80px;
  }

  .offset-panel.right {
    margin-right: -80px;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
  }

  .gallery {
    flex-direction: row;
  }

  .form-wrap {
    max-width: 520px;
  }
}
