@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1f1b17;
  --soft-ink: #4f463f;
  --sand: #f7f1ea;
  --sun: #f5d066;
  --rose: #d79a8c;
  --moss: #5b6b5c;
  --shadow: rgba(18, 16, 14, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section.compact {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: #11100f;
  color: #fef9f3;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(247, 241, 234, 0.85);
  font-size: 14px;
  color: var(--soft-ink);
}

.headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 16px 0;
}

.subhead {
  font-size: 18px;
  color: var(--soft-ink);
  max-width: 560px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
}

.hero-text {
  flex: 1 1 360px;
  padding: 24px 0;
}

.hero-card {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 26px 60px var(--shadow);
  transform: translateY(24px);
}

.hero-card img {
  border-radius: 18px;
  height: 240px;
  object-fit: cover;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.btn.light {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.floating-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px var(--shadow);
  position: relative;
  top: -40px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-grid .tile {
  flex: 1 1 240px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 40px var(--shadow);
}

.offset-grid .tile:nth-child(2n) {
  transform: translateY(24px);
}

.offset-grid .tile img {
  border-radius: 14px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 14px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.panel.photo {
  position: relative;
}

.panel.photo img {
  border-radius: 26px;
  height: 320px;
  object-fit: cover;
}

.panel.photo .overlay {
  position: absolute;
  bottom: -22px;
  right: 12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px var(--shadow);
  max-width: 220px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 260px;
  border-left: 3px solid var(--sun);
  padding: 12px 18px;
  background: rgba(247, 241, 234, 0.8);
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 32px var(--shadow);
}

.price-card.highlight {
  background: var(--ink);
  color: #fff;
}

.price {
  font-size: 26px;
  font-weight: 700;
  margin: 14px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(215, 154, 140, 0.2);
  font-size: 14px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 20px 36px var(--shadow);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc5;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0;
  background: #161513;
  color: #f8f1e9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  background: var(--sun);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--ink);
  color: #fff;
}

.aside-note {
  background: rgba(91, 107, 92, 0.14);
  padding: 16px 18px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.small {
  font-size: 14px;
  color: var(--soft-ink);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip img {
  flex: 1 1 220px;
  border-radius: 18px;
  height: 160px;
  object-fit: cover;
}

.page-hero {
  background: var(--sand);
  padding: 72px 0 56px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.simple-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 36px var(--shadow);
}

.thanks {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

@media (max-width: 760px) {
  .hero-card {
    transform: none;
  }

  .panel.photo .overlay {
    position: static;
    margin-top: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
