@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --ink: #1f1d1a;
  --muted: #5f5a54;
  --sand: #f4efe8;
  --stone: #e7dfd4;
  --clay: #c9b8a6;
  --oak: #a67c52;
  --accent: #8b5e3c;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(31, 29, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  padding: 28px 6vw 18px;
  background: var(--paper);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 28px;
}

.brand span {
  color: var(--muted);
  font-size: 14px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-disclosure {
  padding: 6px 12px;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
}

.cta-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-weight: 600;
  cursor: pointer;
}

.ghost-btn {
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: var(--clay);
  background-size: cover;
  background-position: center;
  color: var(--paper);
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 26, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 6vw 70px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: 44px;
  margin: 0;
}

.hero-content p {
  margin: 0;
  font-size: 18px;
}

.section {
  padding: 70px 6vw;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--stone);
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: 32px;
  margin: 0;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background-color: var(--clay);
  padding: 14px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1 1 180px;
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--stone);
}

.metric strong {
  display: block;
  font-size: 22px;
  font-family: "Fraunces", serif;
}

.quote {
  font-style: italic;
  margin: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.price-board {
  background: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80") center/cover no-repeat;
  background-color: var(--clay);
  border-radius: 28px;
  padding: 40px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.price-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 26, 0.55);
}

.price-board-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-item {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  font-weight: 600;
}

.form-panel {
  background: var(--paper);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 15px;
  font-family: "Inter", sans-serif;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  background: var(--sand);
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer a {
  color: var(--paper);
}

.disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: var(--paper);
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 70px 6vw 40px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.legal {
  max-width: 880px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 22px;
  border-radius: 20px;
  background: var(--sand);
}

.no-phone {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
