/* ═══════════════════════════════════════════════
   LAHI × CBSE  —  Design System
   Fonts: Fraunces (headings) · DM Sans (body) · Crimson Pro (accents)
═══════════════════════════════════════════════ */

:root {
  --ink: #1a1209;
  --cream: #faf7f2;
  --warm: #f5ede0;
  --saffron: #e07b2a;
  --saffron-light: #f59d52;
  --teal: #894b07;
  --teal-light: #b06415;
  --gold: #c9922e;
  --muted: #7a6e5f;
  --border: #e2d9cc;
  --surface: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 18, 9, 0.06);
  --shadow-md: 0 6px 24px rgba(26, 18, 9, 0.09);
  --shadow-lg: 0 16px 48px rgba(26, 18, 9, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Fraunces", "Crimson Pro", serif;
  --font-serif: "Crimson Pro", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s !important;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav-overlay.open {
  display: flex;
}
.mobile-nav-overlay .mobile-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover {
  color: var(--teal);
}
.mobile-nav-overlay .mobile-cta {
  background: var(--teal);
  color: white !important;
  padding: 13px 36px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  min-height: 46px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 6px 20px rgba(137, 75, 7, 0.25);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(137, 75, 7, 0.32);
}
.btn-secondary {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* SECTION BASICS */
section {
  padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 40px);
  scroll-margin-top: 68px;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(224, 123, 42, 0.1);
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title .it {
  font-style: var(--font-body);
  color: var(--teal);
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

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

/* HERO */
#home {
  padding: clamp(88px, 12vw, 128px) clamp(16px, 4vw, 40px)
    clamp(52px, 8vw, 84px);
  background: var(--warm);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.hero-content {
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(224, 123, 42, 0.1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-eyebrow-animate {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-subtitle-light {
  display: block;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 300;
  line-height: 1.25;
  margin-top: 6px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.hero-h1-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.22s;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-sub-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.38s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
}
.hero-actions-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.52s;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 500px;
}
.hero-stats-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.66s;
}
.stat-item {
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.3;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.42s;
}
.hero-image {
  width: 100%;
  height: auto;
  max-width: 85%;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.hero-right-quote {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  margin: -44px 16px 0 auto;
  width: min(90%, 380px);
  position: relative;
  z-index: 2;
}
.hero-right-quote p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: var(--font-display);
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 6px;
}
.hero-right-quote span {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  #home {
    min-height: auto;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    max-width: 100%;
  }
  .hero-right-quote {
    margin: -32px 0 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-actions a,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 8px;
  }
  .stat-item {
    padding: 10px 8px;
    text-align: center;
  }
  .stat-num {
    font-size: 1.35rem;
  }
  .stat-label {
    font-size: 0.66rem;
  }
}
@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .stat-label {
    text-align: right;
  }
}

/* PHOTO STRIP */
.photo-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 200px;
  overflow: hidden;
}
.photo-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-gallery-strip img:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .photo-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 220px;
  }
}

/* ABOUT */
#about {
  background: var(--warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.about-photo-collage {
  position: relative;
  height: 400px;
}
.about-photo-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
}
.about-photo-collage .photo-main {
  width: 70%;
  height: 68%;
  top: 0;
  left: 0;
  z-index: 2;
}
.about-photo-collage .photo-secondary {
  width: 56%;
  height: 56%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border-color: var(--cream);
}
.about-photo-collage .photo-accent-badge {
  position: absolute;
  bottom: 54px;
  left: 16px;
  z-index: 5;
  background: var(--teal);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: 0 6px 20px rgba(137, 75, 7, 0.35);
}
.photo-accent-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
}
.photo-accent-badge .badge-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.about-text p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text strong {
  color: var(--ink);
  font-weight: 600;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(137, 75, 7, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.highlight-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--ink);
}
.highlight-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-photo-collage {
    height: 280px;
  }
}

/* POLICY */
#policy {
  background: var(--cream);
}
.policy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}
.circular-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.circular-card {
  border-left: 3px solid var(--saffron);
  padding: 18px 22px;
  background: var(--warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: box-shadow 0.2s;
}
.circular-card:hover {
  box-shadow: var(--shadow-sm);
}
.circular-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron);
  margin-bottom: 6px;
}
.circular-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.circular-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}
.what-it-means {
  background: #894b07e3;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.what-it-means h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}
.what-it-means ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.what-it-means li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.what-it-means li::before {
  content: "→";
  color: var(--saffron-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.what-it-means p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: var(--font-display);
}
@media (max-width: 860px) {
  .policy-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* PROGRAMMES */
#programmes {
  background: var(--warm);
}
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.programme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.programme-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.programme-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.programme-card:hover .programme-card-img img {
  transform: scale(1.07);
}
.programme-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 18, 9, 0.4));
}
.programme-header {
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--border);
}
.programme-grade {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(137, 75, 7, 0.1);
  color: var(--teal);
  margin-bottom: 10px;
}
.programme-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.programme-card .hindi {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: var(--font-display);
}
.programme-body {
  padding: 18px 22px;
  flex: 1;
}
.programme-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.sectors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.sector-chip {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
}
.programme-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.programme-body ul li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 15px;
  position: relative;
}
.programme-footer {
  padding: 13px 22px;
  border-top: 1px solid var(--border);
  background: rgba(137, 75, 7, 0.03);
  margin-top: auto;
}
.programme-footer span {
  font-size: 0.76rem;
  color: var(--teal);
  font-weight: 600;
}
@media (max-width: 960px) {
  .programmes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .programmes-grid {
    grid-template-columns: 1fr;
  }
  .programme-card-img {
    height: 120px;
  }
}

/* PROVIDES */
#provides {
  background: var(--cream);
}
.provides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.provide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}
.provide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--teal-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.provide-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.provide-card:hover::before {
  opacity: 1;
}
.provide-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(137, 75, 7, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.provide-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 9px;
  color: var(--ink);
}
.provide-card > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.provide-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.provide-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.provide-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 700px) {
  .provides-grid {
    grid-template-columns: 1fr;
  }
  .provide-card {
    padding: 24px 20px;
  }
}

/* COMPARISON */
#comparison {
  background: var(--warm);
}
.comparison-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-top: 44px;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 480px;
}
.comparison-table thead tr {
  background: var(--ink);
}
.comparison-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.comp-col-label {
  width: 28%;
}
.comp-col-typical {
  width: 36%;
}
.comp-col-lahi {
  width: 36%;
}
.comp-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comp-badge-typical {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}
.comp-badge-lahi {
  background: var(--saffron);
  color: white;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table tbody tr:hover {
  background: var(--warm);
}
.comparison-table td {
  padding: 15px 20px;
  font-size: 0.88rem;
  line-height: 1.55;
  vertical-align: top;
}
.comp-aspect {
  font-weight: 600;
  color: var(--ink);
  font-style: var(--font-display);
}
.comp-typical {
  color: #b0a89a;
}
.comp-lahi {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 500px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 12px;
    font-size: 0.8rem;
  }
}

/* VISIT */
#visit {
  background: #454444;
  color: rgb(225, 219, 219);
  position: relative;
  overflow: hidden;
}
#visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/p15.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}
#visit .section-inner {
  position: relative;
  z-index: 1;
}
#visit .section-label {
  color: var(--saffron-light);
  background: rgba(245, 157, 82, 0.12);
}
#visit .section-title {
  color: white;
}
#visit .section-title .it {
  color: var(--saffron-light);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}
.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 123, 42, 0.18);
  border: 1px solid rgba(224, 123, 42, 0.35);
  color: var(--saffron-light);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.visit-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.visit-location strong {
  color: rgba(255, 255, 255, 0.9);
}
.visit-location a {
  color: inherit;
  text-decoration: none;
}
.visit-location a:hover {
  text-decoration: underline;
}
.visit-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visit-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.visit-highlight .text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}
.visit-highlight .text strong {
  color: white;
  display: block;
  margin-bottom: 3px;
}
.visit-photo-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.visit-photo-row > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
}
.visit-agenda {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 860px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* REGISTER */
#register {
  background: var(--cream);
}
.register-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}
.register-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.register-info > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.register-info .steps {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.register-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.register-step .step-n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.register-step .step-text {
  padding-top: 4px;
}
.register-step .step-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.register-step .step-text span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.register-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--cream);
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(137, 75, 7, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 88px;
}
.form-submit {
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 20px rgba(137, 75, 7, 0.25);
}
.form-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.74rem;
  color: var(--muted);
}
.success-msg {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.success-msg .checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.success-msg h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.success-msg p {
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 860px) {
  .register-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .register-form-wrap {
    padding: 24px 18px;
  }
}

/* RESOURCES */
#resources {
  background: var(--warm);
}
.resource-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 44px;
  box-shadow: var(--shadow-sm);
}
.resource-card {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.2s;
}
.resource-card:last-child {
  border-bottom: none;
}
.resource-card.is-open {
  background: var(--cream);
}
.resource-card-visible {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}
.resource-card-visible:hover {
  background: rgba(137, 75, 7, 0.03);
}
.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(137, 75, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.resource-summary {
  flex: 1;
  min-width: 0;
}
.resource-summary h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.resource-summary p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}
.resource-view-btn {
  flex-shrink: 0;
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.resource-view-btn:hover,
.resource-card.is-open .resource-view-btn {
  background: var(--teal);
  color: white;
}
.resource-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.resource-card.is-open .resource-arrow {
  transform: rotate(180deg);
}
.resource-expand {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 24px;
}
.resource-card.is-open .resource-expand {
  max-height: 600px;
  padding: 0 24px 24px;
}
.resource-expand ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.resource-expand ul li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.resource-expand ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.resource-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--teal);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.resource-dl-btn:hover {
  background: var(--teal-light);
}
.resource-link {
  font-size: 0.86rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.resource-link:hover {
  text-decoration: underline;
}
@media (max-width: 500px) {
  .resource-card-visible {
    padding: 16px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .resource-summary {
    flex-basis: calc(100% - 56px);
  }
  .resource-view-btn {
    margin-left: 56px;
  }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px) 28px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}
.footer-brand .logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
.footer-col h4 {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-icon {
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.55;
}
.footer-col ul li a,
.footer-col ul li span:not(.footer-contact-icon) {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  transition: color 0.2s;
  line-height: 1.55;
}
.footer-col ul li a:hover {
  color: white;
}
.footer-address span:not(.footer-contact-icon) {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bottom a {
  color: var(--saffron-light);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* LAHI DOES */
.lahi-does-section {
  margin-top: 40px;
}
.lahi-does-header {
  background: var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 24px 28px 16px;
}
.lahi-does-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.lahi-does-sub {
  font-size: 0.9rem;
  color: var(--muted);
}
.lahi-does-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lahi-does-card {
  background: rgba(245, 241, 238, 0.85);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.lahi-does-card:nth-child(1) {
  border-right: none;
  border-bottom: none;
}
.lahi-does-card:nth-child(2) {
  border-bottom: none;
}
.lahi-does-card:nth-child(3) {
  border-right: none;
}
.lahi-does-card:hover {
  background: rgba(137, 75, 7, 0.04);
}
.lahi-does-card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
}
.lahi-does-footer {
  background: var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 15px 28px;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: var(--font-display);
}
@media (max-width: 600px) {
  .lahi-does-grid {
    grid-template-columns: 1fr;
  }
  .lahi-does-card:nth-child(1) {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .lahi-does-card:nth-child(2) {
    border-bottom: none;
  }
  .lahi-does-card:nth-child(3) {
    border-right: 1px solid var(--border);
  }
  .lahi-does-card:last-child {
    border-bottom: 1px solid var(--border);
  }
  .lahi-does-header {
    padding: 18px 18px 12px;
  }
  .lahi-does-footer {
    padding: 13px 18px;
  }
  .lahi-does-card {
    padding: 20px 18px;
  }
}

/* GLOBAL UTILITY */
.accent {
  color: var(--teal);
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.grid-2col-tight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .grid-2col,
  .grid-2col-tight {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  [data-mobile-stack] {
    grid-template-columns: 1fr !important;
  }
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(224, 123, 42, 0.5);
  outline-offset: 3px;
}
@keyframes countUp {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.stat-num.counting {
  animation: countUp 0.8s ease;
}

/* Budget table */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.budget-table thead {
  background: var(--teal);
  color: white;
}
.budget-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.84rem;
  font-weight: 600;
}
.budget-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.budget-table tbody tr:last-child {
  border-bottom: none;
}
.budget-table tbody tr:nth-child(even) {
  background: rgba(250, 247, 242, 0.6);
}
.budget-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--ink);
  vertical-align: top;
}
.budget-table tbody td.amount {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal);
}

/* Hero card elements */
.hero-right-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-card-header {
  background: var(--warm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-green {
  background: #34c759;
}
.dot-amber {
  background: #ff9500;
}
.dot-red {
  background: #ff3b30;
}
.hero-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.hero-checklist {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.hero-check-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.check-done {
  background: rgba(137, 75, 7, 0.1);
  color: var(--teal);
}
.check-pending {
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  border: 1.5px dashed var(--border);
}
.hero-card-footer {
  padding: 11px 18px;
  background: var(--teal);
  text-align: center;
}
.hero-card-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}
