/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

/* ---------- BRAND COLORS ---------- */
:root {
  --green: #77bf7f;
  --deep-green: #2f5d3a;
  --medium-green: #4f8a5b;
  --soft-green: #eef8ef;
  --pale-green: #f6fbf7;

  --orange: #ffa71f;
  --purple: #8f35e8;

  --dark-text: #243126;
  --muted-text: #405042;
  --border-green: rgba(119, 191, 127, 0.25);
  --shadow-green: rgba(47, 93, 58, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--pale-green);
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #162117;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

p {
  margin-top: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- Sections ---------- */
main {
  background: var(--pale-green);
}

.section {
  padding: 6rem 0;
  background: var(--pale-green);
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section:not(:last-child) {
  border-bottom: 1px solid #e3ebe4;
}

.light-section,
.page-hero,
.about-hero,
.services-hero,
.careers-hero,
.contact-hero {
  background: var(--soft-green);
}

.section-label,
.eyebrow,
.panel-label {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #e6f4e9;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  background: var(--deep-green);
  flex-shrink: 0;
}

.logo-image {
  width: 130px;
  height: 130px;
  border-radius: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #2f5d3a;
}

.brand-tagline {
  font-size: 0.95rem;
  color: #5c6a60;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 600;
  color: #334135;
  transition: 0.2s ease;
}

.site-nav a:hover {
  color: var(--medium-green);
}

.site-nav a[aria-current="page"] {
  color: var(--deep-green);
  position: relative;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--orange);
}

/* ---------- Hamburger Menu ---------- */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle-label span {
  width: 25px;
  height: 3px;
  background: #334135;
  transition: 0.3s;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ---------- Reviews Section ---------- */

.reviews-section {
  background: #f6fbf7;
}

.reviews-top {
  max-width: 760px;
  margin-bottom: 3rem;
}

.reviews-top h2 {
  color: #2f5d3a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: #eef3f1;

  border-radius: 48px;

  padding: 2.5rem;

  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-card h3 {
  color: rgb(17, 103, 17);

  font-family: Arial, Helvetica, sans-serif;

  font-size: 1.8rem;

  line-height: 1.2;

  margin-bottom: 1.5rem;

  font-weight: 800;
}

.review-card p {
  color: #4a4f58;

  font-size: 1.2rem;

  line-height: 1.7;

  margin-bottom: 2rem;
}

.review-person {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  color: rgb(17, 103, 17);

  font-size: 1.2rem;

  font-weight: 800;
}

.review-location {
  color: orange;

  font-size: 1.15rem;

  font-weight: 700;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .review-card {
    border-radius: 32px;
    padding: 2rem;
  }

  .review-card h3 {
    font-size: 1.5rem;
  }

  .review-card p {
    font-size: 1.05rem;
  }
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--orange);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--medium-green);
  color: var(--medium-green);
}

.btn-secondary:hover {
  background: #e6f4e9;
}

.btn-light {
  background: #ffffff;
  color: var(--deep-green);
}

.btn-light:hover {
  background: #eef7f0;
}

.text-link {
  color: var(--medium-green);
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  padding: 6.5rem 0 5rem;
  min-height: 78vh;
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.72)
    ),
    url("images/backoflady.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 610px;
  color: var(--muted-text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ---------- Cards ---------- */
.service-card,
.detail-card,
.value-card,
.application-form,
.contact-form,
.contact-info-box,
.story-panel,
.admissions-card,
.opportunity-card,
.cta-box,
.soft-panel,
.white-panel,
.values-box,
.panel-card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  box-shadow: 0 12px 30px var(--shadow-green);
}

/* ---------- Index Services Image ---------- */
.service-image-wrapper {
  margin: 1.5rem auto;
  max-width: 760px;
}

.service-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(47, 93, 58, 0.12);
}

/* ---------- About ---------- */
.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy {
  max-width: 700px;
}

.values-box {
  border-radius: 28px;
  padding: 2rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.values-list li {
  background: #ffffff;
  border: 1px solid #e4ebe5;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-weight: 600;
}

/* ---------- About Page ---------- */
.page-hero {
  padding: 6rem 0 4.5rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(24, 51, 31, 0.14);
}

.story-copy {
  max-width: 720px;
}

.story-panel {
  grid-column: 1 / -1;
  margin-top: 1rem;
  border-radius: 28px;
  padding: 2rem;
}

.guiding-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.guiding-card {
  background: var(--soft-green);
  border: 1px solid rgba(119, 191, 127, 0.28);
  border-radius: 22px;
  padding: 1.5rem;
}

.guiding-card h3 {
  color: var(--deep-green);
  font-size: 1.35rem;
}

.team-section {
  background: var(--pale-green);
}
.team-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(119, 191, 127, 0.22);
  border-radius: 0 72px 28px 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 16px 38px rgba(47, 93, 58, 0.12);
}
.team-image-frame {
  width: 100%;
  aspect-ratio: 4 / 4.15;
  overflow: hidden;
  background: #e6f4e9;
  border-radius: 0 72px 0 72px;
}
.team-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Individual photo positioning */
.team-photo-edgard {
  object-position: center 12%;
}

.team-photo-emery {
  object-position: center 0%;
}

.team-photo-bruce {
  object-position: center 8%;
}

.team-info {
  padding: 1.45rem 1rem 1.7rem;
}

.team-card h3 {
  color: #173f27;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.team-role {
  color: #4f5d54;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 600;
  margin-bottom: 0;
}

.about-values-section {
  background: var(--pale-green);
}

.values-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.values-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(47, 93, 58, 0.12);
}
@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 2.5rem;
  }

  .team-card {
    border-radius: 0 58px 24px 24px;
  }

  .team-image-frame {
    aspect-ratio: 4 / 3.65;
    border-radius: 0 58px 0 58px;
  }
}
@media (max-width: 600px) {
  .team-grid {
    max-width: 100%;
    gap: 2rem;
  }

  .team-card {
    border-radius: 0 42px 22px 22px;
  }

  .team-image-frame {
    aspect-ratio: 4 / 3.8;
    border-radius: 0 42px 0 42px;
  }
  .team-info {
    padding: 1.2rem 0.8rem 1.45rem;
  }

  .team-photo-edgard {
    object-position: center 10%;
  }

  .team-photo-emery {
    object-position: center 0%;
  }

  .team-photo-bruce {
    object-position: center 7%;
  }
}
@media (max-width: 480px) {
  .team-photo {
    aspect-ratio: 4 / 5;
    border-radius: 0 38px 0 38px;
  }
}
/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  border-radius: 22px;
  padding: 1.8rem;
  min-height: 230px;
}

.section-action {
  margin-top: 2rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail-card {
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
}

.detail-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.detail-card h3,
.detail-card p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.detail-card h3 {
  margin-top: 1.4rem;
  color: var(--deep-green);
}

.detail-card p {
  padding-bottom: 1.6rem;
}

.services-split-section {
  background: #ffffff;
}

.two-panel-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.soft-panel {
  background: var(--soft-green);
  border-radius: 28px;
  padding: 2rem;
}

.white-panel {
  background: #ffffff;
  border-radius: 28px;
  padding: 2rem;
}

.check-list,
.criteria-list {
  margin: 0;
  padding-left: 1.2rem;
}

.check-list li,
.criteria-list li {
  margin-bottom: 0.9rem;
}

.admissions-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.8rem;
  align-items: start;
}

.admissions-card {
  border-radius: 24px;
  padding: 1.8rem;
}

.areas-section {
  background: var(--pale-green);
}

.areas-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.county-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.county-pill {
  background: #ffffff;
  color: var(--deep-green);
  border: 1px solid rgba(119, 191, 127, 0.35);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font-weight: 600;
}
.home-info-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(119, 191, 127, 0.25);
}

.home-info-block h2 {
  color: var(--deep-green);
  margin-bottom: 1.2rem;
}

/* ---------- Careers ---------- */
.careers-band {
  background: #fff3df;
  color: var(--dark-text);
}

.careers-band h2,
.careers-band h3,
.careers-band p {
  color: var(--dark-text);;
}

.careers-label {
  color: var(--medium-green);
}

.careers-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.careers-card {
  background-color: #ffffff;
  border: 1px solid rgba(255, 167, 31, 0.35);
  border-radius: 24px;
  padding: 1.7rem;
  box-shadow: 0 12px 30px rgba(255, 167, 31, 0.12);
}

.careers-intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.value-card {
  border-radius: 22px;
  padding: 1.5rem;
}

.value-card h3 {
  color: var(--deep-green);
}

.opportunity-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: start;
}

.opportunity-card {
  border-radius: 24px;
  padding: 1.7rem;
}

.application-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.application-form {
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
}

.application-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.application-form input,
.application-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(119, 191, 127, 0.35);
  border-radius: 14px;
  font: inherit;
  background: #ffffff;
  transition: 0.25s ease;
}

.application-form input:focus,
.application-form textarea:focus {
  outline: none;
  border-color: var(--medium-green);
  box-shadow: 0 0 0 4px rgba(119, 191, 127, 0.16);
}

.application-form textarea {
  resize: vertical;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-details p {
  margin-bottom: 0.65rem;
}

.contact-form {
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(119, 191, 127, 0.35);
  border-radius: 14px;
  font: inherit;
  background: #ffffff;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--medium-green);
  box-shadow: 0 0 0 4px rgba(119, 191, 127, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-box {
  border-radius: 24px;
  padding: 2rem;
}

.hours-box {
  margin-top: 2rem;
}

.hidden-field {
  display: none;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-green);
  margin-top: 1.5rem;
  box-shadow: 0 12px 30px var(--shadow-green);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* ---------- CTA ---------- */
.cta-section {
  padding-top: 2rem;
}

.cta-box {
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.cta-label {
  color: var(--medium-green);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ---------- Footer: keep as requested ---------- */
.site-footer {
  background: #2f5d3a;
  color: #ffffff;
  padding-top: 3.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-left {
  max-width: 640px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-brand .brand-name {
  color: #ffffff;
  font-size: 1.6rem;
}

.footer-brand .brand-tagline {
  color: rgba(255, 255, 255, 0.82);
}

.footer-mission {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 720px;
}

.footer-right {
  display: grid;
  gap: 2rem;
}

.footer-right h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-right p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.footer-phone {
  color: #ffa71f !important;
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2rem 0;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}

.footer-notices-section {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3rem 0;
  background: #2f5d3a;
  text-align: center;
}

.footer-notices-section h3 {
  color: #ffffff;
  font-size: 1rem;
  margin: 1.5rem 0 1rem;
}

.footer-notices-section h3:first-child {
  margin-top: 0;
}

.footer-notices-section p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto 1rem;
}

/* ---------- Accessibility ---------- */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #b8ddc2;
  outline-offset: 3px;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

.from-left {
  transform: translateX(-60px);
}

.from-right {
  transform: translateX(60px);
}

.from-top {
  transform: translateY(-60px);
}

.from-bottom {
  transform: translateY(60px);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .careers-layout,
  .contact-layout,
  .page-hero-grid,
  .service-detail-grid,
  .two-panel-layout,
  .admissions-layout,
  .areas-layout,
  .cta-box,
  .story-layout,
  .guiding-points,
  .team-grid,
  .values-layout,
  .careers-intro-layout,
  .opportunity-layout,
  .application-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    display: none;
  }

  .nav-wrapper {
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .team-photo,
  .team-photo-placeholder {
    height: 360px;
    border-radius: 0 55px 0 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-mission {
    font-size: 1.05rem;
  }

  .footer-right h3 {
    font-size: 1.3rem;
  }

  .footer-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 4rem 0 3rem;
    min-height: 60vh;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .nav-wrapper {
    padding: 0.75rem 0;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    display: block;
  }

  .site-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #e5ebe4;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-toggle:checked ~ ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav li {
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-copy,
  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .logo-image {
    width: 48px;
    height: 48px;
  }

  .team-photo,
  .team-photo-placeholder {
    height: 320px;
  }

  .detail-card-image {
    height: 200px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 4.3rem 0;
  }

  .hero {
    padding: 5.3rem 0 4rem;
  }

  .values-list,
  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .values-box,
  .service-card,
  .panel-card,
  .careers-card,
  .application-form,
  .contact-info-box,
  .story-panel,
  .soft-panel,
  .white-panel,
  .cta-box {
    padding: 1.35rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 3rem 0 2rem;
    min-height: 50vh;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 0.75rem;
  }

  .nav-toggle-label span {
    width: 20px;
    height: 2px;
  }

  .site-nav ul {
    padding: 0.75rem 0;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .team-photo,
  .team-photo-placeholder {
    height: 260px;
  }

  .detail-card-image {
    height: 150px;
  }
}