* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #575555;
  --accent: #b6454e;
  --accent-dark: #8c2e36;
  --cream: #f8f4f1;
  --sand: #efe6df;
  --olive: #6b6b55;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 6vw 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  background: #1f1c1a;
  color: #f6f1ed;
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: 18px;
}

.hero {
  padding-top: 32px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--olive);
}

.hero h2 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -10px;
  bottom: -16px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.story-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-columns .narrow {
  max-width: 420px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
}

.price-card {
  border: 1px solid #e6d8d0;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery .gallery-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c8bf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}

.sticky-cta a {
  pointer-events: auto;
  background: #1f1c1a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #141110;
  color: #f5efea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6vw;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 25;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.stacked-blocks {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-panel {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #eaded6;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-row {
    flex-direction: row;
    gap: 40px;
  }

  .story-columns {
    flex-direction: row;
    gap: 40px;
  }

  .cards {
    flex-direction: row;
  }

  .gallery .gallery-row {
    flex-direction: row;
  }

  .section {
    padding: 86px 8vw;
  }

  .hero h2 {
    font-size: 3.2rem;
  }

  .nav-links {
    gap: 26px;
  }
}
