:root {
  --ink: #10293d;
  --ink-2: #314a5d;
  --accent: #20a6b3;
  --accent-soft: #d5f3f5;
  --paper: #f7f9f6;
  --surface: #ffffff;
  --soft: #eaf3f1;
  --line: #d5e2de;
  --muted: #607786;
  --shadow: 0 24px 60px rgba(18, 48, 71, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--ink-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(215, 225, 221, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 14px 32px rgba(18, 48, 71, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  content: "";
  background: var(--accent);
}

.brand-mark::before {
  width: 4px;
  height: 25px;
  bottom: 8px;
  border-radius: 999px;
}

.brand-mark::after {
  width: 22px;
  height: 13px;
  top: 9px;
  left: 10px;
  border-radius: 999px 999px 6px 999px;
  transform: rotate(-18deg);
}

.brand-mark span::before {
  width: 18px;
  height: 10px;
  top: 16px;
  right: 9px;
  border-radius: 999px 999px 999px 6px;
  transform: rotate(22deg);
}

.brand-mark span::after {
  width: 20px;
  height: 4px;
  bottom: 9px;
  left: 12px;
  border-radius: 999px;
}

.aldame-mark {
  border-radius: 12px;
  background: linear-gradient(135deg, #10293d 0%, #163f5e 100%);
}

.aldame-mark::before,
.aldame-mark::after,
.aldame-mark span::before,
.aldame-mark span::after {
  background: none;
}

.aldame-mark::before {
  width: 20px;
  height: 20px;
  border: 3px solid var(--accent);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.aldame-mark::after {
  width: 17px;
  height: 3px;
  left: 22px;
  top: 15px;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(42deg);
}

.aldame-mark span::before {
  width: 7px;
  height: 7px;
  top: 27px;
  right: 11px;
  border-radius: 50%;
  background: var(--accent);
  transform: none;
}

.aldame-mark span::after {
  width: 3px;
  height: 20px;
  bottom: 9px;
  left: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 13px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 249, 246, 0.97) 0%, rgba(247, 249, 246, 0.88) 38%, rgba(247, 249, 246, 0.14) 72%),
    linear-gradient(0deg, rgba(18, 48, 71, 0.2), rgba(18, 48, 71, 0));
}

.aldame-hero .hero-image {
  object-position: center center;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.eyebrow {
  margin-bottom: 12px;
  color: #167987;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 20px;
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 48, 71, 0.22);
}

.button.secondary {
  border: 1px solid rgba(18, 48, 71, 0.24);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.section {
  padding: clamp(62px, 9vw, 104px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.split p:last-child {
  margin-bottom: 0;
  font-size: 1.12rem;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(18, 48, 71, 0.07);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.image-split.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.story-copy p {
  font-size: 1.05rem;
}

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.44em;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
  transform: rotate(-45deg);
}

.proof {
  background: var(--paper);
}

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

.metric {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(32, 166, 179, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #eef8f7 100%);
  box-shadow: 0 14px 34px rgba(18, 48, 71, 0.07);
}

.metric strong {
  display: block;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.metric p {
  margin: 0;
}

.advice {
  background: #f7fbfa;
}

.quote {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff;
}

.quote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}

.values {
  padding-top: 40px;
}

.values-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--ink);
}

.values-banner h2,
.values-banner p {
  color: #fff;
}

.values-banner .eyebrow {
  color: #9ee9ee;
}

.values-banner p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-box {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(18, 48, 71, 0.1);
}

.contact-box p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-box p:last-child {
  border-bottom: 0;
}

.site-footer {
  padding: 28px 16px;
  background: #10293d;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 840px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 700px;
    align-items: end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(247, 249, 246, 0.98) 0%, rgba(247, 249, 246, 0.92) 48%, rgba(247, 249, 246, 0.18) 100%),
      linear-gradient(0deg, rgba(18, 48, 71, 0.26), rgba(18, 48, 71, 0));
  }

  .hero-content {
    padding: 250px 0 54px;
  }

  .split,
  .feature-grid,
  .image-split,
  .image-split.reverse,
  .values-banner,
  .contact-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 24px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .site-nav a {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
