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

  :root {
    --charcoal: #1A1A1A;
    --off-white: #F8F6F2;
    --amber: #C8843A;
    --amber-light: #E8D5C0;
    --slate: #4A5568;
    --mid-gray: #8A8A8A;
    --rule: #D8D4CE;
    --section-alt: #F0EDE7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(248, 246, 242, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    transition: background 0.3s;
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
  }

  .nav-logo span { color: var(--amber); }

  .nav-logo-img { height: 44px; width: auto; display: block; }

  .nav-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 3px;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--amber); }

  .nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border: 1.5px solid var(--charcoal);
    padding: 10px 22px;
    transition: all 0.2s;
  }

  .nav-cta:hover {
    background: var(--charcoal);
    color: var(--off-white);
  }

  /* ── MOTION (hero entrance, Ken Burns, marquees) ── */
  @keyframes rise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
  @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
  @keyframes lineGrow { from { width: 0; } to { width: 32px; } }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── HERO (centered cinematic, over featured work) ── */
  .hero {
    position: relative;
    min-height: min(86vh, 760px);
    padding-top: 72px;
    background: var(--charcoal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    opacity: 0.62;
    animation: kenburns 26s ease-out forwards;
  }

  .hero-scrim {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, #1A1A1A 0%, rgba(26,26,26,0.92) 22%, rgba(26,26,26,0.3) 46%, transparent 60%),
      radial-gradient(80% 70% at 50% 42%, rgba(26,26,26,0.25) 0%, rgba(26,26,26,0.8) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 36px;
    animation: fade 1s 0.2s both;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    display: block;
    height: 1.5px;
    width: 32px;
    background: var(--amber);
    animation: lineGrow 0.8s 0.4s both;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 150px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--off-white);
    margin-bottom: 36px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--amber);
  }

  .hero-line {
    display: block;
    animation: rise 1.1s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hero-line + .hero-line { animation-delay: 0.5s; }

  .hero-sub {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75;
    color: #C9C4BC;
    max-width: 660px;
    margin: 0 auto 48px;
    text-wrap: pretty;
    animation: rise 1s 0.78s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: rise 1s 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .btn-primary {
    background: var(--amber);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: background 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: #B87230; }

  .hero .btn-primary { padding: 18px 40px; }

  .btn-ghost-light {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-ghost-light::after {
    content: '→';
    transition: transform 0.2s;
  }

  .btn-ghost-light:hover { color: var(--amber); }
  .btn-ghost-light:hover::after { transform: translateX(4px); }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
    padding-top: 32px;
    animation: fade 1.2s 1.2s both;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8A8680;
  }

  /* ── SELECTED WORK MARQUEE ── */
  .work-marquee {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 88px 0 96px;
    overflow: hidden;
  }

  .mq-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 max(48px, calc((100% - 1280px) / 2)) 32px;
  }

  .mq-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
  }

  .mq-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s, color 0.2s;
  }

  .mq-link::after { content: '→'; }
  .mq-link:hover { gap: 14px; color: var(--amber); }

  .mq-viewport { padding-left: 48px; }

  .mq-track {
    display: flex;
    width: max-content;
    gap: 32px;
    padding-right: 32px; /* keeps the -50% loop seamless */
    animation: marquee 46s linear infinite;
  }

  .work-marquee:hover .mq-track { animation-play-state: paused; }

  .mq-card {
    width: 420px;
    flex: none;
    display: block;
    text-decoration: none;
  }

  .mq-img {
    height: 280px;
    overflow: hidden;
    background: #2A2A2A;
  }

  .mq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .mq-card:hover .mq-img img { transform: scale(1.05); }

  .mq-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-top: 16px;
  }

  .mq-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    color: #C9C4BC;
  }

  .mq-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    white-space: nowrap;
  }

  /* ── INTRO SECTION ── */
  .intro {
    padding: 140px 48px 120px;
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 120px;
    align-items: start;
  }

  .intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.2vw, 3.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
  }

  .intro-heading em {
    font-style: italic;
    color: var(--amber);
  }

  .intro-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .intro-body p {
    font-size: 1.0625rem;
    color: var(--slate);
    line-height: 1.8;
    text-wrap: pretty;
  }

  .intro-body p strong {
    color: var(--charcoal);
    font-weight: 600;
  }

  .intro-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    transition: gap 0.2s;
  }

  .intro-link:hover { gap: 14px; }
  .intro-link::after { content: '→'; }

  /* ── CLIENT LOGO MARQUEE ── */
  .client-wall {
    background: var(--section-alt);
    padding: 56px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }

  .client-wall-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 40px;
  }

  .logo-viewport { padding-left: 48px; }

  .logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 96px;
    padding-right: 96px; /* keeps the -50% loop seamless */
    animation: marquee 38s linear infinite;
  }

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

  .logo-track img {
    height: 64px;
    width: auto;
    flex: none;
    display: block;
    filter: grayscale(1);
    opacity: 0.55;
    mix-blend-mode: multiply; /* hides the white boxes on JPG logos */
    transition: filter 0.3s, opacity 0.3s;
  }

  .logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
  }

  /* ── ONE STUDIO SECTION ── */
  .one-studio {
    background: var(--charcoal);
    padding: 120px 48px;
  }

  .os-header {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
  }

  .os-header .section-title {
    color: var(--off-white);
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 12px 0 20px;
  }

  .os-sub {
    font-size: 1.0rem;
    color: #6A6660;
    line-height: 1.75;
  }

  .os-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
  }

  .os-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 16px;
  }

  .os-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
  }

  .os-icon svg { width: 100%; height: 100%; }

  .os-step-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 12px;
  }

  .os-step-desc {
    font-size: 0.82rem;
    color: #5A5550;
    line-height: 1.7;
  }

  .os-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 36px;
    gap: 4px;
    flex-shrink: 0;
  }

  .os-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, rgba(200,132,58,0.2), rgba(200,132,58,0.6));
  }

  .os-arrow {
    font-size: 0.9rem;
    color: var(--amber);
    opacity: 0.5;
    margin-top: -8px;
  }

  .os-cta {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .os-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #6A6660;
  }

  @media (max-width: 768px) {
    .os-flow {
      flex-direction: column;
      align-items: center;
    }
    .os-step { max-width: 100%; padding: 0; }
    .os-connector { flex-direction: row; padding-top: 0; padding: 16px 0; transform: rotate(90deg); }
  }

  /* ── SERVICES SECTION ── */
  .services {
    background: var(--section-alt);
    padding: 120px 48px;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 72px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
  }

  .section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.15;
  }

  .section-title em { font-style: italic; }

  .section-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
    padding-bottom: 4px;
  }

  .section-link:hover { gap: 14px; color: var(--amber); }
  .section-link::after { content: '→'; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .service-card {
    background: var(--off-white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
  }

  .service-card:hover { background: var(--charcoal); }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--amber);
    transition: width 0.4s;
  }

  .service-card:hover::before { width: 100%; }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    opacity: 0.5;
    transition: opacity 0.3s;
  }

  .service-card:hover .service-icon { opacity: 1; }

  .service-verb {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    margin-bottom: 6px;
    transition: color 0.3s;
  }

  .service-card:hover .service-verb { color: var(--amber); }

  .service-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 20px;
    transition: color 0.3s;
  }

  .service-card:hover .service-name { color: #8A8A8A; }

  .service-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.75;
    transition: color 0.3s;
  }

  .service-card:hover .service-desc { color: #A8A49E; }

  .service-arrow {
    position: absolute;
    bottom: 32px; right: 32px;
    font-size: 1.2rem;
    color: transparent;
    transition: color 0.3s, transform 0.3s;
  }

  .service-card:hover .service-arrow {
    color: var(--amber);
    transform: translate(4px, -4px);
  }

  /* ── WORK SECTION ── */
  .work {
    padding: 120px 48px;
    background: var(--off-white);
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 64px;
  }

  .work-item {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--section-alt);
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
  }

  .work-item:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .work-item .work-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s;
  }

  .work-item:hover .work-bg { transform: scale(1.04); }

  /* Live site screenshots */
  .work-bg-1 { background: url('../portfolio/ocallaghans.jpg') center top / cover no-repeat; }
  .work-bg-2 { background: url('../portfolio/annawilson.jpg') center top / cover no-repeat; }
  .work-bg-3 { background: url('../portfolio/mannyespinoza.jpg') center top / cover no-repeat; }

  .work-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .work-item:hover .work-overlay { opacity: 1; }

  .work-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
  }

  .work-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
  }

  .work-label {
    position: absolute;
    bottom: 20px; left: 24px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: opacity 0.3s;
  }

  .work-item:hover .work-label { opacity: 0; }

  /* ── PRINT SHOWCASE ── */
  .print-showcase {
    padding: 100px 48px 120px;
    background: var(--section-alt);
  }

  .print-intro {
    max-width: 640px;
    margin-bottom: 56px;
  }

  .print-intro p {
    font-size: 0.98rem;
    color: var(--slate);
    line-height: 1.75;
  }

  .print-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 28px;
  }

  .print-piece {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .print-piece figure {
    height: 320px;
    display: flex;
    align-items: flex-end;
    background: #fff;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(26,26,26,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .print-piece:hover figure {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26,26,26,0.18);
  }

  .print-piece img {
    height: 100%;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    display: block;
  }

  .print-caption { padding-left: 2px; }

  .print-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 4px;
  }

  .print-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
  }

  @media (max-width: 1024px) {
    .print-showcase { padding: 72px 32px 88px; }
    .print-piece figure { height: 260px; }
    .print-piece img { max-width: 320px; }
  }

  @media (max-width: 640px) {
    .print-showcase { padding: 64px 20px 72px; }
    .print-grid { gap: 20px; }
    .print-piece figure { height: 220px; }
    .print-piece img { max-width: 100%; }
  }

  /* ── PROCESS SECTION ── */
  .process {
    background: var(--charcoal);
    padding: 120px 48px;
  }

  .process .section-title { color: var(--off-white); }
  .process .section-eyebrow { color: var(--amber); }

  .process .section-header {
    border-bottom-color: rgba(255,255,255,0.08);
    margin-bottom: 80px;
  }

  .process .section-link { color: var(--off-white); }
  .process .section-link:hover { color: var(--amber); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
  }

  .step {
    background: var(--charcoal);
    padding: 52px 40px;
    position: relative;
  }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(200,132,58,0.28);
    line-height: 1;
    margin-bottom: 24px;
    user-select: none;
  }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .step-desc {
    font-size: 0.87rem;
    color: #6A6660;
    line-height: 1.75;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 96px;
    align-items: start;
  }

  .contact-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    margin: 12px 0 20px;
  }

  .contact-intro h2 em { font-style: italic; color: var(--amber); }

  .contact-intro p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.8;
    max-width: 440px;
  }

  .contact-direct {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-direct span {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 4px;
  }

  .contact-direct a {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-direct a:hover { color: var(--amber); }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
  }

  .field { display: flex; flex-direction: column; gap: 8px; }
  .field.full { grid-column: 1 / -1; }

  .field label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid-gray);
  }

  .field label em { font-style: normal; color: var(--amber); }

  .field input,
  .field select,
  .field textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 0;
    padding: 14px 16px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .field select {
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234A5568' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200,132,58,0.15);
  }

  .field textarea { min-height: 150px; resize: vertical; }

  .form-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .form-actions .btn-primary {
    border: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 18px 40px;
  }

  .form-actions .btn-primary:disabled { opacity: 0.6; cursor: default; }

  .form-note { font-size: 0.8rem; color: var(--mid-gray); }

  .form-status {
    grid-column: 1 / -1;
    display: none;
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 14px 18px;
  }

  .form-status.ok { display: block; background: #EAF3EA; color: #2E5E2E; border-left: 3px solid #4C8A4C; }
  .form-status.err { display: block; background: #F8E9E9; color: #7A2E2E; border-left: 3px solid #B84C4C; }

  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

  @media (max-width: 1024px) {
    .contact { grid-template-columns: 1fr; gap: 56px; padding: 88px 32px; }
    .contact-intro p { max-width: none; }
  }

  @media (max-width: 640px) {
    .contact { padding: 72px 20px; gap: 44px; }
    .contact-form { grid-template-columns: 1fr; gap: 18px; }
    .form-actions .btn-primary { width: 100%; text-align: center; }
  }

  /* ── FOOTER ── */
  footer {
    background: #111;
    padding: 80px 48px 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand .nav-logo {
    color: var(--off-white);
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .footer-brand .nav-logo-sub {
    color: #6A6660;
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: #5A5550;
    line-height: 1.75;
    max-width: 280px;
  }

  .footer-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col a {
    font-size: 0.85rem;
    color: #5A5550;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--amber); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.75rem;
    color: #3A3530;
  }

  .footer-social {
    display: flex;
    gap: 20px;
  }

  .footer-social a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3A3530;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-social a:hover { color: var(--amber); }

  /* ── MAX CONTENT WIDTH ──
     Backgrounds stay full-bleed, but content is held to a max width and
     centered, so wide monitors don't push text to one edge and images to the other. */
  nav, .hero, .intro, .one-studio, .services,
  .work, .print-showcase, .process, .contact, footer {
    padding-left: max(48px, calc((100% - 1280px) / 2));
    padding-right: max(48px, calc((100% - 1280px) / 2));
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 0 32px; }
    .hero { padding: 72px 32px 0; min-height: min(84vh, 680px); }
    .hero-stats { gap: 48px; }
    .intro { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
    .services { padding: 80px 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .work { padding: 80px 32px; }
    .process { padding: 80px 32px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    footer { padding: 64px 32px 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mq-header { padding: 0 32px 28px; }
    .mq-viewport, .logo-viewport { padding-left: 32px; }
  }

  @media (max-width: 640px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { padding: 72px 20px 0; min-height: min(86vh, 600px); }
    .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.16em; gap: 10px; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
    .hero-main { padding: 56px 0 40px; }
    .hero-actions { flex-direction: column; gap: 20px; }
    .hero-stats { flex-wrap: wrap; gap: 28px 40px; margin-bottom: 40px; }
    .stat-num { font-size: 40px; }
    .mq-header { padding: 0 20px 24px; }
    .mq-viewport, .logo-viewport { padding-left: 20px; }
    .mq-card { width: 72vw; }
    .mq-img { height: 200px; }
    .logo-track { gap: 56px; padding-right: 56px; }
    .logo-track img { height: 44px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-item:first-child { grid-row: span 1; aspect-ratio: 16/10; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .intro, .services, .work, .process { padding: 72px 20px; }
  }

  /* Subtle scroll fade-in — hidden state only applies when JS is running (html.js),
     so content is never invisible if scripts fail to load */
  .js .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .fade-in {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .hero-bg, .mq-track, .logo-track, .hero-eyebrow, .hero-eyebrow::before, .hero-eyebrow::after,
    .hero-line, .hero-sub, .hero-actions, .hero-stats { animation: none; }
    .hero-eyebrow, .hero-line, .hero-sub, .hero-actions, .hero-stats { opacity: 1; transform: none; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 32px; }
  }

  /* ── MOBILE NAV ── */
  .nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
    margin-right: -10px;
    cursor: pointer;
    line-height: 0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: transform 0.3s, opacity 0.2s;
  }

  .nav-toggle span + span { margin-top: 6px; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-links a.current { color: var(--amber); }

  /* ── PAGE HEADER (inner pages) ── */
  .page-head {
    background: var(--charcoal);
    padding: 152px 48px 80px;
  }

  .page-head .section-eyebrow { color: var(--amber); }

  .page-head h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--off-white);
    margin: 14px 0 20px;
  }

  .page-head h1 em { font-style: italic; color: var(--amber); }

  .page-head p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: #C9C4BC;
    max-width: 620px;
    text-wrap: pretty;
  }


  /* ── LANDMARK STORY (About) ── */
  .landmark {
    background: var(--section-alt);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 112px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .landmark-figure {
    margin: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(26,26,26,0.14);
  }

  .landmark-figure img {
    display: block;
    width: 100%;
    height: auto;
  }

  .landmark-body .section-eyebrow { margin-bottom: 14px; }

  .landmark-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .landmark-body h2 em { font-style: italic; color: var(--amber); }

  .landmark-body p {
    font-size: 1.0625rem;
    color: var(--slate);
    line-height: 1.8;
    text-wrap: pretty;
    margin-bottom: 20px;
  }

  .landmark-body p strong { color: var(--charcoal); font-weight: 600; }

  .landmark-meta {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 36px;
  }

  .landmark-meta div { min-width: 0; }

  .landmark-meta dt {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 4px;
  }

  .landmark-meta dd {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin: 0;
  }

  .landmark-meta a { color: var(--amber); text-decoration: none; }
  .landmark-meta a:hover { text-decoration: underline; }

  @media (max-width: 1024px) {
    .landmark { grid-template-columns: 1fr; gap: 44px; padding: 80px 32px; }
  }

  @media (max-width: 640px) {
    .landmark { padding: 64px 20px; gap: 32px; }
    .landmark-meta { gap: 16px 28px; }
  }

  /* ── NEXT-STEP STRIP ── */
  .next-step {
    background: var(--amber);
    padding: 72px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .next-step h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
  }

  .next-step h2 em { font-style: italic; }

  .btn-white {
    background: #fff;
    color: var(--amber);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 44px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
  }

  .btn-white:hover { background: var(--charcoal); color: #fff; }

  @media (max-width: 1024px) {
    .page-head { padding: 128px 32px 64px; }
    .next-step { padding: 56px 32px; }
  }

  @media (max-width: 860px) {
    nav { justify-content: space-between; }
    .nav-toggle { display: block; order: 3; }
    .nav-cta { display: none; }              /* Contact lives in the menu instead */
    .nav-links {
      display: none;
      order: 4;
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: var(--off-white);
      border-bottom: 1px solid var(--rule);
      padding: 6px 0 10px;
      box-shadow: 0 14px 28px rgba(26,26,26,0.10);
    }
    .nav-open .nav-links { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 15px 32px;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 640px) {
    .page-head { padding: 112px 20px 56px; }
    .next-step { padding: 48px 20px; }
    .next-step .btn-white { width: 100%; text-align: center; }
    .nav-links a { padding: 15px 20px; }
  }
