@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --ink: #10161b;
  --teal-ink: #0b2227;
  --teal: #3d7a7e;
  --wave: #9fe3e8;
  --gold: #e0b15a;
  --gold-deep: #c4892a;
  --cream: #f4f1ea;
  --white: #fffcf7;
  --text: #243033;
  --muted: #5a6d70;
  --line: #d9cfc0;
  --danger: #8a2b2b;
  --max: 1140px;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(16, 22, 27, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font-family: Figtree, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(159, 227, 232, 0.35), transparent 50%),
    radial-gradient(900px 400px at 100% 20%, rgba(224, 177, 90, 0.18), transparent 46%),
    var(--cream);
  line-height: 1.6;
}
a { color: var(--teal); }
img { max-width: 100%; height: auto; }

.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--gold); color: var(--ink); padding: 8px 12px; z-index: 20;
}
.skip:focus { left: 8px; }

.site-header {
  background: rgba(16, 22, 27, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; z-index: 10;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.brand {
  text-decoration: none; color: #f7f3ea;
  display: flex; align-items: center;
}
.brand img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}
nav ul {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap; justify-content: flex-end;
}
nav a {
  text-decoration: none; color: #efe8d8;
  padding: 8px 12px; border-radius: 999px; font-size: 0.92rem;
}
nav a:hover { background: rgba(224, 177, 90, 0.2); color: #fff; }
.menu-btn {
  display: none; border: 1px solid #4a5258; background: #1c2328;
  border-radius: 10px; padding: 8px 10px; color: #f7f3ea;
}

.hero {
  background:
    linear-gradient(105deg, rgba(8,10,12,0.82) 8%, rgba(8,10,12,0.35) 62%, rgba(196,137,42,0.18) 100%),
    url("../assets/hero.jpg") center 40% / cover no-repeat;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  padding: 28px 0 70px;
  color: #fffaf1;
}
.hero-inner { width: 100%; }
.logo-in-pull {
  display: block;
  width: min(280px, 70%);
  height: auto;
  margin: 0 auto 22px;
  border-radius: 16px;
}
.logo-wide-mark {
  display: block;
  width: min(640px, 94%);
  height: auto;
  margin: 0 auto 26px;
  border-radius: 10px;
}
.bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento .feature {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(16,22,27,0.04), rgba(16,22,27,0.02)),
    var(--white);
  padding: 32px 28px;
}
.bento .feature h3 { font-size: 2rem; font-family: "Cinzel Decorative", Cinzel, "Times New Roman", serif; }
.hero .section-kicker { color: var(--gold); }
.hero h1 {
  font-family: "Cinzel Decorative", Cinzel, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98; margin: 0 0 10px; font-weight: 600;
  text-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.hero .script {
  font-family: "Cinzel Decorative", Cinzel, "Times New Roman", serif;
  font-style: italic; font-size: 1.45rem; color: #f0d9a0; margin: 0 0 14px;
}
.hero p.lead {
  font-size: 1.18rem; max-width: 640px; color: #f3ebe0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 10px; }
.hero .btn-ghost { color: #fffaf1; border-color: rgba(255,250,241,0.7); }
.hero .badge {
  background: rgba(16,22,27,0.45); color: #f7f3ea; border-color: rgba(255,255,255,0.2);
}

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px; font-size: 0.86rem; color: var(--teal);
}

.btn {
  display: inline-block; text-decoration: none; border-radius: 999px;
  padding: 13px 20px; font-weight: 700; border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: #fffaf1; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 20px rgba(224,177,90,0.35); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }

section { padding: 64px 0; }
section[id] { scroll-margin-top: 76px; }
h2 {
  font-family: "Cinzel Decorative", Cinzel, "Times New Roman", serif;
  color: var(--ink); font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 10px; font-weight: 600;
}
.section-kicker {
  color: var(--gold-deep); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.74rem; margin: 0 0 8px;
}

.pull {
  background: var(--ink); color: #f7f3ea; padding: 48px 0 56px;
}
.pull blockquote {
  font-family: "Cinzel Decorative", Cinzel, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-style: italic;
  margin: 0 auto; max-width: 820px; line-height: 1.25; text-align: center;
}
.pull span { display: block; margin-top: 14px; color: var(--gold); font-size: 0.95rem; font-style: normal; letter-spacing: 0.08em; }

.hands {
  min-height: 340px;
  background:
    linear-gradient(0deg, rgba(244,241,234,0.12), rgba(16,22,27,0.28)),
    url("../assets/img-a.jpg") center 30% / cover no-repeat;
}

.grid { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(16,22,27,0.16); }
.card h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.15rem; }
.icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: #ebf7f8; color: var(--teal);
  display: grid; place-items: center; margin-bottom: 12px; font-weight: 700;
}

.founder {
  display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: center;
  background: var(--white); border-radius: 24px; padding: 22px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.portrait {
  width: 168px; height: 168px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--gold);
}
.photo-row {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px;
  margin: 22px 0;
}
.photo-row img {
  width: 100%; border-radius: 20px; display: block; object-fit: cover;
  min-height: 220px; box-shadow: var(--shadow);
}
.card-photo { width: 100%; border-radius: 16px; display: block; }

.why { padding-left: 1.1rem; }
.why li { margin: 10px 0; }
.muted-note { color: var(--muted); font-size: 0.95rem; max-width: 40rem; }
.alt { background: rgba(255,252,247,0.72); }

.cta-band {
  background:
    linear-gradient(120deg, #10161b 0%, #1d3a3e 55%, #3d2a12 100%);
  color: #fffaf1; padding: 72px 0;
}
.cta-band h2, .cta-band a { color: #fffaf1; }
.cta-band .btn-gold { color: var(--ink); }
.cta-band .btn-ghost { border-color: #fffaf1; }

.crisis {
  background: #fff4f0; border: 1px solid #efd0c6;
  border-radius: var(--radius); padding: 16px 18px;
}
.crisis strong { color: var(--danger); }

.title-banner {
  text-align: center; background: #1b2a2d; color: #e7f4f5;
  font-weight: 600; padding: 12px 16px; margin: 18px 0 0; font-size: 0.95rem;
}

.site-footer { background: var(--ink); color: #d8e6e4; padding: 32px 0 18px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.tiny {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 18px; padding-top: 12px; font-size: 0.86rem; color: #9bb0ae;
}

.page-hero { padding: 8px 0 10px; }
.phases { counter-reset: phase; padding: 0; }
.phases li {
  list-style: none; margin: 0 0 12px; padding: 14px 16px 14px 58px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; position: relative;
}
.phases li::before {
  counter-increment: phase; content: counter(phase);
  position: absolute; left: 14px; top: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700;
}

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 10px 0; }
form { display: grid; gap: 12px; }
label { font-weight: 650; color: var(--ink); }
input, textarea, select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; background: #fff;
}
button[type="submit"] { justify-self: start; cursor: pointer; }

@media (max-width: 820px) {
  .menu-btn { display: inline-block; }
  nav {
    display: none; position: absolute; right: 16px; top: 62px;
    background: #1c2328; border: 1px solid #3a424a; border-radius: 12px; padding: 10px;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; }
  .footer-grid, .photo-row, .founder, .bento { grid-template-columns: 1fr; }
  .bento .feature { grid-row: auto; }
  .hero { min-height: 70vh; align-items: center; }
}
