/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --bg: #1a1612;
  --bg2: #211d18;
  --bg3: #2a2520;
  --bg4: #312c26;
  --srf: #3a342d;
  --brd: #4a4238;
  --brd2: #5a5248;
  --txt: #e8ddd0;
  --txt2: #b8a898;
  --txt3: #7a6e62;
  --acc: #d4a843;
  --acc2: #b8922e;
  --acc3: #f0c060;
  --wht: #f5efe8;
  --red: #c04840;
  --grn: #5a9a6a;

  --fnt-head: 'Plus Jakarta Sans', sans-serif;
  --fnt-body: 'Inter', sans-serif;
  --fnt-mono: 'Courier New', Courier, monospace;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  --sh-sm: 0 1px 3px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  --sh-md: 0 4px 12px rgba(0,0,0,.5), 0 2px 4px rgba(0,0,0,.3);
  --sh-lg: 0 10px 40px rgba(0,0,0,.6), 0 4px 12px rgba(0,0,0,.4);
  --sh-xl: 0 20px 60px rgba(0,0,0,.7), 0 8px 20px rgba(0,0,0,.4);
  --sh-acc: 0 4px 24px rgba(212,168,67,.2), 0 2px 8px rgba(212,168,67,.1);

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sp-xxl: 8rem;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--fnt-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
.thanks-body { display: flex; flex-direction: column; min-height: 100vh; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   TYPOGRAPHY
   =========================== */
.mono { font-family: var(--fnt-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

h1, h2, h3, h4 { font-family: var(--fnt-head); line-height: 1.15; }

/* ===========================
   UTILITY
   =========================== */
.sec { padding: var(--sp-xl) 0; }
.sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-md); }

.sec-hd { margin-bottom: var(--sp-lg); }
.sec-hd.off-left { padding-left: 0; }
.sec-hd.off-right { text-align: right; }
.sec-hd.centered { text-align: center; }

.sec-tag { color: var(--acc); display: block; margin-bottom: .75rem; }
.sec-title {
  font-family: var(--fnt-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--wht);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.sec-sub { color: var(--txt2); max-width: 560px; }
.sec-hd.off-right .sec-sub { margin-left: auto; }
.sec-hd.centered .sec-sub { margin: 0 auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn-prim {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--acc);
  color: var(--bg);
  font-family: var(--fnt-head);
  font-weight: 700;
  font-size: .875rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-sm);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
  min-height: 44px;
}
.btn-prim:hover { background: var(--acc3); transform: translateY(-1px); box-shadow: var(--sh-acc); }
.btn-prim:active { transform: translateY(0); }

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--acc);
  font-family: var(--fnt-head);
  font-weight: 600;
  font-size: .875rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--acc);
  transition: color .2s ease, border-color .2s ease;
  min-height: 44px;
}
.btn-sec:hover { color: var(--acc3); border-color: var(--acc3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--txt);
  font-family: var(--fnt-head);
  font-weight: 600;
  font-size: .875rem;
  padding: .7rem 1.4rem;
  border: 1px solid var(--brd2);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  min-height: 44px;
}
.btn-outline:hover { border-color: var(--acc); color: var(--acc); background: rgba(212,168,67,.07); }

/* ===========================
   HEADER
   =========================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: background .3s ease;
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.hdr-logo { flex-shrink: 0; }
.hdr-logo img { transition: opacity .2s ease; }
.hdr-logo:hover img { opacity: .8; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  margin-left: auto;
}

.nav-lnk {
  font-family: var(--fnt-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--txt2);
  padding: .5rem .75rem;
  border-radius: var(--r-sm);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-lnk:hover { color: var(--wht); background: rgba(255,255,255,.05); }
.nav-lnk.active { color: var(--acc); }

.hdr-cta { margin-left: .5rem; font-size: .8rem; padding: .6rem 1.25rem; }

.hdr-border {
  height: 1px;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}
.hdr.scrolled .hdr-border { transform: scaleX(1); }

.mob-tog {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.mob-tog span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.mob-tog.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-tog.open span:nth-child(2) { opacity: 0; }
.mob-tog.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   MOBILE MENU (diagonal clip-path wipe)
   =========================== */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--bg2);
  z-index: 99;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path .45s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
}
.mob-menu.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 5rem var(--sp-md) var(--sp-md);
  gap: .5rem;
  opacity: 0;
  transition: opacity .3s ease .3s;
}
.mob-menu.open .mob-menu-inner { opacity: 1; }

.mob-lnk {
  font-family: var(--fnt-head);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--txt2);
  padding: .5rem 0;
  display: block;
  transition: color .2s ease;
  min-height: 44px;
  line-height: 1.2;
}
.mob-lnk:hover { color: var(--acc); }

.mob-cta { margin-top: 1.5rem; font-size: 1rem; padding: .875rem 2rem; }

/* ===========================
   HERO
   =========================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero {
  padding: var(--sp-xl) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--brd);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.hero-tag { color: var(--acc); display: block; margin-bottom: 1.25rem; }

.hero-h1 {
  font-family: var(--fnt-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  animation: heroFadeUp .8s ease forwards;
}

.clip-txt {
  background: linear-gradient(135deg, var(--acc3) 0%, var(--acc) 40%, #c87020 80%, var(--acc) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  color: var(--txt2);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2rem;
  animation: heroFadeUp .8s ease .2s both;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  animation: heroFadeUp .8s ease .4s both;
}

.ben-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}

.ben-ico {
  width: 36px;
  height: 36px;
  background: rgba(212,168,67,.12);
  border: 1px solid rgba(212,168,67,.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  flex-shrink: 0;
  font-size: .875rem;
  margin-top: .1rem;
}

.ben-txt { color: var(--txt2); font-size: .9rem; line-height: 1.5; }

.hero-right { animation: heroFadeIn .8s ease .3s both; }

.hero-grid-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brd) 20%, var(--brd) 80%, transparent);
  pointer-events: none;
  opacity: .4;
}

/* ===========================
   FORM CARD
   =========================== */
.frm-crd {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-lg);
}

.frm-crd-head { margin-bottom: 1.5rem; }
.frm-tag { color: var(--acc); display: block; margin-bottom: .5rem; }
.frm-h2 { font-family: var(--fnt-head); font-size: 1.4rem; font-weight: 700; color: var(--wht); }

.frm-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }

.frm-grp { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .75rem; }
.frm-row .frm-grp { margin-bottom: 0; }

.frm-lbl { font-size: .8rem; font-weight: 600; color: var(--txt2); }

.frm-inp {
  background: var(--bg3);
  border: 1px solid var(--brd);
  border-radius: var(--r-sm);
  color: var(--txt);
  font-family: var(--fnt-body);
  font-size: .9rem;
  padding: .65rem .875rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  width: 100%;
}
.frm-inp:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(212,168,67,.15); }
.frm-inp::placeholder { color: var(--txt3); }
.frm-ta { resize: vertical; min-height: 80px; }

.frm-check-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.frm-chk-lbl {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: var(--txt2);
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.frm-chk {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--acc);
  margin-top: .15rem;
  cursor: pointer;
}

.frm-lnk { color: var(--acc); transition: color .2s; }
.frm-lnk:hover { color: var(--acc3); }
.frm-btn { flex-shrink: 0; }

/* ===========================
   STRIP
   =========================== */
.strip {
  background: var(--bg3);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
  padding: var(--sp-md) 0;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-md);
  align-items: center;
}
.strip-label { color: var(--acc); }
.strip-txt { color: var(--txt2); font-size: 1rem; line-height: 1.7; }

/* ===========================
   PROGRAM GRID
   =========================== */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prog-crd {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r-md);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--sh-md);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.prog-crd:hover { border-color: var(--acc); transform: translateY(-3px); box-shadow: var(--sh-lg); }

.prog-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212,168,67,.15);
  display: block;
  margin-bottom: .5rem;
  line-height: 1;
}
.crd-ttl { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); margin-bottom: .5rem; }
.crd-txt { font-size: .875rem; color: var(--txt2); line-height: 1.6; }


[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ===========================
   IMAGE BREAK
   =========================== */
.img-break { padding: 0; overflow: hidden; }
.img-break-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.img-break-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.img-break-photo img { width: 100%; height: 420px; object-fit: cover; }
.img-break-txt .sec-title { margin-bottom: 1rem; }
.img-break-txt p { color: var(--txt2); margin-bottom: 1rem; }
.img-break-txt a { margin-top: .5rem; }

/* ===========================
   COMPARISON
   =========================== */
.cmp { background: var(--bg2); border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); }

.cmp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--brd);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.cmp-col { padding: var(--sp-md); }
.cmp-a { background: var(--bg3); border-right: 1px solid var(--brd); }
.cmp-b { background: var(--bg2); position: relative; }
.cmp-b::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acc);
}

.cmp-col-hd {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--brd);
}
.cmp-col-hd h3 { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); }
.cmp-ico { color: var(--acc); font-size: 1.25rem; }

.cmp-list { display: flex; flex-direction: column; gap: .625rem; }
.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--txt2);
  line-height: 1.5;
}
.cmp-list li i { font-size: .875rem; margin-top: .15rem; flex-shrink: 0; }
.fa-circle-check { color: var(--grn); }
.cmp-x { color: var(--red); }

/* ===========================
   GALLERY
   =========================== */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 1.5rem;
}
.gal-item { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-md); }
.gal-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; }
.gal-item:hover img { transform: scale(1.04); }
.gal-big { grid-row: span 2; }
.gal-big img { height: 100%; min-height: 460px; }
.gal-wide { grid-column: span 2; }
.gal-wide img { height: 220px; }

/* ===========================
   CERTIFICATIONS
   =========================== */
.cert { background: var(--bg3); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cert-crd {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--sh-md);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cert-crd:hover { border-color: var(--acc); transform: translateY(-3px); box-shadow: var(--sh-lg); }
.crd-ico { font-size: 1.75rem; color: var(--acc); margin-bottom: .875rem; display: block; }

/* ===========================
   FEATURE
   =========================== */
.feat { background: var(--bg); }
.feat-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.feat-txt .sec-title { margin-bottom: 1rem; }
.feat-txt p { color: var(--txt2); margin-bottom: 1rem; }
.feat-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.feat-photo img { width: 100%; height: 400px; object-fit: cover; }

/* ===========================
   INFO GRID
   =========================== */
.info { background: var(--bg2); border-top: 1px solid var(--brd); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-item {
  padding: 1.5rem;
  border-left: 2px solid var(--brd);
  transition: border-color .2s ease;
}
.info-item:hover { border-color: var(--acc); }
.info-ico { font-size: 1.25rem; color: var(--acc); margin-bottom: .75rem; }
.info-item h4 { font-family: var(--fnt-head); font-size: .95rem; font-weight: 700; color: var(--wht); margin-bottom: .5rem; }
.info-item p { font-size: .875rem; color: var(--txt2); line-height: 1.6; }

/* ===========================
   CTA STRIP
   =========================== */
.cta-strip {
  background: var(--bg3);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
  padding: var(--sp-lg) 0;
}
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.cta-strip-txt h2 { font-family: var(--fnt-head); font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; color: var(--wht); margin-bottom: .5rem; }
.cta-strip-txt p { color: var(--txt2); }
.cta-strip-btns { display: flex; gap: .875rem; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.ftr {
  background: var(--bg2);
  border-top: 1px solid var(--brd);
  padding: var(--sp-lg) 0 var(--sp-md);
  margin-top: auto;
}
.ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.ftr-logo img { opacity: .8; transition: opacity .2s; }
.ftr-logo:hover img { opacity: 1; }
.ftr-tag { color: var(--txt3); font-size: .75rem; }
.ftr-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem .75rem; }
.ftr-nav a { font-size: .875rem; color: var(--txt2); padding: .25rem .5rem; transition: color .2s; border-radius: var(--r-sm); min-height: 44px; display: flex; align-items: center; }
.ftr-nav a:hover { color: var(--acc); }
.ftr-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
.ftr-contact a, .ftr-contact span { font-size: .875rem; color: var(--txt2); display: flex; align-items: center; gap: .4rem; transition: color .2s; min-height: 44px; }
.ftr-contact a:hover { color: var(--acc); }
.ftr-contact i { color: var(--acc); font-size: .8rem; }
.ftr-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem .75rem; padding-top: .5rem; border-top: 1px solid var(--brd); width: 100%; }
.ftr-legal a { font-size: .8rem; color: var(--txt3); transition: color .2s; padding: .25rem .5rem; min-height: 44px; display: flex; align-items: center; }
.ftr-legal a:hover { color: var(--txt2); }
.ftr-copy { font-size: .78rem; color: var(--txt3); }

/* ===========================
   PAGE HERO
   =========================== */
.pg-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--brd);
  padding: var(--sp-xl) 0 var(--sp-lg);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
}
.pg-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
.pg-h1 {
  font-family: var(--fnt-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--wht);
  margin-bottom: .75rem;
}
.pg-sub { color: var(--txt2); font-size: 1.05rem; max-width: 560px; }
.pg-hero-sm { padding: var(--sp-lg) 0 var(--sp-md); }
.pg-hero-sm .pg-sub { color: var(--txt3); font-size: .875rem; }

/* ===========================
   STORY
   =========================== */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
.story-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.story-photo img { width: 100%; height: 480px; object-fit: cover; }
.story-txt .sec-title { margin-bottom: 1rem; }
.story-txt p { color: var(--txt2); margin-bottom: 1rem; }

/* ===========================
   VALUES
   =========================== */
.vals { background: var(--bg3); border-top: 1px solid var(--brd); }
.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.val-item {
  padding: 1.5rem;
  border-top: 2px solid var(--brd);
  transition: border-color .2s;
}
.val-item:hover { border-color: var(--acc); }
.val-num { font-size: 1.5rem; color: var(--acc); display: block; margin-bottom: .75rem; }
.val-item h3 { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); margin-bottom: .5rem; }
.val-item p { font-size: .875rem; color: var(--txt2); line-height: 1.6; }

/* ===========================
   SPACE
   =========================== */
.space-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.space-photo-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.space-photo-main img { width: 100%; height: 420px; object-fit: cover; }
.space-txt .sec-title { margin-bottom: 1rem; }
.space-txt p { color: var(--txt2); margin-bottom: 1rem; }

/* ===========================
   TIMELINE
   =========================== */
.tl { background: var(--bg2); border-top: 1px solid var(--brd); }
.tl-list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--brd);
  align-items: start;
}
.tl-item:last-child { border-bottom: none; }
.tl-yr { font-size: 1.1rem; color: var(--acc); display: block; padding-top: .2rem; }
.tl-body h4 { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); margin-bottom: .4rem; }
.tl-body p { font-size: .875rem; color: var(--txt2); }

/* ===========================
   MODULES
   =========================== */
.mod-list { display: flex; flex-direction: column; gap: 0; }
.mod-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--brd);
  align-items: start;
}
.mod-item:last-child { border-bottom: none; }
.mod-num-col { display: flex; flex-direction: column; align-items: center; padding-top: .5rem; }
.mod-num { font-size: 2rem; color: var(--acc); font-weight: 700; line-height: 1; }
.mod-line { width: 1px; flex: 1; background: var(--brd); margin-top: .75rem; min-height: 40px; }
.mod-hd { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.mod-ttl { font-family: var(--fnt-head); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; color: var(--wht); }
.mod-dur { color: var(--acc); }
.mod-body p { color: var(--txt2); margin-bottom: .875rem; }
.mod-topics { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.topic-tag {
  font-size: .75rem;
  font-family: var(--fnt-mono);
  color: var(--acc);
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.25);
  padding: .25rem .625rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===========================
   TOOLS
   =========================== */
.tools { background: var(--bg3); border-top: 1px solid var(--brd); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.tool-crd {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--sh-md);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.tool-crd:hover { border-color: var(--acc); transform: translateY(-3px); box-shadow: var(--sh-lg); }

/* ===========================
   DOWNLOADS
   =========================== */
.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.dl-item {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  box-shadow: var(--sh-md);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  align-items: start;
}
.dl-item:hover { border-color: var(--acc); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.dl-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-ico { font-size: 1.25rem; color: var(--acc); }
.dl-cat { color: var(--acc); margin-bottom: .35rem; }
.dl-ttl { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); margin-bottom: .5rem; }
.dl-desc { font-size: .875rem; color: var(--txt2); margin-bottom: .875rem; line-height: 1.6; }
.dl-meta { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.dl-meta span { color: var(--txt3); }
.dl-btn { font-size: .8rem; padding: .5rem 1rem; }

.dl-note { background: var(--bg3); border-top: 1px solid var(--brd); }
.dl-note-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-left: 3px solid var(--acc);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
}
.dl-note-ico { font-size: 1.25rem; color: var(--acc); margin-top: .15rem; flex-shrink: 0; }
.dl-note-box h3 { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); margin-bottom: .5rem; }
.dl-note-box p { font-size: .875rem; color: var(--txt2); line-height: 1.6; }

/* ===========================
   CONTACT PAGE
   =========================== */
.cnt-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
  margin-bottom: var(--sp-lg);
}
.cnt-h2 { font-family: var(--fnt-head); font-size: 1.25rem; font-weight: 700; color: var(--wht); margin-bottom: 1.25rem; }
.cnt-frm { margin-bottom: 0; }

.response-note {
  margin-top: 1.5rem;
  background: var(--bg3);
  border: 1px solid var(--brd);
  border-left: 3px solid var(--acc);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}
.response-note h3 { font-family: var(--fnt-head); font-size: .95rem; font-weight: 700; color: var(--wht); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.response-note h3 i { color: var(--acc); }
.response-note p { font-size: .875rem; color: var(--txt2); margin-bottom: .625rem; line-height: 1.6; }
.response-note p:last-child { margin-bottom: 0; }
.response-note a { color: var(--acc); transition: color .2s; }
.response-note a:hover { color: var(--acc3); }

.cnt-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.cnt-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.cnt-ico { font-size: 1rem; color: var(--acc); margin-top: .2rem; flex-shrink: 0; width: 20px; }
.cnt-info-item strong { display: block; font-size: .875rem; font-weight: 600; color: var(--wht); margin-bottom: .25rem; }
.cnt-info-item p { font-size: .875rem; color: var(--txt2); }
.cnt-info-item a { color: var(--txt2); transition: color .2s; }
.cnt-info-item a:hover { color: var(--acc); }

.cnt-map-ttl { font-family: var(--fnt-head); font-size: 1.1rem; font-weight: 700; color: var(--wht); margin-bottom: 1rem; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--brd); }

/* ===========================
   THANKS PAGE
   =========================== */
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl) var(--sp-md);
  min-height: 60vh;
}
.thanks-center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2rem; }

@keyframes dotScale {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes thanksFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes thanksLnk {
  from { opacity: 0; }
  to { opacity: 1; }
}

.thanks-dot {
  width: 60px;
  height: 60px;
  background: var(--acc);
  border-radius: 50%;
  animation: dotScale .7s cubic-bezier(.34,1.56,.64,1) .2s both;
  box-shadow: 0 0 40px rgba(212,168,67,.4);
}
.thanks-h1 {
  font-family: var(--fnt-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--wht);
  animation: thanksFade .6s ease 1s both;
}
.thanks-lnk {
  color: var(--acc);
  font-family: var(--fnt-head);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: thanksLnk .5s ease 1.8s both;
  transition: color .2s ease;
}
.thanks-lnk:hover { color: var(--acc3); }

/* ===========================
   LEGAL PAGES
   =========================== */
.legal { background: var(--bg); }
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
}
.legal-inner h2 {
  font-family: var(--fnt-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wht);
  margin: 2.5rem 0 .875rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--brd);
}
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner h3 { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); margin: 1.5rem 0 .625rem; }
.legal-inner p { color: var(--txt2); margin-bottom: .875rem; font-size: .925rem; line-height: 1.75; }
.legal-inner ul { color: var(--txt2); font-size: .925rem; line-height: 1.75; margin-bottom: .875rem; padding-left: 1.25rem; }
.legal-inner ul li { list-style: disc; margin-bottom: .35rem; }
.legal-inner a { color: var(--acc); transition: color .2s; }
.legal-inner a:hover { color: var(--acc3); }

.legal-dl dt { font-family: var(--fnt-head); font-size: .95rem; font-weight: 700; color: var(--wht); margin-top: 1rem; }
.legal-dl dd { color: var(--txt2); font-size: .9rem; margin-left: 1.25rem; margin-bottom: .25rem; }

.legal-tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .875rem;
}
.legal-tbl th {
  background: var(--bg3);
  color: var(--wht);
  font-family: var(--fnt-head);
  font-size: .8rem;
  font-weight: 600;
  text-align: left;
  padding: .75rem 1rem;
  border: 1px solid var(--brd);
}
.legal-tbl td {
  color: var(--txt2);
  padding: .65rem 1rem;
  border: 1px solid var(--brd);
  vertical-align: top;
  line-height: 1.6;
}
.legal-tbl tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.legal-tbl code { font-family: var(--fnt-mono); font-size: .8rem; color: var(--acc); background: rgba(212,168,67,.08); padding: .1rem .3rem; border-radius: 2px; }

/* ===========================
   COOKIE CONSENT
   =========================== */
.ck-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 2rem);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.34,1.2,.64,1), opacity .4s ease;
}
.ck-wrap.visible { transform: translateY(0); opacity: 1; }
.ck-wrap.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

.ck-card {
  background: var(--bg2);
  border: 1px solid var(--brd2);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(212,168,67,.1);
  overflow: hidden;
}

.ck-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.ck-icon { font-size: 1.5rem; }
.ck-title { font-family: var(--fnt-head); font-size: 1rem; font-weight: 700; color: var(--wht); }

.ck-msg { font-size: .825rem; color: var(--txt2); line-height: 1.6; margin-bottom: 1.25rem; }
.ck-msg a { color: var(--acc); transition: color .2s; }
.ck-msg a:hover { color: var(--acc3); }

.ck-btns { display: flex; flex-direction: column; gap: .625rem; }

.ck-btn-accept {
  background: var(--acc);
  color: var(--bg);
  font-family: var(--fnt-head);
  font-weight: 700;
  font-size: .85rem;
  padding: .7rem 1rem;
  border-radius: var(--r-sm);
  text-align: center;
  transition: background .2s, transform .15s;
  min-height: 44px;
  cursor: pointer;
  border: none;
  width: 100%;
}
.ck-btn-accept:hover { background: var(--acc3); transform: translateY(-1px); }

.ck-btn-necessary {
  background: transparent;
  color: var(--txt2);
  font-family: var(--fnt-head);
  font-weight: 600;
  font-size: .85rem;
  padding: .65rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--brd2);
  text-align: center;
  transition: color .2s, border-color .2s, background .2s;
  min-height: 44px;
  cursor: pointer;
  width: 100%;
}
.ck-btn-necessary:hover { border-color: var(--acc); color: var(--acc); background: rgba(212,168,67,.05); }

.ck-btn-customize {
  background: transparent;
  color: var(--txt3);
  font-size: .8rem;
  padding: .5rem;
  text-align: center;
  transition: color .2s;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--fnt-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 44px;
}
.ck-btn-customize:hover { color: var(--txt); }
.ck-btn-customize i { transition: transform .3s; }
.ck-btn-customize.expanded i { transform: rotate(180deg); }

.ck-toggles {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.ck-toggles.open { max-height: 400px; }

.ck-toggle-list { padding-top: .875rem; display: flex; flex-direction: column; gap: .625rem; }
.ck-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .625rem .875rem;
  background: var(--bg3);
  border-radius: var(--r-sm);
  border: 1px solid var(--brd);
}
.ck-toggle-label { font-size: .82rem; color: var(--txt2); font-weight: 500; }
.ck-toggle-label span { display: block; font-size: .73rem; color: var(--txt3); font-weight: 400; margin-top: .1rem; }

.ck-sw { position: relative; width: 36px; height: 20px; flex-shrink: 0; }
.ck-sw input { opacity: 0; width: 0; height: 0; position: absolute; }
.ck-sw-track {
  position: absolute;
  inset: 0;
  background: var(--brd2);
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
}
.ck-sw input:checked + .ck-sw-track { background: var(--acc); }
.ck-sw-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: var(--wht);
  border-radius: 50%;
  transition: left .2s;
}
.ck-sw input:checked + .ck-sw-track::after { left: 19px; }
.ck-sw input:disabled + .ck-sw-track { opacity: .5; cursor: not-allowed; }

.ck-save-btn {
  width: 100%;
  margin-top: .75rem;
  background: var(--acc);
  color: var(--bg);
  font-family: var(--fnt-head);
  font-weight: 700;
  font-size: .85rem;
  padding: .65rem 1rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s;
  min-height: 44px;
}
.ck-save-btn:hover { background: var(--acc3); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hdr-nav, .hdr-cta { display: none; }
  .mob-tog { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-grid-line { display: none; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .frm-row { grid-template-columns: 1fr; }

  .strip-inner { grid-template-columns: 1fr; gap: .75rem; }

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

  .img-break-inner { grid-template-columns: 1fr; }
  .img-break-photo img { height: 280px; }

  .cmp-wrap { grid-template-columns: 1fr; }
  .cmp-a { border-right: none; border-bottom: 1px solid var(--brd); }

  .gal-grid { grid-template-columns: 1fr 1fr; }
  .gal-big { grid-row: auto; }
  .gal-big img { min-height: 220px; height: 220px; }
  .gal-wide { grid-column: span 2; }

  .cert-grid { grid-template-columns: 1fr 1fr; }
  .feat-inner { grid-template-columns: 1fr; }
  .feat-photo { order: -1; }
  .feat-photo img { height: 280px; }

  .vals-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .story-photo img { height: 280px; }

  .space-grid { grid-template-columns: 1fr; }
  .space-photo-main img { height: 280px; }

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

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .mod-item { grid-template-columns: 50px 1fr; gap: 1rem; }

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

  .dl-grid { grid-template-columns: 1fr; }
  .dl-item { grid-template-columns: 1fr; }

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

  .tl-item { grid-template-columns: 60px 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  :root { --sp-md: 1.25rem; --sp-lg: 3rem; --sp-xl: 4rem; }

  .cert-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-wide { grid-column: span 1; }
  .gal-big img { min-height: 240px; height: 240px; }

  .frm-check-row { flex-direction: column; }
  .frm-btn { width: 100%; justify-content: center; }

  .cta-strip-btns { flex-direction: column; width: 100%; }
  .cta-strip-btns .btn-prim, .cta-strip-btns .btn-outline { justify-content: center; }

  .mod-hd { flex-direction: column; gap: .25rem; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-yr { display: inline; }
}