: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 { max-width: 100%; display: block; }

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 {
  background: var(--green-700);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}

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

.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 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.12;
  margin-top: 0;
}

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

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

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

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

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

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

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

.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 { text-decoration: none; color: var(--green-700); }
.info-icon { color: var(--green-700); font-size: 1.6rem; }

.section { padding: 105px 0; }

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

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

.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: 290px;
  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 {
  background: var(--green-900);
  color: white;
  border-color: transparent;
}

.material-card.featured .card-label,
.material-card.featured p { color: rgba(255,255,255,.76); }

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eaf5e7;
  color: var(--green-700);
  font-size: 1.6rem;
}

.featured .card-icon {
  background: rgba(255,255,255,.12);
  color: #bce77f;
}

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

.material-card h3 { margin-bottom: 12px; }
.material-card p, .material-card ul { color: var(--muted); font-size: .93rem; }
.material-card ul { padding-left: 19px; margin-bottom: 0; }

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

.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: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  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;
}

.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;
  background: white;
  color: var(--ink);
  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;
  background: var(--cream);
  color: var(--muted);
  font-size: .86rem;
  font-style: italic;
}

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

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

.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 {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  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;
  text-align: center;
  color: white;
  background: var(--green-900);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.contact-panel p { color: rgba(255,255,255,.75); }
.contact-panel a { color: #c9ee91; font-weight: 800; text-decoration: none; }

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 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 { 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; }
}

@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: 250px; }
  .about-image img { height: 420px; }
  .image-badge { right: 14px; bottom: 14px; }
  .hours-row { flex-direction: column; gap: 4px; }
  .contact-panel { padding: 32px 22px; }
  .footer-grid { flex-direction: column; text-align: center; }
}


.gallery-section {
  background: var(--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;
  border-radius: 18px;
  background: var(--cream);
  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);
}

@media (max-width: 900px) {
  .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) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .gallery-grid .gallery-large {
    grid-column: auto;
  }
}

/* Version 2 refinements */
.language-toggle { border: 1px solid var(--border); background: white; color: var(--muted); border-radius: 999px; padding: 8px 12px; font: 700 .76rem "Inter", sans-serif; cursor: pointer; letter-spacing: .06em; }
.language-toggle .active { color: var(--green-700); }
.quick-grid article { align-items: center; }
.quick-grid article::before { content: ""; width: 4px; height: 44px; flex: 0 0 auto; border-radius: 4px; background: var(--green-700); }
.material-number { display: block; margin-bottom: 32px; color: #9ca9a0; font: 700 .78rem "Montserrat", sans-serif; letter-spacing: .14em; }
.material-card.featured .material-number { color: rgba(255,255,255,.55); }
.card-icon { display: none; }
.text-link::after { content: "  →"; }
.facebook-link { display: block; margin-top: 12px; }
@media (max-width: 900px) { .language-toggle { margin: 8px 12px 4px; align-self: flex-start; } }
