:root {
  --ink: #173d3a;
  --muted: #58706e;
  --teal: #0e7162;
  --aqua: #3dabc5;
  --aqua-light: #dff3f7;
  --mint: #e7f5ef;
  --cream: #fbfcf8;
  --white: #fff;
  --shadow: 0 28px 70px rgba(22, 70, 69, .13);
  --radius: 26px;
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 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;
}

h1, h2, h3 {
  margin: 0 0 24px;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  line-height: 1.12;
}
h1 { color: var(--aqua); font-size: clamp(3.2rem, 7vw, 6.6rem); letter-spacing: -.05em; text-shadow: 0 3px 0 rgba(14, 113, 98, .12); }
h2 { color: var(--teal); font-size: clamp(2.3rem, 4.5vw, 4.2rem); letter-spacing: -.035em; }
h3 { color: var(--teal); font-size: 1.25rem; }
p { margin: 0 0 20px; }
.eyebrow {
  margin-bottom: 15px;
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--aqua);
  box-shadow: 0 13px 28px rgba(61, 171, 197, .25);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { background: var(--teal); box-shadow: 0 16px 32px rgba(14, 113, 98, .25); transform: translateY(-2px); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(23, 61, 58, .08);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; min-height: 84px; align-items: center; justify-content: space-between; }
.brand img { width: 100px; height: 55px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { position: relative; font-size: .91rem; font-weight: 500; text-decoration: none; }
.site-nav a:not(.nav-cta)::after {
  position: absolute; right: 0; bottom: -8px; left: 0; height: 2px;
  background: var(--aqua); content: ""; transform: scaleX(0); transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav .nav-cta { padding: 10px 19px; border-radius: 999px; color: var(--white); background: var(--teal); }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--teal); }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7faf8 0%, #f1fafb 55%, #e2f5f3 100%);
}
.hero::before {
  position: absolute; width: 580px; height: 580px; top: -290px; left: -190px;
  border: 85px solid rgba(61, 171, 197, .08); border-radius: 50%; content: "";
}
.hero-grid { display: grid; min-height: 690px; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 35px; }
.hero-copy { position: relative; z-index: 2; padding: 80px 0; }
.hero-copy .lead { max-width: 570px; margin-bottom: 33px; color: var(--muted); font-family: "Faustina", serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.55; }
.hero-art { position: relative; align-self: end; }
.hero-art img { position: relative; z-index: 2; max-height: 625px; margin-inline: auto; object-fit: contain; object-position: bottom; }
.shape { position: absolute; display: block; border-radius: 50%; }
.shape-one { width: 440px; height: 440px; right: 2%; bottom: 50px; background: rgba(61, 171, 197, .18); }
.shape-two { width: 250px; height: 250px; right: -80px; top: 60px; border: 35px solid rgba(14, 113, 98, .08); }

.why { position: relative; overflow: hidden; padding-top: 80px; background: var(--cream); }
.why::after {
  position: absolute; right: -190px; bottom: 60px; width: 460px; height: 460px;
  border: 65px solid rgba(61, 171, 197, .07); border-radius: 50%; content: "";
}
.intro-card { position: relative; z-index: 1; max-width: 950px; margin: 0 auto 65px; padding: 60px 80px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.intro-card p:not(.eyebrow) { max-width: 820px; margin-inline: auto; color: var(--muted); }
.feature-grid { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.feature-card { flex: 1 1 280px; max-width: 360px; padding: 42px 32px; background: var(--white); border: 1px solid rgba(61, 171, 197, .14); border-radius: 20px; box-shadow: 0 15px 40px rgba(22, 70, 69, .07); text-align: center; }
.feature-card img { width: 105px; height: 95px; margin: 0 auto 27px; object-fit: contain; }
.feature-card p { color: var(--muted); font-size: .92rem; }
.mission-grid { position: relative; z-index: 1; display: grid; margin-top: 85px; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.mission-card { padding: 48px; border: 20px solid rgba(110, 193, 212, .28); border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.mission-card h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.mission-card p:not(.eyebrow) { color: var(--muted); }
.mission-art { text-align: center; }
.mission-art img { max-height: 380px; margin: 0 auto 25px; }
.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 24px; }
.social-links a { color: var(--teal); font-weight: 600; text-underline-offset: 4px; }

.founder { background: var(--white); }
.founder-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 100px; }
.founder-grid p:not(.eyebrow) { max-width: 680px; color: var(--muted); }
.founder-photo { position: relative; }
.founder-photo::before { position: absolute; inset: 30px -30px -30px 30px; border-radius: 22px; background: var(--mint); content: ""; }
.founder-photo img { position: relative; width: 100%; max-width: 350px; margin: auto; border: 12px solid var(--white); border-radius: 22px; box-shadow: var(--shadow); }

.testimonial { background: var(--mint); }
.testimonial-inner { max-width: 920px; text-align: center; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote > p { color: var(--ink); font-family: "Faustina", serif; font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.7; }
.testimonial blockquote footer { display: flex; margin-top: 35px; align-items: center; justify-content: center; gap: 14px; }
.testimonial blockquote footer img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.testimonial blockquote footer div { display: grid; text-align: left; line-height: 1.35; }
.testimonial blockquote footer span { color: var(--muted); font-size: .85rem; }

/* Services */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #f7faf8 0%, #edf9f7 100%);
}
.services-hero::before {
  position: absolute; top: -230px; left: -190px; width: 520px; height: 520px;
  border: 75px solid rgba(61, 171, 197, .07); border-radius: 50%; content: "";
}
.services-hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 80px; }
.services-hero-copy h1 { color: var(--teal); font-size: clamp(3.2rem, 6vw, 5.8rem); text-shadow: none; }
.services-hero-copy .lead { color: var(--ink); font-family: "Faustina", serif; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.55; }
.services-hero-copy > p:not(.eyebrow, .lead) { color: var(--muted); }
.services-hero-art { position: relative; padding: 35px; }
.services-hero-art span { position: absolute; inset: 3% 0 0 8%; border-radius: 50%; background: rgba(61, 171, 197, .14); }
.services-hero-art img { position: relative; width: 100%; max-height: 520px; object-fit: contain; }
.service-jump { position: sticky; z-index: 10; top: 84px; overflow-x: auto; border-block: 1px solid rgba(23, 61, 58, .08); background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); }
.service-jump .shell { display: flex; min-width: max-content; align-items: center; justify-content: center; gap: 5px; }
.service-jump a { padding: 16px 12px; color: var(--muted); font-size: .76rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.service-jump a:hover, .service-jump a:focus-visible { color: var(--teal); }
.service-section { scroll-margin-top: 150px; padding: 100px 0; background: var(--white); }
.service-section.alt { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.service-copy { max-width: 590px; }
.service-number { display: inline-grid; width: 44px; height: 44px; margin-bottom: 22px; place-items: center; border-radius: 50%; color: var(--teal); background: var(--mint); font-family: "Alata", sans-serif; font-size: .86rem; }
.service-copy h2 { font-size: clamp(2.1rem, 3.7vw, 3.55rem); }
.service-copy h2 span { display: block; margin-top: 8px; color: var(--aqua); font-family: "Poppins", sans-serif; font-size: .4em; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.service-copy > p:not(.service-number) { color: var(--muted); }
.service-points { margin: 25px 0 0; padding: 0; list-style: none; }
.service-points li { position: relative; margin-bottom: 13px; padding-left: 30px; color: var(--muted); }
.service-points li::before { position: absolute; top: .6em; left: 0; width: 10px; height: 10px; border: 3px solid var(--white); border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 1px var(--aqua); content: ""; }
.service-image { position: relative; }
.service-image::before { position: absolute; inset: 24px -22px -22px 24px; border-radius: 24px; background: var(--mint); content: ""; }
.service-image img { position: relative; z-index: 1; width: 100%; max-height: 470px; margin: auto; object-fit: contain; }
.service-image.photo img { aspect-ratio: 4 / 3; border-radius: 24px; box-shadow: var(--shadow); object-fit: cover; }
.service-image.illustration { padding: 35px; }
.text-link { display: inline-block; margin-top: 10px; color: var(--teal); font-weight: 600; text-underline-offset: 5px; }
.coordination-callout { padding: 110px 0; text-align: center; background: var(--mint); }
.coordination-callout .shell { max-width: 900px; }
.coordination-callout p:not(.eyebrow) { max-width: 780px; margin: 0 auto 32px; color: var(--muted); }

/* About */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: linear-gradient(135deg, #f7faf8 0%, #eef9f8 100%);
}
.about-hero::after {
  position: absolute; right: -200px; bottom: -300px; width: 600px; height: 600px;
  border: 90px solid rgba(61, 171, 197, .07); border-radius: 50%; content: "";
}
.about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 110px; }
.about-brandmark { position: relative; display: grid; min-height: 480px; place-items: center; }
.about-logo-card {
  position: relative; z-index: 2; display: grid; width: min(320px, 78%); aspect-ratio: 1;
  place-items: center; border: 1px solid rgba(61, 171, 197, .14); border-radius: 36px;
  background: rgba(255, 255, 255, .9); box-shadow: var(--shadow); transform: rotate(-4deg);
}
.about-logo-card img { width: 68%; transform: rotate(4deg); }
.about-ring { position: absolute; display: block; border-radius: 50%; }
.ring-one { width: 410px; height: 410px; border: 55px solid rgba(61, 171, 197, .12); }
.ring-two { width: 180px; height: 180px; right: 0; bottom: 10px; background: rgba(14, 113, 98, .09); }
.about-intro h1 { color: var(--teal); font-size: clamp(3.4rem, 7vw, 6.2rem); text-shadow: none; }
.about-intro .lead, .staff-copy .lead { color: var(--ink); font-family: "Faustina", serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.55; }
.about-intro > p:not(.eyebrow, .lead), .staff-copy > p:not(.eyebrow, .lead) { color: var(--muted); }
.name-story { background: var(--white); }
.name-story-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 90px; }
.name-story-copy p:not(.eyebrow) { color: var(--muted); }
.about-quote {
  position: relative; margin: 0; padding: 65px 55px 50px; overflow: hidden;
  border: 18px solid rgba(110, 193, 212, .28); border-radius: 12px;
  background: var(--white); box-shadow: var(--shadow);
}
.about-quote .quote-mark { position: absolute; top: -18px; left: 26px; color: rgba(61, 171, 197, .16); font-family: "Faustina", serif; font-size: 11rem; line-height: 1; }
.about-quote p { position: relative; color: var(--teal); font-family: "Faustina", serif; font-size: clamp(1.55rem, 3vw, 2.25rem); font-style: italic; line-height: 1.45; }
.about-quote footer { color: var(--aqua); font-size: .84rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.about-values { background: var(--cream); }
.about-values-heading { max-width: 740px; margin: 0 auto 55px; text-align: center; }
.about-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-value-grid article { padding: 42px 32px; border: 1px solid rgba(61, 171, 197, .14); border-radius: 20px; background: var(--white); box-shadow: 0 15px 40px rgba(22, 70, 69, .07); }
.about-value-grid article > span { display: grid; width: 45px; height: 45px; margin-bottom: 27px; place-items: center; border-radius: 50%; color: var(--teal); background: var(--mint); font-family: "Alata", sans-serif; font-size: .84rem; }
.about-value-grid h3 { font-size: 1.3rem; }
.about-value-grid p { color: var(--muted); font-size: .92rem; }
.our-staff { overflow: hidden; background: var(--white); }
.staff-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 110px; }
.staff-visual { display: grid; min-height: 420px; place-items: center; }
.staff-orbit {
  position: relative; display: grid; width: 320px; height: 320px; place-items: center;
  border: 55px solid var(--mint); border-radius: 50%;
}
.staff-orbit::before, .staff-orbit::after { position: absolute; border-radius: 50%; content: ""; }
.staff-orbit::before { width: 68px; height: 68px; top: -70px; right: -25px; background: rgba(61, 171, 197, .24); }
.staff-orbit::after { width: 105px; height: 105px; bottom: -70px; left: -55px; border: 18px solid rgba(14, 113, 98, .09); }
.staff-orbit img { width: 165px; max-width: none; padding: 24px; border-radius: 25px; background: var(--white); box-shadow: var(--shadow); }
.about-cta { padding: 105px 0; background: var(--mint); text-align: center; }
.about-cta .shell { max-width: 850px; }
.about-cta p:not(.eyebrow) { max-width: 680px; margin: 0 auto 30px; color: var(--muted); }

/* Our Home */
.home-hero { position: relative; min-height: 720px; overflow: hidden; background: var(--cream); }
.home-hero-image { position: absolute; inset: 0 0 0 38%; overflow: hidden; background: linear-gradient(145deg, #dff5f1, #bcecf0); }
.home-hero-image::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream) 0%, transparent 35%); content: ""; }
.home-hero-placeholder { position: absolute; inset: 0; display: grid; place-items: center; }
.home-hero-placeholder::before, .home-hero-placeholder::after { position: absolute; border-radius: 50%; content: ""; }
.home-hero-placeholder::before { width: 420px; height: 420px; right: -80px; top: 50px; border: 65px solid rgba(61, 171, 197, .18); }
.home-hero-placeholder::after { width: 240px; height: 240px; left: 18%; bottom: 55px; background: rgba(255, 255, 255, .38); }
.home-placeholder-house { z-index: 1; width: 230px; height: 190px; margin-top: 85px; border-radius: 12px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow); }
.home-placeholder-roof { position: absolute; z-index: 2; width: 0; height: 0; margin-top: -220px; border-right: 145px solid transparent; border-bottom: 125px solid var(--aqua); border-left: 145px solid transparent; }
.home-placeholder-door { position: absolute; z-index: 3; width: 62px; height: 105px; margin-top: 170px; border-radius: 8px 8px 0 0; background: var(--teal); }
.home-hero-content { position: relative; z-index: 2; display: flex; min-height: 720px; align-items: center; }
.home-hero-card { width: min(610px, 57%); padding: 60px; border-radius: var(--radius); background: rgba(255, 255, 255, .94); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.home-hero-card h1 { color: var(--teal); font-size: clamp(3.4rem, 7vw, 6.2rem); text-shadow: none; }
.home-hero-card .lead { color: var(--ink); font-family: "Faustina", serif; font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.55; }
.home-hero-card > p:not(.eyebrow, .lead) { color: var(--muted); }
.home-welcome { background: var(--white); }
.home-welcome-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.home-welcome-copy > p:not(.eyebrow) { color: var(--muted); }
.home-highlights { display: grid; gap: 18px; }
.home-highlights article { display: grid; padding: 25px; grid-template-columns: auto 1fr; align-items: start; gap: 22px; border: 1px solid rgba(61, 171, 197, .14); border-radius: 18px; background: var(--cream); }
.home-highlights article > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--teal); background: var(--mint); font-family: "Alata", sans-serif; font-size: .8rem; }
.home-highlights h3 { margin: 3px 0 8px; font-size: 1.15rem; }
.home-highlights p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.home-gallery-section { padding: 110px 0; background: var(--cream); }
.home-gallery-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.home-gallery-heading > p:not(.eyebrow) { color: var(--muted); }
.home-gallery-coming-soon { display: grid; min-height: 340px; padding: 55px 25px; place-items: center; align-content: center; gap: 30px; border: 2px dashed rgba(14, 113, 98, .28); border-radius: 24px; background: rgba(255, 255, 255, .72); text-align: center; }
.home-gallery-coming-soon > span { position: relative; display: block; width: 96px; height: 70px; border: 6px solid var(--aqua); border-radius: 14px; }
.home-gallery-coming-soon > span::before { position: absolute; top: 50%; left: 50%; width: 30px; height: 30px; border: 6px solid var(--aqua); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.home-gallery-coming-soon > span::after { position: absolute; top: -17px; left: 16px; width: 34px; height: 13px; border-radius: 7px 7px 0 0; background: var(--aqua); content: ""; }
.home-gallery-coming-soon p { margin: 0; color: var(--teal); font-family: "Alata", sans-serif; font-size: 1.15rem; }
.home-gallery { display: grid; grid-auto-rows: 260px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; display: block; overflow: hidden; border-radius: 18px; background: var(--mint); box-shadow: 0 12px 32px rgba(22, 70, 69, .08); }
.gallery-item::after { position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(7, 48, 43, .76)); content: ""; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item span { position: absolute; z-index: 2; right: 20px; bottom: 15px; left: 20px; color: var(--white); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.home-quote { padding: 125px 0; color: var(--white); background: linear-gradient(135deg, var(--teal), #095449); text-align: center; }
.home-quote blockquote { max-width: 900px; margin: 0 auto 35px; }
.home-quote blockquote p { margin-bottom: 15px; color: var(--white); font-family: "Faustina", serif; font-size: clamp(2rem, 5vw, 4.2rem); font-style: italic; line-height: 1.3; }
.home-quote blockquote footer { color: #bcecf0; font-size: .82rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.site-footer { position: relative; overflow: hidden; padding-top: 95px; color: var(--white); background: var(--teal); text-align: center; }
.site-footer .eyebrow { color: #9ce2e7; }
.site-footer h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.6rem); }
.site-footer a { color: #bcecf0; font-weight: 600; }
.address { margin: 25px 0 42px; opacity: .85; }
.contact-form { position: relative; z-index: 2; display: grid; max-width: 790px; margin: auto; grid-template-columns: 1fr 1fr; gap: 17px; text-align: left; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label span { font-size: .78rem; font-weight: 600; letter-spacing: .05em; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 17px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 9px; outline: 0; color: var(--white); background: rgba(255, 255, 255, .1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, .65); }
.contact-form input:focus, .contact-form textarea:focus { border-color: #bcecf0; box-shadow: 0 0 0 3px rgba(188, 236, 240, .16); }
.footer-button { justify-self: center; grid-column: 1 / -1; background: var(--aqua); }
.footer-people { position: relative; width: 100%; max-height: 190px; margin-top: 55px; object-fit: cover; object-position: center top; opacity: .9; }
.copyright { padding: 18px 0; background: #095449; font-size: .8rem; opacity: .95; }

@media (max-width: 900px) {
  .site-nav { position: absolute; top: 84px; right: 0; left: 0; display: none; padding: 25px 20px 30px; flex-direction: column; gap: 20px; background: var(--white); box-shadow: 0 20px 30px rgba(23, 61, 58, .12); }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding: 70px 0 20px; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-art img { max-height: 480px; }
  .feature-card { margin: 0; }
  .mission-grid, .founder-grid { grid-template-columns: 1fr; gap: 60px; }
  .mission-art img { max-height: 320px; }
  .founder-grid { text-align: center; }
  .founder-grid p:not(.eyebrow) { margin-inline: auto; }
  .services-hero-grid, .service-grid { grid-template-columns: 1fr; gap: 55px; }
  .services-hero { padding: 70px 0 80px; }
  .services-hero-copy { text-align: center; }
  .services-hero-art { max-width: 580px; margin: auto; }
  .service-jump { top: 72px; }
  .service-jump .shell { justify-content: flex-start; }
  .service-section { padding: 80px 0; }
  .service-copy { max-width: none; }
  .service-grid.image-first .service-image { order: 2; }
  .service-grid.image-first .service-copy { order: 1; }
  .service-image { width: min(100% - 25px, 600px); margin: auto; }
  .about-hero-grid, .name-story-grid, .staff-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-hero { padding: 75px 0 85px; }
  .about-brandmark { min-height: 390px; order: 2; }
  .about-intro { text-align: center; }
  .about-logo-card { width: 280px; }
  .ring-one { width: 350px; height: 350px; }
  .about-value-grid { grid-template-columns: 1fr; }
  .about-value-grid article { max-width: 600px; margin: auto; }
  .name-story-copy, .staff-copy { text-align: center; }
  .name-story-copy p:not(.eyebrow), .staff-copy p:not(.eyebrow) { margin-inline: auto; }
  .staff-visual { order: 2; min-height: 360px; }
  .home-hero { min-height: auto; padding: 70px 0 80px; }
  .home-hero-image { position: relative; inset: auto; width: var(--shell); height: 480px; margin: 0 auto; overflow: hidden; border-radius: 24px; }
  .home-hero-image::after { background: linear-gradient(0deg, rgba(14, 113, 98, .14), transparent 45%); }
  .home-hero-content { min-height: 0; margin-top: -100px; }
  .home-hero-card { width: min(90%, 650px); margin: auto; text-align: center; }
  .home-welcome-grid { grid-template-columns: 1fr; gap: 55px; }
  .home-welcome-copy { text-align: center; }
  .home-gallery { grid-auto-rows: 230px; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  :root { --shell: min(100% - 28px, 1160px); --radius: 18px; }
  .section { padding: 80px 0; }
  .why.section { padding-top: 56px; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 86px; height: 48px; }
  .site-nav { top: 72px; }
  .hero-copy { padding-top: 55px; }
  .hero-art img { max-height: 380px; }
  .intro-card { padding: 38px 24px; }
  .feature-card { padding: 35px 24px; }
  .mission-grid { margin-top: 60px; }
  .mission-card { padding: 27px 22px; border-width: 12px; }
  .founder-photo::before { inset: 20px -5px -20px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .footer-button { grid-column: auto; }
  .services-hero { padding: 55px 0 65px; }
  .services-hero-art { padding: 20px; }
  .service-section { padding: 65px 0; }
  .service-grid { gap: 38px; }
  .service-image.illustration { padding: 18px; }
  .service-image::before { inset: 14px -10px -12px 14px; }
  .coordination-callout { padding: 80px 0; }
  .about-hero { padding: 55px 0 65px; }
  .about-brandmark { min-height: 310px; }
  .about-logo-card { width: 215px; border-radius: 27px; }
  .ring-one { width: 275px; height: 275px; border-width: 38px; }
  .ring-two { width: 120px; height: 120px; }
  .about-quote { padding: 54px 27px 38px; border-width: 12px; }
  .about-value-grid article { padding: 35px 25px; }
  .staff-orbit { width: 245px; height: 245px; border-width: 38px; }
  .staff-orbit img { width: 135px; }
  .about-cta { padding: 80px 0; }
  .home-hero { padding: 35px 0 65px; }
  .home-hero-image { height: 350px; }
  .home-hero-content { margin-top: -65px; }
  .home-hero-card { width: calc(100% - 28px); padding: 36px 24px; }
  .home-highlights article { padding: 20px; gap: 15px; }
  .home-gallery-section { padding: 80px 0; }
  .home-gallery { display: grid; grid-auto-rows: 230px; grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-tall { grid-row: auto; }
  .home-quote { padding: 85px 0; }
}

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

@media print {
  @page { size: A4 portrait; margin: 10mm; }
  html, body { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .about-hero { padding: 45px 0; }
  .about-hero-grid { grid-template-columns: .82fr 1.18fr; gap: 45px; }
  .about-brandmark { min-height: 380px; order: initial; }
  .about-intro { text-align: left; }
  .about-logo-card { width: 245px; }
  .ring-one { width: 315px; height: 315px; border-width: 42px; }
  .ring-two { width: 125px; height: 125px; }
  .name-story-grid { grid-template-columns: 1.1fr .9fr; gap: 45px; }
  .name-story-copy { text-align: left; }
  .about-value-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .about-value-grid article { padding: 25px 18px; }
  .staff-grid { grid-template-columns: .85fr 1.15fr; gap: 55px; }
  .staff-visual { min-height: 330px; order: initial; }
  .staff-copy { text-align: left; }
}
