:root {
  --ink: #173044;
  --muted: #667784;
  --green: #54bd67;
  --green-dark: #289346;
  --cream: #f7faf8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 38, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 38, 61, 0.96) 0%, rgba(8, 38, 61, 0.78) 31%, rgba(8, 38, 61, 0.2) 60%, rgba(8, 38, 61, 0.06) 100%),
    url("assets/hero-deich-schafe.webp") center / cover;
}

.page-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 38, 61, 0.96) 0%, rgba(8, 38, 61, 0.72) 42%, rgba(8, 38, 61, 0.34) 100%),
    url("assets/hero-deich-schafe.webp") center / cover;
}

.topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 32px;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 28px;
}

.logo {
  position: relative;
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 10px 14px 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.nav-panel a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.nav-panel a.active {
  color: var(--green);
  border-bottom: 2px solid rgba(84, 189, 103, 0.55);
  padding-bottom: 7px;
}

.nav-panel .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 28px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(48, 160, 73, 0.32);
}

.menu-button {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 116px 0 160px;
}

.page-title {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.page-title h1 {
  max-width: 760px;
}

.page-title > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 650;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 12px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow span {
  color: #ff4772;
  font-size: 24px;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 38px;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(48, 160, 73, 0.28);
}

.button.secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button.ghost {
  border: 1.5px solid rgba(23, 48, 68, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.services {
  position: relative;
  margin-top: -82px;
  padding: 90px min(4vw, 54px) 70px;
  background: var(--cream);
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  top: -58px;
  height: 112px;
  color: var(--cream);
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p,
.kicker {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.about h2,
.contact-band h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.section-heading > span,
.about > p {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-columns: 1.35fr 170px;
  grid-template-rows: auto 1fr;
  gap: 18px 20px;
  min-height: 282px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e6f6e9;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-text {
  grid-column: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p {
  color: #536675;
  font-size: 14px;
  line-height: 1.7;
}

.service-card a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  margin-left: 4px;
  color: var(--green-dark);
  font-weight: 850;
}

.service-card img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
  border-radius: 8px;
}

.about,
.contact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding-top: 20px;
}

.contact-band {
  align-items: center;
  grid-template-columns: 1fr auto;
  padding: 42px;
  border-radius: 8px;
  background: #173044;
  color: var(--white);
}

.contact-band .kicker {
  color: #7ee08b;
}

.contact-band h2 {
  margin-bottom: 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.quick-links a {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-links span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-links strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.page-main {
  padding: 74px 0 80px;
}

.content-split,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
}

.content-split h2,
.detail-card h2,
.contact-card h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.copy-block p,
.detail-card p,
.detail-card li,
.contact-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
}

.value-grid article,
.contact-card,
.contact-form {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.value-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mission-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 64px;
  padding: 46px;
  border-radius: 8px;
  background: #173044;
  color: var(--white);
  box-shadow: var(--shadow);
}

.mission-band .kicker {
  color: #7ee08b;
}

.mission-band h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.mission-band p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.final-note {
  margin-top: 8px;
}

.inline-button {
  margin-top: 10px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.team-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-team {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-photo {
  display: grid;
  place-items: center;
  width: 104px;
  height: 126px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(84, 189, 103, 0.18), rgba(23, 48, 68, 0.12)),
    #eef6f1;
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 950;
}

img.team-photo {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-info {
  min-width: 0;
}

.team-info h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.team-info p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.team-area {
  color: var(--green-dark) !important;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.team-info a {
  display: block;
  max-width: 100%;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.detail-grid {
  display: grid;
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.detail-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-card.reverse {
  grid-template-columns: 1fr 360px;
}

.detail-card.reverse img {
  grid-column: 2;
}

.detail-card.reverse div {
  grid-column: 1;
  grid-row: 1;
}

.detail-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.detail-card li + li {
  margin-top: 8px;
}

.service-section {
  display: grid;
  gap: 34px;
}

.service-intro {
  width: 100%;
  margin-bottom: 0;
}

.accordion-wrap {
  display: grid;
  gap: 16px;
}

.compact-heading {
  margin-bottom: 10px;
}

.accordion {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 24px 28px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.accordion summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #e6f6e9;
  color: var(--green-dark);
}

.accordion[open] summary::after {
  content: "-";
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 28px 28px 52px;
}

.check-list li {
  color: var(--muted);
  line-height: 1.65;
}

.accordion-copy {
  display: grid;
  gap: 12px;
  padding: 0 28px 28px;
}

.accordion-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card.compact {
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 48, 68, 0.14);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  background: #fbfdfc;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.job-card {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.job-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.job-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.job-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 18px;
  background: #e6f6e9;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.job-grid section {
  padding: 24px;
  border-radius: 8px;
  background: #f7faf8;
}

.job-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.job-grid ul {
  margin: 0;
  padding-left: 20px;
}

.job-grid li,
.job-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.job-grid li + li {
  margin-top: 8px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 34px;
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
}

.event-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.event-subtitle {
  color: var(--ink) !important;
  font-size: 22px !important;
  font-weight: 900;
}

.event-facts {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.event-facts div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: #f7faf8;
}

.event-facts span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-facts strong {
  color: var(--ink);
  font-size: 17px;
}

.event-flyer {
  margin: 0;
}

.event-flyer img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 38, 56, 0.16);
}

.site-footer {
  background: #102a3e;
  color: var(--white);
  padding: 48px min(4vw, 54px) 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.footer-brand p,
.footer-contact span {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.footer-contact p {
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.compact-hero {
  min-height: 390px;
}

.legal-card {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.form-result {
  margin-top: 72px;
  text-align: left;
}

.form-result h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 46px);
}

.form-result .button {
  width: fit-content;
  margin-top: 12px;
}

.office-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.office-section .content-split {
  width: 100%;
}

.office-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.office-photo {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.office-photo.large {
  grid-column: span 2;
  grid-row: span 2;
}

.office-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.office-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(16, 42, 62, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.legal-text h3:first-child {
  margin-top: 0;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.92), rgba(247, 250, 248, 0.98)),
    url("assets/hero-deich-schafe.webp") center / cover;
}

.not-found img {
  width: 118px;
  height: 118px;
  margin-bottom: 24px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.not-found h1 {
  max-width: 720px;
  color: var(--ink);
}

.not-found > p:not(.kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: auto 1fr;
  }

  .logo {
    width: 88px;
    height: 88px;
  }

  .nav-panel {
    gap: 14px;
    padding-left: 22px;
  }

  .nav-panel .nav-cta {
    padding: 0 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .service-card {
    grid-template-columns: 1fr 210px;
  }

  .team-grid,
  .featured-team {
    grid-template-columns: 1fr;
  }

  .content-split,
  .contact-layout,
  .value-grid,
  .event-card,
  .detail-card,
  .detail-card.reverse,
  .job-head,
  .job-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-card.reverse img,
  .detail-card.reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .value-grid {
    width: min(680px, calc(100% - 48px));
  }

  .quick-links {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
  }

  .mission-band {
    width: min(680px, calc(100% - 48px));
  }

  .team-section {
    width: min(680px, calc(100% - 48px));
  }

  .footer-brand {
    align-items: flex-start;
  }

  .office-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 700px;
    background:
      linear-gradient(180deg, rgba(8, 38, 61, 0.9) 0%, rgba(8, 38, 61, 0.7) 48%, rgba(8, 38, 61, 0.42) 100%),
      url("assets/hero-deich-schafe-mobile.webp") center / cover;
  }

  .page-hero {
    min-height: 500px;
    background:
      linear-gradient(180deg, rgba(8, 38, 61, 0.92) 0%, rgba(8, 38, 61, 0.72) 54%, rgba(8, 38, 61, 0.46) 100%),
      url("assets/hero-deich-schafe.webp") center / cover;
  }

  .topbar {
    width: min(100% - 32px, 680px);
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-top: 18px;
  }

  .logo {
    width: 76px;
    height: 76px;
  }

  .menu-button {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 52px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
  }

  .nav-panel {
    position: absolute;
    top: 106px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
  }

  .nav-panel.open {
    display: flex;
  }

  .nav-panel a {
    padding: 12px 8px;
  }

  .nav-panel .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-top: 100px;
  }

  .page-title {
    width: min(100% - 32px, 680px);
    padding: 82px 0 84px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    font-size: 45px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .services {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    grid-column: 1;
    grid-row: auto;
    height: 210px;
    min-height: 0;
  }

  .about,
  .contact-band {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
    gap: 18px;
  }

  .contact-band {
    padding: 30px 22px;
  }

  .page-main {
    padding: 52px 0 60px;
  }

  .content-split,
  .contact-layout,
  .detail-grid {
    width: min(100% - 32px, 680px);
  }

  .value-grid {
    width: min(100% - 32px, 680px);
  }

  .quick-links {
    width: min(100% - 32px, 680px);
  }

  .mission-band {
    width: min(100% - 32px, 680px);
    padding: 30px 22px;
  }

  .team-section {
    width: min(100% - 32px, 680px);
  }

  .team-card {
    grid-template-columns: 82px 1fr;
    padding: 18px;
  }

  .team-photo {
    width: 82px;
    height: 102px;
    font-size: 22px;
  }

  .job-card {
    width: min(100% - 32px, 680px);
    padding: 22px;
  }

  .event-card {
    width: min(100% - 32px, 680px);
    padding: 22px;
  }

  .detail-card,
  .accordion summary,
  .value-grid article,
  .job-grid section,
  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .check-list {
    padding: 0 22px 24px 42px;
  }

  .accordion-copy {
    padding: 0 22px 24px;
  }

  .detail-card img {
    height: 260px;
  }

  .site-footer {
    padding: 38px 16px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-card {
    width: min(100% - 32px, 680px);
    padding: 22px;
  }

  .office-section {
    width: min(100% - 32px, 680px);
  }

  .office-gallery {
    grid-template-columns: 1fr;
  }

  .office-photo.large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media print {
  .topbar,
  .page-hero,
  .detail-card.reverse,
  .contact-band {
    display: none;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .page-main,
  .detail-grid {
    width: 100%;
    padding: 0;
  }

  .accordion {
    box-shadow: none;
    border: 1px solid #d7d7d7;
    break-inside: avoid;
  }
}
