*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C8971A;
  --gold-dark: #A67C0E;
  --gold-light: #E8B84B;
  --gold-pale: #FEF3D6;
  --green-deep: #0F2B14;
  --green-forest: #1A3A1F;
  --green-bright: #2D6A34;
  --cream: #FDF9F0;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #6B7280;
  --gray-dark: #374151;
  --text: #1F2937;
  --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
  --shadow-md: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.01);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-gold: 0 10px 25px -5px rgba(200,151,26,0.15);
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  scroll-behavior: smooth;
}

/* Hide scrollbar everywhere but keep scroll functionality */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 70px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--green-deep);
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.mobile-search-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  background: rgba(26, 58, 31, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 18px;
  transition: all 0.3s;
  border: 1px solid rgba(200,151,26,0.3);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 43, 20, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 151, 26, 0.2);
}
.nav-container {
  height: 74px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.nlogo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.nlogo:hover { opacity: 0.9; }
.logo-icon svg { width: 44px; height: 44px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.nbrand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: 'Playfair Display', serif;
}
.nbrand span {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.nlinks {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nlinks a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 40px;
}
.nlinks a:hover,
.nlinks a.active {
  color: var(--gold);
  background: rgba(200, 151, 26, 0.1);
}
.ncta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-deep);
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow-gold);
}
.ncta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(200,151,26,0.4);
}

/* Mobile Search Bar */
.mobile-search-bar {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--green-forest);
  padding: 16px 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  border-bottom: 1px solid transparent;
  box-shadow: var(--shadow-md);
}
.mobile-search-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  border-bottom-color: rgba(200,151,26,0.2);
}
.search-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 10px 18px;
  border: 1px solid rgba(200,151,26,0.3);
  transition: all 0.3s;
}
.search-container:focus-within {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.search-icon { color: var(--gold); font-size: 16px; }
.search-container input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
}
.search-container input::placeholder { color: rgba(255,255,255,0.5); }
.search-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.3s;
}
.search-close:hover { color: var(--gold); }
.search-results {
  max-height: 350px;
  overflow-y: auto;
  margin-top: 16px;
  display: none;
}
.search-results.active { display: block; }
.search-result-item {
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
}
.search-result-item:hover {
  background: rgba(200,151,26,0.15);
  border-color: rgba(200,151,26,0.3);
  transform: translateX(4px);
}
.search-result-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
}
.search-result-info h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}
.search-result-info p {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* Page System */
.page {
  position: fixed;
  inset: 0;
  padding-top: 74px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  background: var(--cream);
}
.page.active {
  opacity: 1;
  pointer-events: all;
}
.page-inner {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--cream);
}
/* Remove any top margin/padding from first child to eliminate white line */
.page-inner > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Hero Slider */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.on { opacity: 1; z-index: 1; }
.sov {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 28, 12, 0.85) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.scont {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 800px;
}
.sey {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.sey-line {
  width: 40px;
  height: 2px;
  background: var(--gold-light);
  display: inline-block;
}
.scont h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.scont h1 em {
  color: var(--gold-light);
  font-style: normal;
}
.scont p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.sbtns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bg {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-deep);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow-gold);
}
.bg:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -12px rgba(200,151,26,0.5);
}
.bgh {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  backdrop-filter: blur(4px);
}
.bgh:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,151,26,0.1);
}

/* Stats Bar */
.sbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(15, 43, 20, 0.92);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.si {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}
.si:last-child { border-right: none; }
.si:hover { background: rgba(200,151,26,0.1); }
.sn {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.sl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* About Section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 100%;
}
.as-img {
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.as-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.as-img:hover img { transform: scale(1.03); }
.as-txt {
  padding: 48px 56px;
  background: var(--white);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
}
.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--green-forest);
}
.sdiv {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 24px;
  border-radius: 3px;
}
.as-txt p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 20px;
}
.vc {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 12px;
  transition: all 0.3s;
}
.vc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.vi {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}
.vc h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-forest);
  margin-bottom: 4px;
}
.vc p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
  line-height: 1.4;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}
.pill {
  background: linear-gradient(135deg, #f0f5f2 0%, #e8efe9 100%);
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid rgba(45, 106, 52, 0.15);
  transition: all 0.3s;
}
.pill:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.abtns {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.bgh-outline {
  border: 1.5px solid var(--green-forest);
  color: var(--green-forest);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  font-family: 'Outfit', sans-serif;
}
.bgh-outline:hover {
  background: var(--green-forest);
  color: #fff;
  transform: translateY(-2px);
}

/* Products Section */
.prod-page {
  height: auto;
  display: flex;
  flex-direction: column;
}
.prod-hdr {
  background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-deep) 100%);
  padding: 32px 8% 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prod-hdr::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,151,26,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.prod-hdr p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  max-width: 580px;
  margin: 8px auto 0;
  line-height: 1.5;
}
.prod-body {
  flex: 1;
  padding: 32px 5%;
  background: var(--cream);
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.pc {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pc img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s;
}
.pc:hover img { transform: scale(1.03); }
.pcb {
  padding: 14px;
}
.ptag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 6px;
}
.pcb h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-forest);
  margin-bottom: 6px;
}
.pcb p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.45;
  margin-bottom: 8px;
}
.pspecs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.ps {
  background: var(--cream);
  color: var(--green-bright);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(45, 106, 52, 0.15);
}

/* Offices Section */
.off-page {
  height: auto;
  display: flex;
  flex-direction: column;
}
.off-hdr {
  background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-deep) 100%);
  padding: 32px 8% 28px;
  text-align: center;
}
.off-body {
  flex: 1;
  padding: 32px 5%;
  background: var(--cream);
}
.ogrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.oc {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: var(--shadow-sm);
}
.oc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.oc img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s;
}
.oc:hover img { transform: scale(1.02); }
.ocb {
  padding: 12px;
}
.oflag {
  font-size: 22px;
  margin-bottom: 4px;
}
.oc h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-forest);
  margin-bottom: 8px;
}
.or {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.4;
  word-break: break-word;
}
.or i {
  color: var(--gold);
  width: 14px;
  font-size: 11px;
  margin-top: 2px;
}

/* Contact Section */
.ct-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 100%;
}
.ct-left {
  background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-deep) 100%);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ct-left>p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.ci {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}
.ci:hover { transform: translateX(8px); }
.cion {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(200, 151, 26, 0.12);
  border: 1px solid rgba(200, 151, 26, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
}
.ctx h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ctx p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.ct-right {
  background: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ct-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--green-forest);
  margin-bottom: 8px;
}
.ct-right>p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all 0.3s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,26,0.1);
}
.fg textarea {
  min-height: 100px;
  resize: vertical;
}
.fsub {
  width: 100%;
  background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-bright) 100%);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.fsub:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Image Upload Buttons */
.image-upload-btn,
.office-upload-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  border-radius: 30px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  display: none;
  font-family: 'Outfit', sans-serif;
}
.admin-mode .image-upload-btn,
.admin-mode .office-upload-btn {
  display: block;
}
.pc:hover .image-upload-btn,
.oc:hover .office-upload-btn {
  opacity: 1;
}

/* Secret Area */
.secret-area {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: transparent;
  z-index: 9999;
  cursor: pointer;
}

/* Toast */
.toast-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-forest);
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  border-left: 3px solid var(--gold);
  font-size: 13px;
  font-weight: 500;
  z-index: 2000;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  max-width: 90%;
  white-space: normal;
  text-align: center;
  pointer-events: none;
}
.toast-message.show {
  transform: translateX(-50%) translateY(0);
}
.toast-message i {
  color: var(--gold);
  margin-right: 8px;
}

/* Footer inside pages – COMPACT & HORIZONTAL ON MOBILE */
.page-footer {
  background: #0A130C;
  border-top: 1px solid rgba(200, 151, 26, 0.15);
  padding: 28px 5% 20px;
  margin-top: auto;
  width: 100%;
}
.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px; /* reduced from 24px to bring columns closer */
  margin-bottom: 24px;
  max-width: 1400px;
  margin: 0 auto 24px;
}
.fb p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 280px;
}
.fsc {
  display: flex;
  gap: 12px;
}
.fs {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}
.fs:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.fcol h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fcol ul {
  list-style: none;
}
.fcol ul li {
  margin-bottom: 6px;
}
.fcol ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.3s;
  cursor: pointer;
}
.fcol ul a:hover {
  color: var(--gold);
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}
.fbot p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}
.fbot p i {
  color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pgrid, .ogrid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  .mobile-menu-toggle, .mobile-search-toggle { display: flex; }
  .nav-container { padding: 0 16px; height: 68px; }
  .nlinks {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(15, 43, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(200,151,26,0.2);
    z-index: 998;
  }
  .nlinks.active { transform: translateX(0); }
  .nlinks a { padding: 12px 20px; font-size: 15px; text-align: center; border-radius: 12px; }
  .ncta { display: none; }
  .about-split, .ct-split { grid-template-columns: 1fr; }
  .as-img { height: 260px; }
  .as-txt { padding: 28px 24px; }
  .vgrid { grid-template-columns: 1fr; }
  .pgrid, .ogrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pc img { height: 140px; }
  .oc img { height: 100px; }
  .ct-left, .ct-right { padding: 28px 24px; }
  /* Footer: make it 2x2 grid on mobile, with first column spanning full width */
  .ft {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* even tighter gap on mobile */
    text-align: center;
  }
  .fb {
    grid-column: span 2;
    text-align: center;
  }
  .fb p { max-width: 100%; text-align: center; margin-left: auto; margin-right: auto; }
  .fsc { justify-content: center; }
  .fcol h4 { text-align: center; }
  .fcol ul { text-align: center; }
  .scont { padding: 0 20px; }
  .scont h1 { font-size: clamp(28px, 7vw, 44px); }
  .scont p { font-size: 12px; margin-bottom: 24px; }
  .sbtns button { padding: 10px 22px; font-size: 12px; }
  .sbar .si { padding: 12px 8px; }
  .sn { font-size: 18px; }
  .sl { font-size: 7px; letter-spacing: 0.5px; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .prod-hdr, .off-hdr { padding: 24px 8% 20px; }
  .prod-hdr .stitle, .off-hdr .stitle { font-size: clamp(24px, 5vw, 32px); }
  .page-inner { padding-bottom: env(safe-area-inset-bottom); }
  .page-footer { padding: 24px 5% 20px; }
}
@media (max-width: 480px) {
  .pgrid, .ogrid { grid-template-columns: 1fr; gap: 16px; }
  .pc img { height: 160px; }
  .oc img { height: 130px; }
  .sbtns { flex-direction: column; width: 100%; }
  .sbtns button { width: 100%; }
  .as-txt { padding: 20px 16px; }
  .ct-left, .ct-right { padding: 24px 20px; }
  .ci { gap: 12px; }
  .cion { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
}
@media (min-width: 1400px) {
  .nav-container, .prod-body .pgrid, .off-body .ogrid, .ft, .fbot {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}