:root {
  --ink: #12383c;
  --ink-soft: #527074;
  --teal: #184f55;
  --mint: #53a796;
  --coral: #e66b4f;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --line: #d8ddd5;
  --shell: min(1160px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 16px;
  background: var(--ink); color: white; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative; z-index: 20; background: rgba(246, 242, 233, .94);
  border-bottom: 1px solid rgba(18, 56, 60, .1); backdrop-filter: blur(14px);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 268px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 31px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 650; letter-spacing: .01em; }
.site-nav a:not(.nav-cta):hover { color: var(--coral); }
.nav-cta { padding: 11px 18px; color: white; background: var(--teal); border-radius: 999px; }
.nav-cta:hover { background: var(--coral); }
.menu-button { display: none; border: 0; background: none; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--ink); }

.hero { position: relative; min-height: 720px; overflow: hidden; background: var(--cream); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; }
.hero-copy { position: relative; z-index: 2; padding: 70px 0 90px; }
.eyebrow {
  margin: 0 0 20px; color: var(--coral); font-size: 12px; line-height: 1.3;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
.hero h1 { max-width: 700px; margin-bottom: 28px; font-family: Georgia, serif; font-size: clamp(55px, 6vw, 86px); font-weight: 500; }
.hero h1 em { color: var(--coral); font-weight: 500; }
.hero-lead { max-width: 600px; margin: 0 0 38px; color: var(--ink-soft); font-size: 21px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  padding: 15px 23px; border: 1px solid transparent; border-radius: 4px;
  text-decoration: none; font-size: 15px; font-weight: 750; transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: white; }
.button-primary:hover { background: var(--coral); }
.button-light { background: var(--paper); color: var(--ink); }
.text-link { text-decoration: none; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--ink-soft); }
.hero-art { position: relative; z-index: 2; width: 520px; height: 520px; }
.art-centre {
  position: absolute; inset: 140px; display: grid; place-items: center;
  background: var(--paper); border-radius: 50%; box-shadow: 0 24px 70px rgba(18, 56, 60, .15);
}
.art-centre img { width: 122px; }
.orbit { position: absolute; border: 1px solid rgba(24, 79, 85, .16); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--coral); }
.orbit span {
  position: absolute; padding: 6px 12px; background: rgba(255,253,248,.86);
  border-radius: 99px; color: var(--ink-soft); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em;
}
.orbit-one { inset: 30px; animation: spin 35s linear infinite; }
.orbit-one::before { top: 34px; right: 66px; }
.orbit-one span { top: -13px; left: 46%; animation: counterspin 35s linear infinite; }
.orbit-two { inset: 82px; animation: spin 28s linear infinite reverse; }
.orbit-two::before { bottom: 20px; left: 82px; background: var(--mint); }
.orbit-two span { bottom: 8px; right: -3px; animation: counterspin-reverse 28s linear infinite; }
.orbit-three { inset: 118px; }
.orbit-three::before { top: 40px; left: 6px; background: var(--teal); }
.orbit-three span { top: 62px; left: -32px; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .15; }
.shape-one { width: 380px; height: 380px; top: -250px; right: 20%; background: var(--coral); }
.shape-two { width: 330px; height: 330px; bottom: -230px; left: 42%; background: var(--mint); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes counterspin { to { transform: rotate(-360deg); } }
@keyframes counterspin-reverse { to { transform: rotate(360deg); } }

.section-heading { display: grid; grid-template-columns: 1fr 1.2fr; column-gap: 80px; align-items: start; margin-bottom: 56px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .approach h2, .about h2, .contact h2 { font-family: Georgia, serif; font-size: clamp(39px, 4vw, 58px); font-weight: 500; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p:last-child { margin: 5px 0 0; color: var(--ink-soft); font-size: 19px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { position: relative; min-height: 450px; padding: 35px; background: var(--cream); border: 1px solid transparent; }
.card-featured { background: var(--paper); border-color: var(--line); box-shadow: 0 20px 60px rgba(18, 56, 60, .08); }
.card-number { position: absolute; top: 26px; right: 28px; color: #8da0a0; font-size: 12px; font-weight: 800; }
.card-icon { display: grid; width: 56px; height: 56px; margin-bottom: 54px; place-items: center; border-radius: 50%; background: var(--mint); color: white; font-size: 28px; }
.card-featured .card-icon { background: var(--coral); }
.card:nth-child(3) .card-icon { background: var(--teal); }
.card h3 { margin-bottom: 17px; font-family: Georgia, serif; font-size: 29px; font-weight: 500; }
.card p { color: var(--ink-soft); font-size: 15px; }
.card ul { margin: 25px 0 0; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; }
.card li { padding: 3px 0; font-size: 13px; font-weight: 750; }
.card li::before { content: "+"; margin-right: 10px; color: var(--coral); }

.approach { position: relative; background: var(--teal); color: white; }
.approach::after { content: ""; position: absolute; inset: 0; opacity: .045; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 20px 20px; }
.approach-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.eyebrow.light { color: #8dd2c4; }
.approach h2 { margin-bottom: 25px; }
.approach-copy > p:not(.eyebrow) { margin-bottom: 36px; color: #c4d8d5; }
.principles { margin: 0; padding: 0; list-style: none; }
.principles li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.18); }
.principles li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.principles li > span { color: #8dd2c4; font-size: 12px; font-weight: 800; }
.principles h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.principles p { margin: 0; color: #c4d8d5; font-size: 14px; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.about-mark { position: relative; display: grid; min-height: 430px; place-items: center; }
.about-mark::before, .about-mark::after { content: ""; position: absolute; border-radius: 50%; }
.about-mark::before { inset: 25px; border: 1px solid rgba(24,79,85,.16); }
.about-mark::after { inset: 75px; background: var(--paper); box-shadow: 0 20px 50px rgba(18,56,60,.08); }
.about-mark img { position: relative; z-index: 1; width: 180px; }
.about-copy > p:not(.eyebrow) { max-width: 650px; color: var(--ink-soft); }
.about-copy > p:last-child { padding-top: 12px; color: var(--ink); font-weight: 700; }

.contact { text-align: center; }
.contact-inner { max-width: 850px; }
.contact h2 { margin-bottom: 34px; }
.site-footer { padding: 70px 0 24px; background: #0d2c2f; color: #aac0bd; }
.footer-grid { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 60px; }
.footer-logo { width: 230px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: .93; }
.footer-grid p { font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-links a { color: white; text-decoration: none; font-size: 14px; }
.footer-base { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

.prose { min-height: 62vh; background: var(--cream); }
.prose-inner { max-width: 760px; }
.prose h1 { margin-bottom: 45px; font-family: Georgia, serif; font-size: 65px; font-weight: 500; }
.prose h2 { font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.prose p { color: var(--ink-soft); }
.prose a { color: var(--teal); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .section { padding: 82px 0; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; top: 88px; left: 0; right: 0; display: none; align-items: stretch;
    padding: 25px; background: var(--paper); box-shadow: 0 18px 35px rgba(18,56,60,.12);
  }
  .site-nav.is-open { display: flex; flex-direction: column; }
  .nav-cta { text-align: center; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 90px 0 30px; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { width: 420px; height: 420px; margin: 0 auto 70px; }
  .art-centre { inset: 115px; }
  .orbit-one { inset: 20px; }
  .orbit-two { inset: 65px; }
  .orbit-three { inset: 95px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2 { margin-bottom: 20px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-icon { margin-bottom: 35px; }
  .approach-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-mark { min-height: 360px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 16px; }
  .header-inner { height: 76px; }
  .brand img { width: 215px; }
  .site-nav { top: 76px; }
  .hero h1 { font-size: 50px; }
  .hero-copy { padding-top: 70px; }
  .hero-actions { flex-direction: column; }
  .hero-art { width: 320px; height: 320px; margin-bottom: 55px; }
  .art-centre { inset: 90px; }
  .art-centre img { width: 90px; }
  .orbit-one { inset: 12px; }
  .orbit-two { inset: 50px; }
  .orbit-three { inset: 74px; }
  .orbit span { display: none; }
  .section-heading h2, .approach h2, .about h2, .contact h2 { font-size: 40px; }
  .card { padding: 28px; }
  .about-mark { min-height: 300px; }
  .about-mark::before { inset: 15px; }
  .about-mark::after { inset: 55px; }
  .about-mark img { width: 130px; }
  .footer-grid, .footer-base { flex-direction: column; }
  .footer-links { align-items: flex-start; }
  .footer-base { gap: 8px; }
  .prose h1 { font-size: 50px; }
}
