/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 3px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-lg);
}


/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(15, 32, 68, 0.12);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-wordmark-accent {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 700;
}

.footer-logo-link {
  display: block;
  text-decoration: none;
  color: var(--color-white);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links li { list-style: none; }

.nav-links a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--color-gold); }

.nav-links a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  border-radius: 4px;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
  padding: 0.5rem 1.5rem 1.5rem;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-lg);
  padding: 0.875rem 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-slate-100);
  transition: color 0.2s ease;
}

.nav-drawer a:hover { color: var(--color-gold); }

.nav-drawer a:last-of-type {
  border-bottom: none;
}

.nav-drawer .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.nav-cta-desktop { display: none; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-drawer { display: none !important; }
  .nav-cta-desktop { display: inline-flex; }
}


/* ===== SECTION LABELS & RULES ===== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.gold-rule {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.section-rule {
  border: none;
  border-top: 2px solid var(--color-gold-pale);
  margin: 0;
}


/* ===== CARDS ===== */
.card-dark {
  background-color: var(--color-navy-mid);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--color-gold);
}

.card-headline {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: var(--text-base);
  color: var(--color-slate-300);
  line-height: var(--leading-loose);
}


/* ===== FAQ ACCORDION ===== */
.accordion details {
  border-bottom: 1px solid var(--color-border);
}

.accordion details:first-child {
  border-top: 1px solid var(--color-border);
}

.accordion summary {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::marker { display: none; }

.accordion summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  transition: transform 0.2s ease;
}

.accordion details[open] > summary::after {
  content: '+';
  transform: translateY(-50%) rotate(45deg);
}

.accordion summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.accordion .answer {
  padding: 0 1rem 1.5rem 0;
  color: var(--color-slate-700);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  max-width: 72ch;
}


/* ===== FORM ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-slate-300);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
  height: 48px;
  padding: 0 1rem;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--color-slate-500);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 144, 42, 0.2);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C2C8D4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background-color: var(--color-navy-mid);
  color: var(--color-white);
}


/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background-color: var(--color-off-white);
  border-radius: 8px;
  padding: 2.5rem;
  flex: 0 0 clamp(280px, 85vw, 400px);
  scroll-snap-align: start;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  font-style: normal;
  user-select: none;
}

.testimonial-text {
  color: var(--color-charcoal);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-attr {
  color: var(--color-slate-500);
  font-size: var(--text-sm);
  font-weight: 600;
}


/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal.revealed {
  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; }


/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
