* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1e21;
  --muted: #5f6770;
  --paper: #f7f4ef;
  --mist: #eef1f4;
  --accent: #2a6f6f;
  --accent-dark: #184747;
  --sand: #e9dfd2;
  --plum: #3d3a55;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e1e4e8;
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.ad-disclosure {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 220px;
}

.hero {
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 80px 6vw;
  max-width: 720px;
}

.hero-inner p {
  margin: 18px 0 28px;
  color: #f0f4f6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  background: #1f2b2b;
  color: #f4f6f8;
}

.section.deep a {
  color: #f4f6f8;
  border-bottom: 1px solid rgba(244, 246, 248, 0.4);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
}

.split .aside {
  flex: 1 1 260px;
}

.offset-panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(25, 30, 35, 0.08);
  transform: translateY(14px);
}

.img-frame {
  border-radius: 20px;
  overflow: hidden;
  background: var(--sand);
  min-height: 240px;
}

.frame-slate {
  background: #d7dce2;
}

.frame-clay {
  background: #dcd4cc;
}

.frame-wheat {
  background: #d8d0c4;
}

.frame-fog {
  background: #d8d2cc;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(28, 30, 33, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.story-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rail-item {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  border-radius: 12px;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial blockquote {
  flex: 1 1 320px;
  font-style: italic;
  color: var(--plum);
}

.testimonial .img-frame {
  width: 180px;
  height: 180px;
  flex: 0 0 auto;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(25, 30, 35, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccd1d6;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-message {
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--mist);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-quiet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 34, 36, 0.65);
}

.bg-quiet .section-inner {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 40px 6vw 60px;
  background: #101415;
  color: #e4e7eb;
}

.footer a {
  color: #e4e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 24px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c4c9cf;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  padding: 60px 6vw 20px;
}

.page-hero h1 {
  max-width: 720px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(25, 30, 35, 0.1);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.legal h2 {
  font-size: 1.2rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-disclosure {
    max-width: none;
  }

  .hero-inner {
    padding: 70px 6vw;
  }
}
