/* ============================================
   HAS PRODUCTION — Main Stylesheet
   Colors: #FFFFFF bg | #0D1B3E navy | #C9A96E gold
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================ */

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

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem; /* 17px */
  line-height: 1.75;
  color: #0D1B3E;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0D1B3E;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2C3A5A;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-light {
  background-color: #FFFFFF;
}

.section-gray {
  background-color: #F5F5F5;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #0D1B3E;
  color: #FFFFFF;
  border-color: #0D1B3E;
}

.btn-primary:hover {
  background-color: #1a2f5e;
  border-color: #1a2f5e;
}

.btn-gold {
  background-color: #C9A96E;
  color: #FFFFFF;
  border-color: #C9A96E;
}

.btn-gold:hover {
  background-color: #b8924f;
  border-color: #b8924f;
}

.btn-outline {
  background-color: transparent;
  color: #0D1B3E;
  border-color: #0D1B3E;
}

.btn-outline:hover {
  background-color: #0D1B3E;
  color: #FFFFFF;
}

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #0D1B3E;
  text-transform: uppercase;
}

.nav-logo span {
  color: #C9A96E;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0D1B3E;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #C9A96E;
}

/* Prevent nav link color from overriding button text */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:visited {
  color: #FFFFFF;
}

.nav-links a.btn-gold,
.nav-links a.btn-gold:hover,
.nav-links a.btn-gold:visited {
  color: #FFFFFF;
}

.nav-links a.btn-outline {
  color: #0D1B3E;
}

.nav-links a.btn-outline:hover {
  color: #FFFFFF;
}

.nav-cta {
  margin-left: 1rem;
  font-size: 0.8125rem;
  padding: 0.625rem 1.1rem;
  white-space: nowrap;
}

/* Mobile menu */
.nav-toggle,
.nav-toggle-mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span,
.nav-toggle-mobile span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0D1B3E;
  transition: all 0.3s;
}

/* Language toggle button */
.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 2px;
  color: #6B7A99;
  transition: color 0.2s;
}

.lang-toggle .lang-en,
.lang-toggle .lang-fr {
  transition: color 0.2s, font-weight 0.2s;
}

.lang-toggle .lang-sep {
  color: #CBD5E1;
  font-weight: 300;
}

.lang-toggle:hover .lang-en,
.lang-toggle:hover .lang-fr {
  color: #C9A96E;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  background: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #0D1B3E;
  padding: 0.5rem 0;
  border-bottom: 1px solid #F5F5F5;
}

.mobile-menu.open {
  display: flex;
}

/* === HERO === */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
}

/* Video hero — cinematic full-screen */
.hero-video {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(160deg, #05101F 0%, #0D1B3E 60%, #0a1628 100%);
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 13, 31, 0.5) 0%,
    rgba(5, 13, 31, 0.35) 50%,
    rgba(5, 13, 31, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 7rem;
}

.hero-video .hero-eyebrow {
  color: #C9A96E;
}

.hero-video h1 {
  color: #FFFFFF;
}

.hero-video p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-video .btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-video .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.25rem;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto 1.5rem;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === DIVIDER === */
.divider {
  width: 60px;
  height: 3px;
  background-color: #C9A96E;
  margin: 0 auto 2rem;
}

.divider-left {
  margin: 0 0 2rem;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 560px;
  margin: 1rem auto 0;
}

/* === PROBLEM SECTION === */
.problem-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #C9A96E;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

/* === WHO WE SERVE === */
.serve-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
}

.cities-line {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0D1B3E;
  letter-spacing: 0.05em;
}

/* === SPECIALTIES TAGS === */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}

.tag {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid #0D1B3E;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0D1B3E;
}

/* === CTA BANNER === */
.cta-banner {
  background-color: #0D1B3E;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #B8C4D8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* === SERVICES PAGE === */
.package-box {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 2rem;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #6B7A99;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.package-list li::before {
  content: '✦';
  color: #C9A96E;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.package-list li.pkg-subitem {
  padding-left: 2rem;
  font-size: 0.9375rem;
  color: #4A6080;
}

.package-list li.pkg-subitem::before {
  content: '—';
  color: #C9A96E;
}

/* Add-ons table */
.addons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.addons-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  background-color: #0D1B3E;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.addons-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #E8E8E8;
  font-size: 1rem;
}

.addons-table tr:last-child td {
  border-bottom: none;
}

.addons-table tr:nth-child(even) td {
  background-color: #F9F9F9;
}

.addon-price {
  font-weight: 600;
  color: #C9A96E;
  white-space: nowrap;
}

/* === PORTFOLIO === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
}

.portfolio-placeholder {
  aspect-ratio: 9/16;
  background-color: #0D1B3E;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 400px;
}

.portfolio-placeholder p {
  color: #B8C4D8;
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}

.portfolio-caption {
  padding: 1rem 1.25rem;
}

.portfolio-caption p {
  font-size: 0.9rem;
  color: #6B7A99;
}

.coming-soon-box {
  text-align: center;
  padding: 5rem 2rem;
  background: #F5F5F5;
  border-radius: 8px;
}

.coming-soon-box h3 {
  margin-bottom: 1rem;
}

.coming-soon-box p {
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A96E;
}

.contact-value {
  font-size: 1.0625rem;
  color: #0D1B3E;
  font-weight: 500;
}

.contact-value a {
  color: #0D1B3E;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: #C9A96E;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D1B3E;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #0D1B3E;
  background: #FFFFFF;
  border: 1.5px solid #D0D7E8;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0D1B3E;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* === FOOTER === */
.footer {
  background-color: #0D1B3E;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #C9A96E;
}

.footer-tagline {
  color: #7A90B8;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: #7A90B8;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact a,
.footer-contact span {
  color: #7A90B8;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #1E2F54;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #4A6080;
  font-size: 0.875rem;
}

.footer-cities {
  color: #4A6080;
  font-size: 0.875rem;
}

/* === POLICY PAGES === */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-date {
  color: #6B7A99;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

/* === DIFFERENTIATOR BOX === */
.differentiator-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #0D1B3E;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.diff-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.diff-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.diff-body {
  font-size: 0.9375rem;
  color: #B8C4D8;
  line-height: 1.7;
}

/* === STATS ROW === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
}

.stat-box {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid #E8E8E8;
  background: #FFFFFF;
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0D1B3E;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  color: #C9A96E;
}

.stat-label {
  font-size: 0.875rem;
  color: #6B7A99;
  font-weight: 500;
  line-height: 1.4;
}

/* === FIT SECTION === */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.fit-box {
  border-radius: 8px;
  padding: 2rem;
}

.fit-box-yes {
  background: #F0F7F4;
  border: 1.5px solid #B8D8CC;
}

.fit-box-no {
  background: #FBF5F5;
  border: 1.5px solid #E8CCCC;
}

.fit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.fit-box-yes .fit-title { color: #0A5C3A; }
.fit-box-no .fit-title { color: #8B2020; }

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #2C3A5A;
  line-height: 1.5;
}

.fit-box-yes .fit-list li::before {
  content: '✓';
  color: #0A5C3A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.fit-box-no .fit-list li::before {
  content: '✗';
  color: #8B2020;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle,
  .nav-toggle-mobile {
    display: flex;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .package-box {
    padding: 2rem 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .stat-box:nth-child(2) {
    border-right: none;
  }

  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    border-top: 1px solid #E8E8E8;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}
