/* =================================================================
   Refalo Woodworks — style.css
   Single stylesheet. All 7 pages + admin share these tokens.
   ================================================================= */

:root {
  /* -------- Brand tokens (per spec) -------- */
  --navy:       #1B2A4A;
  --navy-dark:  #111D35;
  --navy-light: #243656;
  --gold:       #B08D57;
  --gold-light: #C9A96E;
  --gold-dark:  #8C6F3C;
  --white:      #FFFFFF;
  --off-white:  #F8F6F3;
  --text-body:  #4A4A4A;
  --gray-200:   #E8E8E8;
  --gray-300:   #d4d4d4;
  --gray-500:   #9b9b9b;

  /* -------- Type -------- */
  --display: 'Playfair Display', 'Times New Roman', serif;
  --body:    'Raleway', system-ui, -apple-system, sans-serif;
  --ui:      'Inter', system-ui, -apple-system, sans-serif;

  /* -------- Layout -------- */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 8px;
  --radius-lg: 16px;

  /* -------- Motion (per spec) -------- */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-hover: 200ms;
  --t: 400ms;
  --t-entry: 800ms;
  --t-scroll: 600ms;

  /* -------- Shadow -------- */
  --shadow-sm: 0 4px 12px rgba(17, 29, 53, 0.08);
  --shadow:    0 12px 32px rgba(17, 29, 53, 0.12);
  --shadow-lg: 0 30px 60px -20px rgba(17, 29, 53, 0.4);
  --shadow-gold: 0 14px 36px -12px rgba(176, 141, 87, 0.45);
}

/* ======================= RESET ======================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
em { font-style: italic; color: var(--gold); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ======================= REUSABLE BITS ======================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4em;
}
.eyebrow__line { width: 40px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow--light { color: var(--gold-light); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin: 0.4em 0 0.4em; }
.section-head__sub { color: var(--gray-500); font-size: 1.05rem; max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-head__sub { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid transparent;
}
.btn--gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--ghost-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--full { width: 100%; padding-block: 18px; }

.cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border-radius: 99px;
  transition: all var(--t) var(--ease);
}
.cta-pill:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ======================= PRELOADER ======================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms var(--ease), visibility 0s 600ms;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader__logo img {
  width: 250px;
  height: auto;
  mix-blend-mode: screen;
  filter: brightness(1.8) contrast(1.3);
  animation: prePulse 1.6s var(--ease) infinite;
}
.preloader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 30%;
  background: var(--gold);
  animation: preBar 1.4s var(--ease) infinite;
}
.preloader__tag {
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
@keyframes prePulse { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }
@keyframes preBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(450%); } }

/* ======================= HEADER ======================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--t) var(--ease), backdrop-filter var(--t) var(--ease), padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(17, 29, 53, 0.97);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: rgba(176, 141, 87, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.site-header__inner {
  max-width: var(--container);
  margin: auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: padding var(--t) var(--ease);
}
.site-header.is-scrolled .site-header__inner { padding-block: 10px; }

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo {
  height: 100px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.8) contrast(1.3);
  transition: height var(--t) var(--ease), transform var(--t) var(--ease);
}
.site-header.is-scrolled .brand__logo { height: 60px; }
.brand:hover .brand__logo { transform: scale(1.04); }

.primary-nav { flex: 1; min-width: 0; }
.primary-nav > ul { display: flex; gap: 2px; justify-content: center; flex-wrap: nowrap; }
.nav-link {
  display: inline-block;
  padding: 12px 12px;
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--t-hover) var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--t) var(--ease);
}
.header-icon:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.header-icon[aria-label="WhatsApp"]:hover { background: #25D366; }

.hamburger {
  display: none;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: space-between;
}
.hamburger span { display: block; height: 2px; background: var(--white); transition: all var(--t) var(--ease); }
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1200px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .cta-pill { display: none; }
  .brand__logo { height: 70px; }
  .site-header.is-scrolled .brand__logo { height: 50px; }
}
@media (max-width: 520px) {
  .header-icon { width: 36px; height: 36px; }
}

/* ======================= MOBILE MENU ======================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17, 29, 53, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility 0s var(--t);
  padding: 120px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-menu ul li a {
  display: block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--t-hover) var(--ease), padding var(--t) var(--ease);
}
.mobile-menu ul li a:hover { color: var(--gold-light); padding-left: 8px; }
.mobile-menu__contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-family: var(--ui);
}
.mobile-menu__contact a { display: flex; align-items: center; gap: 12px; transition: color var(--t-hover) var(--ease); }
.mobile-menu__contact a:hover { color: var(--gold-light); }

/* ======================= PAGE FRAME ======================= */
.page { display: none; }
.page.is-active { display: block; animation: pageIn 600ms var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Inner page hero (50vh) */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(176, 141, 87, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(36, 54, 86, 0.6) 0%, transparent 60%);
  color: var(--white);
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 95%, rgba(176, 141, 87, 0.06) 95%),
                    linear-gradient(90deg, transparent 95%, rgba(176, 141, 87, 0.06) 95%);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}
.page-hero h1 { color: var(--white); margin: 0.2em 0; }
.page-hero__sub { font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 60ch; color: rgba(255, 255, 255, 0.78); }

/* ======================= HOME · HERO ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
}
.hero__bg { position: absolute; inset: 0; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(176, 141, 87, 0.08) 95%),
    linear-gradient(90deg, transparent 95%, rgba(176, 141, 87, 0.08) 95%);
  background-size: 80px 80px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero__glow {
  position: absolute;
  width: 80vw;
  height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(176, 141, 87, 0.18) 0%, transparent 60%);
  animation: glowPulse 8s var(--ease) infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 140px;
  max-width: 1000px;
}
.hero__title {
  margin: 24px auto 16px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-family: var(--display);
}
.hero__tagline {
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 28px;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  z-index: 2;
  transition: border-color var(--t) var(--ease);
}
.hero__scroll:hover { border-color: var(--gold-light); }
.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 99px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ======================= STATS ======================= */
.stats {
  background: var(--navy);
  color: var(--white);
  position: relative;
  padding: 64px 0;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { text-align: center; position: relative; padding: 8px 16px; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  color: var(--gold-light);
  line-height: 1;
  font-weight: 700;
}
.stat__num sup {
  font-size: 0.4em;
  vertical-align: top;
  color: var(--gold);
  margin-left: 2px;
}
.stat__label {
  display: block;
  margin-top: 12px;
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat:nth-child(2)::after { display: none; }
  .stat__num { font-size: 2.4rem; }
}

/* ======================= SERVICES ======================= */
.services { padding: clamp(72px, 10vw, 140px) 0; background: var(--off-white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(176, 141, 87, 0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: rgba(27, 42, 74, 0.06);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-6deg) scale(1.1);
}
.service-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.4rem; }
.service-card p { color: var(--gray-500); font-size: 0.96rem; margin-bottom: 16px; }
.service-card__cta {
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t) var(--ease);
}
.service-card:hover .service-card__cta { gap: 14px; }

@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* ======================= FEATURED ======================= */
.featured { padding: clamp(72px, 10vw, 140px) 0; background: var(--white); }
.featured__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 56px; }
.featured-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  display: block;
  color: var(--white);
}
.featured-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--ease);
}
.featured-card:hover img { transform: scale(1.06); }
.featured-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17, 29, 53, 0) 40%, rgba(17, 29, 53, 0.92) 100%);
  z-index: 1;
}
.featured-card__copy {
  position: absolute; left: 32px; right: 32px; bottom: 32px;
  z-index: 2;
}
.featured-card__copy .eyebrow { color: var(--gold-light); margin-bottom: 8px; }
.featured-card__copy h3 { color: var(--white); margin-bottom: 8px; }
.featured-card__copy p { color: rgba(255, 255, 255, 0.78); font-size: 0.96rem; margin: 0; max-width: 36ch; }
.featured__cta { text-align: center; }

@media (max-width: 760px) { .featured__grid { grid-template-columns: 1fr; } }

/* ======================= FINAL CTA ======================= */
.final-cta {
  background: var(--navy-dark);
  color: var(--white);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.18) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 720px; margin: auto; }
.final-cta h2 { color: var(--white); margin: 0.3em 0 0.5em; }
.final-cta p { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; margin-bottom: 32px; }
.final-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ======================= PRODUCTS ======================= */
.products__body { padding: clamp(56px, 8vw, 100px) 0; }
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.filter-pill {
  padding: 11px 22px;
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  transition: all var(--t) var(--ease);
  background: var(--white);
}
.filter-pill:hover { border-color: var(--gold); color: var(--navy); }
.filter-pill.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--navy-dark);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.product-card:hover img { transform: scale(1.08); }
.product-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17, 29, 53, 0) 50%, rgba(17, 29, 53, 0.95) 100%);
  z-index: 1;
}
.product-card__copy {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  color: var(--white);
}
.product-card__copy h3 { color: var(--white); margin-bottom: 6px; font-size: 1.2rem; font-weight: 600; }
.product-card__copy p {
  font-family: var(--ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 600ms var(--ease), opacity var(--t) var(--ease), margin var(--t) var(--ease);
}
.product-card:hover .product-card__copy p { max-height: 200px; opacity: 1; margin-top: 6px; }
.product-card__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: rgba(17, 29, 53, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(6px);
}
.product-card:hover .product-card__zoom { opacity: 1; transform: scale(1); }
.product-card.is-out { display: none; }
.products__empty { text-align: center; padding: 56px 24px; color: var(--gray-500); }

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ======================= PROJECTS ======================= */
.projects__body { padding: clamp(56px, 8vw, 100px) 0; }
.project {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.project:last-child { border-bottom: 0; }
.project--reverse { grid-template-columns: 0.95fr 1.05fr; }
.project--reverse .project__media { order: 2; }
.project__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.project__media::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 1px;
  background: var(--gold);
  z-index: 3;
}
.project__media::after {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 1px; height: 80px;
  background: var(--gold);
  z-index: 3;
}
.project__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--ease);
}
.project__media:hover img { transform: scale(1.04); }
.project__copy h2 { margin: 0.4em 0; }
.project__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.project__meta span {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 14px;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: 99px;
}
.project__copy p { color: var(--text-body); line-height: 1.8; margin-bottom: 24px; }
.project__view {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap var(--t) var(--ease), color var(--t) var(--ease);
}
.project__view:hover { gap: 18px; color: var(--gold-dark); }

.project__gallery {
  margin-top: 40px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.project__gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.project__gallery img:hover { transform: scale(1.04); opacity: 0.92; }

@media (max-width: 880px) {
  .project, .project--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .project--reverse .project__media { order: 0; }
  .project__gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .project__gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ======================= ABOUT ======================= */
.about-intro { padding: clamp(72px, 10vw, 120px) 0; background: var(--off-white); }
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-intro__media { position: relative; }
.about-intro__frame {
  position: relative;
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  box-shadow: var(--shadow-lg);
}
.about-intro__frame::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-intro__frame img {
  width: 100%;
  max-width: 280px;
  mix-blend-mode: screen;
  filter: brightness(1.8) contrast(1.3);
}
.about-intro__copy h2 { margin: 0.4em 0; }
.about-intro__copy .lede { font-size: 1.16rem; color: var(--navy); line-height: 1.8; }
.about-intro__copy p { color: var(--text-body); }

@media (max-width: 880px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro__frame { padding: 48px; }
}

/* Timeline */
.timeline { padding: clamp(72px, 10vw, 120px) 0; background: var(--white); }
.timeline__list {
  position: relative;
  max-width: 880px;
  margin: 56px auto 0;
}
.timeline__list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
}
.timeline__item {
  position: relative;
  padding: 0 0 56px 80px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  transform: scale(0.6);
  transition: transform 600ms var(--ease);
}
.timeline__item.is-in::before { transform: scale(1); }
.timeline__date {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline__item h3 { color: var(--navy); margin: 8px 0 12px; }
.timeline__item p { color: var(--text-body); line-height: 1.8; margin: 0; }

@media (max-width: 600px) {
  .timeline__list::before { left: 14px; }
  .timeline__item { padding-left: 48px; }
  .timeline__item::before { left: 8px; }
}

/* Values */
.values { padding: clamp(72px, 10vw, 120px) 0; background: var(--off-white); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(176, 141, 87, 0.3); }
.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: rgba(27, 42, 74, 0.08);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.value-card:hover .value-card__icon { background: var(--gold); color: var(--white); transform: scale(1.1); }
.value-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.value-card p { color: var(--gray-500); font-size: 0.96rem; margin: 0; }

@media (max-width: 880px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values__grid { grid-template-columns: 1fr; } }

/* ======================= REVIEWS ======================= */
.reviews__body { padding: clamp(56px, 8vw, 100px) 0; }
.review-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.review-summary__avg { text-align: center; min-width: 180px; }
.review-summary__avg-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.review-summary__avg-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 12px 0 8px;
  letter-spacing: 4px;
}
.review-summary__avg-count {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.review-summary__bars { display: grid; gap: 10px; }
.bar-row {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  gap: 14px;
  align-items: center;
  font-family: var(--ui);
  font-size: 0.84rem;
  color: var(--text-body);
}
.bar-row__label { color: var(--gray-500); }
.bar-row__track {
  height: 8px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}
.bar-row__fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  border-radius: 99px;
  transition: width 600ms var(--ease);
}
.bar-row__count { text-align: right; color: var(--gray-500); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.review-card {
  position: relative;
  background: var(--white);
  padding: 36px 32px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(176, 141, 87, 0.4); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.review-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.review-card__name {
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.2rem;
  display: block;
}
.review-card__project {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}
.review-card__stars { color: var(--gold); font-size: 0.92rem; letter-spacing: 2px; flex-shrink: 0; }
.review-card__body { color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.review-card__date {
  font-family: var(--ui);
  font-size: 0.74rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .review-summary { grid-template-columns: 1fr; gap: 32px; }
}

/* Review form */
.review-form-wrap, .careers-form-wrap, .contact-form-wrap { padding-block: 56px 0; }
.review-form, .careers-form, .contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.review-form .row, .careers-form .row, .contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { display: block; margin-bottom: 16px; }
.field span {
  display: block;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  color: var(--text-body);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 0.96rem;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 14px) 50%;
  background-size: 4px 4px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.92rem;
  min-height: 1.4em;
  font-family: var(--ui);
}
.form-status.is-error { color: #c75454; }
.form-status.is-success { color: #2f8f5e; }

/* Star input */
.star-input {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.star-input button {
  font-size: 1.6rem;
  color: var(--gray-300);
  padding: 4px;
  transition: transform var(--t-hover) var(--ease), color var(--t-hover) var(--ease);
}
.star-input button:hover { transform: scale(1.2); color: var(--gold); }
.star-input button.is-on { color: var(--gold); }

/* ======================= CAREERS ======================= */
.careers__body { padding: clamp(56px, 8vw, 100px) 0; }
.accordion { display: grid; gap: 12px; max-width: 880px; margin: 0 auto 80px; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.accordion__item:hover { border-color: rgba(176, 141, 87, 0.4); box-shadow: var(--shadow-sm); }
.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.accordion__title {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 600;
}
.accordion__type {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 99px;
  margin-left: auto;
}
.accordion__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform var(--t) var(--ease);
  flex-shrink: 0;
}
.accordion__item.is-open .accordion__icon { transform: rotate(180deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms var(--ease);
}
.accordion__item.is-open .accordion__body { max-height: 800px; }
.accordion__body-inner {
  padding: 0 28px 24px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.accordion__summary { color: var(--text-body); margin-bottom: 16px; line-height: 1.7; }
.accordion__reqs { display: grid; gap: 8px; margin-bottom: 18px; }
.accordion__reqs li {
  position: relative;
  padding-left: 22px;
  color: var(--text-body);
  font-size: 0.96rem;
}
.accordion__reqs li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--gold);
}
.accordion__apply {
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: gap var(--t) var(--ease);
}
.accordion__apply:hover { gap: 14px; }

@media (max-width: 600px) {
  .accordion__head { padding: 18px 22px; gap: 12px; flex-wrap: wrap; }
  .accordion__type { font-size: 0.62rem; padding: 4px 10px; }
}

/* ======================= CONTACT ======================= */
.contact__body { padding: clamp(56px, 8vw, 100px) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--navy-dark);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact-card h2 { color: var(--white); margin: 0 0 28px; position: relative; z-index: 1; }
.contact-card__list { display: grid; gap: 22px; position: relative; z-index: 1; }
.contact-card__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(176, 141, 87, 0.18);
  color: var(--gold-light);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-card__list strong {
  display: block;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.contact-card__list a, .contact-card__list span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: color var(--t-hover) var(--ease);
}
.contact-card__list a:hover { color: var(--gold-light); }
.contact-card__social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.social {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
.social--wa { background: #25D366; color: var(--white); }
.social--fb { background: #1877F2; color: var(--white); }
.social:hover { transform: translateY(-2px) scale(1.05); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.contact__map iframe { display: block; }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact-card { padding: 32px; }
}

/* ======================= FOOTER ======================= */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.78); padding-top: 80px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer h4 { color: var(--white); margin-bottom: 22px; font-size: 0.78rem; letter-spacing: 0.22em; }
.site-footer__brand img {
  height: 70px;
  mix-blend-mode: screen;
  filter: brightness(1.8) contrast(1.3);
  margin-bottom: 18px;
}
.site-footer__tagline {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}
.site-footer__about { font-size: 0.92rem; line-height: 1.7; max-width: 360px; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer ul li a { transition: color var(--t-hover) var(--ease); }
.site-footer ul li a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-contact li i { color: var(--gold); font-size: 0.84rem; padding-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }

.site-footer__legal {
  padding: 22px 0;
  font-family: var(--ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__legal-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.admin-link {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--t-hover) var(--ease);
}
.admin-link:hover { color: var(--gold-light); }

@media (max-width: 980px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } .site-footer__legal-inner { flex-direction: column; text-align: center; } }

/* ======================= LIGHTBOX ======================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 29, 53, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility 0s var(--t);
  padding: 60px 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox__stage {
  margin: 0;
  max-width: 1100px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__stage figcaption {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--t) var(--ease);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 680px) { .lightbox__nav, .lightbox__close { width: 40px; height: 40px; } }

/* ======================= FLOATING WHATSAPP ======================= */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 99px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform var(--t) var(--ease);
  animation: waPulse 2.4s var(--ease) infinite;
}
.floating-whatsapp:hover { transform: scale(1.08); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  60%      { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ======================= BACK TO TOP ======================= */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow);
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold); transform: translateY(-4px); }

/* ======================= REVEAL ======================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-entry) var(--ease), transform var(--t-entry) var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ======================= LOCK BODY ======================= */
body.is-locked { overflow: hidden; }

/* ======================= REDUCED MOTION ======================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__glow { animation: none; }
}

/* =================================================================
   ADMIN PANEL — admin.html shares this stylesheet
   ================================================================= */
.admin-body {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 32px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar__brand {
  padding: 0 28px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.admin-sidebar__brand img {
  height: 50px;
  mix-blend-mode: screen;
  filter: brightness(1.8) contrast(1.3);
  margin-bottom: 8px;
}
.admin-sidebar__brand p {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}
.admin-sidebar__nav { display: grid; gap: 4px; padding: 0 16px; }
.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-family: var(--ui);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  transition: all var(--t) var(--ease);
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.admin-sidebar__link i { width: 22px; text-align: center; color: var(--gold); }
.admin-sidebar__link:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }
.admin-sidebar__link.is-active { background: var(--gold); color: var(--white); }
.admin-sidebar__link.is-active i { color: var(--white); }
.admin-sidebar__back {
  margin-top: auto;
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.admin-sidebar__back:hover { color: var(--gold-light); }

.admin-content { padding: 40px clamp(24px, 4vw, 56px); overflow-y: auto; max-width: 100%; }
.admin-content__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.admin-content__head h1 {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0;
}
.admin-content__head .btn { padding: 12px 22px; font-size: 0.74rem; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.admin-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
}
.admin-stat__num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat__label { font-family: var(--ui); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-500); margin-top: 8px; display: block; }

.admin-quick-actions {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 36px;
  display: grid;
  gap: 18px;
}
.admin-quick-actions h3 { color: var(--navy); margin: 0; font-size: 1.1rem; }
.admin-quick-actions__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-quick-actions .btn { padding: 10px 18px; font-size: 0.72rem; }
.admin-danger { background: #c75454; color: var(--white); border-color: #c75454; }
.admin-danger:hover { background: #a83d3d; border-color: #a83d3d; }

.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-200);
}
.admin-table th {
  background: var(--off-white);
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.admin-table tbody tr:hover { background: rgba(176, 141, 87, 0.05); }
.admin-table img { width: 60px; height: 40px; object-fit: cover; border-radius: 4px; }
.admin-actions { display: flex; gap: 6px; }
.admin-actions button {
  padding: 6px 12px;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--navy);
  transition: all var(--t-hover) var(--ease);
}
.admin-actions button:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.admin-actions button.is-delete:hover { background: #c75454; border-color: #c75454; }

/* Admin modal */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 29, 53, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility 0s var(--t);
}
.admin-modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.admin-modal__inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.admin-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.admin-modal__head h2 { color: var(--navy); margin: 0; font-size: 1.4rem; }
.admin-modal__close { font-size: 1.4rem; color: var(--gray-500); width: 36px; height: 36px; border-radius: 99px; display: flex; align-items: center; justify-content: center; transition: all var(--t-hover) var(--ease); }
.admin-modal__close:hover { background: var(--off-white); color: var(--navy); }
.admin-modal__buttons { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }

@media (max-width: 880px) {
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
