@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --ink: #1e1b1f;
  --muted: #5b5b63;
  --paper: #f7f4f0;
  --sage: #6f8776;
  --sand: #efe8de;
  --stone: #d6cdc3;
  --accent: #2e6e73;
  --accent-dark: #1f4a4e;
  --line: #e1d8cd;
}

* {
  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;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
}

.hero-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 45%;
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.mag-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 40px 0;
}

.col-60 {
  flex: 0 0 60%;
}

.col-40 {
  flex: 0 0 40%;
}

.col-33 {
  flex: 0 0 33.3333%;
}

.col-50 {
  flex: 0 0 50%;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.panel img {
  border-radius: 12px;
}

.panel p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 240px;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: "Inter", sans-serif;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.wide-bg {
  background-color: var(--accent-dark);
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 18px;
  padding: 28px;
  color: #fff;
}

.wide-bg .panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.info-block {
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.table-row:last-child {
  border-bottom: none;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .mag-row {
    flex-direction: column;
  }

  .col-60,
  .col-40,
  .col-33,
  .col-50 {
    flex: 1 1 auto;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
