/* Long Game Advisory — brand stylesheet
   Minimal, editorial: black ink on linen/off-white, a lot of air,
   restrained rules and a single dash motif echoing the wordmark. */

:root {
  --paper: #f4efe3;
  --paper-deep: #e8dfc9;
  --ink: #2f3a22;
  --ink-soft: rgba(47, 58, 34, 0.66);
  --ink-faint: rgba(47, 58, 34, 0.42);
  --line: rgba(47, 58, 34, 0.14);
  --line-strong: rgba(47, 58, 34, 0.28);
  --brass: #8f7130;
  --brass-light: #c9a752;
  --max: 1080px;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    repeating-linear-gradient(90deg, rgba(47,58,34,0.03) 0px, rgba(47,58,34,0.03) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(0deg, rgba(47,58,34,0.025) 0px, rgba(47,58,34,0.025) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(45deg, rgba(47,58,34,0.015) 0px, transparent 1px, transparent 2px),
    repeating-linear-gradient(-45deg, rgba(47,58,34,0.012) 0px, transparent 1px, transparent 2px);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.dash {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin-bottom: 20px;
}

.dash.center { margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--brass);
  font-weight: 600;
}

/* ---------- Header ---------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(244, 239, 227,0.14);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: var(--paper);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}

nav a {
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: rgba(244, 239, 227,0.68);
  transition: color 0.2s ease;
}

nav a:hover { color: var(--brass-light); }

.nav-cta {
  border: 1px solid rgba(244, 239, 227,0.5);
  padding: 8px 18px;
  border-radius: 2px;
  color: var(--paper) !important;
}

.nav-cta:hover { background: var(--paper); color: var(--ink) !important; border-color: var(--paper); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  padding: 140px 0 84px;
  background: var(--ink);
}

.hero .dash { background: var(--paper); }

.hero .eyebrow { color: var(--brass-light); }

.hero h1 {
  font-weight: 600;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 1.04;
  max-width: 900px;
  margin: 26px 0 30px;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brass-light);
  text-decoration: underline;
  text-decoration-color: var(--brass-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.hero .lede {
  font-size: 1.08rem;
  color: rgba(244, 239, 227, 0.72);
  max-width: 540px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 2px;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brass-light);
  color: var(--ink);
  font-weight: 700;
}

.btn-primary:hover { background: var(--brass); }

.btn-ghost {
  border: 1px solid rgba(244, 239, 227, 0.35);
  color: var(--paper);
  margin-left: 14px;
}

.btn-ghost:hover { border-color: var(--paper); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 239, 227, 0.18);
  width: 100%;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
  border-right: 1px solid rgba(244, 239, 227, 0.18);
}

.hero-stats .stat:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stats strong {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--paper);
}

.hero-stats .stat.accent strong {
  color: var(--brass-light);
}

.hero-stats span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55);
}

/* ---------- Sections ---------- */

section { padding: 68px 0; }

.section-head {
  max-width: 660px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.3;
  margin-top: 18px;
}

.rule {
  border: none;
  border-top: 1px solid var(--line);
}

/* ---------- Trust strip ---------- */

.trust-strip {
  padding: 28px 0 44px;
  background: var(--paper-deep);
}

.trust-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}

.trust-logos {
  overflow: hidden;
}

.trust-logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: trust-scroll 32s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.trust-logos:hover .trust-logos-track {
  animation-play-state: paused;
}

@keyframes trust-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.trust-logos-track img {
  flex: none;
  height: 48px;
  width: auto;
  max-width: 170px;
  opacity: 0.88;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ---------- The Gap ---------- */

.gap p {
  font-size: 1.15rem;
  max-width: 720px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- Long Game statement ---------- */

.statement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 84px 0;
}

.statement .dash {
  background: var(--paper);
  width: 44px;
  height: 2px;
  margin-bottom: 36px;
}

.statement p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 44px;
  align-items: start;
}

.story-photo {
  aspect-ratio: 4 / 5;
  max-width: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-left: auto;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-grid.single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.story p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--line-strong);
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.photo-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- How I Work ---------- */

.work {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.approach-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list .idx {
  font-size: 0.85rem;
  color: var(--ink-faint);
  padding-top: 2px;
}

.approach-list h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.approach-list p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 640px;
}

.work-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-style: italic;
}

/* ---------- Services ---------- */

.services-list {
  border-top: 1px solid var(--line);
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s ease;
}

.service-item summary::-webkit-details-marker { display: none; }

.service-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brass);
  transition: transform 0.2s ease;
  line-height: 1;
}

.service-item[open] summary::after {
  transform: rotate(45deg);
}

.service-item summary:hover {
  color: var(--ink-soft);
}

.service-body {
  padding: 0 4px 26px;
  max-width: 640px;
}

.service-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Selected Experience ---------- */

.experience { background: var(--paper-deep); }

.case-note {
  border-left: 2px solid var(--brass);
  padding-left: 24px;
  margin-bottom: 28px;
  max-width: 640px;
}

.case-note .eyebrow { display: block; margin-bottom: 10px; }

.case-note p {
  font-size: 1.02rem;
  color: var(--ink);
}

.logo-wall {
  overflow: hidden;
  padding: 12px 0 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.logo-wall-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: trust-scroll 36s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.logo-wall:hover .logo-wall-track {
  animation-play-state: paused;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  flex: none;
}

.logo-tile img {
  max-height: 100%;
  max-width: 200px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.logo-tile:hover img { opacity: 1; }

.logo-tile.placeholder {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: none;
  text-align: left;
}

.experience-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */

.contact {
  background: var(--ink);
  color: var(--paper);
}

.contact .dash { background: var(--paper); }

.contact h2 {
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 640px;
}

.contact-lede {
  color: rgba(244, 239, 227, 0.7);
  max-width: 460px;
  margin-bottom: 40px;
}

.contact-email {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 239, 227, 0.3);
  padding-bottom: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email:hover {
  color: var(--brass-light);
  border-color: var(--brass-light);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  font-size: 0.92rem;
  color: rgba(244, 239, 227, 0.6);
}

.contact-meta a {
  color: rgba(244, 239, 227, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-meta a:hover { color: var(--brass-light); }

/* ---------- Brand mark ---------- */

/* ---------- Footer ---------- */

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-mark {
  width: 48px;
  height: auto;
  opacity: 0.85;
}

footer a { text-decoration: none; }
footer a:hover { color: var(--brass); }

/* ---------- Responsive ---------- */

.nav-check { display: none; }
.nav-cta-mobile { display: none; }

@media (max-width: 860px) {
  header .wrap { position: relative; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(244,241,234,0.12);
  }
  .nav-check:checked ~ nav { display: block; }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  nav ul li {
    border-bottom: 1px solid rgba(244,241,234,0.1);
  }
  nav ul li:last-child { border-bottom: none; }
  nav a { display: block; padding: 14px 0; }
  .nav-cta-mobile { display: block; }
  .nav-cta-mobile a { color: var(--brass-light); font-weight: 600; }
  .hero { padding: 110px 0 64px; }
  .story-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .logo-wall { gap: 32px; }
  section { padding: 48px 0; }
  .btn-ghost { margin-left: 0; margin-top: 12px; display: inline-block; }
  .hero-stats { gap: 28px; }
  .hero-stats .stat { padding-right: 28px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .logo-wall { gap: 32px; }
  .hero h1 br { display: none; }
}
