:root {
  color-scheme: light;
  --ink: #162b27;
  --muted: #526a65;
  --green: #0c4f43;
  --green-deep: #07372f;
  --cream: #f7f3e8;
  --gold: #d9b45c;
  --line: #dbe3df;
  --white: #fff;
}

* { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(217, 180, 92, .18), 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(--green); text-underline-offset: .2em; }

a:focus-visible, .button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header, footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header { padding: 28px 0; }

.brand {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.03em;
  text-decoration: none;
}

nav { display: flex; gap: 24px; }
nav a { color: var(--ink); font-weight: 650; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--green); text-decoration: underline; }

main { flex: 1; }

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 190px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; color: var(--green-deep); }

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; margin-top: 36px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(7, 55, 47, .18);
}

.button:hover { background: var(--green-deep); transform: translateY(-1px); }
.text-link { font-weight: 700; }

.identity-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 28px 70px rgba(7, 55, 47, .2);
}

.identity-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(243, 212, 139, .42);
  border-radius: 50%;
}

.monogram {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(243, 212, 139, .72);
  border-radius: 22px;
  color: #f3d48b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.card-label { margin: 72px 0 6px; color: #f3d48b; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.company-name { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; line-height: 1.35; }
.card-note { margin: 16px 0 0; color: rgba(255, 255, 255, .72); }

.legal-shell { width: min(900px, calc(100% - 32px)); margin: 44px auto 96px; }
.legal-card { padding: clamp(28px, 7vw, 72px); border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 255, 255, .88); box-shadow: 0 24px 70px rgba(37, 64, 58, .08); }
.legal-card h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
.legal-card h2 { margin: 42px 0 10px; font-size: 1.5rem; line-height: 1.25; }
.legal-card p { color: #334b46; }
.updated { margin: 12px 0 36px; color: var(--muted) !important; }
.legal-contact { display: flex; flex-direction: column; gap: 4px; margin-top: 46px; padding: 24px; border-left: 4px solid var(--gold); background: var(--cream); }

footer { padding: 28px 0 36px; border-top: 1px solid rgba(82, 106, 101, .22); color: var(--muted); font-size: .9rem; }
footer p { margin: 0; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  nav { gap: 16px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 52px 0 72px; }
  .identity-card { min-height: 320px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .site-header { width: min(100% - 28px, 1120px); }
  .brand { font-size: 1.55rem; }
  nav { gap: 12px; font-size: .92rem; }
  .hero { width: min(100% - 28px, 1120px); }
  .legal-shell { width: min(100% - 22px, 900px); margin-top: 22px; }
  .legal-card { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
