:root {
    --bg: #F4EFE6;
    --bg-deep: #EBE4D6;
    --bg-dark: #1A1815;
    --ink: #1A1815;
    --ink-soft: #5C544A;
    --ink-faint: #8B8275;
    --line: #D4CBB8;
    --line-dark: rgba(244,239,230,0.18);
    --accent: #B65933;
    --accent-deep: #8B4226;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ── NAV ─────────────────────────────────────────── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(244, 239, 230, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 40px;
    border-bottom-color: var(--line);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--bg);
    transition: color 0.4s ease;
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  .nav.scrolled .nav-logo { color: var(--ink); }
  .nav-logo .plus { color: var(--accent); font-style: italic; font-weight: 400; }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    font-size: 13.5px;
    color: var(--bg);
    transition: color 0.4s ease;
    letter-spacing: 0.02em;
  }
  .nav.scrolled .nav-links { color: var(--ink); }
  .nav-links a {
    position: relative;
    padding: 4px 0;
    opacity: 0.85;
    transition: opacity 0.3s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    padding: 8px 16px;
    color: var(--bg);
    transition: color 0.4s ease, background 0.3s, border-color 0.3s;
  }
  .nav.scrolled .nav-cta { color: var(--ink); }
  .nav-cta:hover { background: currentColor; }
  .nav-cta:hover { color: var(--bg); }
  .nav.scrolled .nav-cta:hover { color: var(--bg); }

  /* ── HERO ────────────────────────────────────────── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.6s ease;
    animation: kenburns 22s ease-in-out infinite alternate;
  }
  .hero-bg img.active { opacity: 1; }
  @keyframes kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(26,24,21,0.5) 0%,
      rgba(26,24,21,0.25) 40%,
      rgba(26,24,21,0.7) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 96px;
    margin-top: auto;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bg);
    opacity: 0.75;
    margin-bottom: 28px;
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    font-variation-settings: "opsz" 144;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--bg);
  }
  .hero-sub {
    font-size: 18px;
    line-height: 1.5;
    max-width: 46ch;
    opacity: 0.88;
    margin-bottom: 44px;
    font-weight: 300;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid currentColor;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    color: inherit;
    font-family: var(--sans);
  }
  .btn:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
  .btn-solid {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }
  .btn-solid:hover { background: transparent; color: var(--bg); border-color: var(--bg); }

  /* Hero rotating dots */
  .hero-dots {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
  }
  .hero-dots span {
    width: 28px;
    height: 1px;
    background: var(--bg);
    opacity: 0.35;
    transition: opacity 0.4s ease, width 0.4s ease;
  }
  .hero-dots span.active { opacity: 1; width: 44px; }

  /* ── JOURNEY PILLS ───────────────────────────────── */
  .journey {
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .journey-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
  }
  .journey-item {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .journey-item em {
    font-style: italic;
    color: var(--accent);
  }
  .journey-sep {
    color: var(--ink-faint);
    font-size: 18px;
    font-family: var(--serif);
    font-style: italic;
  }

  /* ── SECTION BASE ────────────────────────────────── */
  section { padding: 96px 0; }
  section.hero { padding: 0; }
  .section-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ink-faint);
  }
  .section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 5.2vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    max-width: 22ch;
    font-variation-settings: "opsz" 144;
  }
  .section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }

  /* ── PHILOSOPHY ─────────────────────────────────── */
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }
  .philosophy-text p {
    margin-top: 32px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.65;
    max-width: 50ch;
  }
  .philosophy-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  .philosophy-img img { width: 100%; height: 100%; object-fit: cover; }
  .philosophy-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--bg);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  /* ── SERVICES (numbered) ─────────────────────────── */
  .services { background: var(--bg-deep); }
  .services-head { margin-bottom: 96px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 80px;
  }
  .service {
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .service-num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 36px;
    display: block;
    letter-spacing: 0.05em;
  }
  .service-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
  }
  .service-tag {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .service-desc {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .service-list li {
    font-size: 12.5px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
  }
  .service-list li::after { content: '·'; margin-left: 12px; color: var(--ink-faint); }
  .service-list li:last-child::after { content: ''; }

  /* ── STATS ───────────────────────────────────────── */
  .stats {
    background: var(--bg-dark);
    color: var(--bg);
  }
  .stats .section-label { color: rgba(244,239,230,0.55); }
  .stats .section-label::before { background: rgba(244,239,230,0.55); }
  .stats .section-title em { color: var(--accent); }
  .stats-intro {
    margin-top: 32px;
    color: rgba(244,239,230,0.72);
    font-size: 17px;
    max-width: 60ch;
    line-height: 1.6;
  }
  .stats-grid {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat {
    border-top: 1px solid var(--line-dark);
    padding-top: 28px;
  }
  .stat-num {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(56px, 5.2vw, 84px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    font-variation-settings: "opsz" 144;
  }
  .stat-num em { font-style: italic; font-weight: 400; color: var(--accent); }
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,239,230,0.65);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .stat-desc {
    color: rgba(244,239,230,0.55);
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* ── WORK ────────────────────────────────────────── */
  .work-head { margin-bottom: 72px; }
  #work > .container { max-width: 1680px; }
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .work-card { cursor: pointer; }
  .work-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .work-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .work-card:hover .work-img img { transform: scale(1.05); }
  .work-status {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--bg);
    color: var(--ink);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    font-weight: 500;
  }
  .work-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .work-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .work-meta {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  /* ── PROCESS ─────────────────────────────────────── */
  .process { background: var(--bg-deep); }
  .process-head { margin-bottom: 80px; }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
  .phase {
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .phase-num {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 28px;
    font-weight: 500;
  }
  .phase-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .phase-title em {
    font-style: italic;
    color: var(--accent);
  }
  .phase-sub {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .phase-desc {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* ── TEAM / CREDIBILITY ─────────────────────────── */
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
  }
  .team-text p {
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 52ch;
  }
  .team-logos {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .team-logos-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    font-family: var(--serif);
    color: var(--ink-soft);
  }
  .logos-row span {
    font-size: 15px;
    letter-spacing: -0.005em;
  }
  .team-card-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .team-card {
    background: var(--bg-deep);
    padding: 40px;
    border-left: 2px solid var(--accent);
  }
  .team-card-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--line);
    margin-bottom: 24px;
    overflow: hidden;
  }
  .team-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .team-card-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .team-card-role {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .team-card-bio {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ── QUOTE ───────────────────────────────────────── */
  .quote {
    background: var(--bg-dark);
    color: var(--bg);
    text-align: center;
    padding: 112px 0;
  }
  .quote blockquote {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 22ch;
    margin: 0 auto;
    font-variation-settings: "opsz" 144;
  }
  .quote blockquote em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .quote-attribution {
    margin-top: 36px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,239,230,0.55);
  }

  /* ── CONTACT ─────────────────────────────────────── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .contact-text p {
    margin-top: 32px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    max-width: 44ch;
  }
  .contact-email {
    font-family: var(--serif);
    font-size: 32px;
    margin-top: 32px;
    display: inline-block;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .contact-status {
    margin-top: 24px;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
  }
  .contact-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6B8E4E;
    margin-right: 10px;
    vertical-align: middle;
  }

  /* ── FOOTER ──────────────────────────────────────── */
  .footer {
    background: var(--bg-dark);
    color: var(--bg);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 32px;
    letter-spacing: -0.015em;
  }
  .footer-logo .plus { color: var(--accent); font-style: italic; }
  .footer-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(244,239,230,0.65);
    margin-top: 12px;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,239,230,0.5);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(244,239,230,0.8);
  }
  .footer-col a:hover { color: var(--bg); }
  .footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(244,239,230,0.5);
  }
  .footer-bottom em { font-family: var(--serif); font-style: italic; }


  /* ── BRANDS MARQUEE ──────────────────────────────── */
  .brands {
    padding: 88px 0 72px;
    background: var(--bg);
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .brands-head { margin-bottom: 72px; }
  .brands-title { max-width: 18ch; }
  .brands-intro {
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 56ch;
  }
  .brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 46s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes scrollLogos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .logo-cell {
    flex: 0 0 auto;
    width: 200px;
    height: 110px;
    margin: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    transition: transform 0.4s ease;
  }
  .logo-cell:hover {
    transform: translateY(-3px);
  }
  .logo-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.15);
    transition: filter 0.4s ease;
  }
  .logo-cell:hover img { filter: grayscale(0); }

  @media (max-width: 900px) {
    .brands { padding: 80px 0 64px; }
    .logo-cell { width: 160px; height: 90px; margin: 0 18px; }
  }

  /* ── RESPONSIVE ──────────────────────────────────── */
  @media (max-width: 900px) {
    .container { padding: 0 24px; }
    .nav { padding: 16px 24px; }
    .nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    section { padding: 96px 0; }
    .philosophy-grid,
    .team-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .work-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .quote { padding: 96px 0; }
    .hero-sub { font-size: 16px; }
  }

  /* ── FADE-IN ────────────────────────────────────── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
