@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --bg: #f5f2ed;
  --ink: #1f1c17;
  --muted: #6c6256;
  --accent: #3a6b4f;
  --accent-dark: #2b523d;
  --warm: #e8dbca;
  --cool: #d9e7e1;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(24, 22, 18, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw;
  gap: 20px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--ink);
}

.ghost-btn,
.solid-btn,
.outline-btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solid-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.outline-btn {
  border: 1px solid var(--ink);
}

.ghost-btn {
  background: transparent;
  border: 1px solid transparent;
}

.solid-btn:hover,
.outline-btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 7vw 80px;
  gap: 28px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-visual img {
  box-shadow: var(--shadow);
}

.hero-floating {
  position: absolute;
  bottom: -24px;
  left: 10%;
  background: var(--card);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.section {
  padding: 70px 7vw;
}

.section.alt {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 32px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 480px;
}

.offset-card.large {
  max-width: 640px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.service-meta span {
  color: var(--accent-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(58, 107, 79, 0.15);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery img {
  border-radius: var(--radius);
}

.form-shell {
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2c7ba;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.testimonial {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 50px 7vw;
  background: #1e1a15;
  color: #f4efe8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #d8cfc5;
}

.footer small {
  color: #c5b8aa;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--ink);
  padding: 8px 12px;
  font-weight: 600;
  background: transparent;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-hero {
  padding: 60px 7vw 30px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
}

.policy {
  padding: 30px 7vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-copy {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery img {
    flex: 1;
  }
}
