/* =========================================================
PRIVACY POLICY — page styles
========================================================= */


/* =========================================================
PAGE BACKGROUND
========================================================= */

body.legal-body{
  background: #ffffff;
}


/* =========================================================
HERO HEADER
========================================================= */

.legal-hero{
  position: relative;
  background: #1a1f3c;
  color: #fff;

  padding: 140px 24px 80px;
  text-align: center;

  overflow: hidden;
}

/* gold accent bar */
.legal-hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent, #c9a84c, #e8d28d, #c9a84c, transparent);
}

/* subtle decorative glow */
.legal-hero::after{
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);

  width: 480px;
  height: 480px;

  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.legal-eyebrow{
  display: inline-block;

  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: #c9a84c;

  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 999px;

  margin-bottom: 18px;
}

.legal-title{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;

  color: #fff;
  margin: 0 0 14px;
}

.legal-updated{
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}


/* =========================================================
CONTENT SECTION
========================================================= */

.legal-content{
  background: #ffffff;
  padding: 80px 24px 100px;
}

.legal-narrow{
  max-width: 760px;
  margin: 0 auto;
}


/* =========================================================
TYPOGRAPHY — prose
========================================================= */

.legal-narrow{
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: #3a3d4a;
  line-height: 1.75;
}

.legal-intro{
  font-size: 1.12rem;
  line-height: 1.65;
  color: #1a1f3c;
  font-weight: 400;

  padding: 22px 26px;
  background: #faf6ee;
  border-left: 4px solid #c9a84c;
  border-radius: 4px;

  margin: 0 0 48px;
}

.legal-narrow h2{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #1a1f3c;
  letter-spacing: -0.005em;
  line-height: 1.2;

  margin: 56px 0 18px;

  padding-bottom: 12px;
  border-bottom: 1px solid #e8e0d0;
}

.legal-narrow h2:first-of-type{
  margin-top: 0;
}

.legal-narrow h3{
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #1a1f3c;
  letter-spacing: 0.01em;

  margin: 32px 0 10px;
}

.legal-narrow p{
  margin: 0 0 16px;
}

.legal-narrow strong{
  color: #1a1f3c;
  font-weight: 600;
}

.legal-narrow a{
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}

.legal-narrow a:hover{
  color: #b89535;
}

.legal-narrow ul,
.legal-narrow ol{
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-narrow li{
  margin-bottom: 8px;
}

.legal-narrow li::marker{
  color: #c9a84c;
}


/* =========================================================
INFO BOX (highlighted notes)
========================================================= */

.legal-note{
  background: #faf6ee;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0;

  font-size: 0.95rem;
}

.legal-note strong{
  color: #c9a84c;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* =========================================================
CONTACT BLOCK (footer of legal page)
========================================================= */

.legal-contact{
  margin-top: 48px;
  padding: 28px 30px;

  background: #1a1f3c;
  color: #fff;
  border-radius: 14px;
}

.legal-contact h3{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #fff;
}

.legal-contact p{
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 6px;
}

.legal-contact a{
  color: #c9a84c;
}


/* =========================================================
BACK LINK
========================================================= */

.legal-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 40px;
  padding: 10px 18px;

  font-size: 0.88rem;
  color: #1a1f3c;
  text-decoration: none;

  background: transparent;
  border: 1.5px solid #1a1f3c;
  border-radius: 8px;

  transition: background .2s ease, color .2s ease;
}

.legal-back:hover{
  background: #1a1f3c;
  color: #fff;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 768px){

  .legal-hero{
    padding: 110px 20px 60px;
  }

  .legal-content{
    padding: 50px 20px 70px;
  }

  .legal-narrow h2{
    font-size: 1.55rem;
    margin-top: 44px;
  }

  .legal-intro{
    padding: 18px 20px;
    font-size: 1rem;
  }

  .legal-contact{
    padding: 22px;
  }

}