/* ============================================
   LOLLIS CONSULTING — SHARED STYLES
   v4AC Brand System: Navy + Coral + Diamond
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0F2238;
  --navy-mid:     #1B3A5C;
  --blue-light:   #6FA8D4;
  --blue-pale:    #D4E8F5;
  --coral:        #E85D3A;
  --coral-light:  #F09070;
  --coral-pale:   #FDEAE4;
  --cream:        #F7F4EE;
  --white:        #FFFFFF;
  --ink:          #0F1923;
  --gray:         #4A5F70;
  --muted:        #8A9FAD;
  --border:       #C8DDE8;
}

/* Diamond pattern */
.pat-navy {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='0.8'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.pat-cream {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(232,93,58,0.055)' stroke-width='0.8'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--coral);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

.nav-brand em {
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Page offset for fixed nav */
.page-body { padding-top: 64px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(200,144,42,0.15);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand em { color: var(--coral-light); font-style: italic; font-weight: 300; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}

.footer-tagline em { color: var(--coral-light); font-style: normal; font-weight: 700; }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--coral-light); }

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 1.7;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

/* Section wrapper */
.section {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-full {
  padding: 96px 48px;
}

/* Section eyebrow */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--coral);
  flex-shrink: 0;
}

.eyebrow-light { color: var(--coral-light); }
.eyebrow-light::before { background: var(--coral-light); }

/* Display headline */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.display em { color: var(--coral); font-style: italic; font-weight: 300; }
.display-white { color: var(--white); }
.display-white em { color: var(--coral-light); }

/* Subheadline */
.subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.4;
  margin-top: 20px;
}

/* Body text */
.body-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--navy); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.7); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--coral);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--coral);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--coral); color: var(--white); }

/* Card */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.card-accent {
  border-top: 4px solid var(--coral);
}

/* Coral left border callout */
.callout {
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin: 32px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .section { padding: 64px 24px; }
  .section-full { padding: 64px 24px; }
  .footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
