/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --navy:      #002147;
  --navy-deep: #001230;
  --gold:      #c99a2e;
  --gold-lt:   #f0c95a;
  --ink:       #1a2535;
  --muted:     #5f7185;
  --paper:     #f9f8f5;
  --white:     #ffffff;
  --line:      #e0e6ee;
  --green:     #25D366;

  --shadow-sm: 0 2px 12px rgba(0,33,71,.07);
  --shadow:    0 12px 40px rgba(0,33,71,.13);
  --shadow-lg: 0 24px 60px rgba(0,33,71,.18);
  --radius:    10px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.22,1,.36,1);
  --dur:       260ms;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
button { font-family: inherit; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }

/* ═══════════════════════════════════════
   EYEBROW / SHARED TYPOGRAPHY
═══════════════════════════════════════ */
.eyebrow {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--gold-lt); }
.eyebrow.light::before { background: var(--gold-lt); }

.section-heading { margin-bottom: 52px; max-width: 720px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { margin-left: auto; margin-right: auto; }
.section-heading h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.14;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-heading p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════
   SCROLLING NEWS TICKER
═══════════════════════════════════════ */
.news-ticker {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: stretch;
  height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 49;
}
.ticker-label {
  background: var(--gold);
  color: var(--navy);
  padding: 0 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 4px 0 10px rgba(0,0,0,.18);
}
.ticker-label svg { flex-shrink: 0; }
.ticker-wrap {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg, var(--navy), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 500;
  padding: 0 36px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-item::after {
  content: '◆';
  position: absolute;
  right: 6px;
  color: var(--gold);
  font-size: .45rem;
  opacity: .7;
}
.ticker-item a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.ticker-item a:hover { color: var(--gold-lt); }
.ticker-new-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .news-ticker { height: 34px; }
  .ticker-label { padding: 0 14px; font-size: .65rem; gap: 6px; }
  .ticker-item { font-size: .74rem; padding: 0 24px; }
}

/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-left a,
.topbar-right a {
  display: flex; align-items: center; gap: 7px;
  transition: color var(--dur) var(--ease);
}
.topbar-left a:hover,
.topbar-right a:hover { color: var(--gold-lt); }
.topbar-right {
  display: flex; align-items: center; gap: 14px;
}
.topbar-right a {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.topbar-right a:hover {
  border-color: var(--gold);
  background: rgba(201,154,46,.18);
  color: var(--gold-lt);
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
}
.navbar {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--dur) var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,33,71,.11); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 84px; gap: 20px;
}
.brand img { width: 220px; height: auto; transition: opacity var(--dur) var(--ease); }
.brand:hover img { opacity: .82; }

.site-menu {
  display: flex; align-items: center; gap: 2px;
  font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy);
}
.nav-link {
  padding: 8px 11px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); background: rgba(201,154,46,.07); }
.nav-cta {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(201,154,46,.35);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav-cta:hover {
  background: #b8881f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,154,46,.45);
}
.menu-toggle {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px; background: var(--white);
  gap: 5px;
  transition: border-color var(--dur) var(--ease);
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px;
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  color: var(--white);
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 1.3s ease, visibility 1.3s ease;
  z-index: 0;
}
.slide.active { opacity: 1; visibility: visible; z-index: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.07);
  transition: transform 9s ease-out;
  will-change: transform;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(0,18,48,.58) 0%, rgba(0,18,48,.22) 55%, rgba(0,18,48,.04) 100%),
    linear-gradient(to top, rgba(0,0,0,.18) 0%, transparent 40%);
}

.slide-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding-bottom: 40px;
}
.slide-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 18px;
  opacity: 0; transform: translateY(-20px);
}
.slide-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: currentColor; border-radius: 2px; flex-shrink: 0;
}
.slide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.08; font-weight: 700;
  color: var(--white); margin: 0 0 22px;
  opacity: 0; transform: translateY(-30px);
}
.slide-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.72;
  color: rgba(255,255,255,.84);
  margin: 0 0 34px; max-width: 580px;
  opacity: 0; transform: translateX(-36px);
}
.slide-btn {
  display: inline-flex; align-items: center; height: 52px;
  padding: 0 34px;
  background: var(--gold); color: var(--navy);
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201,154,46,.45);
  opacity: 0; transform: translateY(20px);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.slide-btn:hover { background: #b8881f; box-shadow: 0 8px 28px rgba(201,154,46,.55); }

/* Slide-in animations */
.slide.active .slide-eyebrow { animation: fromTop .8s var(--spring) forwards .15s; }
.slide.active .slide-title   { opacity: 1; transform: none; animation: none; }
.slide.active .slide-sub     { animation: fromLeft .9s var(--spring) forwards .55s; }
.slide.active .slide-btn     { animation: fadeUp .7s var(--spring) forwards .85s; }

@keyframes fromTop  { to { opacity:1; transform:translateY(0); } }
@keyframes fromLeft { to { opacity:.88; transform:translateX(0); } }
@keyframes fadeUp   { to { opacity:1; transform:translateY(0); } }

/* Typing cursor */
.type-cursor {
  display: inline-block;
  width: 3px; height: .82em;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 3px; border-radius: 1px;
  animation: typeBlink .65s step-end infinite;
}
@keyframes typeBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; display: grid; place-items: center;
  width: 50px; height: 50px;
  background: rgba(0,0,0,.32);
  border: 1.5px solid rgba(255,255,255,.32);
  border-radius: 50%; color: white;
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrow:hover.slider-prev { transform: translateY(-50%) translateX(-2px); }
.slider-arrow:hover.slider-next { transform: translateY(-50%) translateX(2px); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 10px;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.38); border: none; padding: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease), border-radius var(--dur) var(--ease);
}
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ═══════════════════════════════════════
   STATS RIBBON
═══════════════════════════════════════ */
.stats-ribbon {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 2;
}
.stats-ribbon::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.09);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 700; line-height: 1;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

/* ═══════════════════════════════════════
   ABOUT + NEWS
═══════════════════════════════════════ */
.about-news { background: var(--white); }
.about-news-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px; align-items: start;
}
.about-col h2, .news-col h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16; color: var(--navy);
  margin-bottom: 18px;
}
.about-col p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-col p:last-of-type { margin-bottom: 28px; }

/* Outlined buttons */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 26px;
  border: 2px solid var(--navy);
  border-radius: 6px; color: var(--navy);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.gold { border-color: var(--gold); color: var(--gold); }
.btn-outline.gold:hover { background: var(--gold); color: var(--navy); }

/* News list */
.news-list { margin: 28px 0 28px; display: flex; flex-direction: column; gap: 0; }
.news-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur) var(--ease);
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item:hover { padding-left: 6px; }
.news-item time {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.news-item h3 {
  font-size: 17px; line-height: 1.35;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
}
.news-item h3 a { color: var(--navy); transition: color var(--dur) var(--ease); }
.news-item h3 a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   WHAT WE OFFER
═══════════════════════════════════════ */
.offering {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.offering .eyebrow { color: var(--gold-lt); }
.offering .eyebrow::before { background: var(--gold-lt); }
.offering .section-heading.centered h2 { color: var(--white); }
.offering .section-heading.centered p  { color: rgba(255,255,255,.68); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
  border-color: rgba(201,154,46,.45);
}
.offer-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.offer-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.offer-card:hover .offer-img-wrap img { transform: scale(1.07); }
.offer-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,33,71,.62);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.offer-card:hover .offer-overlay { opacity: 1; }
.offer-card h3 {
  padding: 22px 22px 10px;
  font-size: 20px; color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
}
.offer-card p {
  padding: 0 22px 24px;
  font-size: 14.5px; line-height: 1.68;
  color: rgba(255,255,255,.68); margin: 0;
}

/* ═══════════════════════════════════════
   VALUES BANNER
═══════════════════════════════════════ */
.values-banner {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-banner-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px; align-items: start;
}
.values-banner-grid > div:first-child h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16; color: var(--navy);
  margin-bottom: 0;
}
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-pill {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.value-pill:first-child { border-top: 1px solid var(--line); }
.value-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700;
  color: var(--gold); opacity: .55; flex-shrink: 0;
  line-height: 1; padding-top: 3px;
}
.value-pill h3 {
  font-size: 20px; margin-bottom: 6px; color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
}
.value-pill p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 220px;
  transition: transform 500ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 18px 16px;
  background: linear-gradient(to top, rgba(0,18,48,.75), transparent);
  color: var(--white); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════ */
.video-section {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.video-section .section-heading h2 { color: var(--white); }
.video-section .section-heading p  { color: rgba(255,255,255,.72); }
.video-frame {
  max-width: 860px; margin: 0 auto;
}
.video-thumb {
  position: relative; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 2px solid rgba(201,154,46,.3);
}
.video-thumb img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  filter: brightness(.72);
  transition: filter 400ms var(--ease);
}
.video-thumb:hover img { filter: brightness(.55); }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: grid; place-items: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,154,46,.92);
  box-shadow: 0 0 0 14px rgba(201,154,46,.2), 0 8px 30px rgba(0,0,0,.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: pulse 2.8s ease-in-out infinite;
}
.play-btn:hover {
  transform: translate(-50%,-50%) scale(1.12);
  box-shadow: 0 0 0 20px rgba(201,154,46,.12), 0 12px 40px rgba(0,0,0,.5);
  animation: none;
}
.play-btn svg { width: 52px; height: 52px; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 14px rgba(201,154,46,.2), 0 8px 30px rgba(0,0,0,.4); }
  50%      { box-shadow: 0 0 0 22px rgba(201,154,46,.07), 0 8px 30px rgba(0,0,0,.4); }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px; align-items: start;
}
.contact-info h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16; color: var(--navy); margin-bottom: 14px;
}
.contact-info > p { color: var(--muted); margin-bottom: 36px; }

.info-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(201,154,46,.1);
  border-radius: 10px; color: var(--gold);
}
.info-icon svg { width: 18px; height: 18px; }
.info-item strong {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 4px;
}
.info-item span {
  display: block; color: var(--muted); font-size: 14.5px; line-height: 1.65;
}
.info-item a { color: var(--navy); font-weight: 600; transition: color var(--dur) var(--ease); }
.info-item a:hover { color: var(--gold); }

.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 24px;
  background: var(--green); color: #0a3a1a;
  font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-btn:hover {
  background: #1db854;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--navy);
}
input, textarea {
  border: 1.5px solid #cdd5e0;
  border-radius: 7px;
  padding: 12px 15px;
  font: 15px 'Inter', sans-serif;
  color: var(--ink); background: var(--paper);
  outline: none; width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
input:focus, textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,154,46,.14);
}
textarea { resize: vertical; }
.submit-btn {
  align-self: flex-start;
  height: 50px; padding: 0 32px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 7px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,33,71,.25);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.submit-btn:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,154,46,.4);
}
.form-note {
  font-size: 13.5px; color: var(--muted); min-height: 20px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-logo { width: 200px; max-width: 100%; margin-bottom: 16px; opacity: .92; filter: brightness(0) invert(1); }
.footer-brand h2 {
  font-size: 22px; line-height: 1.25;
  color: var(--white); margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}
.footer-brand p { font-size: 14px; line-height: 1.78; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-socials a:hover {
  border-color: var(--gold); background: var(--gold); color: var(--navy);
}

.footer-links h3, .footer-contact h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 14px; margin-bottom: 10px;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--gold-lt); padding-left: 4px; }

.footer-contact h3 { margin-bottom: 20px; }
.footer-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-info-item svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-info-item span { font-size: 14px; line-height: 1.65; }
.footer-info-item a { transition: color var(--dur) var(--ease); }
.footer-info-item a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-apply {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.footer-apply:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 56px; height: 56px;
  background: var(--green); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: waBounce 3.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }
.scroll-top svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
  .scroll-top { bottom: 82px; right: 18px; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .topbar-inner { justify-content: center; }

  .menu-toggle { display: flex; }
  .site-menu {
    position: fixed;
    top: 84px; left: 0; right: 0;
    display: none; flex-direction: column;
    align-items: stretch; gap: 0;
    padding: 12px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 50;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .site-menu.is-open { display: flex; }
  .nav-link {
    padding: 14px 10px; border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .nav-cta { margin: 14px 0 0; text-align: center; border-bottom: 0 !important; border-radius: 6px; }

  .hero { height: 560px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.09); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.09); }

  .about-news-grid,
  .values-banner-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-row: auto; }

  .section { padding: 72px 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .topbar { display: none; }

  .nav-inner { min-height: 68px; }
  .brand img { width: 175px; }
  .site-menu { top: 68px; max-height: calc(100vh - 68px); }

  .hero { min-height: 480px; height: 88vh; max-height: 640px; }
  .slide-content { padding-bottom: 72px; }
  .slider-arrow { display: none; }

  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(24px, 7vw, 36px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }
  .stat-number { font-size: clamp(32px, 9vw, 48px); }

  .about-news-grid,
  .values-banner-grid,
  .contact-grid { gap: 36px; }

  .offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
  .submit-btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; padding: 48px 0 36px; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤ 420px)
═══════════════════════════════════════ */
@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 155px; }
  .nav-inner { min-height: 62px; }
  .site-menu { top: 62px; max-height: calc(100vh - 62px); }

  .hero { min-height: 420px; }
  .slide-title { font-size: clamp(26px, 8.5vw, 36px); }
  .slide-sub { font-size: 13.5px; margin-bottom: 24px; }
  .slide-btn { height: 46px; padding: 0 24px; font-size: 12px; }

  .stat-item { padding: 22px 10px; }
  .stat-number { font-size: 30px; }
  .hero-dots { bottom: 20px; }
  .dot { width: 7px; height: 7px; }
  .dot.active { width: 20px; }

  .value-pill { gap: 14px; padding: 20px 0; }
  .value-num { font-size: 24px; }
  .value-pill h3 { font-size: 17px; }

  .contact-form { padding: 18px 14px; }
  .footer-grid { gap: 24px; padding: 40px 0 28px; }
  .footer-brand h2 { font-size: 18px; }
}
