/* BOSKA CEREMONIA — shared design system
   Used by all subpages. Homepage keeps inline styles. */

:root {
  --ink: #2a2520;
  --ink-soft: #4a4138;
  --ink-mute: #8a7d6e;
  --cream: #f4ecdc;
  --paper: #faf3e3;
  --paper-2: #f7f0e0;
  --warm: #ede2cb;
  --gold: #b8945a;
  --gold-soft: #d1b380;
  --rose: #d4b3a0;
  --line: #d9cbb0;
  --line-soft: #e7dcc4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* TYPE */
.display { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 400; line-height: 1.0; letter-spacing: -0.015em; }
.display em { font-style: italic; font-weight: 300; }
.hand { font-family: 'Caveat', cursive; color: var(--gold); font-weight: 500; font-size: 24px; line-height: 1.1; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; }
p { color: var(--ink-soft); text-wrap: pretty; }

/* ORNAMENTS */
.ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 auto; color: var(--ink); }
.ornament .line { height: 1px; background: var(--ink); width: 80px; }
.ornament .line--gold { background: var(--gold); }
.ornament .mark { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; }
.ornament.small .line { width: 40px; }

/* LAYOUT */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
.wrap--tight { max-width: 980px; }
.wrap--narrow { max-width: 760px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 24px 56px;
  transition: background .4s ease, padding .4s ease, color .4s ease, border-color .4s ease;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  background: rgba(250, 243, 227, 0.0);
}
.nav.nav--light {
  color: var(--paper);
}
.nav.scrolled, .nav.nav--solid {
  background: rgba(250, 243, 227, 0.94);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  color: var(--ink);
  padding: 16px 56px;
  border-bottom: 1px solid var(--line);
}
.nav__left, .nav__right { display: flex; gap: 32px; align-items: center; }
.nav__right { justify-content: flex-end; }
.nav__center { text-align: center; }
.nav__logo { font-family: 'Cormorant Garamond', serif; line-height: 1; }
.nav__logo-top { font-size: 22px; letter-spacing: 0.45em; font-weight: 500; }
.nav__logo-bot { font-size: 13px; letter-spacing: 0.32em; font-style: italic; color: var(--gold); margin-top: 2px; }
.nav__item { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; cursor: pointer; position: relative; }
.nav__item.active { color: var(--gold); }
.nav__item::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: center; transition: transform .4s ease; }
.nav__item:hover::after { transform: scaleX(1); }
.nav__item.active::after { transform: scaleX(1); background: var(--gold); }

/* BUTTON */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent; color: var(--ink);
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  border-radius: 999px;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--gold); border-color: var(--gold); }
.btn--gold { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn--gold:hover { background: var(--ink); border-color: var(--ink); }
.btn--ghost-light { color: var(--paper); border-color: rgba(250,243,227,0.7); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* SECTIONS */
section { position: relative; }
.section { padding: 140px 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--warm { background: var(--warm); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink p { color: rgba(250,243,227,0.78); }

.section__head { text-align: center; margin-bottom: 80px; }
.section__head-eyebrow { color: var(--gold); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; }
.section__head-eyebrow::before, .section__head-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section__head-title { font-size: clamp(48px, 6vw, 88px); margin-bottom: 28px; }
.section__head-sub { max-width: 560px; margin: 0 auto; font-size: 17px; color: var(--ink-soft); }

/* PAGE HERO (slim, for subpages) */
.page-hero {
  background: var(--paper);
  padding: 200px 56px 100px;
  text-align: center;
  position: relative;
}
.page-hero__eyebrow { color: var(--gold); margin-bottom: 32px; }
.page-hero__title { font-size: clamp(64px, 9vw, 144px); margin-bottom: 32px; color: var(--ink); line-height: 0.98; }
.page-hero__sub { font-size: 18px; color: var(--ink-soft); max-width: 580px; margin: 0 auto; line-height: 1.55; }
.page-hero__after { display: flex; justify-content: center; margin-top: 48px; }

/* CTA FINAL */
.cta-final { background: var(--ink); color: var(--paper); padding: 180px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(184,148,90,0.12) 0%, transparent 60%); }
.cta-final__inner { position: relative; z-index: 2; }
.cta-final__title { font-size: clamp(64px, 8vw, 128px); margin-bottom: 32px; color: var(--paper); }
.cta-final__title em { color: var(--gold); }
.cta-final__sub { font-size: 17px; max-width: 480px; margin: 0 auto 48px; color: rgba(250,243,227,0.78); }
.cta-final__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* FOOTER */
footer.foot { background: var(--ink); color: var(--paper); padding: 80px 0 40px; border-top: 1px solid #3a342c; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.foot__logo { line-height: 1; }
.foot__logo-top { font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: 0.45em; font-weight: 500; }
.foot__logo-bot { font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 0.32em; font-style: italic; color: var(--gold); margin-top: 4px; }
.foot__about { color: rgba(250,243,227,0.65); font-size: 13.5px; max-width: 320px; margin-top: 20px; }
.foot__col-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 24px; color: var(--gold); }
.foot__col a { display: block; padding: 7px 0; color: rgba(250,243,227,0.85); font-size: 14px; transition: color .3s ease; }
.foot__col a:hover { color: var(--gold); }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid #3a342c; color: rgba(250,243,227,0.4); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* OFERTA SPLIT (shared with homepage) */
.oferta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1180px; margin: 0 auto; align-items: start; }
.oferta-split__left { padding-right: 24px; }
.oferta-split__title { font-size: clamp(36px, 4vw, 56px); margin: 16px 0; line-height: 1.05; }
.oferta-split__lead { color: var(--ink-soft); font-size: 16px; margin-bottom: 36px; max-width: 420px; }
.oferta-split__price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.oferta-split__from, .oferta-split__zl { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.3em; color: var(--ink-mute); text-transform: uppercase; }
.oferta-split__price { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(96px, 11vw, 156px); line-height: 0.9; color: var(--gold); }
.oferta-split__note { font-size: 12.5px; color: var(--ink-mute); line-height: 1.6; max-width: 420px; }
.oferta-split__right { display: flex; flex-direction: column; }
.oferta-split__row { display: grid; grid-template-columns: 24px 1fr 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); align-items: baseline; }
.oferta-split__row:last-child { border-bottom: 1px solid var(--line); }
.oferta-split__row .plus { color: var(--gold); font-size: 16px; }
.oferta-split__name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--ink); line-height: 1.1; }
.oferta-split__desc { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--ink-mute); text-transform: uppercase; text-align: right; }

@media (max-width: 1100px) {
  .wrap, .nav { padding-left: 32px; padding-right: 32px; }
  .nav { padding: 16px 24px; }
  .nav__left, .nav__right { gap: 18px; }
  .nav__left .nav__item:not(:nth-child(-n+2)) { display: none; }
  .nav__right .nav__item:not(:last-child) { display: none; }
  .section { padding: 100px 0; }
  .section__head { margin-bottom: 56px; }
  .page-hero { padding: 140px 32px 80px; }
  .oferta-split { grid-template-columns: 1fr; gap: 56px; }
  .oferta-split__left { padding-right: 0; }
  .oferta-split__desc { text-align: left; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
