/* Samuel S. Martin Executive Website */
:root {
  --navy: #0d2338;
  --navy2: #143a5c;
  --gold: #d4a93a;
  --white: #ffffff;
  --light: #f6f7f9;
  --text: #1f2933;
  --muted: #5f6b76;
  --line: #dfe5ea;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.topbar {
  background: rgba(13,35,56,.96);
  color: var(--white);
  padding: 15px 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 3px 16px rgba(0,0,0,.18);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 21px;
}
.brand span { color: var(--gold); }
.navlinks {
  display: flex;
  gap: 21px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .7px;
}
.navlinks a:hover { color: var(--gold); }
.menu-btn {
  display: none;
  background: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 22px;
}
.hero {
  background:
    linear-gradient(90deg, rgba(13,35,56,.94), rgba(13,35,56,.78)),
    radial-gradient(circle at top right, rgba(212,169,58,.2), transparent 38%),
    var(--navy);
  color: var(--white);
  min-height: 585px;
  display: flex;
  align-items: center;
  padding: 68px 24px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 54px;
  align-items: center;
  width: 100%;
}
.photo-wrap { position: relative; }
.photo-wrap:before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--gold);
  border-radius: 26px;
  opacity: .75;
}
.photo {
  position: relative;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  border: 4px solid rgba(255,255,255,.15);
  display: block;
}
.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero h2 {
  color: var(--gold);
  font-size: clamp(20px, 2.7vw, 32px);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 18px;
}
.hero-copy {
  font-size: 20px;
  max-width: 760px;
  color: #e7edf3;
  margin-bottom: 30px;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.centered { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 2px solid transparent;
  transition: .2s ease;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary { border-color: var(--gold); color: var(--white); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn:hover { transform: translateY(-2px); }
.container { max-width: 1180px; margin: 0 auto; }
.section { padding: 68px 24px; }
.section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: 34px;
  margin-bottom: 14px;
}
.section h2:after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 860px;
  margin-bottom: 26px;
}
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 22px 12px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(13,35,56,.06);
}
.card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 14px;
}
.check-list { list-style: none; }
.check-list li { margin-bottom: 9px; }
.check-list li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 8px;
}
.dark {
  background: var(--navy);
  color: var(--white);
}
.dark h2 { color: var(--white); }
.light { color: #dce5ee; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.expertise-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 24px;
}
.icon {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 16px;
}
.expertise-item h3 { color: var(--gold); margin-bottom: 10px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.role {
  background: var(--light);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 190px;
}
.role h3 { color: var(--navy); margin-bottom: 8px; }
.role small {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
}
.downloads { background: var(--light); }
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.download-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  min-height: 145px;
  transition: .2s ease;
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13,35,56,.12);
  border-color: var(--gold);
}
.download-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}
.download-card span { color: var(--muted); }
.real-estate { background: var(--white); }
.callout {
  background: var(--light);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(13,35,56,.08);
}
.house-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--gold);
}
.quote {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}
.quote blockquote {
  max-width: 920px;
  margin: 0 auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1.45;
  color: #f1f5f8;
}
.contact {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--white);
}
.contact h2 { color: var(--white); }
.contact h2:after { margin-left: auto; margin-right: auto; }
.contact p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #e6edf3;
  font-size: 18px;
}
footer {
  background: #081827;
  color: #c9d3dc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
@media (max-width: 1100px) {
  .timeline, .download-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .photo-wrap { max-width: 320px; margin: 0 auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border: none; border-bottom: 1px solid var(--line); }
  .expertise-grid { grid-template-columns: 1fr; }
  .timeline, .download-grid { grid-template-columns: 1fr; }
  .navlinks {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 57px;
    background: var(--navy);
    padding: 16px 24px 24px;
    flex-direction: column;
  }
  .menu-open .navlinks { display: flex; }
  .menu-btn { display: block; }
  .callout { grid-template-columns: 1fr; text-align: center; }
  .house-icon { margin: 0 auto; }
}
