/* Base */
:root {
  --ink: #1f1c19;
  --muted: #6b635c;
  --accent: #2f5f5a;
  --accent-soft: #e3ecea;
  --paper: #f7f4ef;
  --sand: #e8e0d7;
  --shadow: rgba(25, 20, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  padding: 22px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  margin-top: 8px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d7d2cb;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 11, 10, 0.55), rgba(12, 11, 10, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 70px 80px;
  color: #fefcf9;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30, 60, 56, 0.2);
}

.button.alt {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.text-link {
  font-weight: 600;
  color: var(--accent);
}

.text-link:hover {
  text-decoration: underline;
}

/* Asymmetric sections */
.section {
  padding: 60px 0;
}

.section.asym {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 300px;
  align-self: stretch;
}

.image-frame {
  background: #d7d2cb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 30px var(--shadow);
}

.media img {
  width: 100%;
  height: 100%;
}

.offset-block {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 30px var(--shadow);
  margin-left: 12%;
}

.offset-block.alt {
  margin-left: 0;
  margin-right: 12%;
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

/* Testimonials */
.quote {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: 12px;
  margin: 0;
}

/* Form */
.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 18px 32px var(--shadow);
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 220px;
  border: 1px solid #d6cdc4;
  border-radius: 14px;
  padding: 12px 14px;
  background: #faf7f3;
}

.service-option label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc5bb;
  font-size: 15px;
  font-family: inherit;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background: #efe8df;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 20;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 24px var(--shadow);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 8px 16px;
  font-size: 14px;
}

/* Background images */
.bg-hero {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
}

.bg-focus {
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80") center/cover no-repeat;
}

/* Page-specific */
.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
}

.simple-hero .image-frame {
  flex: 1 1 320px;
  height: 280px;
}

.simple-hero .text {
  flex: 1 1 320px;
}

@media (max-width: 760px) {
  .hero-content {
    padding: 60px 28px 68px;
  }

  .offset-block,
  .offset-block.alt {
    margin: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
