/* ============================================
   JTTop — Main Stylesheet
   Bento Grid Design System
   ============================================ */


:root {
  --c-bg: #f7f5f2;
  --c-bg-alt: #eeebe6;
  --c-bg-dark: #1a1814;
  --c-bg-card: #ffffff;
  --c-surface: #f0ede8;
  --c-ink: #1a1814;
  --c-ink-soft: #4a4540;
  --c-ink-mute: #8a8078;
  --c-accent: #b87333;
  --c-accent-light: #d4956a;
  --c-accent-pale: #f5ede4;
  --c-gold: #c9a84c;
  --c-white: #fefcfa;
  --c-border: #e0d9d0;

  --shadow-sm: 0 1px 3px rgba(26,24,20,0.06), 0 1px 2px rgba(26,24,20,0.04);
  --shadow-md: 0 4px 12px rgba(26,24,20,0.08), 0 2px 6px rgba(26,24,20,0.05);
  --shadow-lg: 0 12px 32px rgba(26,24,20,0.10), 0 4px 12px rgba(26,24,20,0.06);
  --shadow-xl: 0 24px 64px rgba(26,24,20,0.12), 0 8px 24px rgba(26,24,20,0.08);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --gap: 16px;
  --container: 1180px;

  --t-fast: 200ms ease-out;
  --t-mid: 320ms ease-out;
  --t-slow: 480ms ease-out;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  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; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }


h1, h2, h3, h4, h5 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; color: var(--c-ink-soft); }
p:last-child { margin-bottom: 0; }


.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sec {
  padding: clamp(60px, 8vw, 120px) 0;
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-pale);
  border: 1px solid rgba(184,115,51,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.sec-title {
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--c-ink-mute);
  max-width: 600px;
  margin-bottom: 48px;
}


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247,245,242,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding var(--t-mid), background var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}

.hdr-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding var(--t-mid);
}

.hdr.scrolled {
  background: rgba(247,245,242,0.96);
  border-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.hdr.scrolled .hdr-inner {
  padding: 12px 24px;
}

.hdr-logo {
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.hdr-logo:hover { transform: scale(1.03); }

.hdr-logo-img {
  height: 36px;
  width: auto;
  transition: height var(--t-mid);
}

.hdr.scrolled .hdr-logo-img { height: 28px; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.hdr-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.hdr-link:hover,
.hdr-link.active {
  color: var(--c-ink);
  background: var(--c-surface);
}

.hdr-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.hdr-cta:hover {
  background: var(--c-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,115,51,0.35);
}

.hdr-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fff7f;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.hdr-burger:hover { background: var(--c-surface); }

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast);
}

.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdr-mobile {
  display: none;
  flex-direction: column;
  padding: 0 24px 16px;
  border-top: 1px solid var(--c-border);
  background: rgba(247,245,242,0.98);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow), padding var(--t-mid);
}

.hdr-mobile.open {
  max-height: 500px;
  padding: 16px 24px;
}

.hdr-mob-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast);
}

.hdr-mob-link:last-of-type { border-bottom: none; }
.hdr-mob-link:hover,
.hdr-mob-link.active { color: var(--c-accent); }

.hdr-mob-cta {
  display: block;
  margin-top: 12px;
  background: var(--c-accent);
  color: var(--c-white);
  text-align: center;
  font-weight: 500;
  padding: 12px;
  border-radius: 100px;
  transition: background var(--t-fast);
}

.hdr-mob-cta:hover { background: var(--c-accent-light); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-accent);
  color: var(--c-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-primary:hover {
  background: var(--c-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,115,51,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--c-accent);
  transition: background var(--t-fast), color var(--t-fast);
}

.btn-outline:hover {
  background: var(--c-accent);
  color: var(--c-white);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,24,20,0.78) 0%,
    rgba(26,24,20,0.55) 50%,
    rgba(184,115,51,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-light);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  color: #fefcfa;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-typed-wrap {
  display: block;
  color: var(--c-accent-light);
  min-height: 1.2em;
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  animation: scroll-bounce 2.5s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.bento-intro {
  background: var(--c-bg);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--gap);
  margin-top: 48px;
}

.crd {
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.crd-img {
  min-height: 280px;
}

.crd-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.crd:hover .crd-bg-img { transform: scale(1.04); }

.crd-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.85) 0%, rgba(26,24,20,0.2) 60%, transparent 100%);
}

.crd-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.crd-tag {
  display: inline-block;
  background: rgba(184,115,51,0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}

.crd-xl .crd-title { color: #fefcfa; font-size: 1.4rem; margin-bottom: 8px; }
.crd-xl .crd-txt { color: rgba(255,255,255,0.78); font-size: 0.9rem; }

.crd-accent {
  background: var(--c-accent);
  box-shadow: var(--shadow-md);
}

.crd-accent .crd-ico { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 1.5rem; }
.crd-accent .crd-title { color: #fefcfa; margin-bottom: 10px; }
.crd-accent .crd-txt { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

.crd-light {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.crd-light .crd-ico { color: var(--c-accent); margin-bottom: 16px; font-size: 1.5rem; }
.crd-light .crd-title { margin-bottom: 10px; }
.crd-light .crd-txt { font-size: 0.9rem; margin: 0; }

.crd-dark {
  background: var(--c-bg-dark);
  box-shadow: var(--shadow-md);
}

.crd-dark-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.crd-dark .crd-ico { color: var(--c-accent-light); font-size: 1.8rem; flex-shrink: 0; margin-top: 4px; }
.crd-dark .crd-title { color: #fefcfa; margin-bottom: 10px; }
.crd-dark .crd-txt { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }

.crd-feature {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.crd-feature .crd-ico { color: var(--c-accent); margin-bottom: 16px; font-size: 1.5rem; }
.crd-feature .crd-title { margin-bottom: 10px; }
.crd-feature .crd-txt { font-size: 0.9rem; margin: 0; }

.crd-img-sm { min-height: 200px; }
.crd-img-sm .crd-txt-sm { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; margin: 0; }


.crd:has(.crd-bg-img) .crd-body { padding: 0; }
.crd:has(.crd-dark-inner) { padding: 32px; }


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

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.srv-crd {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}

.srv-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.srv-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-ink-mute);
  margin-bottom: 16px;
}

.srv-ico {
  font-size: 1.4rem;
  color: var(--c-accent);
  margin-bottom: 14px;
  transition: transform var(--t-fast);
}

.srv-crd:hover .srv-ico { transform: scale(1.15); }

.srv-crd h3 { margin-bottom: 12px; font-size: 1.1rem; }
.srv-crd p { font-size: 0.9rem; margin: 0; line-height: 1.6; }


.srv-crd:has(.srv-ico) { border-top: 2px solid transparent; }
.srv-crd:has(.srv-ico):hover { border-top-color: var(--c-accent); }


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

.sec-journey .sec-label {
  color: var(--c-accent-light);
  background: rgba(184,115,51,0.15);
  border-color: rgba(184,115,51,0.3);
}

.sec-journey .sec-title { color: #fefcfa; }
.sec-journey .sec-sub { color: rgba(255,255,255,0.6); }

.journey-track {
  position: relative;
  padding-top: 20px;
}

.journey-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
}

.journey-step {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}

.journey-step:last-child { margin-bottom: 0; }

.jst-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-white);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(184,115,51,0.2);
  transition: box-shadow var(--t-fast);
}

.journey-step:hover .jst-num {
  box-shadow: 0 0 0 8px rgba(184,115,51,0.2);
}

.jst-body {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  flex: 1;
  transition: background var(--t-mid), border-color var(--t-mid);
}

.journey-step:hover .jst-body {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,115,51,0.3);
}

.jst-ico {
  font-size: 1.3rem;
  color: var(--c-accent-light);
  margin-bottom: 12px;
}

.jst-body h3 { color: #fefcfa; margin-bottom: 10px; font-size: 1.15rem; }
.jst-body p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; line-height: 1.65; }


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

.bento-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap);
  margin-top: 0;
}

.crd2 {
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.crd2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.crd2-wide { grid-column: span 2; min-height: 280px; }
.crd2-tall { grid-row: span 2; min-height: 320px; }

.crd2-img {
  min-height: 260px;
}

.crd2-img .crd-body {
  height: 100%;
  justify-content: flex-end;
}

.crd2-img h3 { color: #fefcfa; margin-bottom: 8px; }
.crd2-img p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

.crd2-stat {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crd2-stat:has(.crd2-icon) { padding: 28px; }

.crd2-alt {
  background: var(--c-accent-pale);
  border-color: rgba(184,115,51,0.2);
}

.crd2-icon {
  font-size: 1.6rem;
  color: var(--c-accent);
}

.crd2-stat h3 { margin: 0; font-size: 1.1rem; }
.crd2-stat p { margin: 0; font-size: 0.88rem; color: var(--c-ink-mute); }

.crd2-info {
  background: var(--c-bg-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crd2-info .crd2-icon { color: var(--c-accent-light); }
.crd2-info h3 { color: #fefcfa; margin: 0; font-size: 1.05rem; }
.crd2-info p { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.88rem; }


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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink);
  transition: background var(--t-fast), color var(--t-fast);
}

.faq-q:hover { background: var(--c-surface); }

.faq-q[aria-expanded="true"] {
  color: var(--c-accent);
  background: var(--c-accent-pale);
}

.faq-ico {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--c-accent);
  transition: transform var(--t-mid);
}

.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq-a.open { max-height: 400px; }

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  padding-top: 20px;
}

.faq-cta p {
  color: var(--c-ink-mute);
  margin-bottom: 16px;
  font-size: 0.95rem;
}


.sec-about-preview {
  background: var(--c-bg-card);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.about-img-wrap:hover .about-img { transform: scale(1.03); }

.about-txt h2 { margin-bottom: 20px; }
.about-txt p { margin-bottom: 16px; font-size: 0.95rem; }
.about-txt .sec-label { margin-bottom: 16px; }


.pg-hero {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}

.pg-hero-inner {
  padding-top: 60px;
  max-width: 720px;
}

.pg-hero-title { margin-bottom: 16px; }

.pg-hero-sub {
  font-size: 1.1rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin: 0;
}

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

.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mission-txt h2 { margin-bottom: 24px; }
.mission-txt p { font-size: 0.95rem; margin-bottom: 18px; }

.mission-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}


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

.vals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.val-crd {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}

.val-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.val-ico {
  font-size: 1.6rem;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.val-crd h3 { margin-bottom: 12px; }
.val-crd p { font-size: 0.92rem; margin: 0; line-height: 1.65; }


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

.approach-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.appr-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.appr-item:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-md);
}

.appr-num {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-accent);
  color: var(--c-white);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.appr-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.appr-body p { font-size: 0.92rem; margin: 0; line-height: 1.65; }


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

.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.prog-crd {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}

.prog-crd:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--c-accent);
}

.prog-crd-featured {
  background: var(--c-bg-dark);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-lg);
}

.prog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prog-ico {
  font-size: 1.4rem;
  color: var(--c-accent);
  transition: transform var(--t-fast);
}

.prog-crd:hover .prog-ico { transform: scale(1.2) rotate(-5deg); }
.prog-crd-featured .prog-ico { color: var(--c-accent-light); }

.prog-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
  background: var(--c-surface);
  padding: 4px 10px;
  border-radius: 100px;
}

.prog-badge-featured {
  color: var(--c-accent-light);
  background: rgba(184,115,51,0.15);
}

.prog-crd h3 { font-size: 1.2rem; }
.prog-crd-featured h3 { color: #fefcfa; }

.prog-desc {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
  margin: 0;
}

.prog-crd-featured .prog-desc { color: rgba(255,255,255,0.65); }

.prog-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.prog-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.prog-list li i {
  color: var(--c-accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.prog-crd-featured .prog-list li { color: rgba(255,255,255,0.7); }
.prog-crd-featured .prog-list li i { color: var(--c-accent-light); }

.btn-prog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface);
  color: var(--c-ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid var(--c-border);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  margin-top: auto;
}

.btn-prog:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}

.btn-prog-featured {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}

.btn-prog-featured:hover {
  background: var(--c-accent-light);
  border-color: var(--c-accent-light);
}


.sec-prog-img {
  background: var(--c-bg-alt);
}

.prog-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.prog-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.prog-visual-caption h3 { margin-bottom: 16px; }
.prog-visual-caption p { margin-bottom: 24px; font-size: 0.95rem; }


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

.proc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.proc-item {
  flex: 1;
  min-width: 180px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.proc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proc-item i {
  font-size: 1.5rem;
  color: var(--c-accent);
  margin-bottom: 14px;
  display: block;
}

.proc-item h4 { margin-bottom: 10px; font-size: 0.95rem; }
.proc-item p { font-size: 0.85rem; color: var(--c-ink-mute); margin: 0; }

.proc-arrow {
  display: flex;
  align-items: center;
  color: var(--c-ink-mute);
  font-size: 0.9rem;
  padding-top: 24px;
  flex-shrink: 0;
}


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

.faq-cat {
  margin-bottom: 56px;
}

.faq-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--c-ink);
}

.faq-cat-title i { color: var(--c-accent); }


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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 32px; }

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.cinfo-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cinfo-ico {
  width: 42px;
  height: 42px;
  background: var(--c-accent-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.cinfo-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
  margin-bottom: 4px;
}

.cinfo-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink);
  transition: color var(--t-fast);
}

a.cinfo-val:hover { color: var(--c-accent); }


.frm {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t-mid);
}

.frm:has(:focus) {
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(184,115,51,0.08);
}

.frm h2 { margin-bottom: 28px; font-size: 1.4rem; }

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

.frm-grp {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.frm-grp label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
}

.frm-grp input,
.frm-grp textarea,
.frm-grp select {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--c-ink);
  background: var(--c-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.frm-grp input:focus,
.frm-grp textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
  background: var(--c-white);
}

.frm-grp:has(input:focus),
.frm-grp:has(textarea:focus) {
  position: relative;
}

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

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

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

.frm-check label {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
  cursor: pointer;
}

.frm-check label a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.frm-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(192,57,43,0.08);
  border-radius: var(--r-sm);
  border: 1px solid rgba(192,57,43,0.2);
}

.frm-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px;
}


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

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.area-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.area-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-item i {
  font-size: 1.6rem;
  color: var(--c-accent);
  margin-bottom: 14px;
  display: block;
}

.area-item h4 { margin-bottom: 8px; font-size: 1rem; }
.area-item p { font-size: 0.85rem; color: var(--c-ink-mute); margin: 0; line-height: 1.6; }


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

.map-wrap {
  margin-top: 32px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.thanks-wrap {
  text-align: center;
  max-width: 500px;
}

.thanks-ico {
  font-size: 4rem;
  color: var(--c-accent);
  margin-bottom: 28px;
  animation: thanks-appear 0.6s ease-out;
}

@keyframes thanks-appear {
  from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.thanks-wrap h1 { margin-bottom: 16px; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.thanks-wrap p { font-size: 1rem; margin-bottom: 32px; }

.thanks-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.thanks-links .btn-ghost {
  color: var(--c-ink);
  border-color: var(--c-border);
}

.thanks-links .btn-ghost:hover {
  background: var(--c-surface);
  border-color: var(--c-accent);
  color: var(--c-accent);
}


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

.legal-wrap {
  max-width: 780px;
}

.legal-intro {
  background: var(--c-accent-pale);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.legal-intro p { color: var(--c-ink-soft); font-size: 0.95rem; margin: 0; }

.legal-q,
.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}

.legal-q:last-child,
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-q h2,
.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--c-ink);
}

.legal-q p,
.legal-section p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}


.ftr {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.ftr-inner {
  padding-top: 64px;
  padding-bottom: 24px;
}

.ftr-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

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

.ftr-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.ftr-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ftr-contact a,
.ftr-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.ftr-contact a:hover { color: var(--c-accent-light); }
.ftr-contact i { color: var(--c-accent); width: 14px; }

.ftr-nav-col h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.ftr-nav-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}

.ftr-nav-col a:hover { color: var(--c-accent-light); }

.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ftr-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}


.sidebar-cta {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 900;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity var(--t-mid), transform var(--t-mid);
}

.sidebar-cta.visible {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-accent);
  color: var(--c-white);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.sidebar-cta-btn:hover {
  background: var(--c-accent-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(184,115,51,0.4);
}

.sidebar-cta-btn i { font-size: 1rem; }


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--c-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform: translateY(100%);
  transition: transform var(--t-slow);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-left {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.cookie-right {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-left h3 {
  color: #fefcfa;
  font-size: 1rem;
  margin-bottom: 10px;
}

.cookie-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

.cookie-left a {
  color: var(--c-accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-toggle-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.cookie-toggle-label span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--t-fast);
}

.toggle-track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transition: transform var(--t-fast), background var(--t-fast);
}

.toggle-switch input:checked + .toggle-track { background: var(--c-accent); }
.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(20px);
  background: #fff;
}

.toggle-switch input:disabled + .toggle-track {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  flex: 1;
  background: var(--c-accent);
  color: var(--c-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: background var(--t-fast);
  white-space: nowrap;
}

.cookie-btn-accept:hover { background: var(--c-accent-light); }

.cookie-btn-save {
  flex: 1;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.cookie-btn-save:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

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

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid > .crd:first-child {
    grid-column: span 2;
  }

  .bento-grid > .crd-dark {
    grid-column: span 2;
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .crd2-tall { grid-row: span 1; }
  .crd2-wide { grid-column: span 2; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split,
  .mission-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img,
  .mission-img img { height: 320px; }

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

  .prog-img { height: 280px; }

  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }

  .ftr-brand { grid-column: span 2; }

  .proc-row {
    gap: 8px;
  }

  .proc-arrow { display: none; }
}

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

  .hdr-burger { display: flex; margin-left: auto; }
  .hdr-mobile { display: flex; }

  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }

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

  .bento-grid > .crd:first-child,
  .bento-grid > .crd-dark {
    grid-column: span 1;
  }

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

  .bento-grid-2 {
    grid-template-columns: 1fr;
  }

  .crd2-wide { grid-column: span 1; }

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

  .ftr-top {
    grid-template-columns: 1fr;
  }

  .ftr-brand { grid-column: span 1; }

  .ftr-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .journey-line { display: none; }

  .journey-step { flex-direction: column; gap: 12px; }
  .jst-num { width: 44px; height: 44px; font-size: 1rem; }

  .appr-item { flex-direction: column; gap: 16px; }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .sidebar-cta-label { display: none; }
  .sidebar-cta-btn { padding: 12px 14px; border-radius: 50%; }
  .sidebar-cta-btn i { font-size: 1.1rem; }

  .proc-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .sec { padding: 48px 0; }
  .frm { padding: 24px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .thanks-links { flex-direction: column; }
  .thanks-links a { width: 100%; justify-content: center; }
  .crd { padding: 20px; }
  .prog-crd { padding: 24px; }
  .val-crd { padding: 24px; }
}