
:root {
  --ink: #111110;
  --mid: #6b6b68;
  --faint: #c8c8c4;
  --rule: #e8e8e4;
  --bg: #fafaf8;
  --accent: #e8511a;
  --sidebar-w: 280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
}

/* ── FOCUS ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── LAYOUT ── */
.layout {
  display: flex;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 40px 52px 24px;
  border-right: 1px solid var(--rule);
}

.s-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.s-role {
  font-size: 18px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.s-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
}

.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2.4s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.s-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s-nav a {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s;
}
.s-nav a:hover { color: var(--ink); }
.s-nav a.active { color: var(--ink); font-weight: 500; }

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-contact {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.6;
}

.s-contact a {
  color: var(--mid);
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.s-contact a:hover { color: var(--ink); }

.s-links {
  display: flex;
  gap: 12px;
}

.s-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--faint);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.s-link:hover { color: var(--ink); }

/* ── MAIN ── */
.main {
  flex: 1;
  min-width: 0;
  padding: 52px 60px 100px 60px;
  max-width: 820px;
}

/* ── SECTION ── */
.s {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}
.s:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.s-label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 0;
  margin-bottom: 28px;
}

/* ── HERO SECTION ── */
.hero-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-heading em {
  font-style: italic;
  color: var(--mid);
}

.hero-paras {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  max-width: none;
}

.hero-paras p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.72;
  font-weight: 400;
}

.hero-paras strong { color: var(--ink); font-weight: 500; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.hero-cta:hover { color: var(--accent); border-color: var(--accent); }

/* ── IS THIS FOR YOU ── */
.jbtd-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jbtd-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.jbtd-item:first-child { padding-top: 0; }
.jbtd-item:last-child { border-bottom: none; padding-bottom: 0; }

.jbtd-n {
  font-size: 17px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.08em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}

.jbtd-text {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
}
.jbtd-text strong { color: var(--ink); font-weight: 500; }

/* ── SERVICES ── */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.svc-item:first-child { padding-top: 0; }
.svc-item:last-child { border-bottom: none; padding-bottom: 0; }

.svc-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding-top: 2px;
}

.svc-desc {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
}



/* ── ENGAGEMENTS ── */
.eng-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eng-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.eng-item:first-child { padding-top: 0; }
.eng-item:last-child { border-bottom: none; padding-bottom: 0; }

.eng-label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.eng-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.eng-freq {
  font-size: 18px;
  color: var(--faint);
  margin-top: 3px;
}

.eng-outcome {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.eng-desc {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
}

.contact-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}

.contact-sub {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-note {
  font-size: 18px;
  color: var(--faint);
  line-height: 1.6;
  padding-left: 12px;
  border-left: 1px solid var(--accent);
  margin-top: 16px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}

.c-link {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: color 0.15s;
}
.c-link:first-child { border-top: 1px solid var(--rule); }

.c-link-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.c-link-val {
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
}
.c-link:hover .c-link-val { color: var(--accent); }

.c-link-arrow {
  font-size: 16px;
  color: var(--faint);
}


/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }

/* ── FOOTER ── */
.footer-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 52px;
}

.footer-inline span {
  font-size: 14px;
  color: var(--faint);
}

/* ── MOBILE NAV ── */

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}


.mobile-header {
  display: none;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 90;
  padding: 40px 28px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul a {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.mobile-menu ul a:hover { color: var(--accent); }

.mobile-menu-bottom {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.mobile-menu-bottom a {
  color: var(--mid);
  text-decoration: none;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .sidebar { display: none; }

  .mobile-header {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
  }

  .mobile-header-name {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .mobile-avail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
  }

  .main {
    margin-left: 0;
    padding: 80px 24px 60px;
    max-width: 100%;
  }

  .svc-item { grid-template-columns: 1fr; gap: 8px; }
  .eng-item { grid-template-columns: 1fr; gap: 10px; }
  .hero-heading { font-size: clamp(32px, 8vw, 48px); }
  .jbtd-item { gap: 16px; }
  .footer-inline { flex-direction: column; gap: 4px; padding: 32px 0 48px; }
}

@media (max-width: 400px) {
  .main { padding: 72px 20px 48px; }
  .hero-heading { font-size: 30px; }
}

.s-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 16px;
  display: block;
}


/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden;
  position: relative;
  margin: 0 -60px;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.marquee-row {
  display: flex;
  gap: 0;
  width: max-content;
}

.marquee-row.forward {
  animation: marquee-fwd 80s linear infinite;
}

.marquee-row.reverse {
  animation: marquee-rev 80s linear infinite;
}

@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-row:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.marquee-item:hover { opacity: 1; }

.marquee-item--bold { font-weight: 700; }

.marquee-item::after {
  content: '·';
  color: var(--faint);
  font-size: 20px;
  font-style: normal;
}

@media (max-width: 860px) {
  .marquee-section {
    margin: 0 -24px;
  }
  .marquee-item {
    font-size: 22px;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .avail-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-row.forward,
  .marquee-row.reverse { animation: none; }
  .burger span { transition: none; }
}
