:root {
  --ink: #153f48;
  --paper: #fbfcfb;
  --teal: #159c8f;
  --teal-dark: #0c5960;
  --gold: #caae75;
  --sand: #eadfc9;
  --mist: #dcedea;
  --line: rgba(21, 63, 72, 0.18);
  --display: "Montserrat", sans-serif;
  --body: "DM Sans", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 1rem; line-height: 1.6; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--ink); color: white; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: .7rem clamp(1.2rem, 4vw, 4.5rem); background: rgba(251,252,251,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); text-decoration: none; }
.brand-symbol { display: flex; align-items: center; gap: 3px; height: 42px; }
.brand-symbol i { display: block; width: 9px; height: 34px; background: var(--teal); clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%); }
.brand-symbol i:nth-child(2) { height: 42px; background: var(--teal-dark); }
.brand-symbol i:nth-child(3) { background: var(--gold); transform: scaleX(-1); }
.brand-name { font: 600 1.05rem var(--display); letter-spacing: .22em; text-transform: uppercase; }
.menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.menu a { font-size: .92rem; font-weight: 700; text-decoration: none; }
.menu a:not(.button):hover { color: var(--teal); }
.menu-button { display: none; font: 700 .9rem var(--body); background: transparent; border: 1px solid var(--ink); border-radius: 999px; padding: .55rem .9rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.25rem; padding: .8rem 1.25rem; border: 1px solid var(--teal-dark); border-radius: .2rem; background: var(--teal); box-shadow: 5px 5px 0 var(--gold); color: white; font-weight: 700; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--gold); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-small { min-height: auto; padding: .55rem 1rem; box-shadow: 3px 3px 0 var(--ink); }
.hero { min-height: calc(100svh - 82px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 5vw, 6rem); padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 6vw, 7rem); overflow: hidden; background: linear-gradient(112deg, var(--paper) 0 59%, var(--mist) 59%); }
.eyebrow { margin: 0 0 1rem; color: var(--teal); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h1,h2,h3 { font-family: var(--display); line-height: 1.05; }
h1 { max-width: 11ch; margin: 0; font-size: clamp(3rem, 7vw, 6.6rem); letter-spacing: -.055em; font-weight: 600; }
h2 { margin: 0; font-size: clamp(2.1rem, 4.5vw, 4rem); letter-spacing: -.05em; }
.hero-text { max-width: 39rem; margin: 1.5rem 0 2rem; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.text-link { font-weight: 800; text-underline-offset: .3rem; }
.hero-art { position: relative; aspect-ratio: 1; max-width: 620px; width: 100%; margin-inline: auto; border: 1px solid rgba(21,63,72,.25); background: rgba(255,255,255,.5); }
.hero-art::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(21,63,72,.22); }
.brand-pillar { position: absolute; top: 15%; bottom: 32%; width: 26%; display: flex; flex-direction: column; justify-content: space-between; padding: 1.2rem .9rem; color: white; clip-path: polygon(0 12%, 50% 0, 100% 12%, 100% 100%, 0 88%); }
.brand-pillar span { font: 600 .8rem var(--display); letter-spacing: .12em; }
.brand-pillar strong { font: 600 clamp(.8rem,1.5vw,1.15rem) var(--display); writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; letter-spacing: .12em; }
.pillar-a { left: 11%; background: var(--teal); }
.pillar-b { left: 37%; background: var(--teal-dark); }
.pillar-c { left: 63%; background: var(--gold); }
.art-caption { position: absolute; left: 11%; bottom: 9%; margin: 0; font: 500 clamp(1.1rem,2vw,1.65rem)/1.2 var(--display); color: var(--ink); }
.art-caption strong { color: var(--teal); }
.services { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 6vw, 7rem); }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: end; gap: 2.5rem; margin-bottom: 3.5rem; }
.section-heading .eyebrow { align-self: start; }
.section-heading > p:last-child { margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--ink); overflow: hidden; box-shadow: 10px 10px 0 var(--sand); }
.service-card { min-height: 350px; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; border: 1px solid var(--ink); }
.service-card h3 { max-width: 12ch; margin: auto 0 1rem; font-size: clamp(1.8rem,3.5vw,3rem); letter-spacing: -.04em; }
.service-card p { max-width: 34rem; margin: 0 0 1.5rem; }
.service-card a { font-weight: 800; text-underline-offset: .3rem; }
.service-number { font: 700 .85rem var(--display); }
.purple { background: var(--teal-dark); color: white; }.lime { background: var(--mist); }.coral { background: var(--gold); }.blue { background: var(--teal); color: white; }
.process { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 6vw, 7rem); background: var(--ink); color: white; }
.process .eyebrow { color: var(--gold); }
.section-heading.compact { grid-template-columns: .7fr 2fr; max-width: 1100px; }
.steps { max-width: 1100px; margin: 4rem 0 0 auto; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.steps li { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.steps > li > span { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 800; }
.steps h3 { margin: 0 0 .4rem; font-size: 1.45rem; }.steps p { margin: 0; color: #d9d4df; }
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.about-statement { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 6vw, 6rem); background: var(--teal); color: white; }
.asterisk { font-size: clamp(5rem,11vw,10rem); color: var(--gold); line-height: 1; }
.about-statement p { margin: 0; font: 500 clamp(2rem,4vw,4rem)/1.05 var(--display); letter-spacing: -.05em; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.about-copy > p:not(.eyebrow) { margin: 1.5rem 0; font-size: 1.1rem; }
.about-copy ul { padding: 0; list-style: none; }
.about-copy li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.about-copy li::before { content: "✦"; color: var(--gold); margin-right: .7rem; }
.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 6vw, 7rem); background: var(--sand); }
.contact-copy { position: sticky; top: 8rem; align-self: start; }.contact-copy .eyebrow { color: var(--teal-dark); }.contact-copy > p:not(.eyebrow) { margin: 1.5rem 0; font-size: 1.1rem; }
.contact-note { display: flex; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid var(--ink); font-weight: 700; }.contact-note span { font-size: 2rem; }.contact-note p { margin: 0; }
.form-shell { padding: 1rem; border: 1px solid var(--ink); background: white; box-shadow: 10px 10px 0 var(--teal); overflow: hidden; }
.form-shell iframe { width: 100%; height: 760px; border: 0; border-radius: .8rem; background: white; }
.form-fallback { margin: .75rem 1rem .4rem; font-size: .85rem; text-align: center; }.form-fallback a { font-weight: 800; }
footer { display: grid; grid-template-columns: 1fr 1.4fr .8fr; gap: 2rem; align-items: center; padding: 3rem clamp(1.2rem, 6vw, 7rem); background: var(--ink); color: white; }
.brand-footer { color: white; }.footer-links { display: flex; gap: 1.5rem; justify-content: flex-end; }.footer-links a { font-weight: 700; }.copyright { grid-column: 1/-1; margin: 1rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.25); color: #c3d2d4; font-size: .85rem; }
@media (max-width: 900px) {
  .menu-button { display: block; }.menu { display: none; position: absolute; left: 1rem; right: 1rem; top: 70px; flex-direction: column; align-items: stretch; padding: 1.2rem; background: var(--paper); border: 2px solid var(--ink); border-radius: 1rem; box-shadow: 5px 5px 0 var(--ink); }.menu.open { display: flex; }.menu a { padding: .5rem; }.menu .button { text-align: center; }
  .hero { grid-template-columns: 1fr; background: linear-gradient(165deg, var(--paper) 0 58%, var(--mist) 58%); }.hero-art { max-width: 520px; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 1rem; }.section-heading > p:last-child { max-width: 38rem; }
  .about { grid-template-columns: 1fr; }.about-statement { min-height: 520px; }
  .contact { grid-template-columns: 1fr; }.contact-copy { position: static; }
  footer { grid-template-columns: 1fr 1fr; }.footer-links { justify-content: flex-start; } footer > p:not(.copyright) { grid-column: 1/-1; order: 3; }
}
@media (max-width: 620px) {
  .site-header { min-height: 68px; }.brand-name { font-size: .82rem; letter-spacing: .17em; }.brand-symbol { transform: scale(.88); transform-origin: left center; margin-right: -.25rem; }
  .hero { min-height: auto; padding-top: 4rem; }.hero-actions { align-items: stretch; flex-direction: column; }.text-link { text-align: center; }.hero-art { margin-top: 1rem; }
  .brand-pillar { padding: .8rem .6rem; }.brand-pillar strong { font-size: .72rem; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 310px; }
  .steps li { grid-template-columns: 56px 1fr; }
  .about-statement { min-height: 430px; }
  .contact { padding-bottom: 6rem; }.form-shell { padding: .35rem; }.form-shell iframe { height: 720px; }
  footer { grid-template-columns: 1fr; }.footer-links { flex-direction: column; gap: .6rem; }.copyright { grid-column: 1; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
