* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #5a5956;
  --accent: #9c2f23;
  --accent-soft: #f4e6e2;
  --sand: #f7f3ee;
  --night: #141311;
  --line: #ddd4c9;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 5vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-split {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 5vw 4.5rem;
  background-color: #2b2520;
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(20, 19, 17, 0.85), rgba(20, 19, 17, 0.2));
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: #efeae5;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  color: #efeae5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.section {
  padding: 0 5vw;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-header p {
  max-width: 380px;
  color: var(--muted);
}

.section-copy {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
}

.offset-split {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.offset-split.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.offset-media {
  flex: 1;
  background: #e9e2db;
  padding: 1rem;
}

.offset-media img {
  width: 100%;
  height: 360px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.card {
  flex: 1 1 220px;
  background: var(--sand);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1.2rem;
  min-width: 220px;
}

.image-frame {
  background: #ddd4c9;
  border-radius: 0.9rem;
  overflow: hidden;
}

.card img {
  height: 180px;
}

.story-strip {
  background: var(--night);
  color: #fff;
  padding: 3.5rem 5vw;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.story-strip p {
  max-width: 460px;
  color: #d9d2cb;
}

.story-strip img {
  width: 280px;
  height: 220px;
  border-radius: 1rem;
}

.story-strip .image-frame {
  background: #2b2520;
  border-radius: 1rem;
  overflow: hidden;
}

.quote-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.quote {
  flex: 1 1 200px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.quote strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing {
  background: var(--accent-soft);
  padding: 3.5rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.price-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 220px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.thanks-panel {
  margin-top: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-aside {
  flex: 1 1 260px;
  background: #f7f3ee;
  padding: 2rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sticky-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 5;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

footer {
  padding: 3rem 5vw;
  background: #141311;
  color: #efeae5;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-note {
  max-width: 620px;
  color: #c9c1b9;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 320px;
  z-index: 6;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.6rem 1.1rem;
}

.page-hero {
  background: var(--sand);
  padding: 3.5rem 5vw;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero img {
  width: 320px;
  height: 240px;
  border-radius: 1rem;
}

.page-hero .image-frame {
  background: #e4ddd6;
  border-radius: 1rem;
  overflow: hidden;
}

.legal-page {
  padding: 3rem 5vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 880px;
}

.legal-page h2 {
  margin-top: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.background-panel {
  background-color: #3a332e;
  background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3.5rem 5vw;
  display: flex;
  justify-content: flex-end;
}

.background-panel .panel-content {
  background: rgba(20, 19, 17, 0.78);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 420px;
}

@media (max-width: 900px) {
  .offset-split,
  .story-strip,
  .form-wrap,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .story-strip img {
    width: 100%;
    height: 220px;
  }
}
