/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #2C2A28; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === VARIABLES === */
:root {
  --navy: #2C2A28;
  --dark-hero: #1C1F2E;
  --gold: #C9A84C;
  --gold-light: #E8C060;
  --teal: #5C7A5A;
  --teal-dark: #5C7A5A;
  --light: #F0EBE3;
  --gray: #6B6560;
  --border: #D4CEC4;
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: baseline; gap: 10px; font-size: 52px; font-weight: 800; }
.logo-focus { color: var(--navy); }
.logo-ledger { color: var(--teal-dark); }
.logo-llc { font-size: 12px; font-weight: 500; color: var(--gray); margin-left: 4px; }
.logo--white .logo-focus { color: #fff; }
.logo--white .logo-llc { color: rgba(255,255,255,0.6); }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  background: none; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 5px 12px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--gray); transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--teal); color: var(--teal-dark); }
.nav-cta {
  background: var(--navy); color: #fff;
  padding: 9px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-dark); }

.burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--navy); margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; padding: 12px 24px 16px; gap: 4px; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 10px 0; font-size: 16px; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--border); }
.mobile-menu .mobile-cta { color: var(--teal-dark); font-weight: 700; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--teal-dark); color: #fff;
  padding: 14px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #4a6648; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 600;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--teal); }

/* === HERO === */
.hero {
  padding-top: 68px;
  background: linear-gradient(135deg, #F0EBE3 0%, #EDE5D8 40%, #F5F0E8 100%);
  min-height: 100vh; display: flex; align-items: center;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.badge {
  display: inline-block;
  background: var(--navy); color: #F0EBE3;
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: 20px;
}
.hero-sub { font-size: 17px; color: var(--gray); margin-bottom: 16px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(44,42,40,0.15);
  object-fit: cover; aspect-ratio: 3/4;
}
.hero-card {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(44,42,40,0.12);
  min-width: 200px;
}
.hero-card-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.hero-card-title { font-size: 13px; color: var(--gray); margin: 2px 0; }
.hero-card-langs { font-size: 12px; color: var(--teal-dark); font-weight: 500; margin-top: 4px; }

/* === SECTIONS === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-sub { font-size: 18px; color: var(--gray); margin-bottom: 48px; }

/* === SERVICES === */
.services { padding: 96px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 28px; border-radius: 16px;
  border: 1.5px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.3s ease,
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #fff;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(92,122,90,0.12);
  transform: translateY(-4px);
}
.service-card--highlight {
  background: var(--navy); border-color: var(--navy);
  grid-column: span 1;
}
.service-card--highlight h3,
.service-card--highlight p { color: #fff; }
.service-card--highlight .service-icon { filter: none; }
.service-card--highlight:hover { border-color: var(--teal-dark); box-shadow: 0 8px 24px rgba(44,42,40,0.25); }

.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.no-tax-note {
  margin-top: 40px; padding: 16px 24px;
  background: var(--light); border-radius: 12px;
  border-left: 4px solid var(--teal);
  font-size: 14px; color: var(--gray);
}

/* === WHY === */
.why { padding: 96px 0; background: var(--light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  padding: 32px 24px; background: #fff;
  border-radius: 16px; text-align: center;
  border: 1.5px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(44,42,40,0.08); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray); }

/* === FUNDING PARTNER === */
.funding { padding: 48px 0; background: #FAF7F3; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.funding-inner {
  display: flex; align-items: center; gap: 40px;
  background: var(--light); border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 32px 40px;
}
.funding-logo-wrap { flex-shrink: 0; }
.funding-logo { width: 100px; height: auto; mix-blend-mode: multiply; }
.funding-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 8px;
}
.funding-content { flex: 1; }
.funding-content h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.funding-content p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 620px; }
.btn-funding {
  display: inline-block; white-space: nowrap; flex-shrink: 0;
  background: transparent; color: var(--teal-dark);
  padding: 12px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  border: 2px solid var(--teal-dark);
  transition: all 0.2s;
}
.btn-funding:hover { background: var(--teal-dark); color: #fff; }

/* === CONTACT === */
.contact { padding: 96px 0; background: var(--navy); }
.contact h2 { color: #fff; }
.contact .section-sub { display: none; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-text p { font-size: 17px; color: rgba(255,255,255,0.75); margin: 16px 0 32px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  font-size: 15px; color: #F0EBE3; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 8px;
  margin-left: -12px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.2s ease,
              background 0.2s ease,
              box-shadow 0.3s ease;
}
.contact-link:hover {
  color: #fff;
  transform: translateX(8px) scale(1.04);
  background: rgba(255,255,255,0.07);
  box-shadow: -4px 0 0 0 var(--teal);
}
.contact-link svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.contact-link:hover svg {
  transform: rotate(-8deg) scale(1.2);
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 12px 16px;
  font-size: 15px; color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select option { background: var(--navy); color: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form .btn-primary { width: 100%; font-size: 16px; }
.form-success { color: #F0EBE3; font-size: 15px; text-align: center; padding: 8px 0; }

/* === FOOTER === */
.footer { background: #2C2A28; padding: 48px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: start;
  gap: 32px; flex-wrap: wrap; padding-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.3);
  max-width: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 300px; margin: 0 auto; }
  .hero-card { left: 0; bottom: -16px; }
  .contact-inner { grid-template-columns: 1fr; }
  .funding-inner { flex-direction: column; padding: 24px; gap: 20px; align-items: center; text-align: center; }
  .funding-content { text-align: left; }
  .funding-logo { width: 80px; }
  .btn-funding { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--highlight { grid-column: span 1; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

/* Specialty service card (alcohol/niche) */
.service-card--specialty {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-color: #c9a84c;
  border-width: 2px;
}
.service-card--specialty h3,
.service-card--specialty p { color: #fff; }
.service-card--specialty h3 { color: #f0d080; }
.service-card--specialty .service-icon { filter: none; }
.service-card--specialty:hover { box-shadow: 0 8px 28px rgba(201,168,76,0.3); border-color: #f0d080; }

/* Funding badge highlight */
.funding-badge--highlight {
  background: var(--teal-dark);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
}


/* === HERO STATS === */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { display: flex; flex-direction: column; }
.stat-value { display: flex; align-items: baseline; gap: 2px; }
.stat-num { font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-suffix { font-size: 26px; font-weight: 700; color: var(--gold); }
.stat-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.48);
  margin-top: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === SCROLL ANIMATIONS === */
[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.10s; }
[data-animate-delay="2"] { transition-delay: 0.20s; }
[data-animate-delay="3"] { transition-delay: 0.30s; }
[data-animate-delay="4"] { transition-delay: 0.40s; }

/* === SECTION HEADINGS GOLD ACCENT === */
.services h2::after,
.why h2::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 30px; }
  .stat-suffix { font-size: 20px; }
}

/* === ICON BOUNCE ON CARD HOVER === */
.why-icon {
  font-size: 36px; margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-card:hover .why-icon {
  transform: scale(1.25) rotate(-6deg);
}
.service-icon {
  font-size: 28px; margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  transform: scale(1.2) translateY(-3px);
}
