@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;700&family=Inter:wght@300;400;600&display=swap");

:root {
  --ink: #18211f;
  --muted: #4c5a57;
  --leaf: #2b6f64;
  --cream: #f6f2ea;
  --mist: #e1ebe7;
  --sand: #f0e7da;
  --accent: #f1b37b;
  --shadow: 0 18px 45px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 120px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 10px;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 8vw;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-card {
  background: var(--cream);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  border-radius: 28px;
  width: min(100%, 520px);
  align-self: flex-end;
}

.floating-tag {
  position: absolute;
  bottom: -18px;
  left: 0;
  background: var(--leaf);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.offset-panel::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: var(--accent);
  opacity: 0.6;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card small {
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  color: var(--leaf);
  border: 2px solid var(--leaf);
}

.inline-link {
  color: var(--leaf);
  font-weight: 600;
}

.accent-band {
  background: var(--sand);
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-left: 4px solid var(--leaf);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img:nth-child(2) {
  margin-left: 18px;
}

.image-stack img:nth-child(3) {
  margin-right: 18px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-grid li {
  list-style: none;
  padding: 14px 18px;
  background: var(--mist);
  border-radius: 14px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #d2ddd7;
}

.service-row span {
  font-weight: 600;
  color: var(--leaf);
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c6d4cf;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 8vw 80px;
  background: #101615;
  color: #e7f0ed;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e7f0ed;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--leaf);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.info-block {
  background: var(--cream);
  padding: 24px;
  border-radius: 24px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

@media (min-width: 760px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
    padding-right: 20px;
  }

  .hero-image {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .image-stack {
    flex-direction: row;
  }

  .list-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .list-grid li {
    flex: 1 1 220px;
  }

  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact-grid {
    flex-direction: row;
  }
}
