:root {
  --color-ink: #15161c;
  --color-ink-soft: #1f212b;
  --color-ink-line: rgba(245,241,232,0.12);
  --color-paper: #faf6ef;
  --color-paper-soft: #f1eadb;
  --color-paper-line: rgba(33,31,28,0.1);
  --color-accent: #c1622d;
  --color-accent-light: #e2925a;
  --color-accent-2: #7c9473;
  --color-gold: #d9a441;
  --color-text-dark: #211f1c;
  --color-text-light: #f5f1e8;
  --color-muted-dark: #5c584f;
  --color-muted-light: #c9c3b4;

  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(20,18,14,0.08);
  --shadow-md: 0 10px 28px rgba(20,18,14,0.14), 0 2px 8px rgba(20,18,14,0.08);
  --shadow-lg: 0 28px 56px rgba(20,18,14,0.22), 0 10px 20px rgba(20,18,14,0.12);
  --shadow-dark-md: 0 10px 28px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);

  --space-2xs: 0.5rem;
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2.5rem;
  --space-lg: 4.5rem;
  --space-xl: 7.5rem;

  --fs-display: clamp(2.6rem, 6vw, 5rem);
  --fs-h1: clamp(2.1rem, 4.5vw, 3.4rem);
  --fs-h2: clamp(1.7rem, 3.2vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body-lg: clamp(1.05rem, 1.3vw, 1.2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0; line-height: 1.15; }
p { margin: 0 0 1rem 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius-md); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

.Container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.Container--split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.Container--reverse { direction: rtl; }
.Container--reverse > * { direction: ltr; }

.Reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.Reveal.is-inview { opacity: 1; transform: translateY(0); }


.pace .pace-progress { background: var(--color-accent) !important; height: 3px !important; }
.pace .pace-progress-inner { box-shadow: 0 0 10px var(--color-accent), 0 0 5px var(--color-accent) !important; }
.pace .pace-activity { display: none !important; }


.PageTransition-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  z-index: 9999; transition: width 0.35s ease;
}
.PageTransition-bar.is-active { width: 88%; }


.SiteHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  background: rgba(21,22,28,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-ink-line);
}
.SiteHeader.is-visible { transform: translateY(0); }
.SiteHeader-inner {
  max-width: 1180px; margin: 0 auto; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.SiteHeader-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--color-text-light); font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; }
.SiteHeader-logo img { border-radius: 0; }
.SiteHeader-nav { display: flex; gap: 1.9rem; }
.SiteHeader-navLink {
  color: var(--color-muted-light); font-size: 0.92rem; font-weight: 500;
  position: relative; padding: 0.3rem 0; transition: color 0.3s ease;
}
.SiteHeader-navLink::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--color-accent-light); transition: width 0.3s ease;
}
.SiteHeader-navLink:hover, .SiteHeader-navLink.is-active { color: var(--color-text-light); }
.SiteHeader-navLink:hover::after, .SiteHeader-navLink.is-active::after { width: 100%; }
.SiteHeader-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.SiteHeader-toggle span { width: 22px; height: 2px; background: var(--color-text-light); border-radius: 2px; transition: all 0.3s ease; }


.MobileSheet-overlay {
  position: fixed; inset: 0; background: rgba(15,15,18,0.55); z-index: 950;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease;
}
.MobileSheet-overlay.is-visible { opacity: 1; visibility: visible; }
.MobileSheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 960;
  background: var(--color-ink); border-radius: 26px 26px 0 0;
  padding: 0.8rem 1.5rem 2.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 -20px 50px rgba(0,0,0,0.4);
}
.MobileSheet.is-open { transform: translateY(0); }
.MobileSheet-handle { width: 44px; height: 5px; background: var(--color-muted-light); border-radius: var(--radius-pill); margin: 0.6rem auto 1.4rem auto; opacity: 0.5; }
.MobileSheet-nav { display: flex; flex-direction: column; gap: 0.3rem; }
.MobileSheet-nav a {
  display: flex; align-items: center; gap: 1rem; color: var(--color-text-light);
  padding: 1rem 0.6rem; font-size: 1.05rem; border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.MobileSheet-nav a i { width: 22px; color: var(--color-accent-light); font-size: 1.05rem; }
.MobileSheet-nav a:active, .MobileSheet-nav a:hover { background: rgba(255,255,255,0.06); }


.SideNav {
  position: fixed; right: 2rem; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1rem; z-index: 400;
}
.SideNav-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(150,140,120,0.4);
  position: relative; transition: all 0.3s ease;
}
.SideNav-dot::after {
  content: attr(data-label); position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 0.75rem; white-space: nowrap; background: var(--color-ink); color: var(--color-text-light);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-sm); opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.SideNav-dot:hover { background: var(--color-accent); transform: scale(1.3); }
.SideNav-dot:hover::after { opacity: 1; }
@media (max-width: 1100px) { .SideNav { display: none; } }


.CookieBanner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: var(--color-ink); color: var(--color-text-light);
  transform: translateY(-100%); transition: transform 0.45s ease;
  border-bottom: 3px solid var(--color-accent);
}
.CookieBanner.is-visible { transform: translateY(0); }
.CookieBanner-inner {
  max-width: 1180px; margin: 0 auto; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.CookieBanner-text { font-size: 0.88rem; color: var(--color-muted-light); margin: 0; max-width: 640px; }
.CookieBanner-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.CookieBanner-btn { padding: 0.55rem 1.1rem; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; white-space: nowrap; }
.CookieBanner-btn--solid { background: var(--color-accent); color: #fff; }
.CookieBanner-btn--solid:hover { background: var(--color-accent-light); }
.CookieBanner-btn--outline { border: 1px solid var(--color-muted-light); color: var(--color-text-light); }
.CookieBanner-btn--outline:hover { border-color: var(--color-text-light); }
.CookieBanner-btn--ghost { color: var(--color-muted-light); }
.CookieBanner-btn--ghost:hover { color: var(--color-text-light); }

.CookieModal {
  position: fixed; inset: 0; z-index: 1200; background: rgba(15,15,18,0.6);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease;
}
.CookieModal.is-visible { opacity: 1; visibility: visible; }
.CookieModal-panel {
  background: var(--color-paper); border-radius: var(--radius-lg); padding: 2.2rem;
  max-width: 520px; width: 100%; box-shadow: var(--shadow-lg); max-height: 85vh; overflow-y: auto;
}
.CookieModal-title { font-size: 1.4rem; margin-bottom: 0.5rem; }
.CookieModal-desc { color: var(--color-muted-dark); font-size: 0.92rem; }
.CookieModal-option {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-top: 1px solid var(--color-paper-line);
}
.CookieModal-option p { margin: 0.2rem 0 0 0; font-size: 0.85rem; color: var(--color-muted-dark); }
.CookieModal-option input { margin-top: 0.3rem; width: 20px; height: 20px; }
.CookieModal-actions { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: 1.5rem; }


.Btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.95rem 1.8rem; border-radius: var(--radius-pill); font-weight: 500; font-size: 0.95rem; transition: all 0.35s ease; min-height: 44px; }
.Btn--accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-md); }
.Btn--accent:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.Btn--ghost-dark { border: 1px solid rgba(245,241,232,0.35); color: var(--color-text-light); }
.Btn--ghost-dark:hover { border-color: var(--color-text-light); background: rgba(255,255,255,0.06); }
.Btn--ghost { border: 1px solid rgba(33,31,28,0.25); color: var(--color-text-dark); }
.Btn--ghost:hover { border-color: var(--color-text-dark); background: rgba(0,0,0,0.04); }


.PageHero { padding: 9rem 0 6rem 0; position: relative; }
.PageHero--dark { background: var(--color-ink); color: var(--color-text-light); }
.PageHero--inner { padding: 8rem 0 5rem 0; }
.PageHero--legal { padding-bottom: 3.5rem; }
.PageHero-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: center; }
.PageHero--inner .PageHero-inner { grid-template-columns: 1fr; }
.PageHero-eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--color-accent-light); font-weight: 500; margin-bottom: 1rem; }
.PageHero-heading { font-size: var(--fs-display); color: var(--color-text-light); margin-bottom: 1.3rem; }
.PageHero--inner .PageHero-heading { font-size: var(--fs-h1); }
.PageHero-sub { font-size: var(--fs-body-lg); color: var(--color-muted-light); max-width: 540px; margin-bottom: 1.8rem; }
.PageHero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.PageHero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.PageHero-sentinel { position: absolute; bottom: 0; height: 1px; width: 1px; }


.GradientFade { height: 130px; width: 100%; }
.GradientFade--inkToPaper { background: linear-gradient(to bottom, var(--color-ink), var(--color-paper)); }
.GradientFade--paperToInk { background: linear-gradient(to bottom, var(--color-paper), var(--color-ink)); }


.SectionLight { background: var(--color-paper); padding: var(--space-xl) 0; }
.SectionDark { background: var(--color-ink); color: var(--color-text-light); padding: var(--space-xl) 0; }
.SectionIntro { max-width: 760px; margin: 0 auto var(--space-lg) auto; text-align: center; }
.SectionIntro-tag { display: inline-block; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--color-accent); font-weight: 600; margin-bottom: 0.9rem; }
.SectionIntro-tag--dark { color: var(--color-accent-light); }
.SectionIntro-heading { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.SectionIntro-heading--dark { color: var(--color-text-light); }
.SectionIntro-body { font-size: var(--fs-body-lg); color: var(--color-muted-dark); }
.SectionIntro-body--dark { color: var(--color-muted-light); }

.Container-text .SectionIntro-tag, .Container-text .SectionIntro-heading, .Container-text .SectionIntro-body { text-align: left; margin-left: 0; }
.Container-text .SectionIntro-heading { margin-bottom: 1.2rem; }


.CardGrid { display: grid; gap: 1.6rem; }
.CardGrid--4 { grid-template-columns: repeat(4, 1fr); }
.ContentCard {
  background: #fff; border-radius: var(--radius-md); padding: 1.9rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-paper-line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ContentCard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ContentCard--dark { background: var(--color-ink-soft); border-color: var(--color-ink-line); }
.ContentCard-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--color-paper-soft);
  display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin-bottom: 1.1rem; font-size: 1.1rem;
}
.ContentCard--dark .ContentCard-icon { background: rgba(193,98,45,0.15); color: var(--color-accent-light); }
.ContentCard-title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.ContentCard--dark .ContentCard-title { color: var(--color-text-light); }
.ContentCard-body { font-size: 0.92rem; color: var(--color-muted-dark); margin: 0; }
.ContentCard--dark .ContentCard-body { color: var(--color-muted-light); }


.TickList { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.3rem; }
.TickList li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.95rem; color: var(--color-muted-light); }
.TickList li i { color: var(--color-accent-light); margin-top: 0.25rem; }


.MediaRow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: var(--space-lg); }
.MediaRow-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-dark-md); }
.MediaSingle { margin-top: var(--space-lg); }
.MediaSingle img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }


.SectionCta-inner { text-align: center; max-width: 700px; }
.SectionCta-heading { font-size: var(--fs-h2); margin-bottom: 1rem; }
.SectionCta-heading--dark { color: var(--color-text-light); }
.SectionCta-body { font-size: var(--fs-body-lg); color: var(--color-muted-dark); margin-bottom: 1.8rem; }
.SectionCta-body--dark { color: var(--color-muted-light); }


.SiteFooter { background: #0d0e12; color: var(--color-muted-light); padding: var(--space-xl) 0 var(--space-md) 0; }
.SiteFooter-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-lg); padding-bottom: var(--space-lg); }
.SiteFooter-brand p { font-size: 0.9rem; color: var(--color-muted-light); margin-top: 1rem; max-width: 280px; }
.SiteFooter-col h3 { color: var(--color-text-light); font-size: 1rem; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.SiteFooter-col a, .SiteFooter-col p { display: block; font-size: 0.9rem; margin-bottom: 0.7rem; color: var(--color-muted-light); transition: color 0.3s ease; }
.SiteFooter-col a:hover { color: var(--color-accent-light); }
.SiteFooter-col i { color: var(--color-accent); margin-right: 0.5rem; width: 16px; }
.SiteFooter-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--space-md); text-align: center; font-size: 0.82rem; color: var(--color-muted-light); }


.ContactForm { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.ContactForm-row { display: flex; flex-direction: column; gap: 0.5rem; }
.ContactForm-row label { font-size: 0.88rem; font-weight: 500; color: var(--color-text-dark); }
.ContactForm-row input, .ContactForm-row textarea {
  padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); border: 1px solid rgba(33,31,28,0.18);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ContactForm-row input:focus, .ContactForm-row textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(193,98,45,0.15); }
.ContactForm-checkbox { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; color: var(--color-muted-dark); }
.ContactForm-checkbox input { width: 20px; height: 20px; margin-top: 0.1rem; }
.ContactForm-checkbox a { color: var(--color-accent); text-decoration: underline; }

.ContactMap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 280px; margin-bottom: 1.5rem; }
.ContactInfo p { font-size: 0.95rem; margin-bottom: 0.8rem; }
.ContactInfo i { color: var(--color-accent); margin-right: 0.6rem; width: 18px; }


.NewsCard { background: var(--color-ink-soft); border-radius: var(--radius-md); padding: 1.7rem; border: 1px solid var(--color-ink-line); transition: transform 0.35s ease; }
.NewsCard:hover { transform: translateY(-5px); }
.NewsCard-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent-light); font-weight: 600; }
.NewsCard-title { font-size: 1.05rem; color: var(--color-text-light); margin: 0.6rem 0; }
.NewsCard-body { font-size: 0.88rem; color: var(--color-muted-light); margin: 0; }


.LegalPage { background: var(--color-paper); padding: var(--space-lg) 0 var(--space-xl) 0; }
.LegalPage-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-lg); align-items: start; }
.LegalPage-sidebar { position: sticky; top: 6.5rem; }
.LegalPage-toc { display: flex; flex-direction: column; gap: 0.2rem; border-left: 2px solid var(--color-paper-line); }
.LegalPage-toc a { padding: 0.55rem 1rem; font-size: 0.87rem; color: var(--color-muted-dark); border-left: 2px solid transparent; margin-left: -2px; transition: all 0.3s ease; }
.LegalPage-toc a:hover { color: var(--color-text-dark); }
.LegalPage-toc a.is-active { color: var(--color-accent); border-left-color: var(--color-accent); font-weight: 500; }
.LegalPage-tocMobile { display: none; margin-bottom: 2rem; background: #fff; border-radius: var(--radius-md); padding: 1rem 1.3rem; box-shadow: var(--shadow-sm); }
.LegalPage-tocMobile summary { font-weight: 600; cursor: pointer; }
.LegalPage-tocMobile nav { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.LegalPage-tocMobile nav a { font-size: 0.88rem; color: var(--color-muted-dark); padding: 0.3rem 0; }
.LegalPage-content section { margin-bottom: 2.6rem; scroll-margin-top: 6.5rem; }
.LegalPage-content h2 { font-size: 1.25rem; margin-bottom: 0.9rem; }
.LegalPage-content p { font-size: 0.95rem; color: var(--color-muted-dark); }


.ThanksTimeline { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.2rem; position: relative; padding-left: 1rem; }
.ThanksTimeline::before { content: ''; position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px; background: var(--color-paper-line); }
.ThanksTimeline-item { display: flex; gap: 1.3rem; position: relative; z-index: 1; }
.ThanksTimeline-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #fff; border: 2px solid var(--color-paper-line); color: var(--color-muted-dark); }
.ThanksTimeline-item.is-done .ThanksTimeline-icon { background: var(--color-accent-2); border-color: var(--color-accent-2); color: #fff; }
.ThanksTimeline-item.is-highlight .ThanksTimeline-icon { background: var(--color-accent); border-color: var(--color-accent); box-shadow: 0 0 0 6px rgba(193,98,45,0.15); }
.ThanksTimeline-item.is-pending .ThanksTimeline-icon { color: var(--color-muted-dark); }
.ThanksTimeline-text h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.ThanksTimeline-item.is-pending .ThanksTimeline-text { opacity: 0.6; }
.ThanksTimeline-text p { font-size: 0.9rem; color: var(--color-muted-dark); margin: 0; }


@media (max-width: 992px) {
  .SiteHeader-nav { display: none; }
  .Container--split, .PageHero-inner { grid-template-columns: 1fr; }
  .PageHero--inner .PageHero-inner { grid-template-columns: 1fr; }
  .Container--reverse { direction: ltr; }
  .PageHero-media { order: -1; }
  .CardGrid--4 { grid-template-columns: repeat(2, 1fr); }
  .MediaRow { grid-template-columns: 1fr; }
  .SiteFooter-grid { grid-template-columns: 1fr 1fr; }
  .LegalPage-layout { grid-template-columns: 1fr; }
  .LegalPage-sidebar { display: none; }
  .LegalPage-tocMobile { display: block; }
}
@media (max-width: 640px) {
  .PageHero { padding: 7.5rem 0 4rem 0; }
  .PageHero--inner { padding: 7rem 0 3.5rem 0; }
  .CardGrid--4 { grid-template-columns: 1fr; }
  .SiteFooter-grid { grid-template-columns: 1fr; }
  .CookieBanner-inner { flex-direction: column; align-items: flex-start; }
  .CookieBanner-actions { width: 100%; }
  .PageHero-cta { flex-direction: column; align-items: stretch; }
  .PageHero-cta .Btn { width: 100%; }
}