@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --orange: #ff6a00;
  --orange-dark: #d94e00;
  --navy: #0d1b2a;
  --teal: #0097a7;
  --slate: #52606d;
  --grey: #f2f4f7;
  --offwhite: #fafaf8;
  --white: #ffffff;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--offwhite);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,250,248,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,27,42,.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}
.brand strong { color: var(--orange); }
.nav-link {
  text-decoration: none;
  font-weight: 700;
}

.hero {
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin-top: 0;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  letter-spacing: -.04em;
}
h1 span { color: var(--orange); }
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.03em;
}
h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}
.lede {
  max-width: 680px;
  margin: 0 0 32px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--slate);
}
.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); }

.hero-mark {
  display: grid;
  place-items: center;
}
.hero-mark img {
  width: min(100%, 390px);
  filter: drop-shadow(0 24px 35px rgba(13,27,42,.10));
}

.section {
  padding: 88px 0;
}
.section-alt { background: var(--grey); }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,.08);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 38px rgba(13,27,42,.05);
}
.card p, .copy p { color: var(--slate); }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.copy {
  font-size: 1.12rem;
}
.copy p:first-child { margin-top: 0; }

.contact {
  padding: 40px 0 88px;
}
.contact-box {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 42px;
  align-items: center;
  padding: 52px;
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
}
.contact-box h2 { margin-bottom: 12px; }
.contact-box p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.78); }
.contact-box .eyebrow { color: #ff9b56; }
.button-light {
  justify-self: end;
  background: var(--white);
  color: var(--navy);
}
.button-light:hover { background: var(--grey); }

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(13,27,42,.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--slate);
  font-size: .9rem;
}

@media (max-width: 800px) {
  .hero { padding-top: 64px; }
  .hero-grid, .split, .contact-box { grid-template-columns: 1fr; }
  .hero-mark { order: -1; }
  .hero-mark img { width: 210px; }
  .cards { grid-template-columns: 1fr; }
  .contact-box { padding: 34px 28px; }
  .button-light { justify-self: start; }
}
@media (max-width: 520px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .brand { font-size: 1.25rem; }
  .brand img { width: 40px; height: 40px; }
  .nav-link { font-size: .9rem; }
  .hero { padding-bottom: 64px; }
  .section { padding: 64px 0; }
  .footer-inner { flex-direction: column; gap: 4px; }
}
