:root {
  --navy: #061a3d;
  --navy-soft: #0a2a58;
  --gold: #be7d13;
  --gold-light: #d9a443;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --ink: #101f3e;
  --muted: #526078;
  --line: rgba(6, 26, 61, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
main { overflow: hidden; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 13px; font-weight: 800; letter-spacing: .03em; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border: 2px solid var(--gold);
  font-size: .84rem;
  letter-spacing: -.04em;
}
nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 700; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--gold); }
.mobile-nav-only { display: none; }
.nav-cta { padding: 11px 17px; color: white; background: var(--navy); border: 1px solid var(--navy); }
.nav-cta:hover { color: white; background: var(--gold); border-color: var(--gold); }
.menu-toggle {
  width: 46px;
  height: 42px;
  padding: 10px;
  display: none;
  border: 1px solid var(--navy);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 670px;
  margin: 0 auto;
  padding: 92px 0 78px;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.corner { position: absolute; width: 76px; height: 76px; pointer-events: none; }
.corner-top { top: 32px; left: -20px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.dots {
  position: absolute;
  top: 42px;
  right: 4px;
  width: 80px;
  display: grid;
  grid-template-columns: repeat(5, 5px);
  gap: 11px;
  justify-content: end;
}
.dots i { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.eyebrow { margin: 0 0 24px; color: var(--navy); font-size: clamp(2.55rem, 5.6vw, 5.35rem); font-weight: 950; line-height: .93; letter-spacing: -.055em; }
.hero h1 { max-width: 720px; margin: 0; color: var(--gold); font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.08; letter-spacing: -.035em; }
.hero h1 em { display: block; font-style: normal; }
.lead { max-width: 730px; margin: 28px 0 0; font-size: clamp(1rem, 1.45vw, 1.18rem); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; border: 1px solid transparent; font-size: .92rem; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); }
.button-primary:hover { background: var(--gold); }
.button-secondary { border-color: var(--navy); }
.button-secondary:hover { color: white; background: var(--navy); }
.hero-brand { min-height: 390px; display: grid; place-items: center; position: relative; }
.hero-brand::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  right: -150px;
  top: -75px;
}
.logo-halo { position: absolute; width: 230px; height: 230px; background: white; border-radius: 50%; box-shadow: 0 30px 80px rgba(6, 26, 61, .11); }
.hero-brand img {
  width: min(390px, 100%);
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}

.why-section {
  padding: 74px max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(115deg, var(--navy), #082e63);
}
.why-section::after {
  content: "";
  width: 330px;
  height: 330px;
  position: absolute;
  right: -175px;
  top: -185px;
  border: 2px solid rgba(217, 164, 67, .5);
  border-radius: 50%;
  pointer-events: none;
}
.why-section .section-kicker { margin-bottom: 14px; color: var(--gold-light); }
.why-heading,
.why-copy { position: relative; z-index: 1; }
.why-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.why-heading h2 strong { display: block; color: var(--gold-light); font-weight: 900; }
.why-copy {
  max-width: 700px;
  margin: 0;
  padding-left: 30px;
  border-left: 2px solid var(--gold-light);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.collaboration-section {
  padding: 98px max(20px, calc((100% - 1180px) / 2)) 104px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.collaboration-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr);
  gap: 70px;
  align-items: end;
}
.collaboration-heading h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.collaboration-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.collaboration-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.collaboration-step {
  min-height: 330px;
  padding: 42px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 26, 61, .06);
}
.collaboration-step:not(:last-child)::after {
  content: "›";
  width: 28px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 2;
  color: var(--gold);
  background: var(--cream);
  font-size: 2.4rem;
  line-height: 1;
}
.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: white;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.step-icon {
  width: 94px;
  height: 94px;
  padding: 17px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(190, 125, 19, .45);
  border-radius: 50%;
}
.step-icon svg { width: 100%; height: 100%; }
.collaboration-step h3 { margin: 22px 0 0; color: var(--navy); font-size: 1.08rem; line-height: 1.18; letter-spacing: -.02em; }
.step-rule { width: 42px; height: 2px; margin: 17px 0; background: var(--gold); }
.collaboration-step p { margin: 0; color: var(--ink); font-size: .95rem; line-height: 1.5; }
.collaboration-quote {
  margin: 42px 0 0;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
  color: white;
  background: var(--navy);
  border: 2px solid var(--gold);
}
.quote-mark { color: var(--gold-light); font-family: Georgia, serif; font-size: 5rem; line-height: .5; }
.collaboration-quote p { margin: 0; font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.35; text-align: center; }
.collaboration-quote strong { color: var(--gold-light); }
.collaboration-action { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.collaboration-action p { margin: 0; color: var(--muted); font-size: 1rem; }
.collaboration-action .button { flex: 0 0 auto; }
a:focus-visible,
button:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.services-section { padding: 92px max(20px, calc((100% - 1180px) / 2)) 108px; background: var(--paper); border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; margin-bottom: 46px; text-align: center; }
.section-heading > span { height: 2px; background: var(--gold); }
.section-kicker { margin: 0 0 7px; color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .18em; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.3vw, 3.15rem); text-transform: uppercase; letter-spacing: .045em; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; }
.service {
  min-height: 180px;
  padding: 34px 38px 34px 20px;
  display: grid;
  grid-template-columns: 33px 72px 1fr;
  gap: 17px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service:nth-child(odd) { border-right: 1px solid var(--line); }
.service:nth-last-child(-n+2) { border-bottom: 0; }
.service-number { padding-top: 5px; color: rgba(6, 26, 61, .28); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.service-icon { width: 68px; height: 68px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service h3 { margin: 3px 0 8px; color: var(--navy); font-size: 1.26rem; letter-spacing: -.025em; }
.service p { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.5; }

.packages-section {
  padding: 104px max(20px, calc((100% - 1180px) / 2)) 110px;
  background: linear-gradient(180deg, var(--cream), #f4eee3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.packages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.package-card {
  min-height: 510px;
  padding: 42px 34px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 22px 56px rgba(6, 26, 61, .07);
}
.package-card::before { content: ""; height: 5px; position: absolute; inset: 0 0 auto; background: var(--gold); }
.package-card-featured {
  color: white;
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(6, 26, 61, .2);
  transform: translateY(-12px);
}
.package-number { color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .16em; }
.package-card h3 { margin: 14px 0 13px; color: var(--navy); font-size: clamp(2rem, 3vw, 2.85rem); letter-spacing: .04em; }
.package-card-featured h3 { color: white; }
.package-description { min-height: 78px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.package-card-featured .package-description { color: rgba(255,255,255,.76); }
.package-features { margin: 25px 0 0; padding: 24px 0 0; display: grid; gap: 14px; list-style: none; border-top: 1px solid var(--line); }
.package-card-featured .package-features { border-color: rgba(255,255,255,.17); }
.package-features li { display: grid; grid-template-columns: 21px 1fr; gap: 10px; align-items: start; font-size: .98rem; line-height: 1.45; }
.package-features li::before { content: "✓"; color: var(--gold); font-weight: 900; }
.package-card-featured .package-features li::before { color: var(--gold-light); }
.packages-action {
  margin-top: 42px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: var(--paper);
  border-left: 5px solid var(--gold);
  box-shadow: 0 16px 44px rgba(6, 26, 61, .06);
}
.packages-action h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.35rem; }
.packages-action p { max-width: 720px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.packages-action .button { flex: 0 0 auto; }

.philosophy {
  width: min(1180px, calc(100% - 40px));
  margin: 86px auto;
  padding: 58px 64px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 36px;
  align-items: center;
  color: white;
  background: var(--navy);
  position: relative;
}
.philosophy-label { color: var(--gold-light); font-size: .75rem; font-weight: 900; line-height: 1.25; letter-spacing: .16em; writing-mode: vertical-rl; transform: rotate(180deg); }
.philosophy h2 { margin: 0 0 13px; font-size: clamp(1.8rem, 3vw, 3rem); text-transform: uppercase; letter-spacing: .025em; }
.philosophy h2 strong { color: var(--gold-light); white-space: nowrap; }
.philosophy p { max-width: 680px; margin: 0; color: rgba(255,255,255,.84); font-size: 1.08rem; line-height: 1.6; }
.button-light { color: var(--navy); background: var(--cream); white-space: nowrap; }
.button-light:hover { background: var(--gold-light); }
.philosophy-corner-one { top: -18px; left: -18px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.philosophy-corner-two { right: -18px; bottom: -18px; border-right: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }

footer {
  padding: 68px max(20px, calc((100% - 1180px) / 2)) 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  color: white;
  background: linear-gradient(115deg, var(--navy), #082e63);
  border-top: 5px solid var(--gold);
}
.footer-column {
  min-width: 0;
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 2px solid rgba(217,164,67,.72);
}
.footer-brand { margin: 0; font-size: 2rem; font-weight: 950; line-height: .95; letter-spacing: -.035em; }
.footer-copy { max-width: 270px; margin: auto 0 0; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.6; }
.footer-column-title { margin: 0; color: var(--gold-light); font-size: .875rem; font-weight: 900; line-height: 1.35; letter-spacing: .14em; text-transform: uppercase; }
.contact-list { display: grid; gap: 12px; align-content: start; }
.footer-contact .contact-list { flex: 1; margin-top: 22px; align-content: space-between; }
.contact-list a { display: flex; align-items: center; gap: 13px; font-weight: 750; }
.contact-list a:hover { color: var(--gold-light); }
.contact-list span { width: 35px; height: 35px; display: grid; flex: 0 0 35px; place-items: center; border: 1px solid var(--gold-light); border-radius: 50%; color: var(--gold-light); font-weight: 900; }
.footer-conversation-text { margin: 22px 0 24px; color: rgba(255,255,255,.76); font-size: 1rem; line-height: 1.6; }
.footer-conversation-link {
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--navy);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.3;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.footer-conversation-link:hover { color: var(--navy); background: var(--cream); transform: translateY(-2px); }
.copyright { grid-column: 1 / -1; margin: 20px 0 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-legal { color: rgba(255,255,255,.82); text-decoration: underline; text-decoration-color: rgba(213,166,72,.7); text-underline-offset: 3px; transition: color .2s ease, text-decoration-color .2s ease; }
.footer-legal:hover, .footer-legal:focus-visible { color: var(--gold-light); text-decoration-color: currentColor; }

.back-to-top {
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  color: white;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(6, 26, 61, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  cursor: pointer;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); }
.back-to-top svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .site-header { height: auto; min-height: 74px; }
  .brand > span:last-child { display: none; }
  nav { gap: 14px; font-size: .86rem; }
  .hero { min-height: 0; padding: 74px 0; grid-template-columns: 1fr; gap: 25px; }
  .hero-brand { grid-row: 1; min-height: 250px; }
  .hero-brand img { width: 320px; }
  .hero-brand::before { width: 300px; height: 300px; top: -95px; right: -100px; }
  .why-section { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .why-copy { max-width: 760px; }
  .collaboration-heading { grid-template-columns: 1fr; gap: 22px; }
  .collaboration-heading > p { max-width: 680px; }
  .collaboration-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 18px; }
  .collaboration-step { min-height: 300px; }
  .collaboration-step:not(:last-child)::after { display: none; }
  .collaboration-step:last-child { grid-column: 1 / -1; min-height: 280px; padding-left: 25%; padding-right: 25%; }
  .packages-grid { max-width: 620px; margin: 0 auto; grid-template-columns: 1fr; }
  .package-card { min-height: 0; }
  .package-card-featured { transform: none; }
  .package-description { min-height: 0; }
  .philosophy { grid-template-columns: 70px 1fr; }
  .philosophy .button { grid-column: 2; justify-self: start; }
  footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-conversation { grid-column: 1 / -1; min-height: 0; }
}

@media (max-width: 780px) {
  .site-header, .hero, .philosophy { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: block; margin-left: auto; }
  nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: min(290px, calc(100vw - 28px));
    padding: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(6, 26, 61, .16);
  }
  nav.is-open { display: flex; }
  nav a { padding: 12px; }
  nav .mobile-nav-only { display: block; }
  .nav-cta { padding: 12px; text-align: center; }
  .corner-top { left: 0; }
  .dots { right: 0; }
  .hero { padding: 55px 0 66px; }
  .hero-brand { min-height: 190px; }
  .hero-brand img { width: 250px; }
  .logo-halo { width: 180px; height: 180px; }
  .eyebrow { margin-bottom: 18px; }
  .lead { margin-top: 22px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .why-section { padding-top: 58px; padding-bottom: 60px; gap: 24px; }
  .why-copy { padding-left: 20px; }
  .collaboration-section { padding-top: 70px; padding-bottom: 72px; }
  .collaboration-heading { margin-bottom: 30px; }
  .collaboration-steps { grid-template-columns: 1fr; gap: 34px; }
  .collaboration-step,
  .collaboration-step:last-child { min-height: 0; padding: 34px 20px 24px; grid-column: auto; }
  .step-icon { width: 82px; height: 82px; }
  .collaboration-quote { padding: 26px 22px; grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .quote-mark { font-size: 4rem; }
  .collaboration-action { align-items: stretch; flex-direction: column; }
  .services-section { padding-top: 70px; padding-bottom: 65px; }
  .section-heading { grid-template-columns: 26px 1fr 26px; gap: 12px; }
  .section-kicker { font-size: .62rem; letter-spacing: .12em; }
  .services-grid { grid-template-columns: 1fr; }
  .service { min-height: 0; padding: 27px 0; grid-template-columns: 26px 58px 1fr; gap: 12px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .service:last-child { border-bottom: 0 !important; }
  .service-icon { width: 54px; height: 54px; }
  .service h3 { font-size: 1.02rem; }
  .service p { font-size: .94rem; }
  .packages-section { padding-top: 70px; padding-bottom: 72px; }
  .package-card { padding: 36px 26px 30px; }
  .packages-action { padding: 26px 24px; align-items: stretch; flex-direction: column; }
  .philosophy { margin: 54px auto; padding: 45px 28px; grid-template-columns: 1fr; gap: 20px; }
  .philosophy-label { writing-mode: initial; transform: none; }
  .philosophy .button { grid-column: 1; width: auto; }
  .back-to-top { width: 48px; height: 48px; right: 14px; bottom: 14px; }
  footer { grid-template-columns: 1fr; gap: 0; padding-top: 54px; }
  .footer-column {
    min-height: 0;
    padding: 0 0 30px;
    margin-bottom: 30px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .footer-conversation { grid-column: 1; }
  .footer-copy { margin-top: 18px; }
  .footer-conversation-link { width: 100%; }
  .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
