/* =====================================================
   PLUS PACK INDUSTRIES — COMPLETE PREMIUM CSS
   Palette:
   Navy  : #1B2B4B
   Blue  : #2D4A6B
   Beige : #F5F0E8
   Cream : #EDE8DF
   Tan   : #C9A97A
   TanLt : #DFC4A0
===================================================== */

:root {
  --navy: #1B2B4B;
  --blue: #2D4A6B;
  --beige: #F5F0E8;
  --cream: #EDE8DF;
  --tan: #C9A97A;
  --tanlt: #DFC4A0;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --grey: #7A7A8A;
  --border: rgba(27, 43, 75, 0.11);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  --nav-h: 82px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --eout: cubic-bezier(0, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --box-size: clamp(150px, 24vw, 260px);
  --box-half: calc(var(--box-size) / 2);
}

/* =====================================================
   RESET
===================================================== */

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: var(--beige);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--beige);
}

::-webkit-scrollbar-thumb {
  background: var(--tan);
  border-radius: 3px;
}

/* =====================================================
   COMMON
===================================================== */

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

.eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--tan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
}

.sec-title {
  margin-bottom: 1.2rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.sec-title span {
  color: var(--tan);
}

.sec-title-light {
  color: var(--beige);
}

.sec-text {
  max-width: 580px;
  color: var(--grey);
  font-size: clamp(0.92rem, 1.4vw, 1.04rem);
  line-height: 1.85;
}

.sec-text-light {
  color: rgba(245, 240, 232, 0.58);
}

.sec-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mt-sm {
  margin-top: 0.9rem;
}

.mt-lg {
  margin-top: 2.2rem;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  padding: 0.9rem 1.65rem;
  border: 2px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-110%);
  transition: transform 0.42s var(--ease);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-tan {
  border-color: var(--tan);
  background: var(--tan);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(201, 169, 122, 0.34);
}

.btn-tan:hover {
  border-color: var(--tanlt);
  background: var(--tanlt);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(201, 169, 122, 0.42);
}

.btn-ghost {
  border-color: rgba(245, 240, 232, 0.35);
  color: var(--beige);
}

.btn-ghost:hover {
  border-color: var(--tan);
  color: var(--tan);
  transform: translateY(-3px);
}

.btn-navy {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(27, 43, 75, 0.22);
}

.btn-navy:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-3px);
}

.arr {
  transition: transform 0.3s var(--ease);
}

.btn:hover .arr {
  transform: translateX(6px);
}

/* =====================================================
   REVEAL ANIMATIONS
===================================================== */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.85s var(--eout),
    transform 0.85s var(--eout);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(48px);
}

.reveal-left {
  transform: translateX(-52px);
}

.reveal-right {
  transform: translateX(52px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.reveal.out {
  opacity: 0;
  transform: translateY(-34px);
}

.reveal-left.out {
  opacity: 0;
  transform: translateX(-52px);
}

.reveal-right.out {
  opacity: 0;
  transform: translateX(52px);
}

/* Scale-fade reveal (used by Map section) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  transition:
    opacity 0.9s var(--eout),
    transform 0.9s var(--spring);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-scale.out {
  opacity: 0;
  transform: scale(0.94) translateY(-20px);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

.delay-4 {
  transition-delay: 0.42s;
}

.h-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.88s var(--eout) forwards;
}

.h-anim:nth-child(1) {
  animation-delay: 0.12s;
}

.h-anim:nth-child(2) {
  animation-delay: 0.26s;
}

.h-anim:nth-child(3) {
  animation-delay: 0.40s;
}

.h-anim:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   LOADER
===================================================== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  background: var(--navy);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-img {
  width: min(300px, 72vw);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: loaderLogoPulse 1.5s ease-in-out infinite alternate;
}

@keyframes loaderLogoPulse {
  from {
    opacity: 0.72;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

.loader-bar-wrap {
  width: 220px;
  height: 2px;
  overflow: hidden;
  background: rgba(245, 240, 232, 0.13);
}

.loader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--tan);
  animation: loaderBar 1.6s var(--ease) forwards;
}

@keyframes loaderBar {
  to {
    width: 100%;
  }
}

.loader-tagline {
  color: rgba(245, 240, 232, 0.48);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-style: italic;
  letter-spacing: 0.08rem;
}

/* =====================================================
   PROGRESS + CURSOR
===================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--tan));
  pointer-events: none;
  transition: width 0.08s linear;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 7900;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--tan);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--tan);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: var(--navy);
  background: rgba(201, 169, 122, 0.08);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 800;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(27, 43, 75, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: clamp(160px, 15vw, 235px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s var(--ease), width 0.3s var(--ease);
}

.navbar.scrolled .nav-logo-img {
  filter: none;
}

.desk-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.8rem);
}

.desk-nav a {
  position: relative;
  color: rgba(245, 240, 232, 0.88);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

.desk-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--tan);
  transition: width 0.3s var(--ease);
}

.desk-nav a:hover,
.desk-nav a.nav-active {
  color: var(--tan) !important;
}

.desk-nav a:hover::after,
.desk-nav a.nav-active::after {
  width: 100%;
}

.navbar.scrolled .desk-nav a {
  color: var(--navy);
}

.nav-cta {
  padding: 0.64rem 1.12rem !important;
  background: var(--tan) !important;
  color: var(--white) !important;
  border-radius: 2px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--tanlt) !important;
  color: var(--navy) !important;
}

.burger {
  z-index: 810;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.navbar.scrolled .burger span {
  background: var(--navy);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 790;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mob-menu.open {
  opacity: 1;
  visibility: visible;
}

.mob-link {
  color: var(--beige);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 600;
  transition: color 0.3s, letter-spacing 0.3s;
}

.mob-link:hover {
  color: var(--tan);
  letter-spacing: 0.06rem;
}

.mob-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
  color: rgba(245, 240, 232, 0.35);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.8;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding:
    calc(var(--nav-h) + 2.5rem)
    clamp(1.25rem, 5vw, 4.5rem)
    4.5rem;
  background: var(--navy);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-1 {
  top: -15%;
  right: -6%;
  width: min(660px, 82vw);
  height: min(660px, 82vw);
  background: radial-gradient(circle, rgba(201, 169, 122, 0.2), transparent 65%);
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
  bottom: -15%;
  left: -8%;
  width: min(500px, 65vw);
  height: min(500px, 65vw);
  background: radial-gradient(circle, rgba(45, 74, 107, 0.5), transparent 65%);
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.7rem;
  padding: 0.48rem 0.92rem;
  border: 1px solid rgba(201, 169, 122, 0.33);
  background: rgba(201, 169, 122, 0.08);
  color: var(--tan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.htag-dot {
  width: 7px;
  height: 7px;
  background: var(--tan);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 122, 0.55);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 169, 122, 0);
  }
}

.hero-heading {
  margin-bottom: 1.55rem;
  color: var(--beige);
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-heading em {
  display: block;
  color: var(--tan);
  font-style: italic;
}

.hero-sub {
  max-width: 510px;
  margin-bottom: 2.2rem;
  color: rgba(245, 240, 232, 0.62);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =====================================================
   HERO 3D BOX
===================================================== */

.hero-box-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: calc(var(--box-size) + 130px);
}

.box-stage {
  width: calc(var(--box-size) * 1.55);
  height: calc(var(--box-size) * 1.45);
  display: grid;
  place-items: center;
  perspective: 1100px;
  perspective-origin: 50% 34%;
}

.corrugated-box {
  position: relative;
  width: var(--box-size);
  height: var(--box-size);
  transform-style: preserve-3d;
  animation: boxSlowSpin 18s linear infinite;
  transition: transform 0.75s var(--ease);
  cursor: pointer;
}

@keyframes boxSlowSpin {
  0% {
    transform: rotateX(-19deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(-19deg) rotateY(360deg);
  }
}

.hero-box-wrap:hover .corrugated-box,
.hero-box-wrap.box-open .corrugated-box {
  animation-play-state: paused;
  transform: rotateX(-27deg) rotateY(-35deg) scale(1.04);
}

.cb-face {
  position: absolute;
  width: var(--box-size);
  height: var(--box-size);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 122, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(145deg, var(--blue), var(--navy));
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.cb-face::after,
.cb-flap::after,
.cb-top-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(245, 240, 232, 0.5) 0,
    rgba(245, 240, 232, 0.5) 1px,
    transparent 1px,
    transparent 9px
  );
  pointer-events: none;
}

.cb-front {
  transform: translateZ(var(--box-half));
}

.cb-back {
  transform: rotateY(180deg) translateZ(var(--box-half));
}

.cb-right {
  transform: rotateY(90deg) translateZ(var(--box-half));
}

.cb-left {
  transform: rotateY(-90deg) translateZ(var(--box-half));
}

.cb-bottom {
  transform: rotateX(-90deg) translateZ(var(--box-half));
  background:
    linear-gradient(145deg, rgba(27, 43, 75, 0.95), rgba(45, 74, 107, 0.75));
}

.cb-face-logo {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 2;
}

.cb-face-logo img {
  width: clamp(64px, 7vw, 100px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.cb-face-word {
  position: absolute;
  right: 0.85rem;
  bottom: 0.8rem;
  z-index: 2;
  color: rgba(201, 169, 122, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.cb-top-group {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

.cb-top-inner {
  position: absolute;
  inset: 0;
  width: var(--box-size);
  height: var(--box-size);
  transform: rotateX(90deg) translateZ(var(--box-half));
  background:
    radial-gradient(circle at center, rgba(201, 169, 122, 0.11), transparent 60%),
    linear-gradient(145deg, rgba(27, 43, 75, 0.92), rgba(45, 74, 107, 0.9));
  border: 1px solid rgba(201, 169, 122, 0.28);
}

.cb-flap {
  position: absolute;
  width: var(--box-size);
  height: var(--box-half);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(145deg, var(--tanlt), var(--tan));
  border: 1px solid rgba(27, 43, 75, 0.15);
  transform-style: preserve-3d;
  backface-visibility: visible;
  transition: transform 0.75s var(--ease);
}

.cb-flap::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0.52rem;
  z-index: 2;
  width: clamp(44px, 5vw, 72px);
  height: 24px;
  background: url("../assets/images/logo.png") no-repeat left center / contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(24%) saturate(1300%) hue-rotate(180deg) brightness(85%);
  opacity: 0.52;
}

.cb-flap-front {
  left: 0;
  top: 0;
  transform: rotateX(90deg) translateZ(var(--box-half));
  transform-origin: bottom center;
}

.cb-flap-back {
  left: 0;
  top: 50%;
  transform: rotateX(90deg) translateZ(var(--box-half));
  transform-origin: top center;
}

.cb-flap-left {
  width: var(--box-half);
  height: var(--box-size);
  left: 0;
  top: 0;
  transform: rotateX(90deg) translateZ(var(--box-half));
  transform-origin: right center;
}

.cb-flap-right {
  width: var(--box-half);
  height: var(--box-size);
  right: 0;
  top: 0;
  transform: rotateX(90deg) translateZ(var(--box-half));
  transform-origin: left center;
}

.hero-box-wrap:hover .cb-flap-front,
.hero-box-wrap.box-open .cb-flap-front {
  transform:
    rotateX(168deg)
    translateY(calc(var(--box-half) * -0.04))
    translateZ(var(--box-half));
}

.hero-box-wrap:hover .cb-flap-back,
.hero-box-wrap.box-open .cb-flap-back {
  transform:
    rotateX(12deg)
    translateY(calc(var(--box-half) * 0.04))
    translateZ(var(--box-half));
}

.hero-box-wrap:hover .cb-flap-left,
.hero-box-wrap.box-open .cb-flap-left {
  transform:
    rotateX(90deg)
    rotateY(-112deg)
    translateZ(var(--box-half));
}

.hero-box-wrap:hover .cb-flap-right,
.hero-box-wrap.box-open .cb-flap-right {
  transform:
    rotateX(90deg)
    rotateY(112deg)
    translateZ(var(--box-half));
}

.box-ground-shadow {
  width: calc(var(--box-size) * 1.1);
  height: 32px;
  margin-top: 1.6rem;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 70%);
  transition: width 0.6s var(--ease), opacity 0.6s;
}

.hero-box-wrap:hover .box-ground-shadow,
.hero-box-wrap.box-open .box-ground-shadow {
  width: calc(var(--box-size) * 0.75);
  opacity: 0.55;
}

.box-hint {
  margin-top: 0.75rem;
  color: rgba(245, 240, 232, 0.34);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.hero-box-wrap:hover .box-hint,
.hero-box-wrap.box-open .box-hint {
  opacity: 0;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
}

.hsc-label {
  color: rgba(245, 240, 232, 0.32);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.hsc-track {
  position: relative;
  width: 1.5px;
  height: 42px;
  overflow: hidden;
  background: rgba(245, 240, 232, 0.13);
}

.hsc-ball {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--tan);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollBall 2s ease-in-out infinite;
}

@keyframes scrollBall {
  0% {
    top: -8px;
    opacity: 0;
  }

  20%, 80% {
    opacity: 1;
  }

  100% {
    top: 48px;
    opacity: 0;
  }
}

/* =====================================================
   ABOUT
===================================================== */

.about {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--beige);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-img-frame:hover .about-img {
  transform: scale(1.05);
}

.img-ph {
  background: linear-gradient(135deg, var(--cream), var(--blue));
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 43, 75, 0.75), transparent 55%);
}

.about-img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.75rem 0.95rem;
  border-left: 3px solid var(--tan);
  background: var(--white);
}

.about-img-badge span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--tan);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.about-img-badge strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.about-director-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
  padding: 1.25rem 1.45rem;
  background: var(--navy);
}

.adc-role {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--tan);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.adc-name {
  display: block;
  color: var(--beige);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.adc-since {
  display: block;
  margin-top: 0.24rem;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.73rem;
}

.adc-mark {
  color: var(--tan);
  font-size: 1.65rem;
  opacity: 0.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.astat {
  padding: 1.35rem 0.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.astat:last-child {
  border-right: 0;
}

.astat strong {
  display: inline-block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.astat em {
  color: var(--tan);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: normal;
}

.astat p {
  margin-top: 0.35rem;
  color: var(--grey);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
}

/* =====================================================
   PRODUCTS
===================================================== */

.products {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--border);
  background: var(--border);
}

.prod-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--beige);
  cursor: default;
  transition: transform 0.45s var(--ease);
}

.prod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.prod-card:hover {
  transform: translateY(-5px);
}

.prod-card:hover::before {
  transform: translateY(0);
}

.prod-card > * {
  position: relative;
  z-index: 1;
}

.pc-num {
  position: absolute !important;
  top: 0.8rem;
  right: 1rem;
  z-index: 0 !important;
  color: rgba(27, 43, 75, 0.055);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  transition: color 0.45s;
}

.prod-card:hover .pc-num {
  color: rgba(245, 240, 232, 0.055);
}

.pc-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.65rem;
  border: 1px solid rgba(27, 43, 75, 0.1);
  border-radius: 4px;
  background: rgba(27, 43, 75, 0.06);
  font-size: 1.65rem;
  transition: all 0.4s var(--ease);
}

.prod-card:hover .pc-icon-wrap {
  border-color: rgba(201, 169, 122, 0.4);
  background: rgba(201, 169, 122, 0.15);
  transform: scale(1.1) rotate(-5deg);
}

.prod-card h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  transition: color 0.4s;
}

.prod-card p {
  color: var(--grey);
  font-size: 0.86rem;
  line-height: 1.72;
  transition: color 0.4s;
}

.prod-card:hover h3,
.prod-card:hover p {
  color: rgba(245, 240, 232, 0.83);
}

.pc-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 3px;
  background: var(--tan);
  transition: width 0.5s var(--ease);
}

.prod-card:hover .pc-bar {
  width: 100%;
}

/* =====================================================
   PRODUCT GRID DESKTOP ORDER FIX
   Desktop only:
   Row 1: Corrugated / Heavy Duty / Food Grade / Ice Cream
   Row 2: Custom / Corrugated Sheets / Corrugated Rolls
   Tablet + mobile remain original HTML order
===================================================== */

@media (min-width: 1051px) {
  .prod-card:nth-child(1) {
    order: 1;
  }

  .prod-card:nth-child(2) {
    order: 2;
  }

  .prod-card:nth-child(3) {
    order: 3;
  }

  /* Ice Cream Boxes moves to top row */
  .prod-card:nth-child(5) {
    order: 4;
  }

  /* Custom Packaging starts last row */
  .prod-card:nth-child(6) {
    order: 5;
  }

  /* Corrugated Sheets comes after Custom Packaging */
  .prod-card:nth-child(4) {
    order: 6;
  }

  .prod-card:nth-child(7) {
    order: 7;
  }
}
/* =====================================================
   ADVANTAGE
===================================================== */

.advantage {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 169, 122, 0.13), transparent 36%),
    var(--navy);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.adv-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(1.45rem, 2.3vw, 2rem);
  border: 1px solid rgba(245, 240, 232, 0.08);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.055), rgba(45, 74, 107, 0.28)),
    rgba(27, 43, 75, 0.6);
  transition:
    transform 0.45s var(--spring),
    box-shadow 0.45s var(--ease),
    border-color 0.45s;
}

.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 240, 232, 0.14), transparent 38%),
    radial-gradient(circle at 50% 10%, rgba(201, 169, 122, 0.12), transparent 52%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.adv-card:hover {
  border-color: rgba(201, 169, 122, 0.38);
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

.adv-card:hover::before {
  opacity: 1;
}

.adv-icon-circle {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 1.9rem;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(245, 240, 232, 0.88));
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
  transition:
    transform 0.7s var(--ease),
    box-shadow 0.45s var(--ease);
}

.adv-icon-circle::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 122, 0.18);
}

.adv-card:hover .adv-icon-circle {
  transform:
    perspective(520px)
    rotateY(360deg)
    rotateX(8deg)
    scale(1.08);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.3),
    0 0 0 8px rgba(201, 169, 122, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.adv-svg-icon {
  width: 48px;
  height: 48px;
  color: #0B2038;
  filter: drop-shadow(0 8px 10px rgba(27, 43, 75, 0.12));
  transition: color 0.35s var(--ease), transform 0.45s var(--ease);
}

.adv-card:hover .adv-svg-icon {
  color: var(--tan);
  transform: scale(1.08);
}

.adv-text {
  position: relative;
  z-index: 1;
}

.adv-num {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(201, 169, 122, 0.65);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.adv-text h3 {
  margin-bottom: 0.75rem;
  color: var(--beige);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.17;
}

.adv-text p {
  color: rgba(245, 240, 232, 0.56);
  font-size: 0.85rem;
  line-height: 1.78;
  transition: color 0.35s var(--ease);
}

.adv-card:hover .adv-text p {
  color: rgba(245, 240, 232, 0.82);
}

.adv-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--tanlt));
  transition: width 0.5s var(--ease);
}

.adv-card:hover .adv-hover-line {
  width: 100%;
}

/* =====================================================
   PROCESS
===================================================== */

.process {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--beige);
}

.proc-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 1rem;
}

.proc-line {
  position: absolute;
  top: 52px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  z-index: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--tan), var(--tanlt), var(--tan));
}

.proc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 0.6rem;
  text-align: center;
}

.ps-bubble {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid var(--tan);
  border-radius: 50%;
  background: var(--beige);
  color: var(--tan);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--beige);
  transition: all 0.35s var(--ease);
}

.proc-step:hover .ps-bubble {
  background: var(--tan);
  color: var(--white);
  transform: scale(1.12);
  box-shadow:
    0 0 0 6px var(--beige),
    0 12px 30px rgba(201, 169, 122, 0.3);
}

.ps-icon {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.ps-card h4 {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.ps-card p {
  color: var(--grey);
  font-size: 0.8rem;
  line-height: 1.65;
}

/* =====================================================
   INDUSTRIES
===================================================== */

.industries {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--navy);
}

.industries .sec-title {
  color: var(--beige);
}

.ind-ticker-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.ind-ticker-wrap::before,
.ind-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.ind-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}

.ind-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent);
}

.ind-ticker {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

.it-item {
  flex: 0 0 auto;
  width: 190px;
  padding: 1.8rem 1rem;
  border: 1px solid rgba(245, 240, 232, 0.08);
  background: rgba(245, 240, 232, 0.05);
  text-align: center;
  transition: all 0.35s var(--ease);
}

.it-item:hover {
  border-color: rgba(201, 169, 122, 0.3);
  background: rgba(201, 169, 122, 0.12);
  transform: translateY(-4px);
}

.it-item span {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
}

.it-item p {
  color: rgba(245, 240, 232, 0.56);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

.it-item:hover p {
  color: var(--tan);
}

/* =====================================================
   PORTFOLIO / GALLERY  (single clean definition)
===================================================== */

.gallery {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 10px;
  width: 100%;
}

.gal-item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(135deg, var(--cream), var(--blue));
  border: 1px solid rgba(27, 43, 75, 0.08);
}

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

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

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gal-ph img {
  display: none;
}

.gal-ph::before {
  content: "PLUS PACK";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.gal-over {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(27, 43, 75, 0.86), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gal-over span {
  color: var(--beige);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.gal-item:hover .gal-over,
.gal-item.in-view .gal-over {
  opacity: 1;
}

.gal-item:hover img {
  transform: scale(1.08);
}

/* =====================================================
   CONTACT
===================================================== */

.contact {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--beige);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2rem;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-left: 3px solid transparent;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.ci:hover {
  border-left-color: var(--tan);
  box-shadow: 4px 0 18px rgba(27, 43, 75, 0.06);
  transform: translateX(5px);
}

.ci-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.ci-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--tan);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.ci strong {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form {
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(27, 43, 75, 0.08);
}

.contact-form h3 {
  margin-bottom: 1.8rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.fg label {
  margin-bottom: 0.45rem;
  color: var(--grey);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid transparent;
  background: var(--beige);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s;
  -webkit-appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--grey);
  opacity: 0.6;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(201, 169, 122, 0.12);
}

.fg textarea {
  min-height: 120px;
  resize: vertical;
}

.fg select option {
  background: var(--white);
  color: var(--text);
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.4rem;
}

.form-feedback {
  min-height: 1.4rem;
  margin-top: 0.9rem;
  color: var(--tan);
  text-align: center;
  font-size: 0.84rem;
}

/* =====================================================
   COMPACT MAP SECTION
===================================================== */

.map-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}

.map-compact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.25fr);
  min-height: 320px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(27, 43, 75, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(27, 43, 75, 0.12);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.map-compact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 122, 0.42);
  box-shadow: 0 34px 80px rgba(27, 43, 75, 0.18);
}

.map-compact-info {
  position: relative;
  z-index: 2;
  padding: clamp(1.7rem, 3.5vw, 3rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 169, 122, 0.14), transparent 38%),
    linear-gradient(145deg, var(--navy), #14213d);
  color: var(--beige);
}

.map-compact-info .eyebrow {
  margin-bottom: 0.75rem;
}

.map-compact-info h2 {
  margin-bottom: 1rem;
  color: var(--beige);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.map-compact-info h2 span {
  color: var(--tan);
}

.map-compact-info p {
  max-width: 420px;
  margin-bottom: 1.35rem;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
}

.map-address-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  background: rgba(245, 240, 232, 0.07);
  border-left: 3px solid var(--tan);
}

.map-address-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.map-address-box strong {
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--tan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.map-compact-card:hover .map-open-btn {
  gap: 0.9rem;
  color: var(--tanlt);
}

.map-open-btn span {
  font-size: 1rem;
}

.map-compact-frame {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--cream);
}

.map-compact-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: saturate(0.72) contrast(1.05);
  transition:
    filter 0.45s var(--ease),
    transform 0.8s var(--ease);
}

.map-compact-card:hover .map-compact-frame iframe {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.map-compact-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 43, 75, 0.18), transparent 35%),
    linear-gradient(to top, rgba(27, 43, 75, 0.18), transparent 40%);
  pointer-events: none;
}

.map-mini-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-mini-pin strong {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--tan);
  font-size: 1.25rem;
  box-shadow: 0 14px 34px rgba(27, 43, 75, 0.34);
}

.map-mini-pulse {
  position: absolute;
  inset: 5px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(201, 169, 122, 0.42);
  animation: mapMiniPulse 2.2s ease-out infinite;
}

.map-mini-pulse-2 {
  animation-delay: 1.1s;
}

@keyframes mapMiniPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
/* =====================================================
   FOOTER (redesigned, clean)
===================================================== */

.footer {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0 0;
  background: var(--navy);
  overflow: hidden;
}

.footer-top-line {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--tan), var(--tanlt), var(--tan), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-logo-img {
  width: clamp(180px, 16vw, 260px);
  height: auto;
  margin-bottom: 1.2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.83rem;
  line-height: 1.85;
}

.fb-mfg {
  margin-top: 0.9rem !important;
  color: rgba(201, 169, 122, 0.5) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.04rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.fsoc {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 50%;
  color: rgba(245, 240, 232, 0.6);
  transition: all 0.3s var(--ease);
}

.fsoc svg {
  width: 16px;
  height: 16px;
}

.fsoc:hover {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h5 {
  margin-bottom: 1.4rem;
  color: var(--tan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-col a {
  position: relative;
  display: inline-block;
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.83rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--tan);
  padding-left: 6px;
}

.footer-bottom {
  padding: 1.4rem 0;
}

.fbot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(245, 240, 232, 0.32);
  font-size: 0.76rem;
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.wa-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 700;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.wa-btn:hover {
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
  transform: scale(1.12) translateY(-3px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .adv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1050px) {
  :root {
    --box-size: clamp(150px, 28vw, 220px);
  }

  .desk-nav {
    gap: 0.85rem;
  }

  .desk-nav a {
    font-size: 0.68rem;
  }

  .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 8px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --nav-h: 78px;
    --box-size: clamp(145px, 38vw, 210px);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 4rem;
  }

  .hero-text {
    max-width: 780px;
    margin-inline: auto;
  }

  .hero-sub {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-box-wrap {
    display: flex;
    min-height: calc(var(--box-size) + 105px);
    margin-top: 0.6rem;
  }

  .hero-scroll-cue {
    display: none;
  }

  .desk-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .astat {
    border-bottom: 1px solid var(--border);
  }

  .proc-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .proc-line {
    display: none;
  }

  .adv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adv-card {
    min-height: 330px;
  }

  .nav-logo-img {
    width: clamp(170px, 34vw, 230px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --box-size: clamp(135px, 50vw, 185px);
  }

  .container {
    width: min(100% - 30px, 1240px);
  }

  .hero {
    gap: 1.2rem;
    padding-inline: 1rem;
  }

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.11rem;
  }

  .hero-heading {
    font-size: clamp(2.55rem, 12vw, 4.3rem);
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-card {
    min-height: 310px;
  }

  .adv-icon-circle {
    width: 104px;
    height: 104px;
  }

  .proc-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ---- GALLERY MOBILE: aspect-ratio based, no gap issues ---- */
  .gal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 8px;
  }

  .gal-item {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .gal-item.gi-tall {
    grid-column: 1;
    grid-row: span 2;
    aspect-ratio: 1 / 2;
  }

  .gal-item.gi-wide {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2 / 1;
  }

  /* Product 7 — full width, perfect 1:1 square, no side gap */
  .gal-item.gi-last {
    grid-column: 1 / -1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

  .gal-over {
    padding: 0.78rem;
    opacity: 1;
  }

  .gal-over span {
    font-size: 0.62rem;
    letter-spacing: 0.04rem;
  }

  /* Footer stack on mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .fbot-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Map responsive */
  @media (max-width: 900px) {
  .map-compact-card {
    grid-template-columns: 1fr;
  }

  .map-compact-frame {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .map-section {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .map-compact-info {
    padding: 1.5rem;
  }

  .map-compact-info h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .map-compact-info p {
    font-size: 0.86rem;
  }

  .map-address-box {
    padding: 0.9rem;
  }

  .map-address-box strong {
    font-size: 0.75rem;
  }

  .map-compact-frame {
    min-height: 240px;
  }

  .map-mini-pin {
    width: 50px;
    height: 50px;
  }

  .map-mini-pin strong {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

@media (max-width: 460px) {
  .map-compact-frame {
    min-height: 220px;
  }

  .map-open-btn {
    font-size: 0.66rem;
  }
}