:root {
  --ink: #142033;
  --ink-soft: #4a5a72;
  --sky: #eef3f8;
  --cloud: #f7f9fc;
  --ocean: #1b4f72;
  --ocean-bright: #256890;
  --sand: #c5b496;
  --line: rgba(20, 32, 51, 0.1);
  --white: #ffffff;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Figtree", sans-serif;
  --container: min(1100px, calc(100% - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(27, 79, 114, 0.08), transparent 50%),
    radial-gradient(80% 60% at 0% 100%, rgba(197, 180, 150, 0.12), transparent 45%),
    var(--cloud);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand small {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ocean);
}

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

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ocean);
}

.nav .cta {
  border-bottom: 1px solid var(--ocean);
  color: var(--ocean);
  padding-bottom: 0.15rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cloud);
  padding: 1.5rem;
  flex-direction: column;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-nav nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.6rem);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.close-menu {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 32, 51, 0.45) 0%, rgba(20, 32, 51, 0.25) 35%, rgba(20, 32, 51, 0.82) 100%),
    linear-gradient(90deg, rgba(27, 79, 114, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
  display: grid;
  gap: 1.75rem;
  justify-items: center;
}

.hero-brand {
  animation: fade-up 0.9s ease both;
}

.hero-brand .name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-brand .tag {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand);
}

.hero-copy {
  max-width: 560px;
  animation: fade-up 0.9s ease 0.12s both;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  animation: fade-up 0.9s ease 0.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
  border: 1px solid var(--ocean);
}

.btn-ocean:hover {
  background: var(--ocean-bright);
  border-color: var(--ocean-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-sky {
  background: var(--sky);
}

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1rem;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 800px;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 140px 1fr;
    gap: 3rem;
  }
}

.pillars {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.focus-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.focus-list li {
  list-style: none;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.focus-list li strong {
  font-weight: 600;
}

.focus-list li span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.band {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 32, 51, 0.88) 0%, rgba(20, 32, 51, 0.25) 55%, rgba(20, 32, 51, 0.2) 100%);
}

.band .inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 0;
  max-width: 600px;
}

.band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}

.band p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.cta-block {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--ink);
  color: var(--white);
}

@media (min-width: 800px) {
  .cta-block {
    grid-template-columns: 1fr auto;
    padding: 3rem;
  }
}

.cta-block .title {
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.btn-sand {
  background: var(--sand);
  color: var(--ink);
  border: 1px solid var(--sand);
  font-weight: 600;
}

.btn-sand:hover {
  background: #d4c5a9;
}

.page-hero {
  padding: clamp(4rem, 10vw, 6.5rem) 0 2.5rem;
  background: var(--sky);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 16ch;
}

.prose {
  max-width: 700px;
}

.prose p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose p + p {
  margin-top: 1.25rem;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .timeline-item {
    grid-template-columns: 90px 1fr;
    gap: 2rem;
  }
}

.timeline-item .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ocean);
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--ocean);
  border-bottom: 1px solid transparent;
}

.contact-card a:hover {
  border-color: var(--ocean);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form input,
.form textarea {
  font: inherit;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(27, 79, 114, 0.3);
  border-color: var(--ocean);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--sand);
}

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 799px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 680px;
  }
}
