/* ===========================
   WABACE SEKUPE — MAIN STYLES
   Structured Bold Design System
   =========================== */


:root {
  --c-bg: #F7F5F0;
  --c-dark: #1A1714;
  --c-primary: #2D4A3E;
  --c-accent: #C8873A;
  --c-accent2: #8B5E3C;
  --c-light: #EDE9E1;
  --c-white: #FDFCFA;
  --c-text: #2C2825;
  --c-muted: #6B6158;
  --c-border: rgba(45,74,62,0.12);
  --grad: linear-gradient(135deg, #C8873A 0%, #8B5E3C 50%, #2D4A3E 100%);
  --grad2: linear-gradient(135deg, #2D4A3E 0%, #1A3830 100%);
  --grad-warm: linear-gradient(135deg, #C8873A 0%, #E8A85A 100%);
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sh-sm: 0 2px 8px rgba(26,23,20,0.08), 0 1px 3px rgba(26,23,20,0.05);
  --sh-md: 0 8px 32px rgba(26,23,20,0.12), 0 2px 8px rgba(26,23,20,0.06);
  --sh-lg: 0 20px 60px rgba(26,23,20,0.16), 0 4px 16px rgba(26,23,20,0.08);
  --sh-accent: 0 8px 32px rgba(200,135,58,0.25), 0 2px 8px rgba(200,135,58,0.12);
  --sh-primary: 0 8px 32px rgba(45,74,62,0.2), 0 2px 8px rgba(45,74,62,0.1);
  --nav-shadow: 0 0px 0px rgba(26,23,20,0);
  --trans: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }


h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  line-height: 1.2;
  color: var(--c-dark);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   NAVIGATION
   =========================== */

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--nav-shadow);
  transition: box-shadow 0.15s linear;
}

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.hdr-nav-left,
.hdr-nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.hdr-nav-right { justify-content: flex-end; }

.hdr-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr-logo img { height: 44px; width: auto; }

.hdr-link {
  text-decoration: none;
  color: var(--c-text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.hdr-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.hdr-link:hover { color: var(--c-primary); }
.hdr-link:hover::after,
.hdr-link[aria-current="page"]::after { width: 100%; }
.hdr-link[aria-current="page"] { color: var(--c-primary); }

.hdr-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  box-shadow: var(--sh-accent);
}
.hdr-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hdr-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--c-text);
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.hdr-burger:hover { background: var(--c-light); }

/* ===========================
   SECTIONS
   =========================== */

.sec { padding: clamp(3rem, 6vw, 6rem) 0; }
.sec-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-md); }

.sec-hd {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sec-tag {
  display: inline-block;
  background: var(--c-light);
  border: 1px solid rgba(200,135,58,0.25);
  color: var(--c-accent2);
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.sec-tag-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

.sec-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 1rem;
}
.sec-title-light { color: var(--c-white); }

.sec-intro {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.7;
}
.sec-intro-light { color: rgba(255,255,255,0.8); }

/* ===========================
   BUTTONS
   =========================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--sh-accent);
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,135,58,0.35), 0 4px 12px rgba(200,135,58,0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--c-primary);
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--c-primary);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ===========================
   HERO — HOMEPAGE
   =========================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem,5vw,5rem) var(--sp-md);
  gap: clamp(2rem,4vw,4rem);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-light);
  border: 1px solid rgba(200,135,58,0.3);
  color: var(--c-accent2);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-dark);
}

.hero-h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}


.hero-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.hero-img-main {
  grid-column: 1 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16/9;
  display: block;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-img-main:hover img { transform: scale(1.03); }

.hero-img-sm {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/3;
  display: block;
}
.hero-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-img-sm:hover img { transform: scale(1.04); }
.hero-img-sm:first-of-type { margin-top: -2rem; }
.hero-img-sm:last-child { margin-top: 1.5rem; }

/* ===========================
   INTRO BAND
   =========================== */

.sec-band {
  background: var(--grad2);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.sec-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sec-band-quote {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.5;
  border-left: 4px solid var(--c-accent);
  padding-left: 1.5rem;
}

.sec-band-detail {
  font-size: 0.95rem;
  color: rgba(253,252,250,0.75);
  line-height: 1.7;
}

/* ===========================
   VALUES SECTION
   =========================== */

.vals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--c-border);
}
.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.crd-val .crd-ico {
  width: 52px;
  height: 52px;
  background: var(--grad);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--sh-accent);
}

.crd-title {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}

.crd-txt {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   BENTO GRID
   =========================== */

.sec-bento { background: var(--c-light); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
}

.bento-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.bento-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--c-dark);
}

.bento-card p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
}

.bento-ico {
  width: 44px;
  height: 44px;
  background: var(--c-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.bento-lg { grid-column: span 2; }
.bento-wide { grid-column: span 2; padding: 0; position: relative; min-height: 220px; }

.bento-accent { background: var(--grad); color: #fff; border-color: transparent; }
.bento-accent h3 { color: #fff; }
.bento-accent p { color: rgba(255,255,255,0.85); }
.bento-accent .bento-ico { background: rgba(255,255,255,0.2); color: #fff; }

.bento-dark { background: var(--c-dark); border-color: transparent; }
.bento-dark h3 { color: var(--c-white); }
.bento-dark p { color: rgba(253,252,250,0.7); }
.bento-dark .bento-ico { background: rgba(255,255,255,0.1); color: var(--c-accent); }

.bento-accent2 { background: var(--c-primary); border-color: transparent; }
.bento-accent2 h3 { color: var(--c-white); }
.bento-accent2 p { color: rgba(253,252,250,0.75); }
.bento-accent2 .bento-ico { background: rgba(255,255,255,0.15); color: #fff; }

.bento-img-link {
  display: block;
  margin-top: 1.25rem;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/7;
}
.bento-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-img-link:hover img { transform: scale(1.04); }

.bento-img-full {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.bento-img-full img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-img-full:hover img { transform: scale(1.03); }

.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.bento-overlay h3 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
.bento-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }

/* ===========================
   JOURNEY SECTION
   =========================== */

.sec-journey { background: var(--c-dark); }

.sec-hd-light { color: var(--c-white); }

.journey-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.journey-num {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-top: 0.25rem;
}

.journey-body h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.6rem;
}

.journey-body p {
  font-size: 0.92rem;
  color: rgba(253,252,250,0.7);
  line-height: 1.7;
  margin: 0;
}

.journey-connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  margin-left: 39px;
}

/* ===========================
   VISUAL SECTION
   =========================== */

.sec-visual { background: var(--c-bg); }

.vis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.vis-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vis-text p {
  font-size: 0.97rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin: 0;
}

.vis-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.vis-img-main {
  grid-column: 1 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16/9;
  display: block;
}
.vis-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vis-img-main:hover img { transform: scale(1.03); }

.vis-img-side {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/3;
  display: block;
  margin-top: -2rem;
}
.vis-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vis-img-side:hover img { transform: scale(1.04); }

/* ===========================
   CTA SECTION
   =========================== */

.sec-cta { background: var(--c-light); }

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--grad2);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: var(--sh-primary);
  overflow: hidden;
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,135,58,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { display: flex; flex-direction: column; gap: 1.25rem; }

.cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.25;
}

.cta-content p {
  font-size: 0.97rem;
  color: rgba(253,252,250,0.8);
  line-height: 1.7;
  margin: 0;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.cta-img a { display: block; width: 100%; height: 100%; }
.cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cta-img:hover img { transform: scale(1.04); }

/* ===========================
   CTA SIMPLE
   =========================== */

.cta-simple {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 0;
}
.cta-simple .sec-title { margin-bottom: 1rem; }
.cta-simple p { color: var(--c-muted); margin-bottom: 2rem; }

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   PAGE HERO (INNER PAGES)
   =========================== */

.pg-hero {
  background: var(--c-light);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.pg-hero-green { background: var(--grad2); }
.pg-hero-warm { background: linear-gradient(135deg, #F7F0E6 0%, #EDE9E1 100%); }

.pg-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pg-hero-inner:has(.pg-hero-text:only-child) {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.pg-hero-text { display: flex; flex-direction: column; gap: 1rem; }

.pg-hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
}
.pg-hero-green .pg-hero-title { color: var(--c-white); }

.pg-hero-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.75;
}
.pg-hero-green .pg-hero-sub { color: rgba(253,252,250,0.8); }

.pg-hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.pg-hero-img a { display: block; width: 100%; height: 100%; }
.pg-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pg-hero-img:hover img { transform: scale(1.03); }

/* ===========================
   ARTICLE LAYOUT
   =========================== */

.sec-article { background: var(--c-white); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.article-main h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}
.article-main h2:first-child { margin-top: 0; }

.article-main h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.article-main p {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--c-accent);
  background: var(--c-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pull-quote blockquote {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.5;
  font-style: normal;
}

.article-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.5rem; }

.side-box {
  background: var(--c-light);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1px solid var(--c-border);
}
.side-box h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 1rem;
}
.side-box p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.65; margin: 0; }

.side-box-accent {
  background: var(--grad);
  border-color: transparent;
}
.side-box-accent h4 { color: #fff; }
.side-box-accent p { color: rgba(255,255,255,0.85); }

.side-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.side-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--c-text);
}
.side-list li i { color: var(--c-accent); font-size: 0.6rem; }

/* ===========================
   RESEARCH GRID
   =========================== */

.sec-dark { background: var(--c-dark); }

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.research-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.research-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.research-num {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.research-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.research-card p {
  font-size: 0.88rem;
  color: rgba(253,252,250,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   WEBINAR CARDS
   =========================== */

.web-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.web-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.web-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.web-card-featured {
  border: 2px solid var(--c-accent);
  box-shadow: var(--sh-accent);
}

.web-card-badge {
  background: var(--grad);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  text-align: center;
}

.web-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.web-card-ico {
  width: 48px;
  height: 48px;
  background: var(--c-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.2rem;
}

.web-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dark);
}

.web-card-lead {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

.web-card-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.web-card-topics li {
  font-size: 0.85rem;
  color: var(--c-text);
  padding-left: 1.2rem;
  position: relative;
}
.web-card-topics li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-size: 0.8rem;
}

.web-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-border);
}
.web-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--c-muted);
}
.web-card-meta i { color: var(--c-accent); }

.web-card-btn {
  margin: 0 1.75rem 1.75rem;
  text-align: center;
  justify-content: center;
}

/* ===========================
   GUIDE CARDS
   =========================== */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guide-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.guide-card-wide { grid-column: span 2; }

.guide-card-accent {
  background: var(--grad);
  border-color: transparent;
}
.guide-card-accent .guide-num { -webkit-text-fill-color: rgba(255,255,255,0.3); background: none; color: rgba(255,255,255,0.3); }
.guide-card-accent .guide-tag { background: rgba(255,255,255,0.2); color: #fff; }
.guide-card-accent h3 { color: #fff; }
.guide-card-accent p { color: rgba(255,255,255,0.85); }

.guide-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.guide-tag {
  display: inline-block;
  background: var(--c-light);
  color: var(--c-accent2);
  padding: 0.2rem 0.7rem;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.guide-body h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}

.guide-body p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.guide-body p:last-child { margin: 0; }

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.guide-step {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--c-text);
  padding: 0.6rem 0.75rem;
  background: var(--c-light);
  border-radius: var(--r-sm);
}
.guide-step span {
  font-weight: 600;
  color: var(--c-accent);
  min-width: 20px;
}

/* ===========================
   DEEP GRID
   =========================== */

.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deep-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background 0.25s ease;
}
.deep-card:hover { background: rgba(255,255,255,0.09); }

.deep-ico {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--c-accent);
  display: block;
}
.deep-ico-warn { color: #e07070; }
.deep-ico-accent { color: #7ab8a0; }

.deep-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.deep-card p {
  font-size: 0.88rem;
  color: rgba(253,252,250,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-hero {
  background: var(--c-light);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.contact-hero-text { max-width: 640px; }

.contact-sec { background: var(--c-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.contact-form-title {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 2rem;
}


.frm-accordion {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--sh-sm);
}

.frm-acc-hd {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.frm-acc-hd:hover { background: var(--c-light); }
.frm-acc-hd[aria-expanded="true"] { background: var(--c-light); }

.frm-acc-num {
  width: 32px;
  height: 32px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.frm-acc-label {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-dark);
}

.frm-acc-ico {
  color: var(--c-muted);
  transition: transform 0.25s ease;
  font-size: 0.85rem;
}
.frm-acc-hd[aria-expanded="true"] .frm-acc-ico { transform: rotate(180deg); }

.frm-acc-body {
  padding: 0 1.5rem 1.5rem;
  display: block;
}

.frm-acc-closed { display: none; }

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

.frm-grp {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.frm-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.frm-inp {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.frm-inp:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200,135,58,0.12);
}
.frm-inp::placeholder { color: var(--c-muted); opacity: 0.7; }

.frm-textarea { resize: vertical; min-height: 130px; }

.frm-check-grp { padding-top: 0.25rem; }

.frm-check-lbl {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.frm-check-lbl input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--c-accent);
}

.frm-check-txt {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.6;
}
.frm-check-txt a {
  color: var(--c-accent);
  text-decoration: underline;
}

.frm-submit { margin-top: 1.5rem; }
.frm-btn {
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}


.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-box {
  background: var(--c-light);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
}
.contact-info-box h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 1.5rem;
}

.contact-addr { font-style: normal; display: flex; flex-direction: column; gap: 1rem; }

.contact-addr-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-addr-item i {
  width: 36px;
  height: 36px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-addr-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-addr-item strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-addr-item span,
.contact-addr-item a {
  font-size: 0.95rem;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-addr-item a:hover { color: var(--c-accent); }

.contact-access {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}
.contact-access h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-access h3 i { color: var(--c-primary); }
.contact-access p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.access-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.access-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--c-text);
}
.access-list li i { color: var(--c-primary); font-size: 0.85rem; }


.sec-map { padding: 0 0 clamp(3rem, 5vw, 5rem); background: var(--c-white); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }

/* ===========================
   THANKS PAGE
   =========================== */

.thanks-hero {
  background: var(--grad);
  padding: clamp(4rem, 8vw, 8rem) var(--sp-md);
  text-align: center;
}

.thanks-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.thanks-ico {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.thanks-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0;
}

.thanks-next {
  background: var(--c-white);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.thanks-next-inner h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}

.thanks-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.thanks-card {
  background: var(--c-light);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.thanks-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.thanks-card i {
  font-size: 1.75rem;
  color: var(--c-accent);
}

.thanks-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-dark);
}

.thanks-card p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.65;
  flex: 1;
}

.thanks-home { text-align: center; }

/* ===========================
   LEGAL PAGES
   =========================== */

.legal-hero {
  background: var(--c-light);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.legal-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.88rem;
  color: var(--c-muted);
}

.legal-body { background: var(--c-white); padding: clamp(2.5rem, 5vw, 5rem) 0; }

.legal-doc { max-width: 800px; }

.legal-intro {
  background: var(--c-light);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.legal-intro p {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-intro p:last-child { margin: 0; }

.legal-preamble {
  font-size: 0.97rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.legal-group {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.legal-group:last-child { border-bottom: none; }

.legal-group h2 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 1rem;
}

.legal-group p {
  font-size: 0.93rem;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.legal-ul li {
  font-size: 0.93rem;
  color: var(--c-text);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.legal-ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-size: 1.2rem;
  line-height: 1.3;
}


.legal-clause {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.legal-clause:last-child { border-bottom: none; }

.legal-clause h2 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-clause-num {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.legal-clause p {
  font-size: 0.93rem;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}


.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--c-light);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--c-dark);
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: rgba(237,233,225,0.3); }
.cookie-table code {
  background: var(--c-light);
  padding: 0.15rem 0.4rem;
  border-radius: var(--r-xs);
  font-size: 0.82rem;
  font-family: monospace;
  color: var(--c-primary);
}

/* ===========================
   FOOTER
   =========================== */

.ftr {
  background: var(--c-dark);
  color: rgba(253,252,250,0.75);
  margin-top: auto;
}

.ftr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--sp-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.ftr-logo { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }

.ftr-desc {
  font-size: 0.88rem;
  color: rgba(253,252,250,0.6);
  line-height: 1.65;
  margin: 0;
}

.ftr-h {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ftr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ftr-list a {
  text-decoration: none;
  color: rgba(253,252,250,0.65);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.ftr-list a:hover { color: var(--c-accent); }

.ftr-addr {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ftr-addr p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(253,252,250,0.65);
  margin: 0;
}
.ftr-addr i { color: var(--c-accent); margin-top: 3px; flex-shrink: 0; }
.ftr-addr a {
  color: rgba(253,252,250,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.ftr-addr a:hover { color: var(--c-accent); }

.ftr-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ftr-bottom p {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.4);
  margin: 0;
}

/* ===========================
   MOBILE TAB BAR
   =========================== */

.mob-tab {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(26,23,20,0.12), 0 -1px 4px rgba(26,23,20,0.06);
  z-index: 200;
  padding: 0.5rem 0 max(0.5rem, env(safe-area-inset-bottom));
}

.mob-tab-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mob-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.75rem;
  text-decoration: none;
  color: var(--c-muted);
  font-size: 0.68rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: color 0.2s ease, background 0.2s ease;
  min-width: 56px;
  min-height: 44px;
  justify-content: center;
}
.mob-tab-item i { font-size: 1.1rem; }
.mob-tab-item.active {
  color: var(--c-accent);
  background: rgba(200,135,58,0.08);
}
.mob-tab-item:hover { color: var(--c-accent); }

/* ===========================
   COOKIE CONSENT
   =========================== */

#cookie-bar {
  position: relative;
  z-index: 150;
}

.ck-bar {
  background: var(--c-dark);
  border-bottom: 2px solid var(--c-accent);
  padding: 0.6rem var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  overflow: hidden;
}

.ck-bar.ck-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}

.ck-text {
  font-size: 0.82rem;
  color: rgba(253,252,250,0.8);
  flex: 1;
  min-width: 200px;
}
.ck-text a { color: var(--c-accent); text-decoration: underline; }

.ck-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

.ck-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.ck-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.ck-accept {
  background: var(--grad);
  color: #fff;
}

.ck-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(253,252,250,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-imgs { grid-template-columns: repeat(3, 1fr); }
  .hero-img-main { grid-column: 1 / 4; }
  .hero-img-sm:first-of-type { margin-top: 0; }
  .hero-img-sm:last-child { margin-top: 0; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-lg, .bento-wide { grid-column: span 2; }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .ftr-inner { grid-template-columns: 1fr 1fr; }
  .vis-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .pg-hero-inner { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card-wide { grid-column: span 2; }
  .deep-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-band-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .hdr-nav-left, .hdr-nav-right { display: none; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
  .hdr-logo { justify-content: flex-start; }
  .hdr-burger { display: flex; }

  .mob-tab { display: flex; justify-content: center; }

  body { padding-bottom: 80px; }

  .hero { padding: 2rem var(--sp-sm); }
  .hero-imgs { grid-template-columns: 1fr 1fr; }
  .hero-img-main { grid-column: 1 / 3; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-lg, .bento-wide { grid-column: span 1; }

  .journey-step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .journey-connector { margin-left: 29px; }

  .thanks-cards { grid-template-columns: 1fr; }
  .web-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card-wide { grid-column: span 1; }
  .deep-grid { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }

  .ftr-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

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

  .vis-imgs { grid-template-columns: 1fr; }
  .vis-img-side { margin-top: 0; grid-column: auto; }
}

@media (max-width: 480px) {
  .hdr-inner { padding: 0 1rem; }
  .sec-inner { padding: 0 1rem; }
  .sec { padding: 2.5rem 0; }

  .hero-h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .ftr-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-bottom { flex-direction: column; text-align: center; }

  .ck-bar { flex-direction: column; align-items: flex-start; }
  .ck-actions { width: 100%; }
  .ck-btn { flex: 1; }

  .cta-row { flex-direction: column; align-items: center; }

  .mob-tab-item span { display: none; }
  .mob-tab-item { min-width: 44px; }
}