@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #152326;
  --mist: #f4f7f2;
  --sea: #2f6f73;
  --pond: #1f4b4f;
  --sand: #e6efe2;
  --sun: #f3c978;
  --clay: #c86c54;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow-x: hidden;
}

.floating-nav {
  position: absolute;
  top: 28px;
  right: 5%;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.floating-nav a {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 5% 80px;
  gap: 40px;
  position: relative;
}

.hero-copy {
  flex: 1 1 360px;
  max-width: 520px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 420px;
  border-radius: 32px;
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  position: relative;
  box-shadow: -30px 30px 0 rgba(47, 111, 115, 0.15);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--sea);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(47, 111, 115, 0.2);
}

.btn-secondary {
  border-color: var(--sea);
  color: var(--sea);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 5%;
  position: relative;
}

.section--offset-left .section-inner {
  margin-left: -4%;
}

.section--offset-right .section-inner {
  margin-right: -4%;
}

.section--split .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.section--split .text-block {
  flex: 1 1 320px;
}

.section--split .media-block {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.section--split .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: "Playfair Display", serif;
  margin: 0 0 18px;
}

.section-lead {
  max-width: 640px;
  margin-bottom: 24px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pond);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
  margin-bottom: 16px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1 1 160px;
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.quote {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  box-shadow: -16px 20px 0 rgba(200, 108, 84, 0.12);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(31, 75, 79, 0.12);
}

.service-price {
  font-weight: 700;
  color: var(--sea);
  margin-top: 10px;
}

.form-shell {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(21, 35, 38, 0.2);
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.inline-link {
  color: var(--sea);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(200, 108, 84, 0.3);
  z-index: 20;
}

.footer {
  background: var(--pond);
  color: var(--white);
  padding: 40px 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.banner-hidden {
  display: none;
}

.page-header {
  padding: 120px 5% 50px;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 12px;
}

.content-flow {
  padding: 30px 5% 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stacked-block {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
}

.policy {
  max-width: 860px;
}

@media (max-width: 860px) {
  .floating-nav {
    position: static;
    margin: 24px auto 0;
    justify-content: center;
  }

  .hero {
    padding-top: 70px;
  }

  .section--offset-left .section-inner,
  .section--offset-right .section-inner {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
