:root {
  --ink: #173c38;
  --forest: #174a46;
  --mint: #b9ddd0;
  --cream: #fbf4e8;
  --coral: #ef765e;
  --yellow: #f6c85f;
  --paper: #fffdf8;
  --muted: #55746f;
  --shell: 76rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  margin: 0;
}
img { display: block; height: auto; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.shell { margin-inline: auto; max-width: var(--shell); padding-inline: clamp(1.25rem, 4vw, 2.75rem); }
.skip-link { background: var(--yellow); left: 1rem; padding: .65rem 1rem; position: fixed; top: -5rem; z-index: 100; }
.skip-link:focus { top: 1rem; }

.site-header { background: var(--paper); border-bottom: 1px solid rgba(23, 60, 56, .12); position: sticky; top: 0; z-index: 20; }
.header-inner { align-items: center; display: flex; justify-content: space-between; min-height: 6.4rem; }
.brand { text-decoration: none; }
.brand img { max-width: 16rem; }
.brand span { color: var(--muted); display: block; font-size: .65rem; font-weight: 850; letter-spacing: .16em; margin-top: .25rem; text-transform: uppercase; }
nav { align-items: center; display: flex; gap: 1.35rem; }
nav > a:not(.button) { font-size: .9rem; font-weight: 800; text-decoration: none; }

.button { align-items: center; background: var(--coral); border-radius: 999px; color: #32130e; display: inline-flex; font-weight: 900; justify-content: center; min-height: 3.25rem; padding: .8rem 1.35rem; text-decoration: none; transition: box-shadow 160ms ease, transform 160ms ease; }
.button:hover { box-shadow: 0 8px 24px rgba(75, 31, 23, .18); transform: translateY(-2px); }
.button-small { min-height: 2.75rem; padding: .6rem 1rem; }
.button-outline { background: transparent; border: 2px solid var(--forest); color: var(--forest); }

.hero { background: radial-gradient(circle at 80% 15%, rgba(255,255,255,.7), transparent 25%), var(--cream); overflow: hidden; padding-block: clamp(4rem, 8vw, 7.5rem); }
.hero-grid { align-items: center; display: grid; gap: clamp(2.5rem, 7vw, 6rem); grid-template-columns: 1fr .82fr; }
.eyebrow { color: #bf4d3a; font-size: .74rem; font-weight: 900; letter-spacing: .16em; margin-bottom: .9rem; text-transform: uppercase; }
.hero h1 { font-size: clamp(3.7rem, 8vw, 7.2rem); letter-spacing: -.065em; line-height: .88; margin-bottom: 1.6rem; }
.lede { font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 35rem; }
.actions { align-items: center; display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.text-link { font-weight: 900; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: .3em; }
.hero-note { color: var(--muted); font-size: .86rem; font-weight: 800; margin: 1.4rem 0 0; }
.hero-photo { margin: 0; position: relative; transform: rotate(1.5deg); }
.hero-photo img { aspect-ratio: 4 / 5; border-radius: 48% 48% 2rem 2rem; box-shadow: 1.1rem 1.1rem 0 var(--yellow); object-fit: cover; }
.hero-photo figcaption { background: var(--forest); border-radius: 999px; bottom: 1.4rem; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 700; left: -1.3rem; padding: .75rem 1.1rem; position: absolute; }

.section { padding-block: clamp(4.5rem, 8vw, 7rem); }
.section-heading { max-width: 52rem; }
.section-heading h2 { font-size: clamp(2.35rem, 5vw, 4.3rem); letter-spacing: -.05em; }
.section-heading-row { align-items: end; display: flex; justify-content: space-between; max-width: none; }
.section-heading-row > p { color: var(--muted); max-width: 20rem; }
.service-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; }
.service-grid article { background: #eef6f1; border-radius: 1.3rem; padding: 2rem; }
.service-grid article:nth-child(2) { background: #fff0dd; }
.service-grid article:nth-child(3) { background: #f6e3df; }
.service-grid span { color: var(--muted); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-grid h3 { font-size: 1.7rem; margin: 1.1rem 0 .7rem; }
.service-grid p { color: #4f6965; margin: 0; }
.service-note { color: var(--muted); margin: 1.4rem 0 0; max-width: 48rem; }

.site-footer { background: var(--forest); color: rgba(255,255,255,.82); padding-block: 2.2rem; }
.footer-inner { display: flex; gap: 2rem; justify-content: space-between; }
.site-footer strong { color: white; font-family: Georgia, "Times New Roman", serif; }
.footer-inner > div { display: flex; flex-direction: column; }
.footer-inner > div:last-child { align-items: end; }
.site-footer a { color: white; font-weight: 850; }

@media (max-width: 760px) {
  nav > a:not(.button), nav .button { display: none; }
  .brand img { max-width: 12rem; }
  .hero-grid, .service-grid { grid-template-columns: 1fr; }
  .hero-photo img { aspect-ratio: 5 / 4; }
  .section-heading-row, .footer-inner { align-items: start; flex-direction: column; gap: .45rem; }
  .footer-inner > div:last-child { align-items: start; }
}

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