/* ============================================
   Mican Gabriela Law — Site Styles
============================================ */

:root {
  --navy: #1F4E3C;
  --navy-light: #2A6650;
  --navy-lighter: #35805F;
  --gold: #c6a15b;
  --gold-light: #e4c989;
  --cream: #f8f5f0;
  --cream-dark: #eee6d8;
  --text-dark: #1a1e27;
  --text-gray: #616a76;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(31, 78, 60, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 78, 60, 0.16);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

section { scroll-margin-top: 76px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img, svg { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1200;
  transition: width 0.1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-nav { padding: 10px 22px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(31, 78, 60, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-mark { color: var(--gold); flex-shrink: 0; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav-link {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  opacity: 0.9;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { opacity: 1; color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-lighter) 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-pattern { width: 100%; height: 100%; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow.center { display: block; text-align: center; }

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 22px;
}
.hero-copy .accent { color: var(--gold-light); }

.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-badges {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  flex-direction: column;
}
.hero-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
}
.hero-badge span {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

.hero-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198,161,91,0.4);
}
.portrait-svg { width: 100%; height: auto; }
.portrait-ribbon {
  margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(198,161,91,0.35);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 1.6s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- About ---------- */
.about {
  padding: 110px 0 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  margin-bottom: 70px;
}
.about-svg { width: 100%; height: auto; border-radius: 10px; }
.about-copy .lede { font-size: 1.08rem; color: var(--ink); margin-bottom: 18px; overflow: hidden; }

.about-media { margin-top: -20px; }

.photo-frame {
  background: white;
  border: 2px solid var(--navy-light);
  border-radius: 10px;
  padding: 28px;
}
.photo-frame img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 22px; }
.about-copy p { color: var(--text-gray); margin-bottom: 16px; }

.about-list { margin: 24px 0 30px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--navy);
}
.check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
}

.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 50px 24px;
}
.stat { color: var(--white); border-right: 1px solid rgba(255,255,255,0.12); padding: 0 10px; }
.stat:last-child { border-right: none; }
.stat-num, .stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--gold-light);
}
.stat p { margin-top: 6px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.credentials-box {
  border: 1px solid var(--ink);
  padding: 30px 28px;
  position: relative;
}
.credentials-box h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 18px;
}
.credentials-box ul li {
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  font-size: 0.92rem;
  font-weight: 500;
}

.dropcap {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  line-height: 0.8;
  font-weight: 700;
  color: var(--gold);
  padding: 6px 8px 0 0;
}



/* ---------- Section headings (shared) ---------- */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.section-head p { color: var(--text-gray); }
.section-head h2.light { color: var(--white); }
.light-p { color: rgba(255,255,255,0.65) !important; }

/* ---------- Practice Areas ---------- */
.practice { padding: 110px 0; background: var(--white); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.practice-card {
  background: var(--cream);
  border: 1px solid rgba(198,161,91,0.15);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.icon-wrap {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.icon-wrap svg {
  width: 28px; height: 28px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.practice-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.practice-card p { color: var(--text-gray); font-size: 0.94rem; margin-bottom: 18px; }
.card-link { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.card-link:hover { text-decoration: underline; }

/* ---------- Achievements ---------- */
.achievements {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 80px;
}
.award-card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,161,91,0.25);
  border-radius: var(--radius);
  padding: 34px 20px;
  transition: transform var(--transition), background var(--transition);
}
.award-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.award-icon {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.award-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.award-card span { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.5px; }

.timeline {
  max-width: 780px;
  margin: 0 auto;
  border-left: 2px solid rgba(198,161,91,0.35);
  padding-left: 36px;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .dot {
  position: absolute;
  left: -43px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(198,161,91,0.2);
}
.timeline-item .year {
  display: block;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.timeline-item p { color: rgba(255,255,255,0.75); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 110px 0; background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.testimonial-card p { color: var(--text-dark); font-style: italic; margin-bottom: 24px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.avatar-initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 0.95rem; }
.testimonial-person span { color: var(--text-gray); font-size: 0.82rem; }

/* ---------- Contact ---------- */
.contact { padding: 110px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 8px 0 16px; }
.contact-info p { color: var(--text-gray); margin-bottom: 30px; }

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 500;
}
.info-row svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.social-row { display: flex; gap: 14px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.social-row a svg { width: 18px; height: 18px; fill: var(--gold-light); }
.social-row a:hover { background: var(--gold); transform: translateY(-3px); }
.social-row a:hover svg { fill: var(--navy); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.recaptcha-group { display: flex; justify-content: center; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d9d2c2;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-gray);
  font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { color: var(--white); margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-grid h5 {
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 24px;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}
.footer-legal-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-legal-link:hover { color: var(--gold-light); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg {
  width: 20px; height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
}
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Practice area modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 16, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 44px 40px 36px;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--white); }
.modal-box h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  padding-right: 30px;
}
.modal-box p { color: var(--text-gray); margin-bottom: 18px; }
.modal-subhead {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px !important;
}
.modal-list { margin-bottom: 28px; }
.modal-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 0.96rem;
}
.modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.modal-cta { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .modal-box { padding: 36px 24px 28px; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 1300;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================
   Responsive
============================================ */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 320px; margin: 0 auto 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 340px; margin: 0 auto; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 260px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
  .hero-badges { gap: 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .stat { border-right: none; }
  .practice-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding-top: 120px; }
  .hero-badges { flex-direction: column; gap: 16px; }
  .awards-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}

/* ============================================
   Legal pages (Privacy Policy, etc.)
============================================ */
.policy-hero {
  position: relative;
  padding: 160px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-lighter) 100%);
  text-align: center;
  overflow: hidden;
}
.policy-hero .container { position: relative; z-index: 1; max-width: 760px; }
.policy-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.policy-updated {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.policy-shell { background: var(--cream); padding: 70px 0 100px; }
.policy-content { max-width: 760px; margin: 0 auto; }

.policy-toc {
  background: var(--white);
  border: 2px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 60px;
}
.policy-toc h2 {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.policy-toc ol { counter-reset: toc; display: grid; gap: 10px; }
.policy-toc li { counter-increment: toc; }
.policy-toc a {
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.policy-toc a::before {
  content: counter(toc) '. ';
  color: var(--gold);
  font-weight: 700;
}
.policy-toc a:hover { color: var(--navy-light); }

.policy-section { margin-bottom: 46px; scroll-margin-top: 96px; }
.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  margin-bottom: 16px;
}
.policy-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-section p { color: var(--text-gray); margin-bottom: 14px; }
.policy-section p:last-child { margin-bottom: 0; }

.policy-list { margin: 16px 0 0; display: grid; gap: 10px; }
.policy-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-gray);
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.policy-callout {
  background: var(--white);
  border: 2px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-top: 16px;
}
.policy-callout .info-row:last-child { margin-bottom: 0; }

.policy-back { margin-top: 60px; text-align: center; }

@media (max-width: 600px) {
  .policy-hero { padding: 130px 0 50px; }
  .policy-toc, .policy-callout { padding: 24px 22px; }
}
