* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101215;
  --muted: #4a4f57;
  --soft: #f4f1ec;
  --accent: #1f4d5a;
  --accent-2: #8b3d2b;
  --highlight: #f0d9b6;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(16, 18, 21, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #fff;
  border-bottom: 1px solid #e6e2dc;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-label {
  padding: 6px 12px;
  background: var(--highlight);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #5b3c1c;
}

.hero {
  padding: 72px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  max-width: 820px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 680px;
  color: var(--muted);
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  background: #dfe5e6;
  box-shadow: var(--shadow);
}

.story {
  padding: 0 6vw 48px;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-block {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-block h2,
.story-block h3 {
  font-size: 1.5rem;
}

.story-inline {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.story-inline img {
  flex: 1 1 260px;
  border-radius: 16px;
  background: #dfe2e6;
}

.story-inline .text {
  flex: 1 1 320px;
}

.pull-quote {
  padding: 22px 26px;
  border-left: 4px solid var(--accent-2);
  background: #fff3ed;
  font-style: italic;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: 1px solid transparent;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost {
  background: #fff;
  color: var(--accent-2);
  border-color: #e2c9c3;
}

.service-reveal {
  padding: 48px 6vw;
  background: var(--soft);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 14px;
  background: #e4e0d9;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.form-section {
  padding: 56px 6vw 72px;
}

.form-box {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d3ce;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.footer {
  padding: 40px 6vw 56px;
  background: #0f1b1f;
  color: #f6f2ed;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.footer p {
  max-width: 760px;
  color: #d5d0c8;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page {
  padding: 64px 6vw;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 56px 6vw;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.wide-image {
  border-radius: 18px;
  overflow: hidden;
  background: #dcdcdc;
}

.tagline {
  font-size: 0.95rem;
  color: var(--muted);
}

.advertorial-note {
  font-size: 0.9rem;
  color: #725c3c;
}

.two-column {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.two-column .col {
  flex: 1 1 280px;
}
