:root {
  --green-900: #1a3a2a;
  --green-800: #1f4d35;
  --green-700: #2d6a4f;
  --green-600: #355e3b;
  --green-50: #eef7f2;
  --green-500: #3a7d52;
  --green-400: #4f9e6e;
  --green-100: #d6ede0;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7f5;
  --bg-tertiary: #eef7f2;
  --text-primary: #111b14;
  --text-secondary: #3d4f43;
  --text-muted: #6b7d71;
  --border: #d0ddd4;
  --nav-bg: #1a3a2a;
  --nav-text: #ffffff;
  --footer-bg: #111b14;
  --footer-text: #c8dbd0;
  --card-bg: #ffffff;
  --card-border: #d6ede0;
  --hero-overlay: rgba(17,27,20,0.62);
  --tag-bg: #d6ede0;
  --tag-text: #1f4d35;
  --section-divider: #d0ddd4;
  --input-bg: #f5f7f5;
}

[data-theme="dark"] {
  --bg-primary: #111b14;
  --bg-secondary: #182418;
  --bg-tertiary: #1a3a2a;
  --text-primary: #e8f3ec;
  --text-secondary: #a8c8b4;
  --text-muted: #6b9a7c;
  --border: #2d4a35;
  --nav-bg: #0d1f13;
  --nav-text: #e8f3ec;
  --footer-bg: #0a130c;
  --footer-text: #a8c8b4;
  --card-bg: #182418;
  --card-border: #2d4a35;
  --hero-overlay: rgba(5,12,7,0.72);
  --tag-bg: #1f4d35;
  --tag-text: #9fdcbc;
  --section-divider: #2d4a35;
  --input-bg: #182418;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.top-bar {
  background: var(--green-900);
  color: var(--footer-text);
  font-size: 13px;
  padding: 6px 0;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a {
  color: var(--footer-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar .material-icons {
  font-size: 15px;
}

.top-bar-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

nav {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--green-100);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-700);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.nav-brand-sub {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 68px;
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link .material-icons {
  font-size: 16px;
  opacity: 0.7;
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-800);
  min-width: 220px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
  border-radius: 0 0 4px 4px;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.theme-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 20px;
  padding: 5px 12px 5px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.18);
}

.theme-toggle .material-icons {
  font-size: 18px;
}

.nav-cta {
  background: var(--gold);
  color: #111b14;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}

.hamburger .material-icons {
  font-size: 28px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-900);
  z-index: 2000;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

.mobile-close .material-icons {
  font-size: 28px;
}

.mobile-nav-items {
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 14px 1.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,0.08);
}

.mobile-section-label {
  padding: 8px 1.5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-top: 6px;
}

.hero {
  position: relative;
  height: 88vh;
  min-height: 540px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) { background-image: url('images/image1.jpg'); }
.hero-slide:nth-child(2) { background-image: url('images/image2.jpg'); }
.hero-slide:nth-child(3) { background-image: url('images/image3.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,27,20,0.85) 0%, rgba(17,27,20,0.3) 60%, rgba(17,27,20,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1rem;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #111b14;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.quick-links {
  background: var(--green-700);
  padding: 0;
}

.quick-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.4rem 1.5rem;
  color: rgba(255,255,255,0.88);
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
  cursor: pointer;
}

.quick-link-item:last-child {
  border-right: none;
}

.quick-link-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.quick-link-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-link-icon .material-icons {
  font-size: 22px;
  color: var(--gold-light);
}

.quick-link-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.quick-link-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.section-full .section {
  padding-top: 0;
  padding-bottom: 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="dark"] .section-label {
  color: var(--green-400);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.75;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.mv-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.mv-card-icon .material-icons {
  font-size: 26px;
  color: var(--green-700);
}

[data-theme="dark"] .mv-card-icon .material-icons {
  color: var(--green-400);
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-pill {
  background: var(--tag-bg);
  color: var(--tag-text);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-pill .material-icons {
  font-size: 17px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #111b14;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.3;
}

.about-image-badge strong {
  display: block;
  font-size: 22px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.program-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

[data-theme="dark"] .program-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.program-card-header {
  background: var(--green-800);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.program-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.program-icon {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.program-icon .material-icons {
  font-size: 34px;
}

.program-card-header h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
}

.program-card-header p {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

.program-card-body {
  padding: 1.25rem 1.5rem;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.program-item:last-child {
  border-bottom: none;
}

.program-item .material-icons {
  font-size: 15px;
  color: var(--green-500);
}

[data-theme="dark"] .program-item .material-icons {
  color: var(--green-400);
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.news-featured {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}

.news-featured-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-body {
  padding: 1.5rem;
}

.news-tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.news-featured-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.news-date {
  font-size: 12px;
  color: var(--text-muted);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 12px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.news-item:hover {
  border-color: var(--green-500);
}

.news-item-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-item-icon .material-icons {
  font-size: 20px;
  color: var(--green-600);
}

[data-theme="dark"] .news-item-icon .material-icons {
  color: var(--green-400);
}

.news-item h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 3px;
}

.news-item .news-date {
  font-size: 11px;
}

.stats-section {
  background: var(--green-900);
  padding: 4rem 1.5rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,42,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26,58,42,0.45);
}

.gallery-overlay .material-icons {
  font-size: 32px;
  color: rgba(255,255,255,0);
  transition: color 0.3s;
}

.gallery-item:hover .gallery-overlay .material-icons {
  color: rgba(255,255,255,0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover {
  border-color: var(--green-500);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  background: var(--green-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .material-icons {
  font-size: 22px;
  color: var(--gold-light);
}

.contact-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-card-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-card-value a {
  color: var(--text-primary);
  transition: color 0.2s;
}

.contact-card-value a:hover {
  color: var(--green-500);
}

[data-theme="dark"] .contact-card-value a:hover {
  color: var(--green-400);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--green-600);
}

.map-container {
  width: 100%;
  height: 260px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.25rem;
}

.footer-logo-badge {
  width: 46px;
  height: 46px;
  background: var(--green-700);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
  font-size: 18px;
  font-weight: 700;
}

.footer-social:hover {
  background: var(--gold);
  color: #111b14;
  border-color: var(--gold);
}

.footer-social .material-icons {
  font-size: 18px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a .material-icons {
  font-size: 14px;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.85);
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--green-600);
}

.back-to-top .material-icons {
  font-size: 22px;
}

.divider {
  border: none;
  border-top: 1px solid var(--section-divider);
  margin: 0;
}

@media (max-width: 1024px) {
  .quick-links-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; align-items: center; }
  .about-split { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quick-links-inner { grid-template-columns: 1fr 1fr; }
  .quick-link-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-row: span 1; }
  .quick-links-inner { grid-template-columns: 1fr; }
}