:root {
  --green-950: #073b25;
  --green-900: #095632;
  --green-700: #128647;
  --green-600: #18a454;
  --lime: #9bc53d;
  --cream: #f5f7f1;
  --white: #ffffff;
  --ink: #162019;
  --muted: #657067;
  --border: #dce5dc;
  --shadow: 0 18px 50px rgba(15, 58, 35, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 229, 220, .85);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
}

.main-nav a:hover { color: var(--green-700); }

.nav-cta {
  padding: 11px 18px;
  color: white !important;
  background: var(--green-700);
  border-radius: 999px;
}

.language-toggle {
  min-height: 42px;
  padding: 0 15px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: 700 .83rem "Inter", sans-serif;
  cursor: pointer;
}

.language-toggle .active { color: var(--green-700); }

.menu-button {
  display: none;
  padding: 8px;
  background: none;
  border: 0;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 54, 31, .96) 0%, rgba(6, 67, 38, .88) 42%, rgba(6, 67, 38, .22) 78%),
    url("assets/facility-front.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 25%, rgba(152, 206, 67, .18), transparent 30%),
    linear-gradient(180deg, transparent 65%, rgba(4, 38, 23, .32));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 15px;
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.green { color: var(--green-700); }
.eyebrow.light { color: #b8e27c; }

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
}

h3 { font-size: 1.28rem; }

.hero-copy {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .89);
  font-size: 1.1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--green-950);
  background: var(--lime);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, .72);
}

.button-outline {
  color: var(--green-700);
  border: 1px solid var(--green-700);
}

.quick-info {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quick-grid article {
  display: flex;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid var(--border);
}

.quick-grid article:last-child { border-right: 0; }

.quick-grid strong {
  display: block;
  margin-bottom: 5px;
}

.quick-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.quick-grid a {
  color: var(--green-700);
  text-decoration: none;
}

.address-link:hover { text-decoration: underline; }

.section { padding: 105px 0; }

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

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.materials-section { background: var(--cream); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.material-card {
  grid-column: span 2;
  min-height: 320px;
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.material-card:nth-child(4) { grid-column: 2 / span 2; }
.material-card:nth-child(5) { grid-column: 4 / span 2; }

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.material-card.featured {
  color: white;
  background: var(--green-900);
  border-color: transparent;
}

.material-number {
  display: block;
  margin-bottom: 30px;
  color: var(--green-700);
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.featured .material-number { color: #c9ee91; }

.card-label {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured .card-label { color: #c9ee91; }

.material-card h3 { margin-bottom: 15px; }

.material-instruction {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
}

.material-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}

.material-list li:last-child { border-bottom: 0; }

.material-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green-700);
  border-radius: 50%;
}

.featured .material-list li {
  color: rgba(255, 255, 255, .88);
  border-bottom-color: rgba(255, 255, 255, .15);
}

.featured .material-list li::before { background: #c9ee91; }

.crv-list li { padding-left: 0; }

.crv-list li::before { display: none; }

.material-photo-link {
  display: block;
  width: 100%;
  padding: 10px 12px;
  color: var(--green-950);
  background: #dff0d6;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}

.material-photo-link:hover {
  background: #edf7e7;
  transform: translateX(3px);
}

.notice {
  margin-top: 28px;
  padding: 22px 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: var(--green-950);
  background: #e4f1df;
  border-radius: 14px;
}

.notice a {
  color: var(--green-700);
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 78px;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 22px;
}

.image-badge {
  position: absolute;
  right: -25px;
  bottom: 35px;
  min-width: 170px;
  padding: 22px;
  color: white;
  background: var(--green-700);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge strong {
  font: 800 1.5rem "Montserrat", sans-serif;
}

.image-badge span {
  font-size: .85rem;
  opacity: .85;
}

.about-copy > p:not(.eyebrow) { color: var(--muted); }

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

.check-list span::before {
  content: "✓";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--green-700);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
}

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

.gallery-section { background: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 58, 35, .08);
}

.gallery-grid .gallery-large {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(5) {
  grid-column: span 6;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-grid figure:hover img { transform: scale(1.035); }

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: white;
  background: rgba(5, 45, 29, .82);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hours-section {
  color: white;
  background: var(--green-950);
}

.hours-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.hours-grid > div:first-child p:last-child {
  color: rgba(255, 255, 255, .7);
}

.hours-card {
  overflow: hidden;
  color: var(--ink);
  background: white;
  border-radius: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.lunch-row {
  padding: 12px 28px;
  color: var(--muted);
  background: var(--cream);
  font-size: .86rem;
  font-style: italic;
}

.hours-row.closed { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
}

.contact-grid > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.contact-list a {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-list strong { margin-top: 5px; }

.contact-panel {
  padding: 42px;
  color: white;
  background: var(--green-900);
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-panel img {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.contact-panel p { color: rgba(255, 255, 255, .75); }

.contact-panel a {
  display: block;
  color: #c9ee91;
  font-weight: 800;
  text-decoration: none;
}

.facebook-link { margin-top: 10px; }

footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, .7);
  background: #052d1d;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong { color: white; }
.footer-brand span { font-size: .8rem; }
footer p { margin: 0; font-size: .82rem; }

/* CSS-only photo popup */
.image-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-popup:target { display: flex; }

.popup-background {
  position: absolute;
  inset: 0;
  background: rgba(5, 35, 22, .84);
}

.popup-box {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  text-align: center;
}

.popup-box h3 {
  margin: 0 42px 20px;
}

.popup-box img {
  width: 100%;
  max-height: 66vh;
  object-fit: contain;
  background: var(--cream);
  border-radius: 12px;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 14px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-button { display: block; }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a,
  .language-toggle {
    margin: 0;
    padding: 13px;
  }

  .nav-cta { text-align: center; }

  .quick-grid { grid-template-columns: 1fr; }

  .quick-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .quick-grid article:last-child { border-bottom: 0; }

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

  .material-card,
  .material-card:nth-child(4),
  .material-card:nth-child(5) {
    grid-column: auto;
  }

  .material-card.featured { grid-column: span 2; }

  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .image-badge { right: 20px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-large,
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid .gallery-large { grid-column: span 2; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1140px); }

  .brand span { font-size: .92rem; }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-wrap { min-height: 72px; }
  .main-nav { top: 72px; }

  .hero { min-height: 650px; }
  .hero-content { padding: 78px 0 105px; }
  h1 { font-size: 3.25rem; }

  .hero-actions .button { width: 100%; }

  .quick-info { margin-top: -60px; }
  .section { padding: 78px 0; }

  .materials-grid { grid-template-columns: 1fr; }

  .material-card,
  .material-card.featured {
    grid-column: auto;
    min-height: 0;
  }

  .about-image img { height: 420px; }

  .image-badge {
    right: 14px;
    bottom: 14px;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.hours-card .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.hours-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: right;
}

.lunch-inline {
  color: #7b837f;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}
  .contact-panel { padding: 32px 22px; }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-grid .gallery-large { grid-column: auto; }

  .popup-box { padding: 24px 18px; }
}
/* Keep lunch directly below the regular hours */
.hours-card .hours-row .hours-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: 3px !important;
  text-align: right !important;
}

.hours-card .hours-row .hours-right strong,
.hours-card .hours-row .hours-right .lunch-inline {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.hours-card .hours-row .lunch-inline {
  color: #7b837f !important;
  background: transparent !important;
  font-size: 14px !important;
  font-style: italic !important;
  font-weight: 400 !important;
}