:root {
  --ink: #14182b;
  --ink-soft: #1f2542;
  --ink-line: #2b3157;
  --cream: #f6f1e6;
  --cream-dark: #ece2cd;
  --coral: #ff6b4a;
  --coral-dark: #e2542f;
  --gold: #f2a65a;
  --text-on-ink: #f2ede0;
  --muted-on-ink: #a9adc9;
  --text-on-cream: #191d33;
  --muted-on-cream: #565a78;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(20, 24, 43, 0.08), 0 1px 2px rgba(20, 24, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 24, 43, 0.12), 0 4px 10px rgba(20, 24, 43, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 24, 43, 0.18), 0 8px 20px rgba(20, 24, 43, 0.1);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-on-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Bitter', serif;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }


.banner {
  background: var(--coral);
  color: var(--cream);
  position: relative;
  z-index: 60;
}
.banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.banner__text { margin: 0; font-size: 0.9rem; font-weight: 500; }
.banner__text i { margin-right: 0.4rem; }
.banner__close {
  color: var(--cream);
  width: 28px;
  height: 28px;
  min-width: 44px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.banner__close:hover { background: rgba(0,0,0,0.15); }
.banner--hidden { display: none; }


.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  transition: box-shadow 0.3s ease;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.header__logo-img { width: 34px; height: 34px; }

.nav { width: 100%; display: flex; flex-direction: column; align-items: center; }
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}
.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.nav__panel.is-open { max-height: 400px; }
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.8rem 0 0.4rem;
}
.nav__link {
  display: block;
  padding: 0.7rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--muted-on-cream);
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav__link:hover, .nav__link--active {
  color: var(--coral-dark);
  background: var(--cream-dark);
}

@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__panel { max-height: none !important; overflow: visible; }
  .nav__list { flex-direction: row; gap: 0.5rem; padding-top: 0.6rem; }
}


.hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--text-on-ink);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,74,0.25), transparent 70%);
  pointer-events: none;
}
.hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.hero__eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw + 1rem, 4rem);
  max-width: 16ch;
  margin: 0 auto 1.2rem;
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charIn 0.6s ease forwards;
  animation-delay: calc(var(--char-index) * 0.02s);
}
@keyframes charIn { to { opacity: 1; transform: translateY(0); } }
.hero__subtitle {
  max-width: 62ch;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--muted-on-ink);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 800px) {
  .hero__cards { grid-template-columns: repeat(3, 1fr); }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--text-on-ink);
  border: 1.5px solid var(--ink-line);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn--dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--dark:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }


.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--coral), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ink);
  margin-bottom: 1rem;
}
.card__title { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--text-on-ink); }
.card__body { color: var(--muted-on-ink); font-size: 0.95rem; margin: 0; }


.story { padding: var(--space-xl) 0; background: var(--cream); }
.story--alt { background: var(--ink); color: var(--text-on-ink); }
.story--alt .story__title { color: var(--text-on-ink); }
.story--alt p { color: var(--muted-on-ink); }
.story--alt .story__number { color: var(--coral); }

.story__row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story__row { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .story__row--reverse .story__content { order: 2; }
  .story__row--reverse .story__media { order: 1; }
}
.story__number {
  display: block;
  font-family: 'Bitter', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.story__title {
  font-size: clamp(1.6rem, 2.4vw + 1rem, 2.4rem);
  margin-bottom: 1.2rem;
  color: var(--text-on-cream);
}
.story p { color: var(--muted-on-cream); font-size: 1.02rem; }

.story__content, .story__media {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.story__content.is-visible, .story__media.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.duo-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.duo-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.95);
}
.duo-image__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--coral) 100%);
  mix-blend-mode: color;
  opacity: 0.92;
}


.cta {
  background: linear-gradient(120deg, var(--coral) 0%, var(--gold) 100%);
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--ink);
}
.cta__inner { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.cta__title {
  font-size: clamp(1.7rem, 2.6vw + 1rem, 2.6rem);
  margin-bottom: 1rem;
}
.cta__text { margin-bottom: 1.8rem; color: rgba(20,24,43,0.8); font-size: 1.05rem; }


.faq { background: var(--cream); padding: var(--space-xl) 0; }
.faq__inner { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section__title { font-size: clamp(1.8rem, 2.6vw + 1rem, 2.6rem); }
.section__title--center { text-align: center; }
.section__lead { text-align: center; color: var(--muted-on-cream); margin-bottom: 2.5rem; }

.faq__list { display: flex; flex-direction: column; gap: 1rem; }
.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  min-height: 44px;
  font-weight: 600;
  font-family: 'Bitter', serif;
  text-align: left;
  color: var(--text-on-cream);
}
.faq__icon { transition: transform 0.3s ease; color: var(--coral); flex-shrink: 0; margin-left: 1rem; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.faq__item.is-open .faq__answer { max-height: 300px; padding: 0 1.5rem 1.4rem; }
.faq__answer p { color: var(--muted-on-cream); margin: 0; }


.page-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--text-on-ink);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}
.page-hero--small { padding: var(--space-lg) 0 var(--space-md); }
.page-hero__inner { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.page-hero__title { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); margin-bottom: 1rem; }
.page-hero__subtitle { color: var(--muted-on-ink); font-size: 1.05rem; max-width: 60ch; margin: 0 auto; }


.legal-section { padding: var(--space-lg) 0 var(--space-xl); background: var(--cream); }
.legal-section__inner { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 1.6rem; }
.legal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}
.legal-card__title { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--text-on-cream); }
.legal-card p { color: var(--muted-on-cream); margin-bottom: 0.8rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a { color: var(--coral-dark); font-weight: 600; }
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table td { padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--cream-dark); color: var(--muted-on-cream); vertical-align: top; }
.legal-table td:first-child { font-weight: 600; color: var(--text-on-cream); width: 40%; }


.contact-section { padding: var(--space-lg) 0 var(--space-xl); background: var(--cream); }
.contact-section__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 900px) { .contact-section__inner { grid-template-columns: 1.2fr 1fr; } }
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
}
.contact-card__title { font-size: 1.4rem; margin-bottom: 1.4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 560px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-weight: 600; font-size: 0.9rem; color: var(--text-on-cream);
}
.contact-form__label input, .contact-form__label select, .contact-form__label textarea {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  min-height: 44px;
  background: var(--cream);
  color: var(--text-on-cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form__label input:focus, .contact-form__label select:focus, .contact-form__label textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,74,0.15);
}
.contact-form__checkbox {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--muted-on-cream);
}
.contact-form__checkbox input { margin-top: 0.3rem; min-width: 18px; min-height: 18px; }
.contact-form__checkbox a { color: var(--coral-dark); font-weight: 600; }

.contact-info { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.8rem; }
.contact-info li { display: flex; align-items: center; gap: 0.7rem; color: var(--muted-on-cream); }
.contact-info i { color: var(--coral); width: 20px; text-align: center; }
.contact-note { background: var(--cream); border-radius: var(--radius-md); padding: 1.3rem; margin-bottom: 1.5rem; }
.contact-note__title { font-size: 1rem; margin-bottom: 0.6rem; }
.contact-note p { color: var(--muted-on-cream); font-size: 0.92rem; margin: 0; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }


.thanks { background: var(--ink); color: var(--text-on-ink); padding: var(--space-xl) 0; }
.thanks__inner { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.quote-card__icon { color: var(--coral); font-size: 1.6rem; margin-bottom: 1rem; }
.quote-card__text { font-family: 'Bitter', serif; font-size: 1.25rem; line-height: 1.5; margin-bottom: 1rem; }
.quote-card__source { color: var(--muted-on-ink); font-size: 0.9rem; }
.thanks__title { font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem); margin-bottom: 0.8rem; }
.thanks__text { color: var(--muted-on-ink); margin-bottom: 1.8rem; }


.footer { background: var(--ink); color: var(--text-on-ink); padding-top: var(--space-lg); }
.footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem var(--space-md);
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 800px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Bitter', serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 1rem; }
.footer__logo-img { width: 30px; height: 30px; }
.footer__desc { color: var(--muted-on-ink); font-size: 0.92rem; }
.footer__heading { font-size: 1rem; margin-bottom: 1.1rem; color: var(--text-on-ink); }
.footer__list, .footer__contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__list a, .footer__contact a { color: var(--muted-on-ink); font-size: 0.92rem; transition: color 0.25s ease; }
.footer__list a:hover, .footer__contact a:hover { color: var(--coral); }
.footer__contact li { color: var(--muted-on-ink); font-size: 0.92rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__contact i { color: var(--coral); margin-top: 0.15rem; }

.footer__newsletter { border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.footer__newsletter-inner {
  max-width: 1200px; margin: 0 auto; padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center;
}
@media (min-width: 700px) { .footer__newsletter-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__newsletter-inner p { margin: 0; color: var(--muted-on-ink); }
.footer__newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer__newsletter-form input {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-line);
  padding: 0.7rem 1rem;
  min-height: 44px;
  background: var(--ink-soft);
  color: var(--text-on-ink);
  min-width: 220px;
}
.footer__newsletter-form input::placeholder { color: var(--muted-on-ink); }

.footer__bottom {
  max-width: 1200px; margin: 0 auto; padding: 1.2rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.4rem; align-items: center;
  color: var(--muted-on-ink); font-size: 0.85rem; text-align: center;
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }


.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  z-index: 200;
  box-shadow: 0 -10px 30px rgba(20,24,43,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__row {
  max-width: 1200px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: stretch;
}
@media (min-width: 800px) { .cookie-bar__row { flex-direction: row; align-items: center; justify-content: space-between; } }
.cookie-bar__text { font-size: 0.88rem; color: var(--muted-on-cream); max-width: 60ch; margin: 0; }
.cookie-bar__text a { color: var(--coral-dark); font-weight: 600; }
.cookie-bar__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-bar__btn {
  padding: 0.65rem 1.2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem;
  min-height: 44px; transition: background 0.25s ease, transform 0.2s ease;
}
.cookie-bar__btn--accept { background: var(--coral); color: #fff; }
.cookie-bar__btn--accept:hover { background: var(--coral-dark); }
.cookie-bar__btn--reject { background: var(--cream-dark); color: var(--text-on-cream); }
.cookie-bar__btn--reject:hover { background: #ddd0b3; }
.cookie-bar__btn--customize { background: transparent; border: 1.5px solid var(--cream-dark); color: var(--text-on-cream); }
.cookie-bar__btn--customize:hover { background: var(--cream); }

.cookie-bar__panel {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.cookie-bar__panel.is-open { max-height: 400px; padding-bottom: 1.2rem; }
.cookie-bar__category {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 0; border-top: 1px solid var(--cream-dark);
}
.cookie-bar__category-info h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.cookie-bar__category-info p { font-size: 0.82rem; color: var(--muted-on-cream); margin: 0; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__track {
  position: absolute; inset: 0; background: var(--cream-dark); border-radius: 20px; transition: background 0.25s ease; cursor: pointer;
}
.switch__track::before {
  content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%; transition: transform 0.25s ease; box-shadow: var(--shadow-sm);
}
.switch input:checked + .switch__track { background: var(--coral); }
.switch input:checked + .switch__track::before { transform: translateX(20px); }
.switch input:disabled + .switch__track { opacity: 0.6; cursor: not-allowed; }


[data-reveal] { will-change: transform, opacity; }