/* VEYTARA — Global Stylesheet
   Palette: #212E42 navy | #B09F78 tan/gold | #D7D2BE parchment | #F7F7F7 off-white
   Fonts: DM Sans (headings, UI) | Inter (body)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F7F7F7;
  color: #212E42;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.vt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 280ms ease, border-color 280ms ease;
}
.vt-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}
.vt-header.scrolled .vt-header-inner {
  background: rgba(33,46,66,0.92);
  border-bottom-color: rgba(176,159,120,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vt-header.light .vt-header-inner {
  background: rgba(247,247,247,0.95);
  border-bottom-color: rgba(215,210,190,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vt-logo { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.vt-logo img { height: 30px; width: auto; display: block; }
.vt-nav { display: flex; align-items: center; gap: 2rem; }
.vt-nav a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(247,247,247,0.8);
  transition: color 150ms ease;
}
.vt-nav a:hover, .vt-nav a.active { color: #F7F7F7; }
.vt-header.light .vt-nav a { color: rgba(33,46,66,0.7); }
.vt-header.light .vt-nav a:hover,
.vt-header.light .vt-nav a.active { color: #212E42; }

/* Mobile nav */
.vt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.vt-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F7F7F7;
  border-radius: 2px;
  transition: background 200ms;
}
.vt-header.light .vt-hamburger span { background: #212E42; }
.vt-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(33,46,66,0.97);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(176,159,120,0.15);
}
.vt-mobile-menu.open { display: flex; }
.vt-mobile-menu a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(247,247,247,0.85);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(215,210,190,0.1);
}
.vt-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .vt-nav { display: none; }
  .vt-hamburger { display: flex; }
}

/* ── LAYOUT ── */
.vt-page { padding-top: 64px; }

/* ── HERO (home) ── */
.vt-hero {
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  min-height: 46vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,18,28,0.92) 0%, rgba(12,18,28,0.78) 55%, rgba(12,18,28,0.45) 100%);
  pointer-events: none;
}
.vt-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.vt-hero-text { max-width: 55%; }

/* ── PAGE HERO (inner pages) ── */
.vt-page-hero {
  background-color: #212E42;
  padding: 6rem 2rem 5rem;
}
.vt-page-hero-inner { max-width: 1280px; margin: 0 auto; }

/* ── SECTIONS ── */
.vt-section { padding: 6rem 2rem; }
.vt-section-inner { max-width: 1280px; margin: 0 auto; }
.vt-section-sm { padding: 5rem 2rem; }

/* ── EYEBROW ── */
.vt-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B09F78;
  margin-bottom: 1rem;
}

/* ── TYPOGRAPHY ── */
h1.vt-h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #F7F7F7;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  max-width: 640px;
  line-height: 1.15;
}
h1.vt-h1-hero {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: #F7F7F7;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
h2.vt-h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #212E42;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
h2.vt-h2-light {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #F7F7F7;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}
h2.vt-h2-md {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #212E42;
  letter-spacing: -0.015em;
}
h3.vt-h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #212E42;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
h3.vt-h3-lg {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212E42;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
p.vt-lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(215,210,190,0.8);
  max-width: 580px;
}
p.vt-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #4B5563;
}
p.vt-body-sm {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #6B7280;
}
p.vt-body-light {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(215,210,190,0.75);
}

/* ── BUTTONS ── */
.vt-btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: #B09F78;
  color: #212E42;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 200ms ease, transform 160ms ease;
  border: none;
  cursor: pointer;
}
.vt-btn-primary:hover { background-color: #D7D2BE; }
.vt-btn-primary:active { transform: scale(0.97); }
.vt-btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: rgba(215,210,190,0.85);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(176,159,120,0.4);
  transition: border-color 200ms ease, color 200ms ease, transform 160ms ease;
  cursor: pointer;
}
.vt-btn-outline:hover { border-color: rgba(215,210,190,0.7); color: #F7F7F7; }
.vt-btn-outline:active { transform: scale(0.97); }
.vt-btn-ghost {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B09F78;
  text-decoration: none;
  border-bottom: 1px solid rgba(176,159,120,0.4);
  padding-bottom: 2px;
  transition: color 150ms, border-color 150ms;
}
.vt-btn-ghost:hover { color: #D7D2BE; border-color: rgba(215,210,190,0.6); }

/* ── GRIDS ── */
.vt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.vt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vt-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.vt-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.vt-gov-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.vt-sector-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── CARDS ── */
.vt-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-top: 2px solid #B09F78;
  border-radius: 4px;
  padding: 2rem;
}
.vt-card-plain {
  border-top: 2px solid #B09F78;
  padding-top: 1.5rem;
}
.vt-card-sector {
  background: #F7F7F7;
  border: 1px solid #E8E4DC;
  border-radius: 4px;
  padding: 1.5rem;
}
.vt-blockquote {
  border-left: 2px solid #B09F78;
  padding-left: 1.5rem;
}

/* ── BULLET LIST ── */
.vt-bullet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.vt-bullet-list li { display: flex; align-items: center; gap: 0.75rem; }
.vt-bullet-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: #B09F78;
  flex-shrink: 0;
}

/* ── DIVIDER RULE ── */
.vt-rule { border: none; border-top: 1px solid #E8E4DC; }

/* ── CTA STRIP ── */
.vt-cta-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* ── FOOTER ── */
.vt-footer {
  background-color: #1A2332;
  padding: 4rem 2rem 2rem;
}
.vt-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.vt-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(215,210,190,0.1);
}
.vt-footer-brand p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(215,210,190,0.6);
  margin-top: 1rem;
  max-width: 280px;
}
.vt-footer-brand a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: #B09F78;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
}
.vt-footer-col h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(215,210,190,0.5);
  margin-bottom: 1.25rem;
}
.vt-footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.vt-footer-col ul li a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(215,210,190,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.vt-footer-col ul li a:hover { color: #D7D2BE; }
.vt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
.vt-footer-bottom p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  color: rgba(215,210,190,0.35);
}
.vt-footer-bottom a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  color: rgba(215,210,190,0.35);
  text-decoration: none;
  transition: color 150ms;
}
.vt-footer-bottom a:hover { color: rgba(215,210,190,0.65); }

/* ── SCROLL REVEAL ── */
.vt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.vt-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT FORM ── */
.vt-form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.vt-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4B5563;
}
.vt-input, .vt-select, .vt-textarea {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #212E42;
  background: #FFFFFF;
  border: 1px solid #D7D2BE;
  border-radius: 2px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 200ms ease;
  outline: none;
}
.vt-input:focus, .vt-select:focus, .vt-textarea:focus { border-color: #B09F78; }
.vt-textarea { resize: vertical; min-height: 120px; }
.vt-form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: #F7F7F7;
  border: 1px solid #E8E4DC;
  border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vt-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vt-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vt-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .vt-grid-3 { grid-template-columns: 1fr; }
  .vt-grid-2 { grid-template-columns: 1fr; }
  .vt-gov-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .vt-sector-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .vt-hero-text { max-width: 100%; }
  .vt-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .vt-cta-strip { flex-direction: column; align-items: flex-start; }
  .vt-section { padding: 4rem 1.5rem; }
  .vt-page-hero { padding: 5rem 1.5rem 4rem; }
}
@media (max-width: 480px) {
  .vt-grid-4 { grid-template-columns: 1fr; }
}
