:root {
  --bg: #fff7ec;
  --bg2: #ffffff;
  --card: #ffffff;
  --card2: #fff3e0;
  --text: #222222;
  --muted: #6b6b6b;
  --faint: rgba(0, 0, 0, 0.04);
  --stroke: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow2: 0 12px 26px rgba(15, 23, 42, 0.1);
  --radius: 18px;
  --radius2: 24px;
  --accent: #ff9800;
  --accent2: #ffb74d;
  --accent3: #ffe0b2;
  --warn: #ffe082;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 0%, rgba(255, 183, 77, 0.28), transparent 60%),
    radial-gradient(900px 600px at 80% 5%, rgba(255, 224, 178, 0.6), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

.muted {
  color: var(--muted);
}
.tiny {
  font-size: 12px;
  line-height: 1.4;
}

.spacer-12 {
  height: 12px;
}
.spacer-16 {
  height: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  outline: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-title {
  font-weight: 760;
  letter-spacing: 0.2px;
  font-size: 14px;
  line-height: 1.15;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #444444;
  border: 1px solid transparent;
}
.nav-link:hover {
  background: rgba(255, 152, 0, 0.08);
  border-color: rgba(255, 152, 0, 0.16);
}
.nav-link.is-active {
  background: rgba(255, 152, 0, 0.13);
  border-color: rgba(255, 152, 0, 0.45);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 167, 38, 0.75);
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.9), rgba(255, 138, 0, 0.96));
  color: #301400;
}
.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.92);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  cursor: pointer;
  color: #555555;
}
.lang-toggle button.is-active {
  background: rgba(255, 183, 77, 0.2);
  color: #b25b00;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #555555;
  border-radius: 2px;
}
.nav-toggle span:nth-child(1) {
  top: 14px;
}
.nav-toggle span:nth-child(2) {
  top: 21px;
}
.nav-toggle span:nth-child(3) {
  top: 28px;
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
}
.orb-1 {
  left: -160px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 183, 77, 0.95), transparent 65%);
}
.orb-2 {
  right: -240px;
  top: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 152, 0, 0.9), transparent 65%);
}
.orb-3 {
  right: 120px;
  bottom: -320px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 111, 0, 0.8), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 18px;
  line-height: 1.25;
}

p {
  margin: 0 0 12px;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 77, 0.45);
  background: rgba(255, 243, 224, 0.9);
  font-size: 13px;
  color: #5a3a12;
  margin-bottom: 14px;
}
.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--warn), rgba(255, 204, 102, 0.2));
  box-shadow: 0 0 0 4px rgba(255, 204, 102, 0.16);
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0px);
}

.btn-primary {
  border-color: rgba(255, 167, 38, 0.9);
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.98), rgba(255, 138, 0, 0.96));
  color: #301400;
}
.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.9);
}
.btn-ghost {
  background: rgba(255, 152, 0, 0.08);
}
.btn-dark {
  background: #ff9800;
  color: #301400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  padding: 14px 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.stat-value {
  font-weight: 860;
  font-size: 14px;
}
.stat-label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.hero-media {
  position: relative;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  height: 360px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 450ms ease;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 180ms ease, width 180ms ease, opacity 180ms ease;
  opacity: 0.7;
}
.hero-dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, rgba(255, 183, 77, 0.96), rgba(255, 138, 0, 0.96));
  opacity: 1;
}

.media-badge {
  position: relative;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.media-badge-title {
  font-weight: 900;
  letter-spacing: 0.4px;
}
.media-badge-subtitle {
  font-size: 12px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 54px 0;
}
#contact {
  /* So anchored scrolling (e.g. Contact link) leaves space for the fixed header */
  scroll-margin-top: 130px;
}
.section-alt {
  background: #fffaf2;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 18px;
}
.section-head p {
  max-width: 62ch;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card p {
  color: #555555;
  line-height: 1.6;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.85), rgba(255, 138, 0, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.55;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 183, 77, 0.16);
  border: 1px solid rgba(255, 152, 0, 0.55);
  color: #b25b00;
  font-weight: 900;
}

/* Leader photos & Chairman message */
.leader-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}
.leader-photo {
  margin: 0;
  text-align: center;
}
.leader-photo img {
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 183, 77, 0.4);
  box-shadow: var(--shadow2);
}
.leader-photo figcaption {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.chairman-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}
.chairman-message {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  padding: 28px 32px;
  box-shadow: var(--shadow2);
}
.chairman-message p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 16px;
}
.chairman-message p:last-child {
  margin-bottom: 0;
}
.chairman-signature {
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid var(--stroke);
  font-style: italic;
  color: var(--muted) !important;
}

.callout {
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 183, 77, 0.45);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.callout-mini {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-kpi {
  padding: 10px 10px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
}
.mini-kpi-value {
  font-weight: 900;
}
.mini-kpi-label {
  font-size: 12px;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}
.contact-grid > .card,
.contact-grid > .form {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--stroke);
}
.contact-key {
  color: var(--text);
  font-weight: 750;
}
.contact-val {
  color: var(--muted);
  text-align: right;
}

.form label {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.form span {
  font-size: 12px;
  color: var(--muted);
}
input,
textarea {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  outline: none;
}
input:focus,
textarea:focus {
  border-color: rgba(25, 211, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(25, 211, 255, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form .tiny {
  margin-top: 10px;
  display: block;
}
.form button.btn-primary {
  margin-top: 10px;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--stroke);
  background: #fff3e0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  outline: 1px solid var(--stroke);
}
.footer-title {
  font-weight: 900;
}
.footer-subtitle {
  color: var(--muted);
  font-size: 12px;
}
.footer-mission {
  font-size: 13px;
  color: var(--muted);
}
.footer-heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}
.footer-text {
  margin: 0 0 6px;
}
.footer-reg {
  font-size: 12px;
  color: var(--muted);
}
.footer-contact {
  font-size: 13px;
  color: var(--muted);
}
.footer-contact-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-contact-line {
  margin-bottom: 4px;
}
.footer-contact-label {
  font-weight: 600;
  color: var(--text);
}
.footer-contact-value {
  margin-left: 4px;
}
.footer-links {
  font-size: 13px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 4px;
}
.footer-list a {
  color: #444444;
}
.footer-list a:hover {
  color: #b25b00;
}
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--stroke);
  color: #555555;
  font-size: 14px;
  font-weight: 700;
}
.footer-social a:hover {
  background: #ff9800;
  color: #301400;
  border-color: rgba(255, 152, 0, 0.8);
}
.footer-bottom {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Page hero (About/News) */
.page-hero {
  padding: 46px 0 24px;
  position: relative;
}
.page-hero--news {
  background: radial-gradient(900px 600px at 30% 0%, rgba(255, 204, 102, 0.14), transparent 55%);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.page-hero-card {
  border-radius: var(--radius2);
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.page-hero-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-hero-card-top img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.12);
}
.kicker {
  font-weight: 900;
}
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 12px 0;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* CTA */
.section-cta {
  padding-top: 10px;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius2);
  background: linear-gradient(90deg, rgba(255, 243, 224, 0.96), rgba(255, 224, 178, 0.96));
  border: 1px solid rgba(255, 183, 77, 0.7);
  box-shadow: var(--shadow2);
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* News grid + lightbox */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.news-item {
  margin: 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform 140ms ease, border-color 160ms ease;
}
.news-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 152, 0, 0.7);
}
.news-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-item figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: #444444;
  border-top: 1px solid var(--stroke);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 80;
}
.lightbox.is-open {
  display: grid;
}
.lightbox-img {
  max-width: min(980px, 96vw);
  max-height: 78vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.05);
}
.lightbox-caption {
  margin-top: 12px;
  color: #f5f5f5;
  font-size: 14px;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  z-index: 81;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  max-width: min(720px, calc(100% - 24px));
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  color: #333333;
  font-size: 14px;
  line-height: 1.4;
  transition: opacity 200ms ease, transform 220ms ease;
  z-index: 90;
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner,
  .split,
  .page-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 36px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .footer-meta {
    justify-self: start;
  }
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 74px;
    background: #ffffff;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-link,
  .nav-cta {
    width: 100%;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .media-card--large {
    grid-row: auto;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }
}

/* =========================
   Premium Visual Refresh
   ========================= */
:root {
  --bg: #fff9ef;
  --bg2: #fdf2df;
  --card: #ffffff;
  --card2: #fff5e8;
  --text: #2e1e12;
  --muted: #6e5847;
  --faint: rgba(78, 35, 8, 0.06);
  --stroke: rgba(108, 61, 16, 0.16);
  --shadow: 0 22px 48px rgba(117, 53, 6, 0.16);
  --shadow2: 0 12px 26px rgba(117, 53, 6, 0.1);
  --accent: #f09000;
  --accent2: #e06000;
  --accent3: #ffb44c;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(1200px 700px at 14% -8%, rgba(240, 144, 0, 0.2), transparent 62%),
    radial-gradient(960px 620px at 92% 2%, rgba(224, 96, 0, 0.16), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  position: relative;
  padding-top: 78px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(133, 64, 10, 0.08) 0.65px, transparent 0.65px);
  background-size: 24px 24px;
  opacity: 0.3;
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: #4a2308;
}

.lead,
.card p,
.contact-val {
  color: #775a43;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(117, 53, 6, 0.14);
  border-bottom-color: rgba(108, 61, 16, 0.2);
}

.nav-link {
  color: #6a3a17;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nav-link:hover {
  background: rgba(240, 144, 0, 0.12);
  border-color: rgba(224, 96, 0, 0.34);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: rgba(240, 144, 0, 0.2);
  border-color: rgba(224, 96, 0, 0.44);
}

.nav-cta,
.btn-primary {
  border-color: rgba(224, 96, 0, 0.9);
  background: linear-gradient(135deg, #f09000, #e06000);
  color: #fff7ef;
}

.btn-ghost {
  background: rgba(240, 144, 0, 0.1);
  color: #8d3f0c;
}

.btn-dark {
  background: #e06000;
  color: #ffffff;
  border-color: rgba(224, 96, 0, 0.9);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(117, 53, 6, 0.2);
}

.hero {
  padding: 72px 0 36px;
}

.hero-orb {
  opacity: 0.48;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
  animation-delay: -3s;
}

.orb-3 {
  animation-delay: -6s;
}

.pill {
  border: 1px solid rgba(224, 96, 0, 0.44);
  background: rgba(255, 248, 235, 0.95);
  color: #8d460a;
}

.text-gradient {
  background: linear-gradient(90deg, #d35c00, #f09000, #ffb44c);
  -webkit-background-clip: text;
  background-clip: text;
}

.card,
.stat,
.news-item {
  transition: transform 180ms ease, box-shadow 240ms ease, border-color 180ms ease;
}

.card:hover,
.stat:hover,
.news-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(224, 96, 0, 0.28);
}

.checklist li::before {
  content: ">";
  background: rgba(240, 144, 0, 0.12);
  border: 1px solid rgba(224, 96, 0, 0.36);
  color: #bf4f00;
}

.callout {
  background: linear-gradient(180deg, rgba(240, 144, 0, 0.1), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(224, 96, 0, 0.24);
}

input:focus,
textarea:focus {
  border-color: rgba(224, 96, 0, 0.52);
  box-shadow: 0 0 0 4px rgba(240, 144, 0, 0.16);
}

.section-alt {
  background: linear-gradient(180deg, #fff9ef, #fff2dd);
}

.site-footer {
  background: linear-gradient(180deg, #fff4e2, #fde8cf);
}

.footer-list a:hover {
  color: #c25200;
}

.footer-social a:hover {
  background: #e06000;
  color: #ffffff;
  border-color: rgba(224, 96, 0, 0.85);
}

.site-nav {
  z-index: 130;
}

@media (max-width: 820px) {
  .site-nav {
    top: 86px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-16px) translateX(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   Extra Motion Enhancements
   ========================= */
.hero-slider {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform 260ms ease;
}

.hero-slide img {
  transform: scale(1.02);
}

.hero-slide.is-active img {
  animation: kenBurns 7s ease-out both;
}

.media-badge {
  animation: badgeFloat 5.8s ease-in-out infinite;
}

.nav-cta,
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.nav-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 650ms ease;
}

.btn-primary:hover::after,
.nav-cta:hover::after {
  left: 130%;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1.01);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider,
  .media-badge,
  .hero-slide.is-active img {
    animation: none !important;
    transform: none !important;
  }
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 4, 0.45);
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.enquiry-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-popup-card {
  width: min(460px, 96vw);
  background: #ffffff;
  border: 1px solid rgba(224, 96, 0, 0.28);
  box-shadow: 0 20px 46px rgba(117, 53, 6, 0.24);
  border-radius: 20px;
  padding: 22px 20px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
}

.enquiry-popup.is-open .enquiry-popup-card {
  transform: translateY(0) scale(1);
}

.enquiry-popup-title {
  margin: 0 0 8px;
}

.enquiry-popup-text {
  margin: 0 0 14px;
  color: #6a4d38;
  line-height: 1.6;
}

/* Gallery page */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 12px;
}

.mosaic-item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow2);
  cursor: pointer;
  position: relative;
  transition: transform 220ms ease, box-shadow 240ms ease, border-color 220ms ease;
}

.mosaic-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(224, 96, 0, 0.34);
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.24) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mosaic-item:hover::after {
  opacity: 1;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-item--wide {
  grid-column: span 2;
}

.mosaic-item--tall {
  grid-row: span 2;
}

@media (max-width: 980px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }
}

@media (max-width: 640px) {
  .leader-photos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .leader-photo img {
    width: 140px;
    height: 140px;
  }
  .chairman-message {
    padding: 20px 18px;
  }
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .mosaic-item--wide,
  .mosaic-item--tall {
    grid-column: auto;
    grid-row: auto;
  }
}


