/* =========================================
   DESIGN TOKENS
========================================= */
:root {
  --c-bg:        #FAFAF8;
  --c-white:     #FFFFFF;
  --c-surface:   #F4F2EE;
  --c-surface2:  #EDEAE3;
  --c-navy:      #0C1A2E;
  --c-navy2:     #162238;
  --c-navy3:     #1E3050;
  --c-gold:      #B8892A;
  --c-gold2:     #D4A84B;
  --c-gold3:     #F0CC7A;
  --c-gold-pale: #FAF3E3;
  --c-text:      #0C1A2E;
  --c-text2:     #374151;
  --c-text3:     #6B7280;
  --c-border:    #E2DDCE;
  --c-border2:   #D0C9B8;
  --c-green:     #16A34A;
  --c-red:       #DC2626;

  --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Outfit', system-ui, sans-serif;

  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.4s;

  --sh-sm: 0 1px 8px rgba(12,26,46,0.06);
  --sh-md: 0 4px 24px rgba(12,26,46,0.10);
  --sh-lg: 0 12px 56px rgba(12,26,46,0.14);
  --sh-xl: 0 24px 80px rgba(12,26,46,0.18);
}

/* =========================================
   RESET
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

/* =========================================
   UTILITIES
========================================= */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.h-display {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--c-navy);
}
.h-display em  { font-style: italic; color: var(--c-gold); }
.h-display .outline { -webkit-text-stroke: 2px var(--c-navy); color: transparent; }

.lead {
  font-size: 17px;
  color: var(--c-text2);
  line-height: 1.78;
}

.gold-rule {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold3));
  border-radius: 3px;
  margin: 20px 0 28px;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-dark {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.btn-dark:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184,137,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-border2);
}
.btn-outline:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
  transform: translateY(-3px);
}
.btn-gold {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
}
.btn-gold:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(12,26,46,0.25);
}
.btn-sm { padding: 4px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* =========================================
   ANIMATIONS
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@keyframes blink {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.4; transform:scale(0.75); }
}
@keyframes floatA {
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}
@keyframes floatB {
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(12px); }
}

/* =========================================
   NAVBAR
========================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: all 0.35s var(--ease);
  padding: 15px 0;
}
#nav.stuck {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 5px 0;
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img { width: 40px; }
.nav-logotype {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-logotype strong {
  font-family: var(--ff-head);
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text2);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--c-navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--c-gold); }
.nav-links a.active::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text3);
}
.nav-phone-tag i { color: var(--c-gold); font-size: 11px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--c-white);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}
.mobile-overlay.open { display: flex; z-index: 999; }
.mobile-overlay a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-navy);
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}
.mobile-overlay a:hover { color: var(--c-gold); }
.mobile-close-btn {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 22px;
  color: var(--c-navy);
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================
   TICKER
========================================= */
.ticker {
  background: var(--c-navy);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-roll 36s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-roll {
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* =========================================
   HERO ！ HOMEPAGE
========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--c-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--c-border) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 900px; height: 900px;
  background: radial-gradient(circle at center, rgba(184,137,42,0.07) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold-pale);
  border: 1px solid rgba(184,137,42,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(48px, 5.8vw, 78px);
  margin-bottom: 30px;
  max-width: 640px;
}
.hero-lead {
  font-size: 18px;
  color: var(--c-text2);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 44px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 32px;
}
.hproof-stat {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: all var(--dur) var(--ease);
}
.hproof-stat:hover {
  border-color: var(--c-gold);
  box-shadow: 0 6px 28px rgba(184,137,42,0.12);
  transform: translateY(-4px);
}
.hproof-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.hproof-stat strong span { color: var(--c-gold); }
.hproof-stat small {
  font-size: 12.5px;
  color: var(--c-text3);
  font-weight: 500;
}
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-lottie-shell {
  width: 480px; height: 480px;
  background: linear-gradient(145deg, var(--c-surface) 0%, var(--c-surface2) 100%);
  border-radius: 38% 62% 54% 46% / 44% 40% 60% 56%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-lottie-shell lottie-player { width: 100%; height: 100%; }
.floater {
  position: absolute;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 13px 18px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.floater-1 { top: 7%; left: -10px; animation: floatA 5.5s ease-in-out infinite; }
.floater-2 { bottom: 10%; right: -10px; animation: floatB 6.5s ease-in-out infinite; }
.floater-icon {
  width: 38px; height: 38px;
  background: var(--c-gold-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 16px;
  flex-shrink: 0;
}
.floater-copy strong { display: block; font-size: 13px; font-weight: 700; color: var(--c-navy); line-height: 1.2; }
.floater-copy small  { font-size: 11px; color: var(--c-text3); }

/* =========================================
   ABOUT ！ HOMEPAGE
========================================= */
#about {
  padding: 130px 0;
  background: var(--c-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-visual { position: relative; }
.about-lottie-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-lottie-wrap lottie-player { width: 100%; height: 100%; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.astat {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: all var(--dur) var(--ease);
}
.astat:hover {
  border-color: var(--c-gold);
  box-shadow: 0 6px 28px rgba(184,137,42,0.12);
  transform: translateY(-4px);
}
.astat-num {
  font-family: var(--ff-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.astat-num span { color: var(--c-gold); }
.astat-lbl { font-size: 12.5px; color: var(--c-text3); font-weight: 500; }
.about-content .lead { margin-bottom: 24px; }
.pillar-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--c-surface);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-gold);
  transition: background var(--dur) var(--ease);
}
.pillar:hover { background: var(--c-gold-pale); }
.pillar-ico {
  width: 36px; height: 36px;
  background: var(--c-gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pillar-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--c-navy); margin-bottom: 2px; }
.pillar-body span   { font-size: 13px; color: var(--c-text3); }

/* =========================================
   PORTFOLIO ！ HOMEPAGE
========================================= */
#portfolio {
  padding: 130px 0;
  background: var(--c-surface);
}
.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.pcard::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-navy), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pcard:hover { box-shadow: var(--sh-lg); transform: translateY(-7px); border-color: transparent; }
.pcard:hover::after { transform: scaleX(1); }
.pcard-logo {
  width: 54px; height: 54px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}
.pcard-z  { background:#E8F0FE; color:#1967D2; }
.pcard-ii { background:#E6F4EA; color:#137333; }
.pcard-ba { background:#FEF0E0; color:#BF5700; }
.pcard-qr { background:#F3E8FD; color:#7B1FA2; }
.pcard h3 { font-family: var(--ff-head); font-size: 26px; font-weight: 700; color: var(--c-navy); margin-bottom: 5px; }
.pcard-url { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.06em; margin-bottom: 18px; }
.pcard p   { font-size: 14.5px; color: var(--c-text2); line-height: 1.75; margin-bottom: 24px; }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.ptag {
  padding: 4px 13px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text2);
  letter-spacing: 0.03em;
}
.pcard-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--c-navy); transition: all 0.25s; }
.pcard-link:hover { color: var(--c-gold); gap: 11px; }

/* =========================================
   SOLUTIONS ！ HOMEPAGE
========================================= */
#solutions {
  padding: 130px 0;
  background: var(--c-white);
}
.sol-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.sol-head .eyebrow { justify-content: center; }
.sol-head .eyebrow::before { display: none; }
.sol-head .h-display { font-size: clamp(32px, 4vw, 52px); }
.sol-head .lead { margin: 0 auto; }
.sol-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 80px;
}
.sol-cat {
  padding: 36px 28px;
  border-right: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
}
.sol-cat:last-child { border-right: 0; }
.sol-cat:hover { background: var(--c-navy); }
.sol-cat:hover .sol-cat-ico { background: rgba(255,255,255,0.1); color: var(--c-gold3); }
.sol-cat:hover .sol-cat-h  { color: #fff; }
.sol-cat:hover .sol-cat-p  { color: rgba(255,255,255,0.55); }
.sol-cat-ico {
  width: 48px; height: 48px;
  background: var(--c-gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.sol-cat-h { font-family: var(--ff-head); font-size: 18px; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; transition: color 0.3s; }
.sol-cat-p { font-size: 13px; color: var(--c-text3); line-height: 1.6; transition: color 0.3s; }
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.svc {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: all var(--dur) var(--ease);
}
.svc:hover {
  background: var(--c-white);
  border-color: var(--c-gold);
  box-shadow: 0 6px 24px rgba(184,137,42,0.12);
  transform: translateY(-5px);
}
.svc-ico {
  width: 40px; height: 40px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
  font-size: 16px;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.svc:hover .svc-ico { background: var(--c-navy); color: var(--c-gold); border-color: var(--c-navy); }
.svc-name { font-size: 14px; font-weight: 700; color: var(--c-navy); margin-bottom: 5px; line-height: 1.3; }
.svc-desc { font-size: 12.5px; color: var(--c-text3); line-height: 1.6; }

/* =========================================
   INDUSTRIES ！ HOMEPAGE
========================================= */
#industries {
  padding: 120px 0;
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
#industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 32m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E") repeat;
}
.ind-head { text-align: center; margin-bottom: 60px; position: relative; }
.ind-head .eyebrow { color: var(--c-gold2); justify-content: center; }
.ind-head .eyebrow::before { background: var(--c-gold2); }
.ind-head .h-display { color: #fff; font-size: clamp(34px,4.5vw,56px); }
.ind-head .lead { color: rgba(255,255,255,0.55); margin: 0 auto; max-width: 540px; text-align: center; }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  position: relative;
}
.ind-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 30px 20px;
  text-align: center;
  transition: all var(--dur) var(--ease);
}
.ind-card:hover {
  background: rgba(184,137,42,0.12);
  border-color: rgba(212,168,75,0.45);
  transform: translateY(-5px);
}
.ind-card i    { display: block; font-size: 26px; color: var(--c-gold); margin-bottom: 13px; }
.ind-card span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.02em; }

/* =========================================
   WHY US ！ HOMEPAGE
========================================= */
#why {
  padding: 130px 0;
  background: var(--c-surface);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.wfeat {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px 22px;
  transition: all var(--dur) var(--ease);
}
.wfeat:hover {
  border-color: var(--c-gold);
  box-shadow: 0 8px 32px rgba(184,137,42,0.12);
  transform: translateY(-5px);
}
.wfeat-ico {
  width: 44px; height: 44px;
  background: var(--c-gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.wfeat h4 { font-family: var(--ff-head); font-size: 18px; font-weight: 700; color: var(--c-navy); margin-bottom: 7px; }
.wfeat p  { font-size: 13px; color: var(--c-text3); line-height: 1.65; }
.why-right { position: relative; }
.why-lottie-shell {
  width: 100%;
  aspect-ratio: 1;
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
}
.why-lottie-shell lottie-player { width: 90%; height: 90%; }
.wbadge {
  position: absolute;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wbadge-1 { bottom: 36px; left: -28px; animation: floatA 5s ease-in-out infinite; }
.wbadge-2 { top: 36px; right: -28px; animation: floatB 6s ease-in-out infinite; }
.wbadge-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.wbadge-dot.green { background: var(--c-green); }
.wbadge-dot.gold  { background: var(--c-gold); }
.wbadge span { font-size: 13px; font-weight: 600; color: var(--c-navy); }

/* =========================================
   CEO ！ HOMEPAGE
========================================= */
#ceo {
  padding: 130px 0;
  background: var(--c-white);
}
.ceo-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 88px;
  align-items: center;
}
.ceo-portrait { position: relative; }
.ceo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(160deg, rgba(10,20,40,0.7), rgba(20,40,80,0.7)),
    url("/assets/images/ChavezAllen.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}
.ceo-frame::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,137,42,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.ceo-frame-name  { font-family: var(--ff-head); font-size: 28px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.03em; position: relative; }
.ceo-frame-title { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; position: relative; }
.ceo-nameplate {
  position: absolute;
  bottom: -18px; left: 28px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--sh-md);
}
.ceo-nameplate strong { display: block; font-size: 14px; font-weight: 700; color: var(--c-navy); }
.ceo-nameplate small  { font-size: 12px; color: var(--c-gold); font-weight: 600; }
.ceo-body  { padding-top: 10px; }
.ceo-name  { font-size: clamp(44px, 5.5vw, 64px); margin-bottom: 4px; }
.ceo-role  { font-size: 13px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 32px; }
.ceo-bio   { font-size: 16px; color: var(--c-text2); line-height: 1.82; margin-bottom: 36px; }
.ceo-bio strong { color: var(--c-navy); font-weight: 700; }
.ceo-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.ceo-chip {
  padding: 7px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text2);
  letter-spacing: 0.03em;
}
.ceo-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* =========================================
   FAQ ！ HOMEPAGE
========================================= */
#faq {
  padding: 130px 0;
  background: var(--c-surface);
}
.faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 88px;
  align-items: start;
}
.faq-left { position: sticky; top: 120px; }
.faq-left .lead { margin-top: 4px; }
.faq-lottie {
  width: 100%;
  aspect-ratio: 1;
  max-width: 340px;
  margin-top: 36px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-border);
}
.faq-lottie lottie-player { width: 100%; height: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open {
  border-color: var(--c-gold);
  box-shadow: 0 4px 20px rgba(184,137,42,0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q-text { font-size: 15px; font-weight: 700; color: var(--c-navy); line-height: 1.4; flex: 1; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--c-gold); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 22px; font-size: 14.5px; color: var(--c-text2); line-height: 1.78; }
.faq-item.open .faq-a { max-height: 500px; }

/* =========================================
   CONTACT ！ HOMEPAGE
========================================= */
#contact {
  padding: 130px 0;
  background: var(--c-white);
}
.contact-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.contact-head .eyebrow { justify-content: center; }
.contact-head .eyebrow::before { display: none; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: start;
}
.cform-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 52px;
}
.cform-wrap h3 { font-family: var(--ff-head); font-size: 28px; font-weight: 700; color: var(--c-navy); margin-bottom: 6px; }
.cform-wrap > p { font-size: 14px; color: var(--c-text3); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-size: 13px; font-weight: 700; color: var(--c-text); letter-spacing: 0.02em; }
.fg label .req { color: var(--c-gold); margin-left: 3px; }
.fg input,
.fg select,
.fg textarea {
  padding: 12px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: all 0.25s;
  width: 100%;
  resize: vertical;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(184,137,42,0.09);
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--c-text3); }
.fg input.err,
.fg textarea.err { border-color: var(--c-red); box-shadow: 0 0 0 4px rgba(220,38,38,0.08); }
.fg-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--c-surface);
  border: 1px dashed var(--c-border2);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--c-text3);
  cursor: pointer;
  transition: border-color 0.25s;
}
.fg-file-label:hover { border-color: var(--c-gold); }
.fg-file-label i { color: var(--c-gold); }
.fg-file-label input[type=file] { display: none; }
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--c-navy);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all var(--dur) var(--ease);
}
.submit-btn:hover {
  background: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,137,42,0.3);
}
.cinfo h3 { font-family: var(--ff-head); font-size: 30px; font-weight: 700; color: var(--c-navy); margin-bottom: 16px; }
.cinfo > p { font-size: 15px; color: var(--c-text2); line-height: 1.78; margin-bottom: 40px; }
.cdetail { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-top: 1px solid var(--c-border); }
.cdetail:last-of-type { border-bottom: 1px solid var(--c-border); margin-bottom: 32px; }
.cdetail-ico {
  width: 42px; height: 42px;
  background: var(--c-gold-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 16px;
  flex-shrink: 0;
}
.cdetail-txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--c-navy); margin-bottom: 2px; }
.cdetail-txt span   { font-size: 13px; color: var(--c-text3); }
.cdetail-txt a      { color: var(--c-gold); font-size: 13px; }

/* Hours box ！ homepage contact section */
.hours-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.hours-box h4 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-box h4 i { color: var(--c-gold); }

/* Shared .hrow base */
.hrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
}
.hrow:last-child { border-bottom: none; }
.hrow .hday  { color: var(--c-text2); font-weight: 500; }
.hrow .htime { font-weight: 700; color: var(--c-navy); }
.hrow .htime.closed { color: var(--c-text3); font-weight: 500; }

/* Homepage hours box specific */
.hours-box .hrow { padding: 10px 0; }
.hours-box .hrow.today-row {
  background: var(--c-gold-pale);
  margin: 0 -8px;
  padding: 10px 8px;
  border-radius: 8px;
  border-bottom: none;
}
.hours-box .hrow.today-row .hday { color: var(--c-gold); font-weight: 700; }

/* =========================================
   PAGE HERO ！ LOCATIONS
========================================= */
#page-hero {
  padding: 160px 0 100px;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--c-border) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: 0.55;
  pointer-events: none;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle at center, rgba(184,137,42,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold-pale);
  border: 1px solid rgba(184,137,42,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}
.page-hero-h1   { font-size: clamp(44px, 5.5vw, 70px); margin-bottom: 24px; }
.page-hero-lead { font-size: 18px; color: var(--c-text2); line-height: 1.78; max-width: 500px; margin-bottom: 40px; }
.page-hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.page-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-hero-lottie {
  width: 460px; height: 460px;
  background: linear-gradient(145deg, var(--c-surface) 0%, var(--c-surface2) 100%);
  border-radius: 38% 62% 54% 46% / 44% 40% 60% 56%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-lottie lottie-player { width: 100%; height: 100%; }
.ph-floater {
  position: absolute;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ph-floater-1 { top: 8%; left: -10px; animation: floatA 5.5s ease-in-out infinite; }
.ph-floater-2 { bottom: 10%; right: -10px; animation: floatB 6.5s ease-in-out infinite; }
.ph-floater-ico {
  width: 36px; height: 36px;
  background: var(--c-gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 15px;
  flex-shrink: 0;
}
.ph-floater-copy strong { display: block; font-size: 13px; font-weight: 700; color: var(--c-navy); line-height: 1.2; }
.ph-floater-copy small  { font-size: 11px; color: var(--c-text3); }

/* =========================================
   ENTITIES ！ LOCATIONS
========================================= */
#entities {
  padding: 100px 0;
  background: var(--c-surface);
}
.entities-head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.entities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.entity-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.entity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-navy), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.entity-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-color: transparent; }
.entity-card:hover::before { transform: scaleX(1); }
.entity-flag { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.entity-flag-icon { width: 52px; height: 52px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.flag-jm { background: #E8F5E9; }
.flag-us { background: #E8F0FE; }
.entity-flag-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--c-navy); letter-spacing: 0.04em; text-transform: uppercase; }
.entity-flag-text small  { font-size: 12px; color: var(--c-text3); font-weight: 500; }
.entity-name { font-family: var(--ff-head); font-size: 26px; font-weight: 700; color: var(--c-navy); margin-bottom: 6px; line-height: 1.2; }
.entity-type { font-size: 12px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.entity-desc { font-size: 15px; color: var(--c-text2); line-height: 1.78; margin-bottom: 32px; }
.entity-details { display: flex; flex-direction: column; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.entity-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s;
}
.entity-detail-row:last-child { border-bottom: none; }
.entity-detail-row:hover { background: var(--c-gold-pale); }
.edr-ico { width: 34px; height: 34px; background: var(--c-gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--c-gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.edr-body strong { display: block; font-size: 12px; font-weight: 700; color: var(--c-text3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.edr-body span   { font-size: 14px; color: var(--c-navy); font-weight: 500; line-height: 1.5; }
.edr-body a      { font-size: 14px; color: var(--c-gold); font-weight: 600; }
.edr-body a:hover { text-decoration: underline; }

/* =========================================
   OFFICES ！ LOCATIONS
========================================= */
#offices { padding: 120px 0; background: var(--c-white); }
.offices-head { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 80px; }
.offices-lottie { width: 100%; aspect-ratio: 1; max-width: 440px; background: var(--c-surface); border-radius: var(--r-xl); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.offices-lottie lottie-player { width: 100%; height: 100%; }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.office-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; transition: all var(--dur) var(--ease); }
.office-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-color: transparent; }
.office-card-top { background: var(--c-navy); padding: 32px 32px 28px; position: relative; overflow: hidden; }
.office-card-top::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(184,137,42,0.15) 0%, transparent 70%); border-radius: 50%; }
.office-country-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 6px 14px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.office-country-tag span { font-size: 16px; }
.office-card-name   { font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: var(--c-white); margin-bottom: 4px; line-height: 1.25; position: relative; }
.office-card-entity { font-size: 12px; color: var(--c-gold2); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; position: relative; }
.office-card-body   { padding: 28px 32px 32px; }
.office-addr-block  { display: flex; align-items: flex-start; gap: 12px; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 18px; margin-bottom: 20px; }
.oab-ico  { width: 38px; height: 38px; background: var(--c-gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--c-gold); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.oab-text strong  { display: block; font-size: 12px; font-weight: 700; color: var(--c-text3); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 5px; }
.oab-text address { font-style: normal; font-size: 14px; color: var(--c-navy); font-weight: 500; line-height: 1.65; }
.office-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.ometa-item { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: 12px 14px; display: flex; align-items: center; gap: 9px; }
.ometa-item i    { color: var(--c-gold); font-size: 13px; flex-shrink: 0; }
.ometa-item span { font-size: 12.5px; color: var(--c-text2); font-weight: 500; }
.office-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--c-navy); transition: all 0.25s; }
.office-card-link:hover { color: var(--c-gold); gap: 12px; }

/* =========================================
   GLOBAL PRESENCE ！ LOCATIONS
========================================= */
#presence {
  padding: 120px 0;
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
#presence::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
}
.presence-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; position: relative; }
.presence-content .eyebrow { color: var(--c-gold2); }
.presence-content .eyebrow::before { background: var(--c-gold2); }
.presence-content .h-display { color: #fff; font-size: clamp(34px,4.5vw,54px); }
.presence-content .lead { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.presence-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pstat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); padding: 24px 22px; transition: all var(--dur) var(--ease); }
.pstat:hover { background: rgba(184,137,42,0.12); border-color: rgba(212,168,75,0.4); transform: translateY(-4px); }
.pstat-num { font-family: var(--ff-head); font-size: 36px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 5px; }
.pstat-num span { color: var(--c-gold); }
.pstat-lbl { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
.presence-visual { position: relative; }
.presence-lottie { width: 100%; aspect-ratio: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xl); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.presence-lottie lottie-player { width: 90%; height: 90%; }
.presence-badge { position: absolute; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 14px 20px; box-shadow: var(--sh-md); display: flex; align-items: center; gap: 10px; }
.presence-badge-1 { bottom: 32px; left: -24px; animation: floatA 5s ease-in-out infinite; }
.presence-badge-2 { top: 32px; right: -24px; animation: floatB 6.5s ease-in-out infinite; }
.pb-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pb-dot.green { background: var(--c-green); }
.pb-dot.gold  { background: var(--c-gold); }
.presence-badge span { font-size: 13px; font-weight: 700; color: var(--c-navy); }

/* =========================================
   HOURS ！ LOCATIONS
========================================= */
#hours { padding: 120px 0; background: var(--c-surface); }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.hours-content .lead { margin-bottom: 20px; }
.hours-note { background: var(--c-gold-pale); border: 1px solid rgba(184,137,42,0.2); border-radius: var(--r-md); padding: 18px 20px; display: flex; align-items: flex-start; gap: 12px; margin-top: 28px; }
.hours-note i { color: var(--c-gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.hours-note p { font-size: 14px; color: var(--c-text2); line-height: 1.65; }
.hours-note strong { color: var(--c-navy); }
.hours-lottie { width: 100%; max-width: 340px; aspect-ratio: 1; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-xl); overflow: hidden; margin-top: 36px; }
.hours-lottie lottie-player { width: 100%; height: 100%; }
.hours-table { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-xl); overflow: hidden; }
.hours-table-head { background: var(--c-navy); padding: 22px 28px; display: flex; align-items: center; gap: 10px; }
.hours-table-head i    { color: var(--c-gold); font-size: 16px; }
.hours-table-head span { font-family: var(--ff-head); font-size: 18px; font-weight: 700; color: #fff; }
.hours-table-body { padding: 8px 0; }

/* Locations hours table specific */
.hours-table-body .hrow { padding: 13px 28px; transition: background 0.2s; }
.hours-table-body .hrow:hover { background: var(--c-surface); }
.hours-table-body .hrow.today-row { background: var(--c-gold-pale); border-bottom-color: transparent; }
.hours-table-body .hrow.today-row .hday  { color: var(--c-gold); font-weight: 700; }
.hours-table-body .hrow.today-row .htime { color: var(--c-gold); }

/* =========================================
   CTA ！ LOCATIONS
========================================= */
#cta { padding: 120px 0; background: var(--c-white); }
.cta-box {
  background: var(--c-navy);
  border-radius: var(--r-xl);
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184,137,42,0.12) 0%, transparent 65%); border-radius: 50%; }
.cta-box::after  { content: ''; position: absolute; bottom: -80px; left: 200px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); border-radius: 50%; }
.cta-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold2); margin-bottom: 20px; }
.cta-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--c-gold2); border-radius: 2px; }
.cta-h  { font-family: var(--ff-head); font-size: clamp(30px, 3.5vw, 46px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.cta-h em { font-style: italic; color: var(--c-gold2); }
.cta-p  { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; position: relative; }

/* =========================================
   FOOTER ！ SHARED
========================================= */
footer {
  background: var(--c-navy);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand > p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.78;
  margin: 20px 0 28px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: all 0.25s;
}
.footer-socials a:hover { background: var(--c-gold); color: #fff; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--c-gold); }

/* =========================================
   BACK TO TOP & TOAST ！ SHARED
========================================= */
#btt {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  z-index: 200;
  box-shadow: var(--sh-md);
  border: none;
}
#btt.show { opacity:1; visibility:visible; }
#btt:hover { background: var(--c-gold); transform: translateY(-3px); }

#toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--sh-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
#toast.show { opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
#toast i { color: var(--c-gold); }

/* =========================================
   RESPONSIVE ！ SHARED
========================================= */
@media (max-width: 1100px) {
  /* Nav */
  .nav-links, .nav-phone-tag { display: none; }
  .nav-hamburger { display: flex; }

  /* Homepage */
  .hero-inner   { grid-template-columns: 1fr; gap: 48px; }
  .hero-right   { display: none; }
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .about-lottie-wrap { max-width: 100%; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .sol-strip { grid-template-columns: 1fr 1fr; }
  .sol-cat:nth-child(2) { border-right: none; }
  .sol-cat:nth-child(3) { border-top: 1px solid var(--c-border); border-right: 1px solid var(--c-border); }
  .sol-cat:nth-child(4) { border-top: 1px solid var(--c-border); border-right: none; }
  .services-mosaic { grid-template-columns: repeat(3,1fr); }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { display: none; }
  .ceo-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left  { position: static; }
  .faq-lottie { display: none; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Locations */
  .page-hero-inner  { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-visual { display: none; }
  .entities-grid  { grid-template-columns: 1fr; }
  .offices-head   { grid-template-columns: 1fr; gap: 40px; }
  .offices-lottie { display: none; }
  .offices-grid   { grid-template-columns: 1fr; }
  .presence-inner { grid-template-columns: 1fr; gap: 48px; }
  .presence-visual { display: none; }
  .hours-inner  { grid-template-columns: 1fr; gap: 40px; }
  .hours-lottie { display: none; }
  .cta-box      { grid-template-columns: 1fr; padding: 48px 36px; gap: 36px; }
  .cta-actions  { flex-direction: row; flex-wrap: wrap; }

  /* Shared footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .wrap { padding: 0 20px; }

  /* Homepage */
  #hero { padding: 110px 0 60px; }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .sol-strip      { grid-template-columns: 1fr; }
  .sol-cat        { border-right: none !important; border-top: 1px solid var(--c-border); }
  .sol-cat:first-child { border-top: none; }
  .services-mosaic { grid-template-columns: repeat(2,1fr); }
  .ind-grid        { grid-template-columns: repeat(2,1fr); }
  .why-features    { grid-template-columns: 1fr; }
  .cform-wrap      { padding: 28px 20px; }
  .form-row        { grid-template-columns: 1fr; }

  /* Locations */
  #page-hero   { padding: 130px 0 70px; }
  .office-meta { grid-template-columns: 1fr; }
  .presence-stats { grid-template-columns: 1fr 1fr; }

  /* Shared footer */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}