:root {
  --bg: #f8f3ea;
  --paper: #fffaf2;
  --card: #fffefb;
  --line: #decdb7;
  --text: #2b2319;
  --muted: #675a49;
  --brand: #a64e24;
  --brand-2: #7c3818;
  --accent: #275f5a;
  --accent-soft: #d8ebe8;
  --gold: #c9a86d;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(71, 44, 24, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 4%, #efdeca 0%, rgba(239, 222, 202, 0) 34%),
    radial-gradient(circle at 88% 10%, #d7ece7 0%, rgba(215, 236, 231, 0) 32%),
    radial-gradient(circle at 82% 84%, #f2deca 0%, rgba(242, 222, 202, 0) 28%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

.page-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  z-index: 130;
  background: rgba(43, 35, 25, 0.08);
}

.progress > i {
  display: block;
  height: 100%;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transition: width 0.16s ease;
}

.header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
  background: rgba(248, 243, 234, 0.78);
  border-bottom: 1px solid rgba(124, 56, 24, 0.14);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.93rem;
}

.menu a {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(124, 56, 24, 0.1);
  color: var(--brand-2);
  outline: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(124, 56, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.15rem;
}

.lang-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.77rem;
  padding: 0.28rem 0.62rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  background: rgba(124, 56, 24, 0.15);
  color: var(--brand-2);
}

.menu-toggle {
  display: none;
  width: 66px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(124, 56, 24, 0.2);
  background: var(--card);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(124, 56, 24, 0.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(124, 56, 24, 0.38);
}

.btn-soft {
  color: var(--accent);
  border-color: rgba(39, 95, 90, 0.24);
  background: rgba(39, 95, 90, 0.11);
}

.btn-soft:hover {
  transform: translateY(-2px);
  background: rgba(39, 95, 90, 0.17);
}

main {
  flex: 1;
}

main section {
  padding: 4.2rem 0;
}

/* Keep anchored sections visible below sticky header. */
main section[id],
#top {
  scroll-margin-top: 94px;
}

.hero {
  padding-top: 2.9rem;
  padding-bottom: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 1.8rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(39, 95, 90, 0.24);
  background: rgba(39, 95, 90, 0.11);
  color: var(--accent);
  padding: 0.34rem 0.72rem;
  font-size: 0.79rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.16rem, 4.3vw, 4rem);
  max-width: 12ch;
  margin-bottom: 0.95rem;
}

.lead {
  color: var(--muted);
  max-width: 52ch;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  margin-bottom: 1.35rem;
  white-space: pre-line;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.meta {
  list-style: none;
  display: grid;
  gap: 0.36rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.meta li::before {
  content: "- ";
  color: var(--brand);
  font-weight: 700;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0.95rem;
  box-shadow: var(--shadow);
  animation: rise 0.9s ease both;
}

.split {
  --split: 55%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 35, 25, 0.14);
  background: #e4d4c2;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.split img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.split .before {
  filter: grayscale(1) sepia(0.2) contrast(0.88) brightness(0.93);
}

.split .after {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.split::before {
  content: "";
  position: absolute;
  left: var(--split);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-1px);
  z-index: 2;
  pointer-events: none;
}

.split-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.7rem;
  pointer-events: none;
}

.split-labels span {
  background: rgba(43, 35, 25, 0.7);
  color: #fff;
  border-radius: 999px;
  padding: 0.21rem 0.56rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.split input[type="range"] {
  position: absolute;
  z-index: 4;
  left: 0.74rem;
  right: 0.74rem;
  bottom: 0.74rem;
  width: calc(100% - 1.48rem);
  accent-color: var(--brand);
  cursor: ew-resize;
}

.hero-note {
  margin-top: 0.82rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.35rem;
}

.section-head h2 {
  font-size: clamp(1.64rem, 3vw, 2.72rem);
  margin-bottom: 0.62rem;
}

.section-head p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 10px 26px rgba(56, 36, 20, 0.08);
  transition: transform 0.24s ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature h3 {
  font-size: 1.23rem;
  margin-bottom: 0.48rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0.62rem;
}

.feature ul {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.feature li::before {
  content: "+ ";
  color: var(--accent);
  font-weight: 700;
}

.examples-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.example {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  box-shadow: 0 12px 30px rgba(56, 36, 20, 0.09);
}

.example h3 {
  margin-top: 0.72rem;
  margin-bottom: 0.2rem;
  font-size: 1.18rem;
}

.example p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.62rem;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.chips li {
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(39, 95, 90, 0.1);
  border: 1px solid rgba(39, 95, 90, 0.24);
}

.how {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(248, 243, 234, 0.4));
  border-block: 1px solid rgba(124, 56, 24, 0.13);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-height: 170px;
  box-shadow: 0 8px 22px rgba(56, 36, 20, 0.07);
  transition: transform 0.24s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step .n {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(124, 56, 24, 0.11);
  color: var(--brand-2);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step h3 {
  font-size: 1.04rem;
  margin-bottom: 0.3rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.stories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.story-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 95, 90, 0.24);
  background: linear-gradient(130deg, rgba(39, 95, 90, 0.09), rgba(216, 235, 232, 0.22));
  padding: 1.2rem;
}

.story-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 0.65rem;
  color: var(--muted);
}

.story-list li::before {
  content: "* ";
  color: var(--brand);
  font-weight: 700;
}

.gift-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gift-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(56, 36, 20, 0.07);
}

.gift-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.3rem;
}

.gift-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.pricing,
.pricing-side {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(56, 36, 20, 0.09);
}

.pricing h3,
.pricing-side h3 {
  font-size: 1.22rem;
  margin-bottom: 0.58rem;
}

.pricing p,
.pricing-side p,
.pricing-side li {
  color: var(--muted);
  font-size: 0.93rem;
}

.range-row {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.range-row label {
  display: inline-flex;
  gap: 0.32rem;
  font-size: 0.91rem;
  color: var(--muted);
  margin-bottom: 0.38rem;
}

.range-row input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.addons {
  list-style: none;
  display: grid;
  gap: 0.54rem;
  margin-top: 0.7rem;
  margin-bottom: 0.85rem;
}

.addons label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.52rem 0.65rem;
  background: var(--paper);
  font-size: 0.89rem;
  color: var(--muted);
  cursor: pointer;
}

.addons input {
  accent-color: var(--brand);
}

.price-box {
  border-radius: 12px;
  border: 1px solid rgba(124, 56, 24, 0.2);
  background: rgba(124, 56, 24, 0.07);
  padding: 0.74rem 0.8rem;
}

.price-box p {
  font-size: 0.86rem;
  color: var(--muted);
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 0.44rem;
  margin-top: 0.2rem;
}

.price-value strong {
  font-family: "Fraunces", serif;
  font-size: 1.86rem;
  color: var(--brand-2);
}

.pricing-side ul {
  list-style: none;
  display: grid;
  gap: 0.46rem;
  margin-top: 0.6rem;
}

.pricing-side li::before {
  content: "- ";
  color: var(--brand);
  font-weight: 700;
}

.faq {
  background: #fff9f1;
  border-block: 1px solid rgba(124, 56, 24, 0.14);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
  box-shadow: 0 6px 18px rgba(56, 36, 20, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 1.1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.ethics {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(56, 36, 20, 0.08);
}

.panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.panel p,
.panel li {
  color: var(--muted);
  font-size: 0.93rem;
}

.guardrails {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  margin-top: 0.25rem;
}

.guardrails li::before {
  content: "+ ";
  color: var(--accent);
  font-weight: 700;
}

.notice {
  margin-top: 0.74rem;
  display: inline-block;
  border: 1px solid rgba(124, 56, 24, 0.24);
  border-radius: 10px;
  background: rgba(124, 56, 24, 0.08);
  color: var(--brand-2);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.46rem 0.62rem;
}

.cta {
  text-align: center;
  background: linear-gradient(120deg, rgba(124, 56, 24, 0.08), rgba(201, 168, 109, 0.14));
  border: 1px solid rgba(124, 56, 24, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.9rem 1.2rem;
}

.cta h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.48rem);
  margin-bottom: 0.56rem;
}

.cta p {
  color: var(--muted);
  margin-bottom: 0.95rem;
}

footer {
  padding: 1.9rem 0 2.2rem;
  border-top: 1px solid rgba(124, 56, 24, 0.12);
  background: rgba(255, 250, 242, 0.5);
  color: var(--muted);
  font-size: 0.9rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
}

.foot-links a {
  border-bottom: 1px solid transparent;
}

.foot-links button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.foot-links a:hover,
.foot-links a:focus-visible,
.foot-links button:hover,
.foot-links button:focus-visible {
  border-bottom-color: currentColor;
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.legal-page {
  padding-top: 2.4rem;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(56, 36, 20, 0.08);
  padding: 1.3rem;
}

.legal-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.legal-card section {
  margin-top: 1rem;
}

.legal-card h2 {
  font-size: 1.32rem;
  margin-bottom: 0.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-card ul {
  margin-top: 0.5rem;
  margin-left: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 0.6rem;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid rgba(124, 56, 24, 0.2);
  padding: 0.56rem 0.62rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
}

.cookies-table th {
  background: rgba(124, 56, 24, 0.08);
  color: var(--text);
  font-weight: 700;
}

.cookies-table code {
  font-size: 0.8rem;
  background: rgba(124, 56, 24, 0.08);
  padding: 0.1rem 0.24rem;
  border-radius: 6px;
}

.simple-center {
  text-align: center;
  padding: 3rem 0;
}

.simple-center h1 {
  margin-bottom: 0.7rem;
}

.simple-center p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.redirect-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.included-note {
  margin-top: 0.7rem;
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  background: #fffaf4;
  border: 1px solid rgba(124, 56, 24, 0.24);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(56, 36, 20, 0.18);
  padding: 0.9rem;
  display: none;
}

.consent-banner.show {
  display: block;
}

.consent-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.consent-text {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0.65rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-actions .btn {
  padding: 0.5rem 0.82rem;
  font-size: 0.83rem;
}

.consent-actions .btn-reject {
  background: #fff;
  border: 1px solid rgba(124, 56, 24, 0.22);
  color: var(--brand-2);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-grid,
  .ethics {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu,
  .nav-cta {
    display: none;
  }

  .header.open .menu {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    margin: 0 0.8rem;
    padding: 0.72rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    box-shadow: 0 16px 30px rgba(56, 36, 20, 0.14);
    gap: 0.25rem;
    z-index: 140;
  }

  .header.open .menu a {
    padding: 0.6rem;
  }

  .examples-wrap,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gift-grid {
    grid-template-columns: 1fr;
  }

  main section[id],
  #top {
    scroll-margin-top: 86px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  main section {
    padding: 3.3rem 0;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .split {
    aspect-ratio: 4 / 4.6;
  }

  .consent-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }
}
