/* ── PROLEASE COMMON STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F0F4FF;
  --sage:     #C5D5F5;
  --sage-mid: #7FA3E8;
  --sage-dk:  #1B3FA0;
  --blush:    #D6E4FF;
  --sky:      #E8F0FE;
  --sand:     #EEF2FF;
  --muted:    #5A6A8A;
  --dark:     #0D1B4B;
  --white:    #FFFFFF;
  --radius:   14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV BASE ── */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid rgba(197,213,245,0.5);
  box-shadow: 0 2px 12px rgba(13,27,75,0.06);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--dark);
  letter-spacing: -0.5px; text-decoration: none;
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--sage-dk); font-style: italic; }
.nav-logo-img { height: 36px; width: auto; display: block; }

/* Desktop links */
.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.9rem; font-weight: 400;
  transition: color .2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage-dk); font-weight: 500; }

/* Hamburger button */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; width: 32px;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(197,213,245,0.5);
  box-shadow: 0 8px 24px rgba(13,27,75,0.08);
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer ul {
  list-style: none; padding: 12px 24px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-drawer ul a {
  display: block; padding: 12px 8px;
  text-decoration: none; color: var(--muted);
  font-size: 1rem; border-bottom: 1px solid rgba(197,213,245,0.3);
  transition: color .2s;
}
.nav-drawer ul a:hover,
.nav-drawer ul a.active { color: var(--sage-dk); font-weight: 500; }
.nav-drawer ul li:last-child a { border-bottom: none; }

/* Mobile breakpoint */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
}

/* ── FOOTER BASE ── */
.prolease-footer {
  background: var(--dark); color: #aac0e8;
  padding: 48px 48px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
.prolease-footer h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cream); margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
}
.footer-logo span { color: var(--sage-mid); font-style: italic; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: #aac0e8; font-size: 0.85rem; transition: color .2s; }
.footer-links a:hover { color: var(--sage-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  background: var(--dark); color: var(--white);
  border: none; padding: 14px 32px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: transform .2s, background .2s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--sage-dk); }

.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--dark); padding: 14px 32px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
