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

:root {
  --bg: #f7f3ec;
  --bg-soft: #fcfaf6;
  --surface: rgba(255, 253, 249, 0.88);
  --surface-strong: #fffdfa;
  --ink: #16233b;
  --muted: #627089;
  --line: rgba(22, 35, 59, 0.14);
  --line-strong: rgba(22, 35, 59, 0.26);
  --navy: #142746;
  --blue: #2d5fa2;
  --gold: #c99c2e;
  --gold-deep: #a47c17;
  --gold-soft: #ead9aa;
  --shadow-soft: 0 18px 40px rgba(18, 30, 49, 0.12);
  --radius-lg: 1.35rem;
  --radius-md: 0.85rem;
  --header-height: 5rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(201, 156, 46, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.shell {
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 24, 46, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 156, 46, 0.45);
}

.header-row {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  min-width: 0;
  text-decoration: none;
  line-height: 0;
  padding-left: 0;
  padding-right: 0;
  isolation: isolate;
}

.brand::before {
  display: none;
}

.brand-logo {
  display: block;
  height: 100%;
  max-height: none;
  width: auto;
  max-width: min(20rem, 48vw);
  transform: scaleX(1.08);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.5rem);
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7f1e2;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-end;
  padding: clamp(1.2rem, 3vw, 2.2rem) 0;
  background:
    linear-gradient(90deg, rgba(12, 22, 37, 0.72) 0%, rgba(12, 22, 37, 0.44) 34%, rgba(12, 22, 37, 0.14) 60%, rgba(12, 22, 37, 0.26) 100%),
    url("herolch.jpg") center center / cover no-repeat;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.hero-copy {
  max-width: 42rem;
  min-width: 0;
  color: #fffaf1;
  text-shadow: 0 10px 30px rgba(12, 22, 37, 0.22);
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow-light {
  color: #f2d68a;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.92;
}

.hero-lede {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.72;
  color: rgba(255, 250, 241, 0.88);
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(120deg, #edd9a3 0%, var(--gold) 100%);
  box-shadow: 0 10px 22px rgba(8, 17, 29, 0.2);
}

.button-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f6e4b0;
}

.button-link:hover,
.button-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.services,
.process,
.contact {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.section-head {
  max-width: 44rem;
}

.section-head h2 {
  margin-top: 0.35rem;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1;
  color: var(--navy);
}

.section-copy {
  margin: 0.9rem 0 0;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem clamp(2rem, 4vw, 4rem);
  margin-top: 2.25rem;
}

.service-group {
  position: relative;
  padding-top: 1.1rem;
  min-width: 0;
  border-top: 1px solid var(--line-strong);
}

.service-group h3 {
  display: inline-block;
  padding-left: 0.9rem;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  color: var(--navy);
  border-left: 3px solid var(--gold);
}

.service-group ul {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1rem;
  color: var(--ink);
  line-height: 1.55;
}

.service-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--gold);
}

.statement {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.statement p {
  margin: 0;
}

.statement-panel {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  text-align: center;
}

.statement-lead {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.92;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.statement-lead span {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.statement-lead span::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.statement-lead span::after {
  left: -0.18em;
  right: -0.16em;
  top: 48%;
  height: 0.44em;
  background: linear-gradient(
    90deg,
    rgba(236, 203, 108, 0) 0%,
    rgba(236, 203, 108, 0.62) 7%,
    rgba(232, 196, 95, 0.84) 18%,
    rgba(244, 213, 111, 0.88) 52%,
    rgba(232, 196, 95, 0.84) 84%,
    rgba(236, 203, 108, 0) 100%
  );
  border-radius: 0.08em;
  transform: rotate(-3.6deg);
  box-shadow: inset 0 1px 0 rgba(255, 244, 192, 0.28);
}

.statement-sub {
  margin-top: 0.45rem;
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.process {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(22, 35, 59, 0.08);
  border-bottom: 1px solid rgba(22, 35, 59, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: 2.1rem;
}

.process-step {
  padding-top: 1rem;
  min-width: 0;
  border-top: 1px solid var(--line-strong);
}

.process-step span {
  display: inline-block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--gold);
}

.process-step h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  color: var(--navy);
}

.process-step p {
  margin: 0.7rem 0 0;
  line-height: 1.72;
  color: var(--muted);
}

.contact {
  background: rgba(10, 24, 46, 0.88);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.6rem, 4vw, 2.5rem) 0;
}

.contact-copy {
  padding-left: clamp(0.5rem, 1.2vw, 1rem);
  min-width: 0;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1;
  color: #fff8eb;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  min-width: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.85rem 0 0.95rem;
  text-decoration: none;
  color: #f3f0e7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  color: #edcf7b;
}

.contact-icon svg {
  width: 2.8rem;
  height: 2.8rem;
  stroke: currentColor;
}

.contact-link strong {
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid rgba(22, 35, 59, 0.08);
}

.footer-row {
  padding-block: 1.1rem 1.3rem;
  text-align: center;
}

.footer-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-row a {
  color: var(--navy);
  text-decoration: none;
}

.footer-row a:hover,
.footer-row a:focus-visible {
  color: var(--gold-deep);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-ready .reveal.show {
  opacity: 1;
  transform: none;
}

.js-ready .delay-1 {
  transition-delay: 90ms;
}

.js-ready .delay-2 {
  transition-delay: 150ms;
}

.js-ready .delay-3 {
  transition-delay: 230ms;
}

.js-ready .delay-4 {
  transition-delay: 290ms;
}

@media (max-width: 920px) {
  .service-grid,
  .process-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 7.25rem;
  }

  .header-row {
    height: auto;
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.4rem;
    padding-block: 0.45rem 0.55rem;
  }

  .brand {
    height: 3.15rem;
    justify-content: center;
  }

  .brand-logo {
    max-width: min(16rem, 78vw);
    transform: scaleX(1.05);
    transform-origin: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(201, 156, 46, 0.22);
  }

  .site-nav a {
    min-height: 2.1rem;
    font-size: 0.73rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 4.4rem;
  }

  .hero {
    align-items: flex-end;
    min-height: calc(88vh - var(--header-height));
    background-position: center;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .contact-panel {
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 6.9rem;
  }

  .shell {
    padding-inline: 1rem;
  }

  .hero {
    min-height: calc(84vh - var(--header-height));
    padding: 1.2rem 0 1.75rem;
    background:
      linear-gradient(180deg, rgba(12, 22, 37, 0.74) 0%, rgba(12, 22, 37, 0.42) 42%, rgba(12, 22, 37, 0.28) 100%),
      url("herolch.jpg") center center / cover no-repeat;
  }

  .hero-inner {
    justify-content: center;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-lede {
    max-width: 22rem;
    margin-inline: auto;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .service-group h3 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
  }

  .statement-lead {
    font-size: clamp(2rem, 9vw, 2.9rem);
    letter-spacing: 0.05em;
  }

  .contact-copy {
    padding-left: 0;
  }

  .contact-copy h2 {
    text-align: center;
  }

  .contact-link {
    gap: 0.9rem;
  }

  .contact-icon svg {
    width: 2.35rem;
    height: 2.35rem;
  }
}
