:root {
  --cream: #fff4d6;
  --cream-deep: #f7e5b5;
  --navy: #173d52;
  --navy-soft: #31586a;
  --gold: #d7a648;
  --orange: #f46b0a;
  --sage: #7a8e78;
  --white: #ffffff;
  --line: rgba(23, 61, 82, 0.16);
  --shadow: 0 18px 55px rgba(23, 61, 82, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 92% 0%, rgba(215, 166, 72, 0.2), transparent 30rem),
    radial-gradient(circle at 0% 70%, rgba(122, 142, 120, 0.14), transparent 28rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 244, 214, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(244, 107, 10, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: 68vh;
  margin: 0 auto;
  padding: 92px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 6.7rem);
  letter-spacing: -0.055em;
}

h1 span,
.accent {
  color: var(--gold);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--navy-soft);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 52px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(247, 229, 181, 0.6));
  box-shadow: var(--shadow);
}

.halo {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(215, 166, 72, 0.5);
  border-radius: 50%;
}

.lock-symbol {
  position: relative;
  width: 175px;
  height: 175px;
  border-radius: 46px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(23, 61, 82, 0.18);
}

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 61, 82, 0.18);
}

.button.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.quick-links {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  min-height: 185px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(23, 61, 82, 0.07);
}

.quick-card h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.quick-card p {
  margin: 0;
  color: var(--navy-soft);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 110px;
}

.legal-heading {
  margin-bottom: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-heading h1 {
  max-width: none;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.effective-date {
  margin: 18px 0 0;
  color: var(--sage);
  font-weight: 800;
}

.legal-section {
  margin-top: 42px;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
}

.legal-section h3 {
  margin: 26px 0 8px;
  font-size: 1.15rem;
}

.legal-section p,
.legal-section li {
  color: #294c5e;
}

.legal-section ul {
  padding-left: 1.3rem;
}

.notice {
  margin: 32px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 8px 22px 22px 8px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-card {
  margin-top: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.contact-card a {
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(247, 229, 181, 0.52);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-copy {
  margin: 0;
  color: var(--navy-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 58px;
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .hero-card {
    min-height: 330px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-top: 55px;
  }

  .footer-inner {
    padding: 32px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
