* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1b19;
  --muted: #6b625c;
  --sand: #f4f0ec;
  --stone: #ede6df;
  --clay: #c9896b;
  --leaf: #6b7c6c;
  --mist: #f9f7f4;
  --shadow: 0 18px 45px rgba(26, 18, 14, 0.14);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: relative;
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clay), var(--leaf));
}

.nav-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-row a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-row a:hover {
  border-color: var(--clay);
}

.hero {
  padding: 10px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: rgba(201, 137, 107, 0.18);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--stone);
}

.section.intimate {
  background: #fff;
  margin: 0 6vw;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 1.7rem;
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-left: 8vw;
}

.floating-image {
  border-radius: 24px;
  overflow: hidden;
  margin-right: 10vw;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.inline-cta {
  color: var(--clay);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--clay);
  padding-left: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.services-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e3d8cf;
  border-radius: 14px;
  background: #faf7f3;
}

label {
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7cbc2;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--clay);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.site-footer {
  padding: 30px 6vw 40px;
  margin-top: auto;
  background: #1f1a17;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--sand);
  padding: 18px;
  border-radius: 18px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.legal-content {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 820px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-row {
    justify-content: flex-end;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .services-preview {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-chip {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-box {
    flex: 1;
  }
}
