/* Wedgewood Investors — site styles */
:root {
  --ink: #21262c;
  --slate: #4a545e;
  --line: #dfdcd5;
  --paper: #f7f5f1;
  --white: #ffffff;
  --accent: #b95f18;
  --accent-dark: #9a4d10;
  --dark: #262b31;
  --dark-2: #1d2126;
  --radius: 6px;
  --measure: 68ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

h1, h2, h3 {
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.5rem 0 0.75rem; }
h3 { font-size: 1.125rem; margin: 1.5rem 0 0.5rem; }
p { margin: 0 0 1rem; max-width: var(--measure); }
ul { max-width: var(--measure); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--white); color: var(--ink); padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  border-bottom: 3px solid var(--accent);
  background: var(--white);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 0; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
}
.brand-mark { flex: none; }
.brand-name {
  font-weight: 800; font-size: 1.15rem; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1.1;
}
.brand-tag {
  display: block; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--slate); text-transform: uppercase;
}
.header-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.site-nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  padding: 0.25rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--accent); color: var(--ink); }
.header-phone {
  text-decoration: none; font-weight: 700; color: var(--accent-dark);
  white-space: nowrap; font-size: 1rem;
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(29, 33, 38, 0.94), rgba(29, 33, 38, 0.94)),
    repeating-linear-gradient(45deg, #2c323a 0 2px, transparent 2px 26px);
  background-color: var(--dark-2);
  color: var(--white);
  padding: 4.5rem 0 4rem;
}
.hero .kicker {
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
  font-size: 0.85rem; color: #e9a566; margin: 0 0 0.5rem;
}
.hero h1 { color: var(--white); }
.hero p.lede { color: #cfd4da; font-size: 1.15rem; max-width: 56ch; }
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.75rem; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 0.85rem 1.6rem; border-radius: var(--radius); font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); }
.btn-outline { border-color: #6b7280; color: var(--white); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-outline-dark { border-color: var(--slate); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--ink); color: var(--ink); }

/* Sections */
.section { padding: 3.5rem 0; }
.section.alt { background: var(--paper); }
.section-intro { max-width: var(--measure); }

.card-grid {
  display: grid; gap: 1.25rem; margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--accent); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.1rem;
}
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; font-size: 0.97rem; color: var(--slate); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); max-width: none; }
.steps li { counter-increment: step; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.steps li::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--dark); color: var(--white); font-weight: 700; margin-bottom: 0.6rem;
}
.steps strong { display: block; margin-bottom: 0.25rem; }
.steps p { font-size: 0.95rem; color: var(--slate); margin: 0; }

/* Contact band */
.contact-band { background: var(--dark); color: var(--white); text-align: center; padding: 3.25rem 0; }
.contact-band h2 { color: var(--white); margin-top: 0; }
.contact-band p { margin-left: auto; margin-right: auto; color: #cfd4da; }
.contact-band .cta-row { justify-content: center; }

/* Contact page */
.contact-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1.4fr; margin-top: 2rem; }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; align-self: start; }
.contact-info h2 { margin-top: 0; font-size: 1.2rem; }
.contact-info p { margin-bottom: 0.6rem; }
.contact-info a { font-weight: 600; }

form .field { margin-bottom: 1.15rem; }
label { display: block; font-weight: 600; margin-bottom: 0.3rem; }
.required::after { content: " *"; color: var(--accent-dark); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 0.65rem 0.75rem; font: inherit;
  border: 1px solid #b8b4ab; border-radius: var(--radius); background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
textarea { min-height: 140px; resize: vertical; }
.hint { font-size: 0.85rem; color: var(--slate); margin-top: 0.25rem; }

.consent-box {
  border: 1px solid var(--line); background: var(--paper);
  border-radius: var(--radius); padding: 1rem 1.1rem; margin: 1.5rem 0;
}
.consent-box .checkbox-row { display: flex; gap: 0.7rem; align-items: flex-start; }
.consent-box input[type="checkbox"] { margin-top: 0.35rem; width: 1.05rem; height: 1.05rem; flex: none; }
.consent-box label { font-weight: 400; font-size: 0.92rem; line-height: 1.55; margin: 0; }
.consent-box .optional-tag { display: block; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); margin-bottom: 0.5rem; }

.form-status { border-radius: var(--radius); padding: 1rem 1.1rem; margin-bottom: 1.25rem; font-weight: 600; }
.form-status.success { background: #e8f2e8; border: 1px solid #9dc39d; color: #1e4620; }
.form-status.error { background: #f9ebe7; border: 1px solid #d9a396; color: #7a2e1d; }
[hidden] { display: none !important; }

/* Honeypot — visually removed, still in DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Legal pages */
.legal h2 { font-size: 1.35rem; }
.legal h3 { font-size: 1.05rem; }
.legal .updated { color: var(--slate); font-size: 0.9rem; }

/* Footer */
.site-footer { background: var(--dark-2); color: #b8bec6; padding: 3rem 0 2rem; margin-top: 0; font-size: 0.95rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer h2 { color: var(--white); font-size: 1rem; margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer a { color: #dfe3e8; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-bottom { border-top: 1px solid #3a4046; margin-top: 2.25rem; padding-top: 1.25rem; font-size: 0.85rem; color: #8b929a; }

@media (max-width: 640px) {
  .header-inner { justify-content: center; text-align: center; }
  .header-right { justify-content: center; width: 100%; }
  .site-nav { justify-content: center; }
  .hero { padding: 3rem 0 2.75rem; }
  .btn { width: 100%; text-align: center; }
  .cta-row { flex-direction: column; }
}
