/* Richardson Trading Co. one-page site */

:root {
  --paper: #f4eee3;
  --paper-soft: #faf6ee;
  --ink: #191612;
  --muted: #665d51;
  --line: rgba(25, 22, 18, 0.16);
  --accent: #7b5428;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 84, 40, 0.08), transparent 34rem),
    linear-gradient(180deg, var(--paper-soft), var(--paper) 55%, #f9f4eb);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

.page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: flex-end;
  padding: 42px 0 18px;
}

.site-header nav {
  display: flex;
  gap: 26px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header a,
.contact-cta a {
  color: var(--ink);
  text-decoration: none;
}

.site-header a:hover,
.contact-cta a:hover {
  color: var(--accent);
}

.hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 68px;
  padding: 52px 0 98px;
  text-align: center;
}

.main-logo {
  width: min(940px, 94vw);
  height: auto;
}

.tagline {
  width: min(760px, 100%);
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.86rem);
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.meet-henry {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 118px);
  align-items: center;
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.headshot-photo {
  aspect-ratio: 4 / 5;
  width: min(360px, 100%);
  display: block;
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid var(--line);
}

.headshot-placeholder {
  aspect-ratio: 4 / 5;
  width: min(360px, 100%);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(123,84,40,0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25, 22, 18, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.bio-copy h1 {
  margin: 0 0 24px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.bio-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.bio-copy p {
  margin: 0 0 22px;
}

.partner-brands {
  padding: 84px 0 92px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.partner-brands h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.partner-brand {
  width: min(820px, 100%);
  margin: 46px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(440px, 100%);
  margin: 24px auto 78px;
  padding: 0;
  text-decoration: none;
}

.partner-logo-link img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 340px;
  mix-blend-mode: multiply;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1.14rem, 1.45vw, 1.24rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

.services-list li {
  margin: 0;
}

.services-list li + li {
  margin-top: 16px;
}

.contact-cta {
  padding: 54px 0 70px;
  text-align: center;
}

.contact-cta p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.contact-cta a {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    justify-content: flex-start;
    padding-top: 28px;
  }

  .site-header nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 76px;
    gap: 42px;
  }

  .meet-henry {
    grid-template-columns: 1fr;
  }

  
.headshot-photo {
  aspect-ratio: 4 / 5;
  width: min(360px, 100%);
  display: block;
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid var(--line);
}

.headshot-placeholder {
    width: min(360px, 100%);
  }

  .partner-logo-link {
    margin-bottom: 58px;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding-bottom: 8px;
  }

  .main-logo {
    width: min(100%, 520px);
  }

  .tagline {
    font-size: 1.28rem;
  }

  .partner-brands h2 {
    font-size: 3rem;
  }

  .services-list {
    font-size: 1.05rem;
  }

  .contact-cta p {
    font-size: 1.15rem;
  }
}
