/* ==============================
   VARIABLES
============================== */
:root {
  --red:        #8B1E22;
  --red-light:  #a52228;
  --navy:       #1B2B3A;
  --charcoal:   #2C3E50;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F0F2F4;
  --gray-200:   #E2E6EA;
  --gray-600:   #6C757D;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --radius:     8px;
  --radius-lg:  14px;
  --ease:       0.22s ease;
}

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 600; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--charcoal); margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ==============================
   LAYOUT
============================== */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt  { background: var(--gray-50); }
.section-dark { background: var(--navy); }
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,.78); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label-light { color: rgba(255,255,255,.50); }

.divider {
  width: 48px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px auto 28px;
}
.divider-left  { margin-left: 0; }
.divider-light { background: rgba(255,255,255,.28); }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-light); box-shadow: 0 6px 20px rgba(139,30,34,.28); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.52); }
.btn-outline:hover { background: rgba(255,255,255,.10); border-color: var(--white); }

.btn-outline-dark { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-dark:hover { background: var(--red); color: var(--white); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==============================
   NAVIGATION
============================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .81rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 6px 9px;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); background: var(--gray-50); }

.nav-cta .btn { padding: 9px 18px; font-size: .86rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   HERO (shared)
============================== */
.hero {
  background: linear-gradient(135deg, #1B2B3A 0%, #2a3f52 55%, #1B2B3A 100%);
  color: var(--white);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 78% 50%, rgba(139,30,34,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,30,34,.25);
  border: 1px solid rgba(139,30,34,.50);
  color: #f8c8ca;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,.60);
  transition: color var(--ease);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.25);
}
.hero-phone-link:hover { color: rgba(255,255,255,.90); }
.hero-phone-link svg { flex-shrink: 0; }

/* Two-col hero */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap::before {
  content: '';
  position: absolute; inset: -10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139,30,34,.22), transparent);
  z-index: 0;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  aspect-ratio: 4/3;
  position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.40);
}

/* Centered hero (inner pages) */
.hero-center {
  text-align: center;
  padding: 64px 0 56px;
  position: relative; z-index: 1;
}
.hero-center h1 { margin-bottom: 14px; }
.hero-center .hero-sub { margin: 0 auto 28px; }
.hero-center .btn-group { justify-content: center; }

/* ==============================
   TRUST STRIP
============================== */
.trust-strip { background: var(--red); padding: 14px 0; }
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: .83rem;
  font-weight: 700;
}
.trust-item svg { opacity: .85; flex-shrink: 0; }

/* ==============================
   CONTACT BOX
============================== */
.contact-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-box h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.contact-box > p { color: rgba(255,255,255,.68); font-size: .92rem; margin-bottom: 28px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--white);
  font-size: .94rem; font-weight: 600;
  margin-bottom: 12px;
  transition: background var(--ease), border-color var(--ease);
}
.contact-link:last-child { margin-bottom: 0; }
.contact-link:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.26); }
.contact-link svg { color: #f5a8ab; flex-shrink: 0; }

/* ==============================
   FINAL CTA
============================== */
.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, #6b1215 100%);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.final-cta > .container > p {
  color: rgba(255,255,255,.80); font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 32px;
}
.final-cta .btn-group { justify-content: center; margin-bottom: 36px; }
.cta-contacts {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.cta-contacts a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; font-weight: 600;
  color: rgba(255,255,255,.70);
  transition: color var(--ease);
}
.cta-contacts a:hover { color: var(--white); }
.cta-contacts svg { opacity: .58; flex-shrink: 0; }

/* ==============================
   FAQ ACCORDION
============================== */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: transform var(--ease), background var(--ease);
}
details[open] .faq-chevron { transform: rotate(180deg); background: rgba(139,30,34,.09); }
.faq-a {
  padding: 0 0 20px;
  font-size: .93rem;
  color: var(--charcoal);
  max-width: 680px;
  line-height: 1.75;
}

/* ==============================
   CHECK LIST (shared)
============================== */
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: .92rem;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.check-list li:last-child { border-bottom: none; }
.check-list svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* Dark variant */
.check-list-dark li { color: rgba(255,255,255,.80); border-bottom-color: rgba(255,255,255,.08); }
.check-list-dark svg { color: #f5a8ab; }

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.68);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand img { height: 48px; margin-bottom: 12px; filter: brightness(1.1); }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-ctas { display: flex; flex-direction: column; gap: 10px; }
.footer-ctas .btn { width: 100%; justify-content: center; font-size: .85rem; padding: 10px 18px; }
.footer-col h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.40); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.68); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; margin-bottom: 13px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.36); }
.footer-contact-item a { color: rgba(255,255,255,.68); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; font-size: .82rem;
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.17);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.48);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.footer-social a:hover { border-color: rgba(255,255,255,.46); color: var(--white); background: rgba(255,255,255,.08); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-width: 520px; margin: 0 auto; aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .trust-inner { gap: 18px; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 16px 16px;
    box-shadow: var(--shadow-md); gap: 2px;
  }
  .nav-links.open + .nav-cta {
    display: block;
    padding: 0 16px 16px;
    background: var(--white);
    position: absolute; left: 0; right: 0;
  }
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .cta-contacts { flex-direction: column; gap: 14px; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-ctas .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==============================
   ANIMATION
============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
