/* ─── BUTTON ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--color-midnight);
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
button.btn { -webkit-appearance: none; appearance: none; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(176, 141, 87, 0.15);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.nav__logo img { height: clamp(32px, 3.5vw, 48px); width: auto; }

.nav__links {
  display: none;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--accent); }

.nav__cta { display: none; color: var(--text-on-dark); }

@media (min-width: 1024px) {
  .nav__inner { justify-content: flex-start; gap: 36px; }
  .nav__links  { display: flex; margin-left: auto; }
  .nav__cta    { display: inline-block; color: var(--text-on-dark); }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: all 0.25s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.nav__drawer {
  background: var(--bg-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  border-bottom: 1px solid rgba(176, 141, 87, 0.15);
}
.nav__drawer.open { max-height: 400px; }
.nav__drawer-inner {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav__drawer-inner a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(176, 141, 87, 0.12);
}
.nav__drawer-inner a:last-child { border-bottom: none; padding-bottom: 0; }
.nav__drawer-inner .btn { align-self: flex-start; margin-top: 8px; }

/* ─── TRUST STRIP (module) ────────────────────────────────── */
.trust-strip {
  border-top: 1px solid rgba(176,141,87,0.12);
  border-bottom: 1px solid rgba(176,141,87,0.12);
  padding: 36px 0;
}
.trust-strip__inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 768px) {
  .trust-strip__inner { flex-direction: row; align-items: center; gap: 0; }
}
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center; }
.trust-item__icon { color: var(--accent); flex-shrink: 0; width: 26px; height: 26px; }
.trust-item__text {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-on-dark);
}
.trust-divider { display: none; }
@media (min-width: 768px) {
  .trust-divider { display: block; width: 1px; height: 36px; background: rgba(176,141,87,0.3); flex-shrink: 0; }
}

/* ─── CTA SECTION (module) ────────────────────────────────── */
.cta-section { padding: 96px 0; text-align: center; }
.cta-section h2 {
  font-size: clamp(26px, 4vw, 48px); font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.15; text-transform: uppercase;
  max-width: 600px; margin: 0 auto 20px;
}
.section-dark  .cta-section h2 { color: var(--text-on-dark); }
.section-light .cta-section h2 { color: var(--text-on-light); }
.cta-section p {
  font-size: 15px; font-weight: 300; line-height: 1.65;
  max-width: 480px; margin: 0 auto 40px;
}
.section-dark  .cta-section p { color: var(--text-muted-dark); }
.section-light .cta-section p { color: rgba(14,26,23,0.65); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(176, 141, 87, 0.2);
  padding: 64px 0 0;
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px)  { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 64px; } }

.footer__logo img { height: clamp(40px, 4.5vw, 56px); width: auto; margin-bottom: 20px; }
.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: 260px;
}
.footer__col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted-dark);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}
.footer__contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer__contact-list a { color: var(--text-muted-dark); transition: color 0.2s; }
.footer__contact-list a:hover { color: var(--text-on-dark); }
.footer__area-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__area-list li { font-size: 13px; font-weight: 300; color: var(--text-muted-dark); }
.footer__social { display: flex; gap: 16px; margin-top: 4px; }
.footer__social-link { color: var(--text-muted-dark); transition: color 0.2s; display: block; }
.footer__social-link:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(176, 141, 87, 0.15);
  padding: 20px var(--container-pad);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.footer__legal {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(182, 161, 138, 0.55);
}
