/* ============================================================
   The Power of Won LLC — site stylesheet
   Self-contained. No external fonts, no frameworks, no scripts.
   Palette:
     cream  #F5F1E8  background
     navy   #131936  primary text / marks
     gold   #C2A46D  accents, rules, emblem ring
     red    #7A0C12  labels & small accents only
     black  #000000  body text only
   ============================================================ */

:root {
  --cream: #F5F1E8;
  --navy:  #131936;
  --gold:  #C2A46D;
  --red:   #7A0C12;
  --black: #000000;
  --serif: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.25;
}

h1 { font-size: 2.5rem;  letter-spacing: 0.01em; }
h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.2rem;  margin-bottom: 0.4rem; }

p + p { margin-top: 1em; }

a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--red); text-decoration-color: var(--red); }

/* small-caps eyebrow label — the red accent, used sparingly */
.label {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

/* gold rule (thin) */
.rule {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 2.5rem 0;
}

.rule--short {
  width: 72px;
  margin: 1.5rem auto;
}

/* ---------- layout ---------- */

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main.wrap { padding-top: 3.5rem; padding-bottom: 4.5rem; }

section + section { margin-top: 4rem; }

.lede {
  font-size: 1.2rem;
  color: var(--navy);
  max-width: 42em;
}

/* ---------- header / nav ---------- */

.site-header {
  border-bottom: 1px solid var(--gold);
  padding: 1.1rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; display: block; }

.brand span {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

nav.site-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

nav.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav.site-nav a:hover { border-bottom-color: var(--gold); color: var(--navy); }
nav.site-nav a[aria-current="page"] { border-bottom-color: var(--gold); }

/* ---------- home ---------- */

.home-main {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.home-emblem { width: 128px; height: 128px; margin-bottom: 2rem; }

.home-main h1 { font-size: 2.9rem; }

.home-line {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  color: var(--navy);
  max-width: 34em;
}

.doors {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.door {
  display: block;
  width: 310px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--gold);
  background: transparent;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.door:hover { background: rgba(194, 164, 109, 0.12); color: inherit; }

.door .label { margin-bottom: 0.5rem; }

.door strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
}

.door em {
  display: block;
  font-style: normal;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--black);
}

/* ---------- cards / services ---------- */

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }

.card {
  border: 1px solid var(--gold);
  padding: 1.6rem 1.5rem;
  background: transparent;
}

.card--featured {
  grid-column: 1 / -1;
  border-width: 2px;
  background: rgba(194, 164, 109, 0.10);
  padding: 2rem 1.75rem;
}

.card--featured h3 { font-size: 1.45rem; }

.card p { font-size: 0.98rem; margin-top: 0.3rem; }

/* ---------- credibility strip ---------- */

.cred {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 2rem 0;
  margin-top: 3.5rem;
}

.cred ul { list-style: none; }

.cred li {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}

.cred li + li { margin-top: 1.1rem; }

.cred li::before {
  content: "\2022";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1.3em;
  line-height: 1.2;
}

/* ---------- contact ---------- */

.contact-block {
  border: 1px solid var(--gold);
  padding: 2rem 1.75rem;
  margin-top: 1.5rem;
}

.contact-block + .contact-block { margin-top: 1.25rem; }

.email-link {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
}

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

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.9rem;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta:hover { background: var(--navy); color: var(--cream); }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--gold);
  padding: 2.25rem 0 2.75rem;
  margin-top: 2rem;
}

.site-footer .wrap { font-size: 0.9rem; color: var(--navy); }

.site-footer nav { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1rem; }

.site-footer nav a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }

.footer-note { margin-top: 0.5rem; }

/* disclosure block (real-estate page) */
.disclosure {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--navy);
  border-top: 1px solid var(--gold);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

/* ---------- small screens ---------- */

@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  .home-main h1 { font-size: 2.2rem; }
  .cards { grid-template-columns: 1fr; }
  .door { width: 100%; max-width: 340px; }
}
