/* =========================================================
   SOLE WAKE 覺壹設計 — Stylesheet
   Concept: Nature meets City — Grand Canyon × NYC
   ========================================================= */

:root {
  /* DAY palette — Grand Canyon */
  --canyon-rust:   #B8552E;   /* sunset rock */
  --canyon-sand:   #C8985A;   /* sandstone */
  --canyon-cream:  #F2E7D5;   /* light sand */
  --canyon-light:  #FAF4E8;   /* paper warm */
  --canyon-deep:   #6B3B22;   /* deep terracotta */

  /* NIGHT palette — NYC */
  --nyc-black:     #0E0F12;
  --nyc-navy:      #181B22;
  --nyc-charcoal:  #2A2D35;
  --nyc-grey:      #4B4F58;
  --nyc-taxi:      #E8B547;   /* streetlamp / taxi yellow */
  --nyc-flag:      #C24B36;   /* old-glory red */
  --nyc-river:     #2A4E63;   /* hudson night blue */

  /* Neutrals */
  --paper:         #F8F4ED;
  --ink:           #15130F;
  --ink-soft:      #4A453E;
  --ink-mute:      #8A857C;
  --line:          #E5DDCB;
  --line-dark:     #2E3038;

  /* Type */
  --font-display: "Cormorant Garamond", "Noto Serif TC", "Songti TC", serif;
  --font-sans:    "Inter", "Noto Sans TC", -apple-system, "Segoe UI", sans-serif;
  --font-serif-tc:"Noto Serif TC", "Songti TC", serif;
  --font-poster:  "Alfa Slab One", "Noto Serif TC", "Cormorant Garamond", serif;     /* retro slab — Grand Canyon poster vibe */
  --font-poster-fat: "Bagel Fat One", "Alfa Slab One", "Noto Serif TC", serif;       /* chunky 70s display */
  --font-brand:   "Outfit", "Inter", "Noto Sans TC", sans-serif;                     /* SOLE WAKE wordmark */

  /* Layout */
  --container: 1280px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--canyon-rust); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.6); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.1;
}
h1 { font-size: clamp(48px, 8vw, 124px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: 22px; }
em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--canyon-rust);
  font-weight: 500;
}

.section-title em { color: var(--canyon-rust); }
.section-dark .section-title em { color: var(--nyc-taxi); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-block { width: 100%; justify-content: center; }
.btn-light { background: var(--paper); color: var(--nyc-black); }
.btn-light:hover { background: var(--nyc-taxi); color: var(--nyc-black); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.45); }
.btn-ghost-light:hover { background: var(--paper); color: var(--nyc-black); border-color: var(--paper); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--canyon-rust); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  color: var(--paper);
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(14, 15, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  color: var(--paper);
}
.site-header.is-scrolled::before { opacity: 0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand-logo {
  display: block;
  height: 78px;            /* enlarged */
  width: auto;
  background: var(--nyc-black);     /* black bg per request */
  padding: 10px 14px;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled .brand-logo { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
/* header stays the same size on scroll (per "橫幅固定" request) */
.site-header.is-scrolled { padding: 22px 0; }
.brand-mark { color: var(--paper); display: inline-flex; transition: color .3s var(--ease); }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand-en {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
}
.brand-zh {
  font-family: var(--font-serif-tc);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  margin-top: 2px;
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: inherit;
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--nyc-taxi);
  transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--paper); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.55) 0%, rgba(14,15,18,0.25) 35%, rgba(14,15,18,0.85) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(184,85,46,0.18), transparent 60%);
}
.hero-inner {
  position: relative;
  padding: 180px 0 130px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-poster);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.95;
  margin: 0 0 36px;
  letter-spacing: 0.005em;
  color: var(--paper);
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.hero-title .line { display: block; }
.hero-title .line-amp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.55em;
  color: var(--nyc-taxi);
  padding-left: 0.3em;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-shadow: none;
}
.hero-title em {
  font-family: var(--font-poster-fat);
  font-style: normal;
  color: var(--nyc-taxi);
  font-weight: 400;
  letter-spacing: 0;
}
.hero-sub {
  font-family: var(--font-serif-tc);
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 0 42px;
  line-height: 1.85;
}
.hero-sub strong { color: var(--nyc-taxi); font-weight: 500; font-style: normal; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero Awards Strip ---------- */
.hero-awards {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 44px;
  padding: 16px 22px 18px;
  background: rgba(14, 15, 18, 0.5);
  border: 1px solid rgba(232, 181, 71, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: var(--paper);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  max-width: 100%;
}
.hero-awards:hover {
  background: rgba(14, 15, 18, 0.75);
  border-color: var(--nyc-taxi);
  transform: translateY(-2px);
  color: var(--paper);
}
.ha-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--nyc-taxi);
}
.ha-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--nyc-taxi);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 181, 71, 0.7);
  animation: ha-pulse 2s ease-out infinite;
}
@keyframes ha-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 181, 71, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(232, 181, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 181, 71, 0); }
}
.ha-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ha-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.ha-badge strong {
  font-family: var(--font-poster);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--nyc-taxi);
  line-height: 1;
}
.ha-badge em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.4;
}
.ha-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
}
.ha-arrow {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--nyc-taxi);
  margin-left: 6px;
  transition: transform .3s var(--ease);
}
.hero-awards:hover .ha-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .hero-awards { padding: 14px 16px; margin-top: 32px; }
  .ha-row { gap: 10px; }
  .ha-badge strong { font-size: 18px; }
  .ha-badge em { font-size: 9px; }
  .ha-divider { height: 22px; }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  width: 1px;
  height: 50%;
  background: var(--nyc-taxi);
  animation: scroll-dot 2.4s var(--ease) infinite;
}
@keyframes scroll-dot {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ---------- Marquee ---------- */
.marquee-bar {
  background: var(--nyc-black);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-poster);
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: 0.04em;
  animation: marquee 60s linear infinite;
}
.marquee-track .m-link {
  display: inline-block;
  color: var(--paper);
  text-decoration: none;
  padding: 0 4px;
  transition: color .25s var(--ease), text-shadow .25s var(--ease), transform .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.marquee-track .m-link:hover {
  color: var(--nyc-taxi);
  text-shadow: 0 0 18px rgba(232, 181, 71, 0.4);
  border-bottom-color: var(--nyc-taxi);
}
.marquee-track .m-link:nth-of-type(even) { color: var(--nyc-taxi); }
.marquee-track .m-link:nth-of-type(even):hover { color: var(--paper); border-bottom-color: var(--paper); }
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-track .dot { color: rgba(255,255,255,0.4); font-family: var(--font-display); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections base ---------- */
.section {
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
}
.section-dark { background: var(--nyc-black); color: var(--paper); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }
.section-dark .eyebrow { color: rgba(255,255,255,0.55); }
.section-dark .section-lead { color: rgba(255,255,255,0.75); }

.section-night {
  background: var(--nyc-black);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.section-head { max-width: 880px; margin-bottom: 72px; }
.section-head-light * { color: var(--paper); }
.section-title { margin: 0 0 24px; }
.section-lead {
  font-family: var(--font-serif-tc);
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  margin: 0;
  max-width: 720px;
  line-height: 1.85;
}

/* ---------- STORY ---------- */
.story { background: var(--canyon-light); }
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story-text h2 { margin-bottom: 32px; }
.story-body p {
  font-family: var(--font-serif-tc);
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.story-body strong {
  color: var(--canyon-rust);
  font-weight: 500;
}
.story-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(107,59,34,0.25);
}
.story-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.story-card-body { padding: 28px 28px 32px; }
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.card-row:last-child { border-bottom: 0; }
.card-key {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.card-val {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: var(--ink);
  text-align: right;
}

/* ---------- DAY / NIGHT SPLIT ---------- */
.daynight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.daynight { min-height: 640px; }
.dn-half {
  padding: clamp(60px, 8vw, 100px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.dn-day {
  background: linear-gradient(135deg, var(--canyon-sand), var(--canyon-rust));
  color: var(--canyon-light);
}
.dn-night {
  background: linear-gradient(135deg, var(--nyc-charcoal), var(--nyc-black));
  color: var(--paper);
}
.dn-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.2s var(--ease);
}
.dn-half:hover .dn-photo { transform: scale(1.04); }
.dn-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.dn-day .dn-photo-overlay {
  background:
    linear-gradient(180deg, rgba(107,59,34,0.05) 0%, rgba(107,59,34,0.55) 65%, rgba(107,59,34,0.85) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(232,181,71,0.18), transparent 60%);
}
.dn-night .dn-photo-overlay {
  background:
    linear-gradient(180deg, rgba(14,15,18,0.15) 0%, rgba(14,15,18,0.7) 60%, rgba(14,15,18,0.92) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(232,181,71,0.12), transparent 60%);
}
.dn-content {
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.dn-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 24px;
  opacity: 0.8;
}
.dn-title {
  font-family: var(--font-poster);
  font-style: normal;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  color: inherit;
}
.dn-sub {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  opacity: 0.85;
}
.dn-desc {
  font-family: var(--font-serif-tc);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  opacity: 0.95;
}
.dn-night .dn-title { color: var(--nyc-taxi); }
.dn-day .dn-title { color: var(--canyon-light); }

/* ---------- STYLES (Design history) ---------- */
.styles { background: var(--paper); }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.styles-grid-history { grid-template-columns: repeat(4, 1fr); }
.style-card {
  background: var(--paper);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  position: relative;
  text-align: left;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}
.style-card:hover {
  background: var(--nyc-black);
  color: var(--paper);
  transform: translateY(-3px);
  z-index: 2;
}
.style-card:hover h3,
.style-card:hover h3 span { color: var(--nyc-taxi); }
.style-card:hover > p { color: rgba(255,255,255,0.85); }
.style-card:hover .style-num { color: var(--canyon-rust); }
.style-card:hover .style-tag { color: var(--canyon-sand); }
.style-card:hover .style-era { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.18); }

.style-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.style-era {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.style-num {
  font-family: var(--font-poster);
  font-size: 22px;
  color: var(--canyon-rust);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.style-card h3 {
  font-family: var(--font-serif-tc);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.style-card h3 span {
  font-family: var(--font-poster);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.style-tag {
  font-family: var(--font-serif-tc);
  font-style: italic;
  font-size: 13px;
  color: var(--canyon-rust);
  margin: 0;
  letter-spacing: 0.04em;
}
.style-card > p {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.style-cta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--canyon-rust);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.style-card:hover .style-cta {
  color: var(--nyc-taxi);
  border-top-color: rgba(255,255,255,0.18);
}
.style-card-also { background: var(--canyon-light); }
.style-card-also .style-num { color: var(--canyon-deep); }

/* Featured 2025-2026 callout */
.styles-featured {
  margin-top: 64px;
  padding: 52px 48px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--canyon-cream) 0%, var(--canyon-light) 100%);
  text-align: center;
  position: relative;
}
.featured-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--canyon-rust);
  margin: 0 0 16px;
  font-weight: 600;
}
.featured-title {
  font-family: var(--font-poster);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  margin: 0 0 18px;
  color: var(--ink);
}
.featured-title em {
  font-family: var(--font-poster);
  font-style: normal;
  color: var(--canyon-deep);
  letter-spacing: 0.01em;
}
.featured-sub {
  font-family: var(--font-serif-tc);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 680px;
}

/* ---------- WORKS ---------- */
.works { background: var(--canyon-light); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.work-card-lg,
.work-card-tall,
.work-card-soon {
  /* keep classnames for compat but enforce a single uniform layout */
  grid-column: auto;
}
.work-card-soon { cursor: default; }

.work-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;            /* unified horizontal ratio for ALL thumbs */
  background: var(--ink);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.work-card-lg .work-thumb,
.work-card-tall .work-thumb,
.work-card-soon .work-thumb { aspect-ratio: 3 / 2; }

.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.04); filter: brightness(0.96); }

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.work-card:hover .work-thumb::after { opacity: 1; }

.work-thumb-soon {
  background:
    repeating-linear-gradient(45deg,
      var(--canyon-sand) 0 14px,
      var(--canyon-rust) 14px 28px);
  display: grid; place-items: center;
}
.soon-mark {
  background: var(--nyc-black);
  color: var(--paper);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.work-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canyon-rust);
  font-weight: 600;
}
.work-meta h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-top: 2px;
}
.work-meta p {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.work-view {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- SERVICES ---------- */
.services { background: var(--nyc-black); color: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.service-card {
  background: var(--nyc-black);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s var(--ease);
}
.service-card:hover {
  background: var(--nyc-navy);
}
.service-card-hl {
  background: var(--nyc-navy);
  position: relative;
}
.service-card-hl::before {
  content: "最熱門 · MOST CHOSEN";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--nyc-taxi);
  color: var(--nyc-black);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  padding: 6px 10px;
}
.service-card-hl { padding-top: 50px; }

.service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.service-id {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--nyc-taxi);
  color: var(--nyc-taxi);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper);
  font-weight: 500;
}
.service-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.service-price strong {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--nyc-taxi);
  margin: 0 4px;
}
.service-desc {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 4px;
  line-height: 1.7;
}
.service-card ul {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding-left: 18px;
  position: relative;
}
.service-card ul li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--nyc-taxi);
}

/* ---------- PROCESS ---------- */
.process { background: var(--paper); }
.process-list {
  display: flex;
  flex-direction: column;
}
.process-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  font-weight: 500;
  color: var(--canyon-rust);
  line-height: 1;
}
.process-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
}
.process-body p {
  font-family: var(--font-serif-tc);
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 620px;
  line-height: 1.85;
}

/* ---------- CONTACT ---------- */
.contact { padding: clamp(100px, 12vw, 160px) 0; }
.contact-bg {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}
.contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 1.05;
  margin: 14px 0 32px;
  color: var(--paper);
}
.contact-title em {
  font-style: italic;
  color: var(--nyc-taxi);
}
.contact-sub {
  font-family: var(--font-serif-tc);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0 0 36px;
}
.contact-sub strong { color: var(--nyc-taxi); font-weight: 500; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 18px;
}
.ck {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.contact-list a { color: var(--paper); border-bottom: 1px solid transparent; transition: border-color .25s; }
.contact-list a:hover { border-bottom-color: var(--nyc-taxi); color: var(--nyc-taxi); }
.social { color: var(--paper); display: inline-flex; flex-wrap: wrap; gap: 18px; }
.social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.social-icon {
  flex-shrink: 0;
  color: currentColor;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.social a:hover .social-icon { color: var(--nyc-taxi); transform: translateY(-1px); }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 36px 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper);
  margin: 0 0 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row .field { margin-bottom: 18px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 10px 0 12px;
  color: var(--paper);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  transition: border-color .25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--nyc-taxi);
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--nyc-black); color: var(--paper); }
.form-status {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--nyc-taxi);
  min-height: 1.5em;
}
.field-hint {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-left: 6px;
  text-transform: none;
}
.field-file label { display: flex; align-items: baseline; flex-wrap: wrap; }
.file-drop {
  position: relative;
  border: 1.5px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.02);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  cursor: pointer;
}
.file-drop:hover,
.file-drop.is-dragover {
  border-color: var(--nyc-taxi);
  background: rgba(232, 181, 71, 0.06);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--font-serif-tc);
}
.file-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.file-list:empty { display: none; }
.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.file-list .file-size { color: rgba(255,255,255,0.45); font-variant-numeric: tabular-nums; }
.file-list .file-remove {
  background: none;
  border: 0;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 6px;
}
.file-list .file-remove:hover { color: var(--nyc-flag); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--nyc-black);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-mark { color: var(--paper); display: inline-flex; margin-bottom: 14px; }
.footer-logo {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  background: var(--nyc-black);
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.footer-brand-text .brand-en {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--paper);
}
.footer-brand-text .brand-zh {
  font-family: var(--font-serif-tc);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: rgba(255,255,255,0.6);
}
.footer-tag {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 320px;
  line-height: 1.85;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-cols li { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-cols a { color: rgba(255,255,255,0.85); }
.footer-cols a:hover { color: var(--nyc-taxi); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-stats {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
}
.stat-block {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-poster);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--nyc-taxi);
  font-variant-numeric: tabular-nums;
  min-width: 1.6em;
  text-align: right;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.stat-sep {
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 9, 11, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lb-stage {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--nyc-charcoal);
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.18);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 5;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--nyc-taxi);
  color: var(--nyc-black);
  transform: scale(1.05);
}
.lb-close { top: 28px; right: 28px; font-size: 28px; line-height: 1; }
.lb-prev { left: 28px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lb-next { right: 28px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }

.lb-meta {
  position: fixed;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--paper);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 18px;
}
.lb-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.lb-count {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}

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

/* ============================================================
   NEW SECTIONS · world-class refinements
   ============================================================ */

/* Utility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Side dot nav ---------- */
.side-nav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: block;
  pointer-events: none;
}
.side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 6px 8px;
}
.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1.5px solid rgba(20,18,14,0.45);
  pointer-events: auto;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
}
.side-nav a span {
  position: absolute;
  right: 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--paper);
  white-space: nowrap;
  background: var(--nyc-black);
  padding: 4px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
}
.side-nav a:hover { background: var(--nyc-taxi); transform: scale(1.2); border-color: var(--canyon-deep); }
.side-nav a:hover span { opacity: 1; transform: translateX(0); }
.side-nav a.is-active {
  background: var(--canyon-rust);
  border-color: var(--canyon-rust);
  transform: scale(1.35);
  box-shadow: 0 0 0 2px rgba(250,244,232,0.85);
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: var(--canyon-light);
  padding: clamp(110px, 13vw, 180px) 0;
  position: relative;
}
.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 60px;
  background: var(--canyon-rust);
  opacity: 0.5;
}
.manifesto::before { top: 40px; }
.manifesto::after { bottom: 40px; }
.manifesto-inner {
  max-width: 840px;
  text-align: center;
}
.manifesto .eyebrow {
  color: var(--canyon-rust);
  margin-bottom: 32px;
}
.manifesto-quote {
  margin: 0 0 36px;
  position: relative;
  padding: 0 12px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--canyon-sand);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-180px);
  opacity: 0.45;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.005em;
}
.manifesto-quote em {
  font-family: var(--font-poster);
  font-style: normal;
  color: var(--canyon-rust);
  letter-spacing: 0;
}
.manifesto-body {
  max-width: 640px;
  margin: 0 auto;
}
.manifesto-body p {
  font-family: var(--font-serif-tc);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.manifesto-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.brand-token {
  font-family: var(--font-poster);
  font-size: 0.95em;
  letter-spacing: 0.04em;
  color: var(--canyon-rust);
  background: transparent;
  padding: 0 4px;
  font-weight: 400;
}
.manifesto-body strong {
  font-family: var(--font-poster);
  font-weight: 400;
  font-size: 0.95em;
  color: var(--canyon-rust);
  letter-spacing: 0.02em;
}
.manifesto-body em {
  color: var(--canyon-deep);
  font-weight: 500;
  font-style: italic;
}
.manifesto-divider {
  text-align: center;
  margin: 12px 0 !important;
  letter-spacing: 0.6em;
  color: var(--canyon-sand);
  font-family: var(--font-display);
}
.sign-rule {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--canyon-rust);
}
.sign-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--canyon-deep);
  text-transform: uppercase;
}

/* ---------- MATERIAL LIBRARY ---------- */
.materials { background: var(--paper); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  margin-top: 16px;
}
.material-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform .35s var(--ease);
}
.material-card:hover { transform: translateY(-4px); }
.material-swatch {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s var(--ease);
}
.material-card:hover .material-swatch {
  box-shadow: 0 12px 36px -12px rgba(107, 59, 34, 0.4);
}
.material-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08));
}
.mat-cta {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--canyon-rust);
}
.material-card:hover .mat-cta { color: var(--nyc-taxi); background: var(--nyc-black); padding: 4px 8px; align-self: flex-start; }

/* ---- New material category swatches ---- */
.mat-marble-bg {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(180,180,180,0.55), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(150,150,170,0.45), transparent 50%),
    linear-gradient(135deg, #F4F2EE 0%, #E8E5DF 100%);
}
.mat-veneer-bg {
  background:
    repeating-linear-gradient(95deg, #5B3A22 0px, #6B4528 6px, #7A4F2E 12px, #6B4528 18px),
    linear-gradient(180deg, #4A2E1A, #6B4528);
}
.mat-floor-bg {
  background:
    repeating-linear-gradient(92deg, #C9A672 0px, #D5B281 8px, #BE9762 16px, #D5B281 24px),
    linear-gradient(180deg, #B89968, #C9A672);
}
.mat-metal-bg {
  background:
    linear-gradient(135deg, #C9A24E 0%, #E6C97A 40%, #B88B3A 70%, #DEB55E 100%);
}
.mat-paint-bg {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(180,160,140,0.3), transparent 50%),
    linear-gradient(135deg, #EDE2D0, #D8C6AC);
}
.mat-oilpaint-bg {
  background:
    linear-gradient(135deg, #3A4E5C 0%, #5A6F7E 35%, #C49A6C 70%, #E8D5BA 100%);
}
.mat-fabric-bg {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 6px),
    linear-gradient(135deg, #C8AE94, #A78A6D);
}
.mat-glass-bg {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.1) 100%),
    linear-gradient(135deg, #C5D9DC 0%, #99B6BC 50%, #C5D9DC 100%);
}
.mat-systempanel-bg {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.05)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 4px, transparent 4px 8px),
    linear-gradient(135deg, #E2D8C5 0%, #C7B79A 100%);
}
.mat-film-bg {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(0,0,0,0.15) 100%),
    repeating-linear-gradient(45deg, #6B4528 0 12px, #4A2E1A 12px 24px),
    linear-gradient(135deg, #6B4528, #4A2E1A);
}
.mat-carrara {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(180,180,180,0.5), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(150,150,170,0.4), transparent 50%),
    linear-gradient(135deg, #F4F2EE 0%, #E8E5DF 100%);
}
.mat-walnut {
  background:
    repeating-linear-gradient(95deg,
      #5B3A22 0px, #6B4528 6px, #7A4F2E 12px, #6B4528 18px),
    linear-gradient(180deg, #4A2E1A, #6B4528);
}
.mat-oak {
  background:
    repeating-linear-gradient(92deg,
      #C9A672 0px, #D5B281 8px, #BE9762 16px, #D5B281 24px),
    linear-gradient(180deg, #B89968, #C9A672);
}
.mat-brass {
  background:
    linear-gradient(135deg, #C9A24E 0%, #E6C97A 40%, #B88B3A 70%, #DEB55E 100%);
}
.mat-lime {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(180,160,140,0.3), transparent 50%),
    linear-gradient(135deg, #EDE2D0, #D8C6AC);
}
.mat-fabric {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 6px),
    linear-gradient(135deg, #C8AE94, #A78A6D);
}
.mat-washi {
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, #F5EDE0, #E8DDC8);
}
.mat-slate {
  background:
    linear-gradient(135deg, #3A3D44 0%, #4D515A 30%, #2E3036 60%, #454850 100%);
}
.material-info { display: flex; flex-direction: column; gap: 4px; }
.material-origin {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--canyon-rust);
  font-weight: 600;
}
.material-info h3 {
  font-family: var(--font-serif-tc);
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.material-info h3 span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.material-info p {
  font-family: var(--font-serif-tc);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}
.materials-note {
  margin: 56px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-serif-tc);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--nyc-black); color: var(--paper); }
.testimonial-stage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  min-height: 360px;
}
.testimonial {
  margin: 0;
  text-align: center;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.t-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.55;
  color: var(--paper);
  margin: 0 auto 28px;
  max-width: 820px;
  position: relative;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.t-quote em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--nyc-taxi);
  font-weight: 500;
}
.t-mark {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.6;
  color: var(--nyc-taxi);
  position: relative;
  top: 16px;
  margin-right: 8px;
  opacity: 0.7;
}
.t-quote figcaption,
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.t-author {
  font-family: var(--font-serif-tc);
  font-weight: 500;
  font-size: 15px;
  color: var(--paper);
}
.t-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .25s var(--ease);
}
.t-dot:hover { border-color: var(--nyc-taxi); }
.t-dot.is-active { background: var(--nyc-taxi); border-color: var(--nyc-taxi); }

/* ---------- STUDIO TEAM ---------- */
.team { background: var(--canyon-light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--canyon-cream);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.team-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,152,90,0.25), transparent 60%),
    linear-gradient(135deg, var(--canyon-cream), var(--canyon-sand) 110%);
}
.team-photo-placeholder span {
  font-family: var(--font-poster);
  font-size: 84px;
  color: rgba(107, 59, 34, 0.32);
  letter-spacing: 0;
  line-height: 1;
}
.team-info { display: flex; flex-direction: column; gap: 4px; }
.team-role {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--canyon-rust);
  font-weight: 600;
}
.team-info h3 {
  font-family: var(--font-serif-tc);
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 2px;
}
.team-info p {
  font-family: var(--font-serif-tc);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.75;
}
.team-note {
  margin: 56px auto 0;
  max-width: 600px;
  text-align: center;
  font-family: var(--font-serif-tc);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---------- AWARDS (international recognition) ---------- */
.awards-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin: 14px auto 48px;
  text-align: center;
  letter-spacing: -0.005em;
}
.awards-title em {
  font-style: italic;
  color: var(--canyon-rust);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 16px;
  text-align: left;
}
.award-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--canyon-light);
  padding: 32px;
  border: 1px solid var(--line);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.award-card:hover {
  box-shadow: 0 20px 48px -16px rgba(184, 85, 46, 0.35);
  transform: translateY(-3px);
}
.award-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.award-thumb-badge { aspect-ratio: 1 / 1; }
.award-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.award-info { display: flex; flex-direction: column; gap: 6px; }
.award-year {
  font-family: var(--font-poster);
  font-size: 36px;
  color: var(--canyon-rust);
  line-height: 1;
  letter-spacing: 0.02em;
}
.award-info h3 {
  font-family: var(--font-poster);
  font-size: 22px;
  letter-spacing: 0.03em;
  margin: 4px 0 8px;
  color: var(--ink);
  text-transform: uppercase;
}
.award-cat {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}
.award-project {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: var(--ink);
  margin: 6px 0 0;
}
.award-project em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--canyon-rust);
  font-size: 16px;
}
.award-issuer {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin: 8px 0 0;
}

@media (max-width: 1080px) {
  .awards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .award-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .award-thumb { max-width: 280px; margin: 0 auto; }
}

/* ---------- PRESS ---------- */
.press {
  background: var(--paper);
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-inner { text-align: center; }
.press-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 28px;
  font-weight: 500;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 0;
}
.press-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
  line-height: 1.15;
}
.press-logo strong {
  font-family: var(--font-poster);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.press-logo em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.press-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}
.press-note {
  margin: 32px 0 0;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mute);
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: var(--font-serif-tc);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
  gap: 24px;
}
.faq-q:hover { color: var(--canyon-rust); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--canyon-rust);
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
  background: var(--canyon-rust);
  color: var(--paper);
  border-color: var(--canyon-rust);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .3s var(--ease);
}
.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 480px;
  padding: 0 0 28px;
}
.faq-a p {
  font-family: var(--font-serif-tc);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
  max-width: 760px;
}

/* ---------- JOURNAL ---------- */
.journal { background: var(--paper); border-top: 1px solid var(--line); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.journal-card:hover { transform: translateY(-4px); }
.journal-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.j-cover-1 {
  background:
    repeating-linear-gradient(90deg, #B85534 0 33%, #C49A6C 33% 66%, #2A4E63 66% 100%);
}
.j-cover-2 {
  background:
    repeating-linear-gradient(95deg, #8B5A2E 0px, #A06D38 6px, #6B4528 12px, #A06D38 18px),
    linear-gradient(180deg, #5A3618, #8B5A2E);
}
.j-cover-3 {
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.5), transparent 50%),
    linear-gradient(135deg, #4A6B5C 0%, #2D4A3E 60%, #1B2E2A 100%);
}
.journal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}
.j-cat { color: var(--canyon-rust); font-weight: 600; }
.j-date { color: var(--ink-mute); font-style: italic; }
.journal-card h3 {
  font-family: var(--font-serif-tc);
  font-size: 22px;
  font-weight: 500;
  margin: 4px 0 4px;
  line-height: 1.4;
}
.journal-card p {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.8;
}
.j-read {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canyon-rust);
}
.journal-more { text-align: center; margin-top: 60px; }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); }

/* ---------- WORK TAGS (metadata on cards) ---------- */
.work-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work-tags .work-cat { font-weight: 600; color: var(--canyon-rust); }
.work-tags .work-loc,
.work-tags .work-year { color: var(--ink-mute); }
.work-dot { color: var(--ink-mute); opacity: 0.5; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 40px;
  background: var(--nyc-navy);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 60px;
}
.newsletter-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nyc-taxi);
  margin: 0 0 12px;
  font-weight: 600;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 12px;
  color: var(--paper);
  font-weight: 500;
}
.newsletter-sub {
  font-family: var(--font-serif-tc);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.8;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 12px 0;
  color: var(--paper);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .25s var(--ease);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-bottom-color: var(--nyc-taxi);
}
.newsletter-form .btn { padding: 14px 26px; font-size: 12px; }
.newsletter-status {
  width: 100%;
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--nyc-taxi);
  min-height: 1.2em;
}

/* ============================================================
   DETAIL MODAL — style / material click reveals full info + gallery
   ============================================================ */
.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 60px 24px;
}
.detail-modal.is-open { display: flex; }
.dm-wrap {
  background: var(--paper);
  width: 100%;
  max-width: 1080px;
  border-radius: 4px;
  padding: 60px 60px 80px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.dm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nyc-black);
  color: var(--paper);
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 5;
}
.dm-close:hover { background: var(--canyon-rust); transform: rotate(90deg); }
.dm-era {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--canyon-rust);
  border: 1px solid var(--canyon-rust);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 18px;
}
.dm-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.dm-title span {
  display: block;
  font-family: var(--font-poster);
  font-size: 0.45em;
  color: var(--ink-mute);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.dm-tag {
  font-family: var(--font-serif-tc);
  font-style: italic;
  font-size: 18px;
  color: var(--canyon-rust);
  margin: 0 0 36px;
  letter-spacing: 0.02em;
}
.dm-body p {
  font-family: var(--font-serif-tc);
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 760px;
}
.dm-body strong { color: var(--canyon-rust); font-weight: 500; }
.dm-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 48px 0 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.dm-gallery-head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}
.dm-gallery-count {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dm-gallery a {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  position: relative;
}
.dm-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.dm-gallery a:hover img { transform: scale(1.05); }

.dm-empty {
  text-align: center;
  padding: 48px 20px;
  background: var(--canyon-light);
  border: 1px dashed var(--line);
  margin-top: 24px;
}
.dm-empty p { font-family: var(--font-serif-tc); margin: 8px 0; color: var(--ink-soft); }
.dm-empty p strong { color: var(--canyon-rust); }
.dm-empty-hint { font-size: 13px; line-height: 2; }
.dm-empty code {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  background: rgba(184, 85, 46, 0.1);
  color: var(--canyon-deep);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .dm-wrap { padding: 50px 28px 48px; }
  .dm-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .side-nav { display: none; } /* hide on smaller screens */
}
@media (max-width: 1180px) {
  .styles-grid-history { grid-template-columns: repeat(3, 1fr); }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 1080px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card,
  .work-card-lg,
  .work-card-tall,
  .work-card-soon { grid-column: auto; }
}

@media (max-width: 980px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .press-row { gap: 8px 16px; }
  .press-divider { display: none; }
  .testimonial-stage { min-height: 420px; }
}
@media (max-width: 800px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nyc-black);
    padding: 24px 40px 28px;
    gap: 6px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav.is-open a { padding: 12px 0; font-size: 16px; color: var(--paper); }
  .nav.is-open a::after { background: var(--nyc-taxi); }

  .story-grid { grid-template-columns: 1fr; }
  .daynight { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card, .work-card-lg, .work-card-tall, .work-card-soon { grid-column: 1 / -1; }
  .work-card-lg .work-thumb { aspect-ratio: 16/10; }
  .work-card-tall .work-thumb, .work-card-soon .work-thumb { aspect-ratio: 16/10; }

  .process-list li { grid-template-columns: 80px 1fr; gap: 20px; }
  .process-num { font-size: 42px; }

  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  .field-row { grid-template-columns: 1fr; }

  /* New sections on mobile */
  .manifesto::before, .manifesto::after { display: none; }
  .quote-mark { display: none; }
  .materials-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr; gap: 28px; }
  .journal-grid { grid-template-columns: 1fr; gap: 28px; }
  .press-logo { padding: 0 14px; }
  .press-logo strong { font-size: 18px; }
  .faq-q { font-size: 16px; padding: 22px 0; gap: 14px; }
  .newsletter { padding: 36px 24px; }

  .lb-close { top: 18px; right: 18px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
}

@media (max-width: 540px) {
  .container { padding: 0 22px; }
  .hero-inner { padding: 140px 0 100px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 12px; }
  .footer-cols { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 60px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .scroll-line::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   EDIT MODE — activated by ?edit URL param
   ============================================================ */
html.edit-mode [contenteditable] {
  cursor: text;
  transition: outline-color .2s var(--ease), background-color .2s var(--ease);
  outline: 1px dashed transparent;
  outline-offset: 4px;
  border-radius: 2px;
}
html.edit-mode [contenteditable]:hover {
  outline-color: rgba(196, 90, 42, 0.55);
  background-color: rgba(232, 181, 71, 0.08);
}
html.edit-mode [contenteditable]:focus {
  outline: 2px solid var(--nyc-taxi);
  outline-offset: 4px;
  background-color: rgba(232, 181, 71, 0.14);
}

.edit-toolbar {
  position: fixed;
  top: 86px;
  right: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: calc(100vw - 44px);
  background: rgba(14, 15, 18, 0.96);
  color: var(--paper);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  font-family: var(--font-sans);
  font-size: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.edit-toolbar .edit-badge {
  color: var(--nyc-taxi);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.edit-toolbar .edit-hint {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.edit-toolbar button {
  background: var(--nyc-taxi);
  color: var(--nyc-black);
  border: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.edit-toolbar button:hover { background: var(--canyon-sand); transform: translateY(-1px); }
.edit-toolbar button:active { transform: translateY(0); }
.edit-toolbar #editReset { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.2); }
.edit-toolbar #editReset:hover { background: rgba(255,255,255,0.06); color: var(--paper); }
.edit-toolbar a {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 6px;
}
.edit-toolbar a:hover { color: var(--nyc-taxi); }

.edit-flash {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--nyc-black);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--nyc-taxi);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 250;
  pointer-events: none;
}
.edit-flash.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.edit-flash.is-error { border-color: var(--nyc-flag); color: #FFD2C8; }

@media (max-width: 720px) {
  .edit-toolbar { top: auto; bottom: 20px; right: 12px; left: 12px; max-width: calc(100vw - 24px); border-radius: 16px; justify-content: center; }
  .edit-toolbar .edit-hint { display: none; }
}

/* ═══════ Back to top button ═══════ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
