/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:    #1b2d45;
  --coral:   #e07a5f;
  --coral-dk:#c9603f;
  --cream:   #faf6f0;
  --white:   #ffffff;
  --gray:    #6b7280;
  --radius:  10px;
  --shadow:  0 4px 20px rgba(0,0,0,.10);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: #374151; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.centered { text-align: center; }
.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: .65rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover  { background: var(--coral-dk); transform: translateY(-2px); }
.btn--lg    { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn--sm    { padding: .45rem 1.1rem; font-size: .9rem; }
.btn--full  { width: 100%; text-align: center; padding: .8rem; font-size: 1rem; }

.section__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: .4rem;
}

/* ── Fade-in animation ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
  padding: 1rem 0;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  padding: .6rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.nav__links a:hover { color: var(--coral); }

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
}
.lang-switcher span { color: rgba(255,255,255,.4); }
.lang-switcher a { color: rgba(255,255,255,.6); transition: color .2s; }
.lang-switcher a:hover,
.lang-switcher a.active { color: var(--coral); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #0d1f33 0%, #1b2d45 55%, #2c3e55 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,51,.4);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 6rem 0 4rem;
}
.hero__logo {
  height: 130px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.hero__eyebrow {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: .75rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ── SECTIONS ──────────────────────────────────────────────── */
.section      { padding: 5rem 0; }
.section--alt { background: var(--cream); }

/* ── TWO-COL ───────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col__text h2  { margin-top: .5rem; }
.two-col__text p   { max-width: 48ch; }

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1b2d4515, #e07a5f15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .9rem;
  border: 2px dashed #e07a5f44;
}

/* ── CARD GRID ─────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,.13); }
.card__icon {
  width: 52px;
  height: 52px;
  background: #e07a5f15;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card__icon i {
  font-size: 1.6rem;
  color: var(--coral);
}
.card h3    { color: var(--navy); }
.card ul    { margin-top: .75rem; }
.card ul li {
  padding: .25rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: .9rem;
  color: #374151;
}
.card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ── PILLARS ───────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  transition: box-shadow .25s;
}
.pillar:hover { box-shadow: var(--shadow); }
.pillar__icon {
  width: 60px;
  height: 60px;
  background: #e07a5f15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.pillar__icon i {
  font-size: 1.75rem;
  color: var(--coral);
}
.pillar h3 { color: var(--navy); margin-bottom: .5rem; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.contact-info__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-info a { color: var(--coral); }
.contact-info a:hover { text-decoration: underline; }

/* ── FORM ──────────────────────────────────────────────────── */
.two-col__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  padding: .6rem .85rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: #1a1a2e;
  transition: border-color .2s;
  outline: none;
  width: 100%;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}
.form-group textarea { resize: vertical; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0;
}
.footer__inner { text-align: center; }
.footer__logo-img {
  height: 80px;
  width: auto;
  margin: 0 auto .75rem;
}
.footer__copy { font-size: .85rem; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-col__img { order: -1; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: block; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .card-grid, .pillars { grid-template-columns: 1fr; }
}
