:root {
  --primary: #0b1f3a;
  --primary-2: #102c4e;
  --accent: #c8a24a;
  --accent-2: #dfbd68;
  --ink: #111827;
  --muted: #5f6877;
  --line: #e5e7eb;
  --bg: #ffffff;
  --soft: #f5f7f9;
  --panel: #fbfbf8;
  --success: #0e7c66;
  --shadow: 0 22px 55px rgba(11, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(122px, 16vw, 180px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.desktop-nav button,
.mobile-nav button {
  border: 0;
  background: transparent;
  color: #344155;
  font-size: 0.93rem;
  font-weight: 650;
}

.desktop-nav button {
  padding: 9px 8px;
  border-radius: 8px;
}

.desktop-nav button:hover,
.desktop-nav button.is-active {
  background: #f2f4f7;
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-primary:hover {
  background: var(--primary-2);
}

.button-outline {
  background: #fff;
  border-color: #d5d9e0;
  color: var(--primary);
}

.button-outline:hover {
  border-color: var(--accent);
  color: #87691d;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-nav {
  position: sticky;
  top: 75px;
  z-index: 19;
  display: grid;
  gap: 4px;
  padding: 10px 18px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav button {
  width: 100%;
  padding: 13px 10px;
  border-radius: 8px;
  text-align: left;
}

.mobile-nav button:hover {
  background: var(--soft);
}

main {
  flex: 1;
}

.hero {
  min-height: calc(100vh - 178px);
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.7) 42%, rgba(11, 31, 58, 0.2)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=85")
      center / cover;
}

.hero-inner {
  width: min(980px, 100%);
  padding-bottom: clamp(26px, 6vh, 68px);
}

.hero-logo {
  display: block;
  width: min(380px, 82vw);
  max-height: 190px;
  margin: 0 0 24px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent-2);
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .button-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-item {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.12rem;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.updates-band {
  padding: clamp(34px, 6vw, 64px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.updates-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.updates-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
}

.news-patch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.source-news,
.weather-patch,
.empty-update,
.loading-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.source-news {
  min-height: 265px;
  padding: 18px;
}

.source-news h3 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.source-items {
  display: grid;
  gap: 10px;
}

.news-item {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #eef1f5;
  border-radius: 8px;
  color: var(--primary);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.news-item:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 162, 74, 0.7);
}

.news-item strong {
  line-height: 1.35;
}

.news-item span,
.update-muted {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.weather-patch {
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(11, 31, 58, 0.95), rgba(16, 44, 78, 0.9)),
    var(--primary);
  color: #fff;
}

.weather-label {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weather-patch h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
}

.weather-temp {
  margin: 18px 0 4px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 850;
  line-height: 0.95;
}

.weather-summary {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.weather-details div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.weather-details dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.weather-details dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 800;
}

.empty-update,
.loading-line,
.weather-empty {
  padding: 22px;
  color: var(--muted);
}

.weather-empty {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

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

.section-header {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  line-height: 1.72;
}

.home-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.mini-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-link {
  min-height: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.mini-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 74, 0.75);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.1);
}

.mini-link strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.mini-link span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.image-panel {
  min-height: 440px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.18)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=85")
      center / cover;
  box-shadow: var(--shadow);
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric b {
  display: block;
  color: var(--primary);
  font-size: 1.35rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.deal-row,
.role-card,
.portfolio-card,
.insight-card,
.timeline-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(200, 162, 74, 0.14);
  color: #8a681c;
}

.service-card h3,
.role-card h3,
.portfolio-card h3,
.insight-card h3,
.timeline-step h3 {
  margin: 24px 0 10px;
  color: var(--primary);
  font-size: 1.35rem;
}

.service-card p,
.role-card p,
.portfolio-card p,
.insight-card p,
.timeline-step p {
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-card {
  min-height: 235px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1)),
    var(--panel);
}

.portfolio-card h3 {
  margin-top: 0;
}

.deal-list {
  display: grid;
  gap: 14px;
}

.deal-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.deal-row h3 {
  margin: 0 0 6px;
  color: var(--primary);
}

.deal-row p {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(14, 124, 102, 0.1);
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 800;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.role-card {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.check-list span {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #27364a;
  font-weight: 700;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 9px;
  height: 15px;
  border: solid var(--success);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.investor-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(200, 162, 74, 0.32);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.investor-panel img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.investor-panel strong {
  display: block;
  color: var(--primary);
  font-size: 1.35rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-step {
  min-height: 250px;
  padding: 24px;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  min-height: 290px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-card > span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(200, 162, 74, 0.14);
  color: #87691d;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.08);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field label {
  color: #27364a;
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d7dce4;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(200, 162, 74, 0.2);
  border-color: var(--accent);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-weight: 700;
}

#form-note {
  color: #0e7c66;
}

.form-note.is-error {
  color: #b42318;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  pointer-events: none;
}

.footer-logo {
  width: 190px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 76vh;
  }

  .proof-strip,
  .card-grid,
  .content-grid,
  .contact-layout,
  .deal-row,
  .home-overview,
  .portfolio-grid,
  .timeline,
  .insight-grid,
  .updates-grid,
  .news-patch {
    grid-template-columns: 1fr;
  }

  .updates-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .metric-list,
  .roles-grid,
  .mini-link-grid {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-lockup {
    font-size: 0.86rem;
  }

  .brand-logo {
    width: 132px;
    height: 50px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
