:root {
  --bg: #FBF7F1;
  --bg-alt: #F3E7E2;
  --ink: #2B2420;
  --ink-soft: rgba(43,36,32,0.62);
  --ink-faint: rgba(43,36,32,0.4);
  --accent: #C0272A;
  --accent-hover: #A51F22;
  --serif: 'Lora', serif;
  --sans: 'Be Vietnam Pro', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

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

a { color: inherit; }

.logo-badge {
  width: 32px; height: 32px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12); flex-shrink: 0;
}
.logo-badge img { width: 22px; height: 22px; object-fit: contain; }
.logo-badge--lg { width: 88px; height: 88px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); margin-bottom: 34px; }
.logo-badge--lg img { width: 60px; height: 60px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 5vw; background: rgba(251,247,241,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,36,32,0.08); flex-wrap: nowrap;
}
.nav__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; min-width: 0; }
.nav__brand-name { font-family: var(--serif); font-size: 14px; color: var(--ink); letter-spacing: 0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 15vw; }
.nav__links { display: flex; align-items: center; gap: clamp(4px,1vw,16px); overflow-x: auto; scrollbar-width: none; min-width: 0; flex: 1; justify-content: center; }
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a { font-size: clamp(10.5px,1.1vw,13px); color: rgba(43,36,32,0.72); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nav__links a:hover { color: var(--accent); }
.nav__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.lang-toggle { display: flex; border: 1px solid rgba(43,36,32,0.18); border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.lang-btn { padding: 6px 9px; font-size: 11px; border: none; cursor: pointer; background: transparent; color: rgba(43,36,32,0.5); white-space: nowrap; font-family: var(--sans); }
.lang-btn.is-active { background: #2B2420; color: #fff; }

.btn { font-family: var(--sans); font-size: 14.5px; font-weight: 500; text-decoration: none; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: none; }
.btn--primary { background: var(--accent); color: #fff; padding: 16px 32px; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--outline { border: 1px solid rgba(43,36,32,0.2); color: var(--ink); padding: 16px 32px; background: transparent; }
.btn--outline:hover { border-color: var(--ink); background: rgba(43,36,32,0.04); }
.btn--dark { background: var(--ink); color: #fff; padding: 14px 28px; }
.btn--dark:hover { background: #000; }
.btn--sm { font-size: clamp(10.5px,1.1vw,13px); padding: 8px 14px; }
.btn--icon { gap: 10px; padding: 13px 26px; }

/* HERO */
.hero { position: relative; padding: 180px 5vw 140px; text-align: center; overflow: hidden; scroll-margin-top: 84px; }
.hero__glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(192,39,42,0.12), transparent 68%); }
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.eyebrow { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); }
.hero__title { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(38px,5.5vw,64px); line-height: 1.26; color: var(--ink); margin: 24px 0 0; max-width: 820px; white-space: pre-line; }
.hero__subtitle { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin-top: 28px; max-width: 620px; }
.hero__ctas { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }

/* SECTIONS */
.section { padding: 110px 5vw; scroll-margin-top: 84px; }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }
.kicker { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); }
.kicker--light { color: rgba(255,255,255,0.75); }
.title { font-family: var(--serif); font-size: 34px; line-height: 1.32; color: var(--ink); margin: 16px 0 0; font-weight: 500; }
.title--narrow { font-size: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.title--sm { font-size: 32px; }
.title--light { font-size: 36px; color: #fff; margin-top: 18px; }
.body { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin-top: 20px; }
.body--narrow { font-size: 16.5px; max-width: 560px; margin-left: auto; margin-right: auto; }
.body--light { font-size: 16.5px; line-height: 1.85; color: rgba(255,255,255,0.85); margin-top: 22px; }
.note { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-faint); margin-top: 26px; }
.note--left { margin-top: 22px; }

.split { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--reverse { grid-template-columns: 400px 1fr; }
.narrow-col { max-width: 620px; margin: 0 auto; }

.placeholder-panel {
  height: 320px; border-radius: 16px;
  background: repeating-linear-gradient(120deg, rgba(192,39,42,0.07), rgba(192,39,42,0.07) 12px, rgba(43,36,32,0.03) 12px, rgba(43,36,32,0.03) 24px);
  display: flex; align-items: center; justify-content: center;
}
.placeholder-panel__label { font-size: 11px; letter-spacing: 2px; color: rgba(43,36,32,0.4); text-align: center; }

.flipbook-mount { display: flex; justify-content: center; margin-top: 52px; }
#quotes .flipbook-mount { margin-top: 0; }

/* COMMUNITY */
.community { background: linear-gradient(160deg,#C0272A,#8A1618); }
.community__links { display: flex; gap: 20px; margin-top: 48px; flex-wrap: wrap; justify-content: center; max-width: 960px; margin-left: auto; margin-right: auto; }
.community__link {
  display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 18px 24px; border-radius: 16px; text-decoration: none; flex: 1; min-width: 260px;
  transition: transform 0.2s, background 0.2s;
}
.community__link:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.community__link-initial {
  width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; font-weight: 600; flex-shrink: 0;
}
.community__link-name { font-size: 15px; font-weight: 600; color: #fff; }
.community__link-sub { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* JOURNEY */
.journey__grid { margin-top: 50px; max-width: 1180px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.journey__card {
  border: 1px solid rgba(43,36,32,0.12); border-radius: 18px; padding: 34px 28px; text-align: left; background: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.journey__card:hover { border-color: var(--accent); transform: translateY(-4px); }
.journey__card-title { font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 500; }
.journey__card-desc { font-size: 14.5px; color: rgba(43,36,32,0.6); margin-top: 12px; line-height: 1.7; }
.journey__card-tag {
  font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(192,39,42,0.3); display: inline-block; padding: 7px 15px; border-radius: 999px; margin-top: 22px;
}

/* FOOTER */
.footer { background: var(--ink); padding: 80px 5vw 46px; }
.footer__inner { max-width: 1180px; margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand-name { font-family: var(--serif); font-size: 17px; color: #FBF7F1; letter-spacing: 0.3px; }
.footer__tagline { font-size: 14px; color: rgba(251,247,241,0.55); margin-top: 14px; max-width: 320px; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(251,247,241,0.4); }
.footer__email { display: block; margin-top: 10px; font-size: 15px; color: #FBF7F1; text-decoration: none; }
.footer__email:hover { text-decoration: underline; }
.footer__sitemap { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.footer__sitemap a { font-size: 14px; color: rgba(251,247,241,0.75); text-decoration: none; }
.footer__sitemap a:hover { color: #fff; }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(251,247,241,0.12); font-size: 12.5px; color: rgba(251,247,241,0.35); }

/* FLIPBOOK */
.flipbook { display: inline-flex; flex-direction: column; align-items: center; gap: 22px; }
.flipbook__stage { position: relative; width: min(var(--fb-w), 86vw); }
.flipbook__shadow { position: absolute; left: 5%; right: 5%; bottom: -20px; height: 26px; background: radial-gradient(ellipse at center, rgba(20,16,14,0.32), transparent 72%); filter: blur(5px); }
.flipbook__spine { position: absolute; left: 50%; top: 1.5%; bottom: 1.5%; width: 16px; margin-left: -8px; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.22), transparent); pointer-events: none; z-index: 500; }
.flipbook__perspective { position: absolute; inset: 0; perspective: 2600px; }
.flipbook__leaf { position: absolute; inset: 0; transform-style: preserve-3d; transform-origin: left center; transition: transform 0.75s cubic-bezier(.45,.05,.15,1); cursor: pointer; }
.flipbook__face { position: absolute; inset: 0; backface-visibility: hidden; display: flex; flex-direction: column; overflow: hidden; box-shadow: 3px 0 12px rgba(0,0,0,0.10); border: 1px solid rgba(0,0,0,0.06); border-radius: 3px 7px 7px 3px; }
.flipbook__face--back { transform: rotateY(180deg); box-shadow: -3px 0 12px rgba(0,0,0,0.10); }
.flipbook__face img { width: 100%; height: 100%; object-fit: cover; }
.flipbook__cover-face { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 26px; text-align: center; border-radius: 3px 12px 12px 3px; color: #fff; }
.flipbook__cover-badge { width: 60px; height: 60px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.flipbook__cover-badge img { width: 42px; height: 42px; object-fit: contain; }
.flipbook__cover-title { font-family: var(--serif); font-size: 24px; line-height: 1.3; letter-spacing: 0.2px; }
.flipbook__cover-subtitle { font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.flipbook__placeholder { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 20px; text-align: center; }
.flipbook__placeholder-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(60,50,45,0.45); }
.flipbook__placeholder-page { font-family: var(--serif); font-size: 15px; color: rgba(60,50,45,0.3); }
.flipbook__controls { display: flex; align-items: center; gap: 18px; }
.flipbook__btn { font-size: 13px; letter-spacing: 1px; padding: 8px 16px; border-radius: 999px; cursor: pointer; font-family: var(--sans); }
.flipbook__btn--prev { background: none; }
.flipbook__btn--next { color: #fff; }
.flipbook__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.flipbook__page-label { font-size: 12.5px; letter-spacing: 1px; color: rgba(60,50,45,0.6); min-width: 90px; text-align: center; }
.flipbook__jump { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 340px; }
.flipbook__jump input[type="range"] { flex: 1; }
.flipbook__jump-label { font-size: 11.5px; color: rgba(60,50,45,0.55); white-space: nowrap; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav__brand-name { display: none; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .flipbook-mount { order: -1; }
  .section { padding: 80px 6vw; }
  .journey__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
}
@media (max-width: 860px) {
  .nav__links { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 4vw; gap: 8px; }
  .nav__links { gap: 6px; }
  .hero { padding: 150px 6vw 100px; }
}
