/* =========================================================
   Forage.Design — Site Styles
   Theme: Dusk (hero fades dark → bone)
   ========================================================= */

@import url('tokens.css');

/* --------------------------------------------------
   RESET & BASE
   -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg-1);
  background: var(--bg-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* --------------------------------------------------
   LAYOUT
   -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* --------------------------------------------------
   THEMES
   -------------------------------------------------- */
.theme-light { background: var(--bg-canvas);    color: var(--fg-1); }
.theme-dark  { background: var(--forage-black); color: var(--forage-bone); }
.theme-mud   { background: var(--forage-mud);   color: var(--forage-bone); }
.theme-slate { background: var(--forage-slate); color: var(--forage-bone); }

/* --------------------------------------------------
   NAV
   -------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              padding var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

/* Scrolled state — glass background */
.nav.is-scrolled {
  background: rgba(246, 246, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-1);
  padding: 14px 0;
}
.nav.is-scrolled .nav-links a,
.nav.is-scrolled .nav-logo-wrap { color: var(--forage-black); }
.nav.is-scrolled .nav-logo-img--white { display: none; }
.nav.is-scrolled .nav-logo-img--mud   { display: block; }

/* Default (over dark hero) */
.nav-links a { color: var(--forage-bone); }
.nav-logo-img--mud { display: none; }
.nav-logo-img--white { display: block; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--forage-bone);
}
.nav-logo-wrap img { height: 33px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-size: 14px;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav-links a:hover {
  color: var(--forage-lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav.is-scrolled .nav-links a:hover {
  color: var(--forage-mud);
}

/* Close button hidden on desktop, shown inside mobile media query */
.nav-close { display: none; }

/* ---------- HAMBURGER TOGGLE (mobile only) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forage-bone);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
  transform-origin: center;
}
.nav.is-scrolled .nav-toggle-bar { background: var(--forage-black); }

/* X state */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  .nav-links {
    /* Hidden by default — slides down when open */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100dvh;
    background: var(--forage-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-out);
    z-index: 100;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Force all links bone white while menu is open, regardless of scroll state */
  .nav-links.is-open a,
  .nav.is-scrolled .nav-links.is-open a {
    color: var(--forage-bone) !important;
    text-decoration: none;
  }
  .nav-links.is-open a:hover,
  .nav.is-scrolled .nav-links.is-open a:hover {
    color: var(--forage-lime) !important;
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--forage-bone);
    font-size: 24px;
    line-height: 1;
    padding: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--dur-fast);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close:hover { opacity: 1; }
  .nav-links li { display: flex; }
  .nav-links a {
    font-size: 28px;
    font-family: var(--font-serif-display);
    color: var(--forage-bone);
  }
}

/* --------------------------------------------------
   HERO — Dusk: fades dark → bone
   -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--forage-bone);
  background: var(--forage-black);
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72) contrast(1.05);
  z-index: 0;
  /* Fallback while video loads */
  background: url('../assets/hero-forest.png') center / cover no-repeat;
}

/* Subtle slow zoom */
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}
.hero-video { animation: heroZoom 24s ease-out forwards; }

/* Dusk-specific overlay: dark at top → transparent mid → bone at bottom */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(42, 43, 44, 0.50)  0%,
    rgba(42, 43, 44, 0.15) 25%,
    rgba(246, 246, 245, 0)  78%,
    rgba(246, 246, 245, 1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding-block: 160px 120px;
  width: 100%;
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: rgba(246, 246, 245, 0.78);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--forage-bone);
  margin: 0 0 24px;
  max-width: 800px;
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero h1 em {
  font-style: italic;
  color: var(--forage-lime);
}

.hero-lead {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: rgba(246, 246, 245, 0.82);
  max-width: 800px;
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------
   SECTIONS
   -------------------------------------------------- */
section { padding: 96px 0; }
@media (min-width: 768px) { section { padding: 128px 0; } }

.section-eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--forage-mud);
  margin: 0 0 16px;
}
.theme-dark .section-eyebrow,
.theme-mud  .section-eyebrow,
.theme-slate .section-eyebrow { color: rgba(246, 246, 245, 0.7); }

.section-h {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  margin: 0 0 56px;
  max-width: 800px;
  text-wrap: balance;
}
@media (min-width: 1024px) { .section-h { max-width: 900px; } }
@media (min-width: 1280px) { .section-h { max-width: 1000px; } }

/* --------------------------------------------------
   CAPABILITIES LIST + ACCORDION
   -------------------------------------------------- */
.caps {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border-1);
}
.theme-dark .caps,
.theme-mud  .caps,
.theme-slate .caps { border-color: rgba(246, 246, 245, 0.18); }

.caps li {
  border-bottom: 1px solid var(--border-1);
}
.theme-dark .caps li,
.theme-mud  .caps li { border-color: rgba(246, 246, 245, 0.18); }

/* Trigger row */
.cap-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: var(--ls-tight);
  color: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.cap-trigger:focus-visible {
  outline: 2px solid var(--forage-mud);
  outline-offset: 2px;
  border-radius: 2px;
}

.cap-label {
  display: flex;
  align-items: center;
}

.caps .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--forage-mud);
  margin-right: 20px;
  display: inline-block;
  min-width: 28px;
  flex-shrink: 0;
}

/* + / − icon */
.cap-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.cap-icon::before,
.cap-icon::after {
  content: '';
  position: absolute;
  background: var(--fg-2);
  border-radius: 1px;
  transition: transform 360ms var(--ease-soft),
              opacity 360ms var(--ease-soft);
}
.cap-icon::before { width: 1.5px; height: 14px; top: 1px; left: 7px; }
.cap-icon::after  { width: 14px; height: 1.5px; top: 7px; left: 1px; }

/* Open: collapse vertical bar → becomes − */
.cap-trigger[aria-expanded="true"] .cap-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.cap-trigger[aria-expanded="true"] .cap-icon::after {
  background: var(--forage-mud);
}

/* Accordion body — grid trick for smooth height animation */
.cap-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms var(--ease-soft);
  overflow: hidden;
}
.cap-body.is-open {
  grid-template-rows: 1fr;
}
.cap-body-inner {
  overflow: hidden;
  padding-left: calc(28px + 20px); /* align with label text, past num + gap */
}
.cap-body p {
  padding: 0 0 24px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: min(800px, 100%);
  margin: 0;
}

/* --------------------------------------------------
   APPROACH
   -------------------------------------------------- */
.approach {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .approach { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}

.approach-step {
  border-top: 1px solid var(--border-1);
  padding-top: 20px;
}
.theme-mud   .approach-step,
.theme-slate .approach-step { border-color: rgba(246, 246, 245, 0.22); }

.approach-step .roman {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 16px;
}
.theme-mud   .approach-step .roman,
.theme-slate .approach-step .roman { color: rgba(246, 246, 245, 0.7); }

.approach-step h3 {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

.approach-step p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--fg-2);
  text-wrap: pretty;
}
.theme-mud   .approach-step p,
.theme-slate .approach-step p { color: rgba(246, 246, 245, 0.78); }

/* --------------------------------------------------
   WORK BENTO
   -------------------------------------------------- */
.work-head {
  margin-bottom: 48px;
}
.work-head .section-h { margin-bottom: 24px; }
.work-blurb {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  text-align: left;
  margin: 0;
}

/* Bento grid */
.bento {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .bento .b1 { grid-column: span 2; grid-row: span 2; }
}
@media (min-width: 1000px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
  .bento .b1 { grid-column: span 4; grid-row: span 2; }
  .bento .b2 { grid-column: span 2; grid-row: span 2; }
  .bento .b3 { grid-column: span 2; }
  .bento .b4 { grid-column: span 2; }
  .bento .b5 { grid-column: span 2; }
}

/* Work card */
.work {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forage-slate);
  min-height: 220px;
  cursor: pointer;
  transition: box-shadow 320ms var(--ease-soft),
              transform 320ms var(--ease-soft);
  box-shadow: var(--shadow-2);
}
.work:hover {
  box-shadow: 0 18px 40px rgba(42, 43, 44, 0.22);
}

.work-surface {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1000ms var(--ease-soft);
}
.work:hover .work-surface { transform: scale(1.05); }

.work-surface--mud {
  background: linear-gradient(135deg, #2c5256, #3e7176 60%, #42565a);
  display: flex; align-items: center; justify-content: center;
}
.work-surface--mud img { width: 56px; opacity: 0.32; }

.work-surface--logo {
  background: #3e7176;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.work-surface--logo img { max-width: 80%; max-height: 80%; object-fit: contain; }

.work-label {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  font-family: var(--font-serif-display);
  font-size: 18px;
  color: var(--forage-bone);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  transition: opacity 240ms ease;
}
.work:hover .work-label { opacity: 0; }

.work-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(42,43,44,0) 40%, rgba(42,43,44,0.78) 100%);
  opacity: 0.45;
  transition: opacity 320ms ease;
}
.work:hover .work-overlay { opacity: 1; }

.work-meta {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
  color: var(--forage-bone);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.work:hover .work-meta { opacity: 1; transform: translateY(0); }

.work-meta .who {
  font-size: 11px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: rgba(246, 246, 245, 0.7);
  margin-bottom: 6px;
}
.work-meta h3 {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 246, 245, 0.32);
  color: rgba(246, 246, 245, 0.92);
  background: rgba(246, 246, 245, 0.06);
}

/* Touch: always show meta on small screens */
@media (max-width: 768px) {
  .work-overlay, .work-meta { opacity: 1; transform: none; }
  .work-label { opacity: 0; }
}

/* Keyboard focus state mirrors hover */
.work:focus-visible,
.work.is-focused {
  outline: 2px solid var(--forage-mud);
  outline-offset: 2px;
  box-shadow: 0 18px 40px rgba(42, 43, 44, 0.22);
}
.work:focus-visible .work-overlay,
.work.is-focused .work-overlay { opacity: 1; }
.work:focus-visible .work-meta,
.work.is-focused .work-meta { opacity: 1; transform: translateY(0); }
.work:focus-visible .work-label,
.work.is-focused .work-label { opacity: 0; }

/* --------------------------------------------------
   ABOUT
   -------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 0.5fr 1fr; gap: 64px; }
}

.lede {
  font-family: var(--font-serif-text);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.about-grid p:not(.lede):not(.team-name) {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
  max-width: 60ch;
}

.team-grid {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 560px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.team-member { display: flex; flex-direction: column; align-items: center; text-align: center; }

.team-photo-wrap {
  aspect-ratio: 1 / 1;
  width: 150px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--forage-fog);
  margin-bottom: 12px;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: var(--font-serif-text);
  font-size: var(--fs-h3);
  color: var(--fg-1);
  margin: 0 0 4px;
}
.team-role {
  font-size: var(--fs-body-sm);
  color: var(--fg-3);
  margin: 0;
  letter-spacing: 0.01em;
}
.team-li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forage-mud);
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.team-li:hover { opacity: 0.7; }

/* --------------------------------------------------
   CONTACT
   -------------------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
}
.contact .bg-leaf {
  position: absolute;
  right: -40px; top: 30px;
  width: 240px; height: auto;
  opacity: 0.07;
  transform: rotate(-12deg);
  pointer-events: none;
  user-select: none;
}

.contact-h {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  margin: 16px 0 40px;
  max-width: 800px;
  text-wrap: balance;
}
.contact-h .muted {
  display: block;
  color: var(--forage-mud);
}

.email-link {
  font-family: var(--font-serif-display);
  font-size: clamp(32px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: var(--fg-1);
  border-bottom: 1px solid rgba(42, 43, 44, 0.25);
  padding-bottom: 4px;
  display: inline-block;
  transition: color var(--dur-base) ease,
              border-color var(--dur-base) ease;
  word-break: break-word;
}
.email-link:hover {
  color: var(--forage-mud-deep);
  border-bottom-color: var(--forage-mud-deep);
}

.contact-meta {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  font-size: 13.5px;
  color: var(--fg-2);
}
.contact-meta .dot { opacity: 0.4; }

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-1);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forage-mud);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

/* --------------------------------------------------
   FOOTER
   -------------------------------------------------- */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-1);
  font-size: 13px;
  color: var(--fg-2);
  background: var(--bg-canvas);
}

.foot {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
}
.foot-left {
  display: flex; align-items: center; gap: 14px;
}
.foot-left img { height: 16px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { text-decoration: none; color: inherit; }
.foot-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* --------------------------------------------------
   REVEAL-ON-SCROLL
   -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-soft),
              transform 800ms var(--ease-soft);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------
   PROJECT SHEET
   -------------------------------------------------- */
.project-sheet {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.project-sheet.is-open {
  pointer-events: auto;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 43, 44, 0.4);
  opacity: 0;
  transition: opacity 360ms var(--ease-out);
}
.project-sheet.is-open .sheet-backdrop { opacity: 1; }

.sheet-panel {
  position: absolute;
  inset: 0;
  background: var(--forage-bone);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 540ms var(--ease-soft);
}
.project-sheet.is-open .sheet-panel { transform: translateY(0); }

/* Top bar */
.sheet-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 246, 245, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-1);
  padding: 14px 0;
}
.sheet-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sheet-who {
  font-size: var(--fs-body-sm);
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sheet-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-2);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
}
.sheet-close:hover { color: var(--fg-1); }

/* Content */
.sheet-content { padding-bottom: 120px; }

.sheet-title {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: var(--ls-display);
  color: var(--fg-1);
  margin: 56px 0 24px;
}

.sheet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.sheet-tags .tag {
  border-color: var(--border-2);
  color: var(--fg-2);
  background: rgba(42, 43, 44, 0.04);
}

.sheet-overview {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--fg-2);
  max-width: 60ch;
  margin: 0 0 72px;
}

/* --------------------------------------------------
   TESTIMONIALS CAROUSEL
   -------------------------------------------------- */
.testimonials {
  overflow: hidden;
}

.testi-viewport {
  overflow: hidden;
  width: 100%;
}

.testi-track {
  display: flex;
  width: 100%;
  transition: transform var(--dur-slow) var(--ease-soft);
}

.testi-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testi-quote {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--forage-bone);
  margin: 0;
  text-wrap: pretty;
  max-width: 820px;
}

.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }

.testi-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--forage-bone);
  margin: 0;
}

.testi-role {
  font-size: var(--fs-body-sm);
  color: rgba(246, 246, 245, 0.6);
  margin: 0;
}

.testi-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.testi-dots {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(246, 246, 245, 0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out);
}

.testi-dot.is-active {
  background: var(--forage-bone);
  width: 20px;
}

/* Gallery */
.sheet-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .sheet-gallery { padding: 0 40px; } }

.sheet-img-ph {
  width: 100%;
  background: var(--forage-fog);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-1);
}
