/* ===== Design tokens ===== */
:root {
  --navy: #0e2a47;
  --navy-deep: #0a1f36;
  --gold: #c9a14a;
  --gold-soft: #e3c987;
  --ink: #1c2430;
  --slate: #5a6573;
  --paper: #ffffff;
  --mist: #f5f6f8;
  --line: #e6e8ec;
  --radius: 14px;
  --shadow: 0 18px 40px -20px rgba(14, 42, 71, 0.35);
  --max: 1140px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); }
.brand-text small { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: 0.93rem; font-weight: 500; color: var(--ink); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--navy-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-block { width: 100%; text-align: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 31, 54, 0.92), rgba(14, 42, 71, 0.78)),
    url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1600&q=80") center/cover;
  isolation: isolate;
}
.hero-inner { padding: 6rem 1.5rem 5rem; max-width: 880px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow.light { color: var(--gold-soft); }
.hero h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
.hero-lede { font-size: clamp(1rem, 2.2vw, 1.18rem); color: rgba(255, 255, 255, 0.85); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.2rem 0 3rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 1.8rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 2rem; color: var(--gold); }
.hero-stats span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }

/* ===== Sections ===== */
.section { padding: 5.5rem 0; }
.section-muted { background: var(--mist); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); line-height: 1.15; }
.section-dark h2 { color: #fff; }
.section-sub { color: var(--slate); margin-top: 0.7rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--slate); margin-bottom: 1rem; }
.checklist { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 1.8rem; color: var(--ink); }
.checklist li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card-icon { font-size: 1.9rem; margin-bottom: 0.9rem; }
.card h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { color: var(--slate); font-size: 0.95rem; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.member { text-align: center; }
.member img { border-radius: var(--radius); aspect-ratio: 1/1; object-fit: cover; margin-bottom: 1rem; box-shadow: var(--shadow); }
.member h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); }
.member span { font-size: 0.85rem; color: var(--slate); }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
.why-text p { color: rgba(255, 255, 255, 0.8); margin-top: 1rem; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; }
.why-item { border-left: 2px solid var(--gold); padding-left: 1.1rem; }
.why-item strong { display: block; font-size: 1.05rem; margin-bottom: 0.3rem; }
.why-item p { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }

/* ===== Quote ===== */
.quote { max-width: 800px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 2.1rem); line-height: 1.4; color: var(--navy); }
.quote footer { margin-top: 1.3rem; color: var(--slate); font-weight: 600; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--slate); }
.contact-list { list-style: none; margin-top: 1.8rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.8rem; color: var(--ink); }
.contact-list a:hover { color: var(--gold); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; }
.form-note { margin-top: 1rem; color: #1b7a4b; font-weight: 600; font-size: 0.9rem; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: #fff; padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand strong { font-family: var(--font-head); display: block; font-size: 1.2rem; }
.footer-brand small { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-soft); }
.footer-nav { display: flex; gap: 1.6rem; }
.footer-nav a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.footer-nav a:hover { color: var(--gold); }
.footer-legal { width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.5rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-media { order: -1; }
}

@media (max-width: 720px) {
  .nav, .nav-toggle { }
  .nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1.2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.6rem; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 4rem 0; }
  .hero-inner { padding: 4.5rem 1.5rem 3.5rem; }
  .hero-stats { gap: 1.5rem; }
  .why-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cards, .team-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; text-align: center; }
}
