* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5b667a;
  --paper: #f7f4ef;
  --sand: #efe6d9;
  --sage: #d7e3da;
  --ocean: #b7c7d9;
  --accent: #c46a4a;
  --shadow: rgba(27, 31, 42, 0.12);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  background: #fff;
  border-bottom: 1px solid #e1d9cf;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 1px solid #d6cabc;
  padding-left: 16px;
}

.hero {
  background: var(--sand);
  position: relative;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e6dfd4;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.84);
  padding: 48px;
  width: min(560px, 90%);
  margin: 40px;
  box-shadow: 0 12px 30px var(--shadow);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.button.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #d6cabc;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.tint {
  background: var(--sage);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #e9ded1;
  padding: 12px;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 220px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--ocean);
  border-radius: 999px;
  font-size: 0.8rem;
}

.pull-quote {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  padding: 32px;
  border-left: 6px solid var(--accent);
  box-shadow: 0 8px 24px var(--shadow);
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e2d8cc;
}

.price-card h3 {
  font-size: 1.1rem;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d8cec2;
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 36px 0;
  background: #1b1f2a;
  color: #f5f1ea;
}

.footer a {
  color: #f5f1ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1f2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1b1f2a;
  color: #f8f5f0;
  padding: 16px 0;
  z-index: 6;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d2c5;
}

.bg-story .container {
  background: rgba(255, 255, 255, 0.88);
  padding: 40px;
  border-radius: 24px;
}

.taglist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d6cabc;
  font-size: 0.85rem;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.image-frame {
  background: #e2d8cc;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.no-click {
  cursor: default;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.contact-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px var(--shadow);
}

.wide-callout {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e2d8cc;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-gap {
  margin-top: 28px;
}

.footer-note {
  margin-top: 16px;
}

.image-cover {
  width: 100%;
  height: auto;
}

.about-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d8e0ea;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.services-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d9d1;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.contact-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1472417583565-62e7bdeda490?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d1cc;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.thanks-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1487017159836-4e23ece2e4cf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d3d6d9;
  min-height: 320px;
  display: flex;
  align-items: center;
}
