/* ============================================================
   HARLIE HAMMOND — Personal Site
   Colors: Jet #333333 | Steel Grey #607D8B | White #FFFFFF
           French Grey #B0BEC5 | Lavender Blush #FFEBEE
   Fonts: Sora (display) | DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Variables ---- */
:root {
  --obsidian:   #333333;
  --edge-gold:  #607D8B;
  --warm-white: #FFFFFF;
  --charcoal:   #333333;
  --muted-gold: #B0BEC5;
  --off-white:  #FFEBEE;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.2s ease;
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
p { font-weight: 400; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--edge-gold);
  display: block;
  margin-bottom: 16px;
}

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--off { background: var(--off-white); }
.section--dark { background: var(--obsidian); color: var(--warm-white); }
.section--dark .eyebrow { color: var(--muted-gold); }
.section--dark h2 { color: var(--warm-white); }

.gold-line { width: 36px; height: 2px; background: var(--edge-gold); margin-bottom: 20px; }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(51,51,51,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(96,125,139,0.2);
  z-index: 100;
}
.nav__inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.nav__links a:hover { color: #FFFFFF; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__hamburger span { width: 22px; height: 1.5px; background: #FFFFFF; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn--gold { background: var(--edge-gold); border-color: var(--edge-gold); color: #FFFFFF; }
.btn--gold:hover { background: #546E7A; border-color: #546E7A; }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.3); color: #FFFFFF; }
.btn--outline:hover { border-color: rgba(255,255,255,0.7); }
.btn--outline-dark { background: transparent; border-color: rgba(51,51,51,0.25); color: var(--charcoal); }
.btn--outline-dark:hover { border-color: var(--charcoal); }
.nav__links .btn--gold { color: #FFFFFF; font-weight: 600; padding: 9px 20px; font-size: 0.8rem; }

/* ---- Hero ---- */
.hero {
  background: var(--obsidian);
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(96,125,139,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__content { padding: 72px 0 88px; max-width: 780px; }
.hero h1 { color: #FFFFFF; }
.hero__sub {
  margin-top: 28px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 620px; line-height: 1.8;
}
.hero__actions { display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; }

/* ---- Why section ---- */
.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 12px;
}
.why__left h2 { color: var(--obsidian); }
.why__right p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}
.why__right p:last-child { margin-bottom: 0; }
.why__closer {
  font-family: var(--font-display);
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--obsidian) !important;
  border-top: 2px solid var(--edge-gold);
  padding-top: 24px;
  margin-top: 28px !important;
  margin-bottom: 0 !important;
}

/* ---- Where teams feel it ---- */
.feel__layout { margin-top: 40px; max-width: 680px; }
.feel__list { display: flex; flex-direction: column; border-top: 1px solid rgba(51,51,51,0.12); }
.feel__list li {
  padding: 20px 0 20px 24px;
  border-bottom: 1px solid rgba(51,51,51,0.12);
  font-size: 1.05rem; font-weight: 400; color: var(--obsidian);
  line-height: 1.55; position: relative;
}
.feel__list li::before {
  content: ''; position: absolute; left: 0; top: 29px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--edge-gold);
}

/* ---- How I work ---- */
.how__intro { margin-top: 12px; margin-bottom: 48px; }
.how__intro h2 { color: var(--obsidian); }
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(51,51,51,0.1);
  border: 1px solid rgba(51,51,51,0.1);
}
.how__item {
  background: var(--warm-white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.how__num {
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--edge-gold);
}
.how__item p {
  font-size: 1rem; font-weight: 400;
  color: var(--obsidian); line-height: 1.65;
}

/* ---- Personal section ---- */
.personal__text {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  max-width: 620px;
}

/* ---- CTA section ---- */
.cta-section {
  background: var(--obsidian);
  padding: 96px 0;
  border-top: 1px solid rgba(96,125,139,0.12);
}
.cta-section h2 { color: #FFFFFF; max-width: 560px; }
.cta-section .cta__sub {
  margin-top: 14px;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 480px;
}
.cta__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.cta__cec {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(96,125,139,0.18);
}
.cta__cec p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.cta__cec a {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.cta__cec a:hover { color: #FFFFFF; }

/* ---- Footer ---- */
.footer {
  background: #2A2A2A;
  padding: 32px 0;
  border-top: 1px solid rgba(96,125,139,0.12);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.75); }
.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ---- Logo Strip ---- */
.logo-strip {
  background: var(--warm-white);
  padding: 40px 0;
  border-top: 1px solid rgba(51,51,51,0.08);
  border-bottom: 1px solid rgba(51,51,51,0.08);
}
.logo-strip__label {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-gold);
  display: block; text-align: center; margin-bottom: 24px;
}
.logo-strip__grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px 32px;
}
.logo-strip__item {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(51,51,51,0.35);
  transition: color var(--transition);
}
.logo-strip__item:hover { color: rgba(51,51,51,0.65); }
.logo-strip__note {
  text-align: center; margin-top: 18px;
  font-size: 0.72rem; color: rgba(51,51,51,0.35);
  font-style: italic;
}

/* ---- Help list ---- */
.help-list {
  margin-top: 40px; max-width: 680px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(51,51,51,0.1);
}
.help-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(51,51,51,0.1);
  font-size: 1.05rem; font-weight: 400; color: var(--charcoal);
  line-height: 1.5;
}
.help-list li::before {
  content: '→'; color: var(--edge-gold);
  font-family: var(--font-display); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* ---- Who this is for ---- */
.who-list {
  margin-top: 40px; max-width: 680px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(51,51,51,0.1);
}
.who-list li {
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid rgba(51,51,51,0.1);
  font-size: 1.05rem; font-weight: 400; color: var(--charcoal);
  line-height: 1.5; position: relative;
}
.who-list li::before {
  content: ''; position: absolute; left: 0; top: 27px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--edge-gold);
}

/* ---- Credibility block ---- */
.cred-block {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(51,51,51,0.1);
  border: 1px solid rgba(51,51,51,0.1);
  margin-top: 48px;
}
.cred-block__item {
  background: var(--warm-white); padding: 32px 28px;
}
.cred-block__num {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
  color: var(--edge-gold); line-height: 1;
  display: block; margin-bottom: 10px;
}
.cred-block__label {
  font-size: 0.9rem; font-weight: 400;
  color: var(--charcoal); line-height: 1.5;
}

/* ---- Inflection line ---- */
.inflection {
  background: var(--off-white);
  padding: 28px 0;
  border-top: 1px solid rgba(51,51,51,0.06);
  border-bottom: 1px solid rgba(51,51,51,0.06);
  text-align: center;
}
.inflection p {
  font-size: 1rem; font-weight: 500;
  color: var(--charcoal); max-width: 640px;
  margin: 0 auto; line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--obsidian);
    border-top: 1px solid rgba(96,125,139,0.2);
    padding: 24px 24px 32px;
    gap: 0; z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem; width: 100%;
  }
  .nav__links a:last-child { border-bottom: none; margin-top: 16px; }
  .nav__links .btn--gold { text-align: center; justify-content: center; }
  .nav__hamburger { display: flex; }
  .hero__content { padding: 48px 0 64px; }
  .hero__actions { flex-direction: column; }
  .why__layout { grid-template-columns: 1fr; gap: 32px; }
  .how__grid { grid-template-columns: 1fr; }
  .cred-block { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta__actions { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
}
