:root {
  --cream: #F3EAD6;
  --cream-card: #EFE6D1;
  --placeholder: #E4DCC7;
  --placeholder-border: #D7CDB4;
  --border: #DDD3BA;
  --ink: #2E2E26;
  --heading: #3A4128;
  --olive: #4B5334;
  --olive-dark: #3D4429;
  --olive-muted: #5C5A4C;
  --olive-badge-text: #C3C8AB;
  --olive-badge-border: #6B7350;
  --rust: #BF5A3B;
  --rust-dark: #A84A2D;
  --peach: #D8895F;
  --body-text: #54523F;
  --card-text: #57553F;
  --label-muted: #8A8570;
  --stat-label: #7A7660;
  --footer-text: #8A8570;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  background: var(--cream);
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
::selection { background: var(--rust); color: var(--cream); }
img { max-width: 100%; display: block; }
a { cursor: pointer; }

section, header, footer { scroll-margin-top: 84px; }

.wrap { max-width: 1160px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }

.eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rust);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 234, 214, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--olive);
  text-decoration: none;
}
.logo .amp { color: var(--rust); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-muted);
}
.nav-links a { color: inherit; text-decoration: none; transition: color .2s ease; }
.nav-links a:hover { color: var(--rust); }
.nav-links a.current { color: var(--rust); }
.btn-nav-cta {
  background: var(--olive);
  color: var(--cream) !important;
  padding: 9px 18px;
  border-radius: 2px;
  transition: background .2s ease, transform .15s ease;
}
.btn-nav-cta:hover { background: var(--olive-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--olive);
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}

/* Hero */
.hero {
  padding-top: 92px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(42px, 5.6vw, 80px);
  line-height: 1.02;
  color: var(--heading);
  letter-spacing: 0.005em;
  margin: 0;
}
.hero h1 .accent { color: var(--rust); font-style: italic; }
.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-text);
  max-width: 520px;
  margin: 28px 0 36px;
}
.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(19px, 2.1vw, 24px);
  color: var(--olive);
  margin: 26px 0 22px;
}
.hero-services-list span { position: relative; }
.hero-services-list span:not(:last-child)::after {
  content: '·';
  color: var(--rust);
  margin-left: 14px;
  font-family: 'Archivo', sans-serif;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--rust);
  color: var(--cream);
  font-family: 'Archivo Narrow', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 15px 28px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, transform .15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--olive);
  font-family: 'Archivo Narrow', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 27px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--olive);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn-secondary:hover { background: var(--olive); color: var(--cream); transform: translateY(-1px); }

.btn-link {
  color: var(--olive);
  font-family: 'Archivo Narrow', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 15px 4px;
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
  transition: color .2s ease, border-color .2s ease;
}
.btn-link:hover { color: var(--rust); border-color: var(--rust); }

.hero-visual { position: relative; height: 460px; }
.photo {
  background-color: var(--placeholder);
  border: 1px solid var(--placeholder-border);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform .4s ease;
}
.photo img, .photo video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; transition: transform .5s cubic-bezier(.16,.8,.24,1); }
.photo-link { display: block; width: 100%; height: 100%; }
.photo-link:hover img { transform: scale(1.045); }
.hero-visual .photo { position: absolute; inset: 0; }
.hero-visual:hover .photo { transform: scale(1.015); }
.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(0deg, rgba(20,20,14,0.62), rgba(20,20,14,0));
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F3EAD6;
}
.hero-badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  width: 150px;
  height: 150px;
  background: var(--olive);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  box-shadow: 0 18px 40px -14px rgba(46,46,38,0.35);
  z-index: 2;
}
.hero-badge .mark { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 40px; }
.hero-badge .est {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8CCB0;
  margin-top: 4px;
}

/* Ticker */
.ticker {
  background: var(--olive);
  color: #E7E2CD;
  padding: 22px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 40px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  --ticker-distance: -50%;
  animation: scroll-ticker 28s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { white-space: nowrap; }
.ticker-track .dot { color: #8F9A6B; font-style: normal; }
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(var(--ticker-distance)); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* What We Do (cards) */
.work { padding-top: 96px; padding-bottom: 40px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 42px;
  color: var(--heading);
  max-width: 640px;
  line-height: 1.12;
  margin: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px 34px 38px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--olive);
  box-shadow: 0 20px 34px -22px rgba(46,46,38,0.35);
}
.card h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--olive);
  margin: 0;
}
.card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--card-text);
  margin: 14px 0 0;
}
.see-more { margin-top: 40px; text-align: center; }

/* Approach */
.approach { background: var(--olive); color: #EEF0E2; margin-top: 80px; }
.approach .wrap {
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.approach .eyebrow { color: var(--peach); margin-bottom: 20px; }
.approach h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.16;
  color: var(--cream);
  margin: 0;
}
.approach h2 .accent { font-style: italic; color: var(--peach); }
.approach p {
  font-size: 18px;
  line-height: 1.75;
  color: #D8DCC6;
  margin: 0 0 26px;
}
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.badge {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-badge-text);
  border: 1px solid var(--olive-badge-border);
  border-radius: 2px;
  padding: 8px 14px;
}
.badge.highlight {
  color: var(--olive);
  background: var(--peach);
  border-color: transparent;
  font-weight: 600;
}

/* Who We Serve */
.who {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.who-visual { height: 400px; }
.who h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.14;
  color: var(--heading);
  margin: 0 0 24px;
}
.who .eyebrow { margin-bottom: 18px; display: block; }
.who p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 0 0 28px;
  max-width: 500px;
}
.stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 34px;
  color: var(--rust);
}
.stat-label {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stat-label);
  margin-top: 4px;
}

/* Contact */
.contact-wrap { padding: 0 40px 96px; max-width: 1160px; margin: 0 auto; }
.contact-box {
  background: var(--rust);
  border-radius: 8px;
  padding: 72px 48px;
  text-align: center;
  color: var(--cream);
}
.contact-box .eyebrow { color: #F4D9C9; margin-bottom: 22px; }
.contact-box h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.12;
  max-width: 680px;
  margin: 0 auto;
}
.btn-contact {
  display: inline-block;
  margin-top: 36px;
  background: var(--olive);
  color: var(--cream);
  font-family: 'Archivo Narrow', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 17px 34px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}
.btn-contact:hover { background: var(--olive-dark); transform: translateY(-1px); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.site-footer .wrap {
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; letter-spacing: 0.1em; color: var(--olive); }
.footer-nav { display: flex; gap: 24px; }
.footer-meta {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer-text);
}
.footer-nav a, .footer-email { text-decoration: none; color: var(--footer-text); transition: color .2s ease; }
.footer-nav a:hover, .footer-email:hover { color: var(--rust); }

/* Page intro (work.html / about.html) */
.page-intro { padding: 88px 0 32px; }
.page-intro h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.08;
  color: var(--heading);
  margin: 22px 0 0;
  max-width: 760px;
}
.page-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-text);
  max-width: 600px;
  margin: 26px 0 0;
}

/* Detail rows (work.html service breakdown) */
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.detail-row:last-of-type { padding-bottom: 96px; }
.detail-row.reverse .detail-visual { order: 2; }
.detail-visual { height: 380px; }
.detail-num {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.detail-row h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 34px;
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 18px;
}
.detail-row p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 0;
  max-width: 480px;
}
.highlight-num {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--rust);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-caption {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-muted);
  margin-bottom: 22px;
}
.top-video {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body-text);
  max-width: 480px;
}
.top-video strong { color: var(--heading); }

.video-block { padding: 40px 0 88px; }
.video-frame {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--placeholder-border);
  box-shadow: 0 24px 48px -30px rgba(46,46,38,0.4);
}
.video-frame video { width: 100%; display: block; background: #000; }
.video-caption {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label-muted);
  margin-top: 14px;
  text-align: center;
}

/* About page */
.about-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 40px;
}
.about-photo { height: 480px; }
.about-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--heading);
  line-height: 1.1;
  margin: 20px 0 0;
}
.about-hero p {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--body-text);
  margin: 22px 0 0;
  max-width: 540px;
}
.pull-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--olive);
  margin: 30px 0 0;
  max-width: 540px;
  border-left: 3px solid var(--rust);
  padding-left: 22px;
}
.credibility {
  padding: 8px 0 96px;
}
.credibility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.credibility-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  padding-left: 26px;
  position: relative;
}
.credibility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--rust);
  border-radius: 50%;
}
.about-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 40px; }

/* Responsive */
@media (max-width: 900px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 60px; }
  .hero h1 { font-size: 42px; }
  .hero-visual { height: 320px; margin-top: 40px; }
  .hero-badge { width: 120px; height: 120px; bottom: -20px; left: -14px; }
  .hero-badge .mark { font-size: 30px; }

  .cards { grid-template-columns: 1fr; }
  .approach .wrap { grid-template-columns: 1fr; padding: 64px 24px; gap: 36px; }
  .approach h2 { font-size: 32px; }
  .who { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 64px; }
  .who-visual { height: 280px; }
  .contact-wrap { padding: 0 24px 64px; }
  .contact-box { padding: 48px 28px; }
  .contact-box h2 { font-size: 32px; }
  .work { padding-top: 64px; padding-bottom: 24px; }
  .section-title { font-size: 32px; }

  .page-intro { padding: 56px 0 24px; }
  .page-intro h1 { font-size: 36px; }
  .detail-row, .detail-row.reverse { grid-template-columns: 1fr; padding: 40px 0; }
  .detail-row.reverse .detail-visual { order: 0; }
  .detail-visual { height: 260px; }
  .about-hero { grid-template-columns: 1fr; padding: 56px 0 24px; }
  .about-photo { height: 340px; }
  .about-hero h1 { font-size: 34px; }
  .credibility-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-eyebrow, .who .eyebrow, .work .eyebrow, .approach .eyebrow { letter-spacing: 0.2em; }
  .contact-box h2 { font-size: 26px; }
  .approach h2 { font-size: 28px; }
  .who h2 { font-size: 30px; }
  .page-intro h1 { font-size: 30px; }
  .about-hero h1 { font-size: 28px; }
  .pull-quote { font-size: 21px; }
}

h1, h2, h3, p { overflow-wrap: break-word; }
