/* Lantern Point — shared stylesheet */

:root {
  --navy: #0f2e3d;
  --navy-deep: #0a1f2b;
  --teal: #1f6f78;
  --teal-light: #e8f2f1;
  --gold: #e3a13a;
  --gold-deep: #c9832090;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text: #1c2b30;
  --muted: #52666b;
  --border: #dfe3e0;
  --radius: 10px;
  --maxw: 1120px;
  --shadow: 0 4px 18px rgba(15, 46, 61, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--text); }
a { color: var(--teal); }

.muted { color: var(--muted); }

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.brand svg { flex-shrink: 0; }

.brand .brand-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: #d9e6e6;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 780px) {
  nav.main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    display: none;
    box-shadow: var(--shadow);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
  }
  nav.main-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  nav.main-nav a { display: block; padding: 12px 0; }
  .nav-cta { display: inline-block; margin-top: 10px; }
  .menu-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 65%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,161,58,0.16) 0%, rgba(227,161,58,0) 70%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); max-width: 780px; }

.hero p.lead {
  color: #c6d7d6;
  font-size: 1.15rem;
  max-width: 620px;
  margin-top: 18px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover { background: #ecb257; transform: translateY(-1px); }

.btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

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

/* ---------- Sections ---------- */

section { padding: 76px 0; }
section.tight { padding: 56px 0; }
section.alt { background: var(--white); }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ---------- Cards / grids ---------- */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}

.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Stat / why strip ---------- */

.strip {
  background: var(--teal);
  color: var(--white);
}
.strip h2, .strip p { color: var(--white); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-row .num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
}
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------- Lists ---------- */

ul.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
}
ul.check-list li::after {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
}

/* ---------- Table ---------- */

table.pricing {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.pricing th, table.pricing td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.pricing th {
  background: var(--navy);
  color: var(--white);
  font-family: "Fraunces", serif;
  font-weight: 600;
}
table.pricing tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 40px;
  margin: 0 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #c6d7d6; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Service areas ---------- */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.area-tags span {
  background: var(--teal-light);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy-deep);
  color: #a9bcbc;
  padding: 52px 0 28px;
  margin-top: 60px;
}
footer.site-footer .grid-4 { margin-bottom: 36px; }
footer.site-footer h4 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
footer.site-footer a {
  color: #a9bcbc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
footer.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 65%);
  color: var(--white);
  padding: 64px 0 72px;
}
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero p.lead { color: #c6d7d6; max-width: 640px; font-size: 1.08rem; margin-top: 14px; }

/* ---------- Compliance page specifics ---------- */

.law-card {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.law-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.law-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ---------- Form ---------- */

form.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
form.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
form.contact-form .field { margin-bottom: 20px; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: var(--cream);
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
form.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

.contact-info-card {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card a { color: var(--white); font-weight: 600; }
.contact-info-card .row { margin-bottom: 18px; }
.contact-info-card .row .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d7ece9;
  margin-bottom: 4px;
}

/* ---------- Utility ---------- */

.mt-0 { margin-top: 0; }
.center { text-align: center; }
