*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f2ec;
  --bg-dark: #141312;
  --bg-ink: #1d1b18;
  --text: #181613;
  --muted: #6b6258;
  --accent: #c7512e;
  --accent-soft: #f2d1c3;
  --accent-dark: #922f16;
  --card: #ffffff;
  --line: #d6cfc5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 20px 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--text);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 40px 20px 60px;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0.15), rgba(20, 19, 18, 0.75)),
    url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
  color: #f1e9e5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.section {
  padding: 60px 20px;
}

.section.dark {
  background: var(--bg-dark);
  color: #f6efe9;
}

.section.ink {
  background: var(--bg-ink);
  color: #f6efe9;
}

.section.soft {
  background: var(--accent-soft);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section p {
  margin: 0 0 18px;
  color: inherit;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(20, 16, 12, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 18px;
  height: 200px;
  object-fit: cover;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.ticker span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.banner-image {
  border-radius: 24px;
  height: 280px;
  background: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

footer {
  padding: 40px 20px 60px;
  background: #0f0e0d;
  color: #d7cfc6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}

.sticky-cta p {
  margin: 0 0 12px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-stack img {
  border-radius: 20px;
  height: 220px;
  object-fit: cover;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: 0 16px 30px rgba(20, 16, 12, 0.2);
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero {
  padding: 40px 20px 30px;
  background: var(--accent-soft);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-section {
  padding: 40px 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-image {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

@media (min-width: 768px) {
  header {
    padding: 36px 60px 20px;
  }

  .hero {
    padding: 70px 60px;
  }

  .section {
    padding: 80px 60px;
  }

  .split,
  .two-column {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .photo-stack {
    flex-direction: row;
  }

  .photo-stack img {
    flex: 1;
  }

  .cookie-banner {
    right: auto;
    max-width: 480px;
  }
}
