/* ==========================================================================
   indaloHE — Global Stylesheet
   Palette: Navy #0c1a2e · Teal #1f7a7a / #2a9e9e · Warm White #faf8f5 · Cream #f3f0ea
   Typography: Cormorant Garamond (headings) · DM Sans (body)
   ========================================================================== */

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

:root {
  --navy: #0c1a2e;
  --navy-mid: #14253f;
  --navy-light: #1c3352;
  --teal: #1f7a7a;
  --teal-light: #2a9e9e;
  --teal-pale: #e8f4f4;
  --warm-white: #faf8f5;
  --cream: #f3f0ea;
  --text-dark: #1a1e24;
  --text-mid: #4a4f56;
  --text-light: #7a7f86;
  --accent-warm: #c4956a;
  --border: #e4e0d9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { max-width: 68ch; }

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-light); }

/* ---------- Layout ---------- */

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: white; }
.section--navy p { color: rgba(255,255,255,0.7); }
.section--navy h2, .section--navy h3 { color: white; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}

.nav--transparent { background: transparent; }
.nav--solid { background: var(--navy); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { height: 48px; width: auto; }

.nav__links { display: flex; gap: 2rem; align-items: center; }

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  text-decoration: none;
}
.nav__link:hover, .nav__link--active { color: white; }

.nav__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  background: var(--teal);
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s;
  text-decoration: none;
}
.nav__cta:hover { background: var(--teal-light); color: white; }

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links--open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,26,46,0.92) 0%, rgba(12,26,46,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal-light);
}

.hero__title {
  color: white;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero__text {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn--teal { background: var(--teal); color: white; }
.btn--teal:hover { background: var(--teal-light); color: white; }

.btn--outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: white; color: white; }

.btn--navy { background: var(--navy); color: white; }
.btn--navy:hover { background: var(--navy-mid); color: white; }

.btn--ghost { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn--ghost:hover { background: var(--teal); color: white; }

/* ---------- Stats Bar ---------- */

.stats {
  background: var(--navy-mid);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {}

.stats__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 0.3rem;
}

.stats__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- Grid Layouts ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Section Headers ---------- */

.section-header {
  margin-bottom: 3rem;
}

.section-header__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-header__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
}
.section--navy .section-header__label { color: var(--teal-light); }
.section--navy .section-header__label::before { background: var(--teal-light); }

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__text {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 600px;
}
.section--navy .section-header__text { color: rgba(255,255,255,0.6); }

/* ---------- Cards ---------- */

.card {
  background: white;
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(12,26,46,0.06);
}

.card__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--teal);
  font-size: 1.1rem;
}

.card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Navy card variant */
.card--navy {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.06);
}
.card--navy:hover { border-color: var(--teal-light); box-shadow: none; }
.card--navy .card__title { color: white; }
.card--navy .card__text { color: rgba(255,255,255,0.6); }
.card--navy .card__icon { background: rgba(42,158,158,0.15); }

/* ---------- Region Markers ---------- */

.region {
  padding: 1.5rem;
  border-left: 3px solid var(--teal);
  background: white;
  border-radius: 0 3px 3px 0;
}

.region__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.region__detail {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- Image Blocks ---------- */

.img-block {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-block--tall { height: 400px; }
.img-block--medium { height: 300px; }

/* ---------- Divider ---------- */

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* ---------- Blockquote ---------- */

.quote {
  border-left: 3px solid var(--teal);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.quote__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.quote__attr {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand { max-width: 280px; }
.footer__logo { height: 42px; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.85rem; line-height: 1.6; }

.footer__col {}
.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.footer__link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Page-specific: About ---------- */

.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.founder-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .founder-card { grid-template-columns: 1fr; }
  .founder-card__image { max-width: 280px; }
}

/* ---------- Page-specific: Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact__detail {
  margin-bottom: 1.5rem;
}
.contact__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.contact__value {
  font-size: 1rem;
  color: var(--navy);
}
.contact__value a { color: var(--teal); }

/* ---------- Tag / Pill ---------- */

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: var(--teal-pale);
  color: var(--teal);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* ---------- Animations ---------- */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.fade-in--d1 { animation-delay: 0.1s; }
.fade-in--d2 { animation-delay: 0.2s; }
.fade-in--d3 { animation-delay: 0.3s; }
.fade-in--d4 { animation-delay: 0.4s; }
.fade-in--d5 { animation-delay: 0.5s; }

/* ---------- Utilities ---------- */

.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-mid { color: var(--text-mid); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
