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

:root {
  --gold: #C8971A;
  --gold-l: #E8B84B;
  --gold-p: #F5E9C8;
  --gd: #1A3A1F;
  --gm: #2D6A34;
  --gl: #4CAF50;
  --cream: #FAF6EE;
  --white: #fff;
  --gray: #6b7280;
  --text: #1a1a1a;
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26, 58, 31, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 151, 26, 0.28);
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  justify-content: space-between;
}

.nlogo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.nlogo svg {
  display: none;
}

.nlogo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.nlogo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-l);
  letter-spacing: 2px;
  line-height: 1;
}

.nlinks {
  display: flex;
  gap: 0;
  list-style: none;
}

.nlinks a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 0 16px;
  letter-spacing: .4px;
  transition: color .2s;
  cursor: pointer;
}

.nlinks a:hover,
.nlinks a.active {
  color: var(--gold-l);
}

.ncta {
  background: var(--gold);
  color: var(--gd);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .6px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 14px rgba(200, 151, 26, 0.45);
}

.ncta:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 151, 26, 0.55);
}

/* PAGE SYSTEM */
.page {
  position: fixed;
  inset: 0;
  padding-top: 78px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.page.active {
  opacity: 1;
  pointer-events: all;
}

.page-inner {
  height: calc(100vh - 78px);
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* HERO SLIDER — Original full-image overlay with fixed-size text box */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .slide {
    background-position: center 30%;
  }
}

.slide.on {
  opacity: 1;
  z-index: 1;
}

.sov {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 28, 12, .78) 0%, rgba(10, 28, 12, .42) 55%, rgba(10, 28, 12, .12) 100%);
  z-index: 1;
}

.scont {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
}

.sey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-l);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}

.sey::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-l);
}

.scont h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scont h1 em {
  color: var(--gold-l);
  font-style: normal;
}

.scont p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 28px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.sbtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}



.bg {
  background: var(--gold);
  color: var(--gd);
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
}

.bg:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}

.bgh {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 13px;
  transition: all .2s;
  cursor: pointer;
  background: none;
  font-family: 'Outfit', sans-serif;
}

.bgh:hover {
  border-color: var(--gold-l);
  color: var(--gold-l);
}

/* STATS BAR */
.sbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(26, 58, 31, 0.92);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.si {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.si:last-child {
  border-right: none;
}

.sn {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-l);
  display: block;
  line-height: 1;
}

.sl {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

/* ABOUT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.as-img {
  overflow: hidden;
  position: relative;
}

.as-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.as-txt {
  padding: 52px 56px;
  background: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.as-txt::-webkit-scrollbar {
  width: 4px;
}

.as-txt::-webkit-scrollbar-thumb {
  background: rgba(45, 106, 52, .3);
  border-radius: 2px;
}

.stag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--gd);
}

.sdiv {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 22px;
  border-radius: 2px;
}

.as-txt p {
  color: var(--gray);
  line-height: 1.82;
  font-size: 14px;
  margin-bottom: 14px;
}

.vgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.vc {
  background: var(--cream);
  border-radius: 7px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 10px;
}

.vi {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--gd);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.vc h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--gd);
  margin-bottom: 2px;
}

.vc p {
  font-size: 11px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.pill {
  background: #f0f5f2;
  color: var(--gm);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid rgba(45, 106, 79, .18);
}

.abtns {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

/* PRODUCTS */
.prod-page {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-hdr {
  background: var(--gd);
  padding: 28px 8% 24px;
  flex-shrink: 0;
  text-align: center;
}

.prod-hdr p {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  max-width: 520px;
  margin: 8px auto 0;
  line-height: 1.75;
}

.prod-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 8%;
  background: var(--cream);
}

.prod-body::-webkit-scrollbar {
  width: 5px;
}

.prod-body::-webkit-scrollbar-thumb {
  background: rgba(45, 106, 52, .35);
  border-radius: 3px;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pc {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
  display: block;
  text-decoration: none;
  position: relative;
}

.pc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.pc img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.pc:hover img {
  transform: scale(1.05);
}

.pcb {
  padding: 16px 18px;
}

.ptag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.pcb h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gd);
  margin-bottom: 6px;
}

.pcb p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 8px;
}

.pspecs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ps {
  background: #f0f5f2;
  color: var(--gm);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.image-upload-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--gd);
  border: none;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  display: none;
}

.admin-mode .image-upload-btn {
  display: block;
}

.pc:hover .image-upload-btn {
  opacity: 1;
}

/* CONTACT */
.ct-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.ct-left {
  background: var(--gd);
  padding: 52px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-left::-webkit-scrollbar {
  width: 4px;
}

.ct-left::-webkit-scrollbar-thumb {
  background: rgba(200, 151, 26, .3);
  border-radius: 2px;
}

.ct-left>p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.78;
  margin-bottom: 28px;
}

.ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ci:last-of-type {
  border-bottom: none;
}

.cion {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(200, 151, 26, .1);
  border: 1px solid rgba(200, 151, 26, .25);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-l);
  font-size: 14px;
}

.ctx h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.ctx p,
.ctx a {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.ct-right {
  background: var(--cream);
  padding: 52px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gd);
  margin-bottom: 6px;
}

.ct-right>p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 22px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fg {
  margin-bottom: 14px;
}

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gl);
}

.fg textarea {
  min-height: 85px;
  resize: none;
}

.fsub {
  width: 100%;
  background: var(--gd);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.fsub:hover {
  background: var(--gm);
}

.toast-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gd);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  font-size: 14px;
  font-weight: 500;
  z-index: 2000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.toast-message.show {
  transform: translateX(0);
}

.toast-message i {
  color: var(--gold);
  margin-right: 10px;
}

/* OFFICES */
.off-page {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.off-hdr {
  background: var(--gd);
  padding: 32px 8% 26px;
  flex-shrink: 0;
  text-align: center;
}

.off-hdr p {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  max-width: 520px;
  margin: 8px auto 0;
  line-height: 1.75;
}

.off-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 8%;
  background: var(--cream);
}

.off-body::-webkit-scrollbar {
  width: 4px;
}

.off-body::-webkit-scrollbar-thumb {
  background: rgba(45, 106, 52, .3);
  border-radius: 3px;
}

.ogrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.oc {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
  background: #fff;
  position: relative;
}

.oc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .1);
}

.oc img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}

.ocb {
  padding: 16px 18px;
}

.oflag {
  font-size: 24px;
  margin-bottom: 6px;
}

.oc h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gd);
  margin-bottom: 8px;
}

.or {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 3px;
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 1.4;
}

.office-upload-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--gd);
  border: none;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  display: none;
}

.admin-mode .office-upload-btn {
  display: block;
}

.oc:hover .office-upload-btn {
  opacity: 1;
}

/* FOOTER */
footer {
  background: #060f08;
  border-top: 1px solid rgba(200, 151, 26, .18);
  padding: 44px 8% 22px;
}

.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.fb-brand strong {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: 'Playfair Display', serif;
}

.fb-brand span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.fb p {
  color: rgba(255, 255, 255, .36);
  font-size: 12px;
  line-height: 1.8;
  margin: 12px 0 18px;
  max-width: 240px;
}

.fsc {
  display: flex;
  gap: 8px;
}

.fs {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  text-decoration: none;
  transition: all .2s;
}

.fs:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.fcol h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.fcol ul {
  list-style: none;
}

.fcol ul li {
  margin-bottom: 9px;
}

.fcol ul a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
  cursor: pointer;
}

.fcol ul a:hover {
  color: #fff;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.fbot p {
  color: rgba(255, 255, 255, .22);
  font-size: 11px;
}

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

/* HAMBURGER MENU */
.nhamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: border-color 0.2s;
  z-index: 1001;
}

.nhamburger:hover {
  border-color: var(--gold);
}

.nhamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nhamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nhamburger.active span:nth-child(2) {
  opacity: 0;
}

.nhamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU DROPDOWN */
.nmobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  background: rgba(26, 58, 31, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 151, 26, 0.28);
  z-index: 998;
  padding: 12px 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.nmobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nmobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  letter-spacing: 0.4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nmobile-menu a:hover,
.nmobile-menu a.active {
  color: var(--gold-l);
  background: rgba(200, 151, 26, 0.08);
}

.nmobile-menu .ncta-mobile {
  margin: 8px 24px 4px;
  display: block;
  background: var(--gold);
  color: var(--gd);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 14px rgba(200, 151, 26, 0.35);
}

/* RESPONSIVE — all screen sizes */
@media (max-width: 1200px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .ogrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .ogrid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .as-img { max-height: 40%; }
  .as-txt { padding: 36px 40px; }
  .ct-split { grid-template-columns: 1fr; }
  .ct-left, .ct-right { padding: 36px 32px; }
  .ft { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ogrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sbar { grid-template-columns: repeat(2, 1fr); }
  .si { padding: 14px; }
  .sn { font-size: 28px; }
  .sl { font-size: 9px; }
  .nlinks { display: none; }
  .ncta { display: none; }
  .nhamburger { display: flex; }
  .nmobile-menu { display: block; }
  nav { height: 68px; padding: 0 4%; }
  .nlogo-img { height: 56px; }
  .page { padding-top: 68px; }
  .page-inner { height: calc(100vh - 68px); }
  .scont h1 { font-size: clamp(22px, 5vw, 36px); }
  .scont p { font-size: 13px; margin-bottom: 20px; }
  .scont { padding: 0 5%; }
  .sey { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; }
  .bg, .bgh { padding: 11px 24px; font-size: 12px; }
  .sbtns { gap: 10px; }
  .about-split { grid-template-columns: 1fr; }
  .as-img { display: none; }
  .as-txt { padding: 28px 24px; }
  .as-txt p { font-size: 13px; }
  .vgrid { display: none; }
  .pills { display: none; }
  .ct-split { grid-template-columns: 1fr; height: auto; }
  #p-contact .page-inner { height: auto; overflow: visible; }
  #p-contact { overflow-y: auto; }
  .ct-left { min-height: auto; padding: 32px 20px; }
  .ct-left h2 { font-size: 26px; color: #fff; }
  .ct-right { min-height: auto; padding: 32px 20px; }
  .ct-right h2 { font-size: 26px; }
  .ft { grid-template-columns: 1fr 1fr; gap: 24px; }
  .fcol-quick { display: none; }
  .fcol-products { display: none; }
  footer { padding: 36px 5% 18px; }
  .prod-hdr { padding: 22px 5% 18px; }
  .prod-body { padding: 20px 5%; }
  .off-hdr { padding: 22px 5% 18px; }
  .off-body { padding: 20px 5%; }
}

@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr; }
  .ogrid { grid-template-columns: 1fr; }
  .ft { grid-template-columns: 1fr; gap: 20px; }
  .as-txt { padding: 24px 16px; }
  .ct-left, .ct-right { padding: 24px 16px; }
  .ct-left h2 { color: #fff; }
  .frow { grid-template-columns: 1fr; }
  .sbar { grid-template-columns: 1fr 1fr; }
  .sn { font-size: 24px; }
  .si { padding: 12px 8px; }
  .fb p { max-width: 100%; }
  .prod-body { padding: 16px 4%; }
  .off-body { padding: 16px 4%; }
  .scont h1 { font-size: clamp(20px, 6vw, 32px); }
  .scont p { font-size: 12px; }
  .sey { font-size: 9px; }
  .bg, .bgh { padding: 10px 20px; font-size: 11px; }
  nav { height: 60px; padding: 0 3%; }
  .nlogo-img { height: 48px; }
  .page { padding-top: 60px; }
  .page-inner { height: calc(100vh - 60px); }
  .nmobile-menu { top: 60px; }
  footer { padding: 28px 4% 14px; }
  .ct-left h2, .ct-right h2 { font-size: 22px; }
  #p-contact .page-inner { height: auto; overflow: visible; }
  #p-contact { overflow-y: auto; }
}
