@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap");

:root {
  --ink: #1c1f23;
  --muted: #5a6470;
  --accent: #c6762b;
  --accent-dark: #9e5e22;
  --soft: #f4f0ec;
  --sand: #f7f4f1;
  --deep: #1a252f;
  --card: #ffffff;
  --line: #e6e1db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  text-align: right;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus {
  border-bottom: 1px solid var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 6vw 20px;
}

.hero .hero-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 18px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 0;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: #ffffff;
}

.section {
  padding: 56px 6vw;
}

.section--soft {
  background: var(--soft);
}

.section--deep {
  background: var(--deep);
  color: #ffffff;
}

.section--sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.split h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-top: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-top: 0;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

.reveal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-item span {
  color: var(--muted);
  font-size: 14px;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.choice-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.choice-card input {
  margin-right: 8px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

label {
  font-weight: 600;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

footer {
  padding: 40px 6vw;
  background: #0f151b;
  color: #d8dde3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.page-hero {
  padding: 48px 6vw 24px;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.image-frame {
  background: #e9e3dc;
  padding: 12px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
