/* ============================================================
   TIMBERZONE STUDIO — Black & White Edition
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

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

:root {
  --white:     #ffffff;
  --off-white: #f8f8f6;
  --light:     #f0efed;
  --mid:       #c8c6c2;
  --muted:     #8a8880;
  --dark:      #2a2926;
  --ink:       #111110;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--ink); }

/* ── UTILITIES ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--mid); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: rgba(255,255,255,0.4); }
.eyebrow.light::before { background: rgba(255,255,255,0.2); }

.section-title { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--ink); margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--ink); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--white); }
.section-title.center { text-align: center; }

.section-body { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.95; max-width: 480px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--dark); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--light); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(17,17,16,0.3); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: white; }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--mid);
  padding-bottom: 0.15rem;
  transition: border-color 0.25s;
}
.link-line:hover { border-color: var(--ink); }
.link-line.light { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.link-line.light:hover { color: white; border-color: white; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 0.1rem; }
.nav-logo-main { font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.nav-logo-sub { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: #ffffff; letter-spacing: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: #ffffff;
  transform: scaleX(0); transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #ffffff; }
.nav-cta {
  font-size: 0.62rem !important; font-weight: 500 !important; letter-spacing: 0.2em !important;
  color: #0c0c0c !important; background: #ffffff; padding: 0.65rem 1.5rem;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.85) !important; color: #0c0c0c !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: #ffffff; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--serif); font-size: 2rem; font-style: italic; color: var(--ink); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--muted); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--ink); background: none; border: none; cursor: pointer; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.72) 0%, rgba(17,17,16,0.22) 45%, rgba(17,17,16,0.06) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 5.5rem 5.5rem; max-width: 820px; }
.hero-tag {
  display: inline-block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.22); padding: 0.45rem 1.1rem; margin-bottom: 1.6rem;
  animation: fadeUp 0.8s var(--ease) both 0.3s;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; color: var(--white);
  line-height: 1.08; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) both 0.5s;
}
.hero h1 em { font-style: italic; color: var(--white); }
.hero-sub {
  font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.55);
  max-width: 420px; line-height: 1.95; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) both 0.65s;
}
.hero-btns { display: flex; gap: 1rem; animation: fadeUp 0.8s var(--ease) both 0.8s; }
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; right: 3.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero-scroll-indicator span { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollAnim 2.2s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── STATS STRIP ── */
.stats-strip { background: #000000; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.25rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 0.35rem; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; font-style: italic; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); }

/* ── EDITORIAL SPLIT ── */
.editorial { display: grid; grid-template-columns: 1fr 1fr; }
.editorial.flip { direction: rtl; }
.editorial.flip > * { direction: ltr; }
.editorial-media { position: relative; overflow: hidden; min-height: 540px; }
.editorial-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.9s var(--ease);
}
.editorial:hover .editorial-media img { transform: scale(1.04); }
.editorial-text { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.editorial-text.light-bg { background: var(--off-white); }
.editorial-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.7rem); margin-bottom: 1.25rem; color: var(--ink); }
.editorial-text h2 em { font-style: italic; color: var(--ink); }
.editorial-text p { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.95; margin-bottom: 1.25rem; max-width: 420px; }
.editorial-text p:last-of-type { margin-bottom: 2rem; }

/* ── COLLECTIONS ── */
.collections-section { padding: 7rem 4rem; background: var(--off-white); }
.collections-header { text-align: center; margin-bottom: 4rem; }
.collections-header p { font-size: 0.88rem; font-weight: 300; color: var(--muted); max-width: 520px; margin: 0.75rem auto 0; line-height: 1.9; }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.collection-card { cursor: pointer; transition: transform 0.4s var(--ease); }
.collection-card:hover { transform: translateY(-4px); }
.collection-card-img { height: 380px; overflow: hidden; position: relative; }
.collection-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.collection-card:hover .collection-card-img img { transform: scale(1.06); }
.collection-card-info { padding: 1.25rem 0 0.5rem; }
.card-species { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.card-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; }
.card-sub { font-size: 0.75rem; font-weight: 300; color: var(--mid); }
.collections-cta { text-align: center; margin-top: 3.5rem; }

/* ── QUOTE ── */
.quote-section { background: #000000; padding: 7rem 4rem; text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 6rem; line-height: 0.4; color: var(--white); opacity: 0.1; display: block; margin-bottom: 1.5rem; }
.quote-text { font-family: var(--serif); font-size: clamp(1.3rem, 2.8vw, 2rem); font-style: italic; font-weight: 400; color: var(--white); max-width: 700px; margin: 0 auto; line-height: 1.65; }
.quote-attr { margin-top: 2.25rem; font-size: 0.68rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.quote-attr strong { color: rgba(255,255,255,0.5); font-weight: 400; }

/* ── SERVICES ── */
.services-section { padding: 7rem 4rem; background: var(--white); }
.services-header { max-width: 540px; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.svc-card { padding: 2.5rem 2rem; border: 1px solid rgba(17,17,16,0.1); background: var(--white); transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease); }
.svc-card:hover { border-color: var(--ink); background: var(--off-white); transform: translateY(-3px); }
.svc-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; font-style: italic; color: rgba(17,17,16,0.08); line-height: 1; margin-bottom: 1.5rem; }
.svc-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.85rem; }
.svc-text { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ── PROCESS ── */
.process-section { background: var(--off-white); padding: 7rem 4rem; }
.process-header { text-align: center; margin-bottom: 4.5rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-connector { position: absolute; top: 1.25rem; left: calc(12.5% + 1.25rem); right: calc(12.5% + 1.25rem); height: 1px; background: rgba(17,17,16,0.1); }
.proc-step { text-align: center; padding: 0 1.75rem; }
.proc-dot {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(17,17,16,0.2); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem; position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.proc-dot span { font-family: var(--serif); font-size: 0.85rem; font-style: italic; color: var(--ink); transition: color 0.3s; }
.proc-step:hover .proc-dot { background: var(--ink); border-color: var(--ink); }
.proc-step:hover .proc-dot span { color: var(--white); }
.proc-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; }
.proc-text { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ── SHOWROOM / VISIT US ── matches Try-the-Studio proportions for editorial consistency */
.showroom-section {
  background: #000000;
  padding: 8rem 4rem;
}
.showroom-section-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;   /* image-left bigger, mirroring Try-the-Studio's 1fr / 1.15fr (visual-bigger) */
  gap: 5rem;
  align-items: center;
}
.showroom-media {
  position: relative;
  overflow: hidden;
  background: #000000;
  aspect-ratio: 4 / 3;                 /* honours the photo's natural shape so 'contain' has no empty bars */
}
.showroom-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.showroom-content { display: flex; flex-direction: column; }
.showroom-narrative { max-width: 520px; }
.showroom-narrative .eyebrow {
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 1.5rem !important;
}
.showroom-narrative .eyebrow::before { background: rgba(255,255,255,0.45); }
.showroom-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
}
.showroom-content h2 em { font-style: italic; color: #ffffff; }
.showroom-content p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 1.75rem;
}

/* ── GALLERY STRIP ── */
.gallery-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 480px; gap: 2px; background: var(--light); }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,16,0.65) 0%, transparent 55%); opacity: 0; transition: opacity 0.4s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { position: absolute; bottom: 1.5rem; left: 1.75rem; font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--white); opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s; }
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* ── CONTACT ── */
.contact-section { padding: 7rem 4rem; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 7rem; align-items: start; max-width: 1140px; margin: 0 auto; }
.contact-intro h2 { font-size: clamp(1.9rem, 2.8vw, 2.7rem); margin-bottom: 1.25rem; color: var(--ink); }
.contact-intro h2 em { color: var(--ink); font-style: italic; }
.contact-intro p { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.95; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.detail-key { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); width: 70px; flex-shrink: 0; padding-top: 0.15rem; }
.detail-val { font-size: 0.85rem; font-weight: 300; color: var(--dark); }
.detail-val a { color: var(--ink); border-bottom: 1px solid var(--mid); transition: border-color 0.2s; }
.detail-val a:hover { border-color: var(--ink); }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { margin-bottom: 1.5rem; }
.form-field label { display: block; font-size: 0.58rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.88rem; font-weight: 300;
  color: var(--ink); background: var(--white); border: 1px solid rgba(17,17,16,0.15);
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.25s;
  -webkit-appearance: none; border-radius: 0;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--mid); }
.form-field textarea { resize: none; height: 120px; }
.form-field select option { background: var(--white); color: var(--ink); }

/* ── FOOTER ── */
.site-footer { background: #000000; padding: 4rem 4rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-name { font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.38em; text-transform: uppercase; color: #ffffff; margin-bottom: 0.25rem; }
.footer-brand-sub { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: #ffffff; margin-bottom: 1.25rem; }
.footer-about { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.85; max-width: 240px; }
.footer-col-title { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.footer-links-list { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links-list a { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links-list a:hover { color: #ffffff; }
.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.62rem; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-social a:hover { color: #ffffff; }

/* ── PAGE HERO ── */
.page-hero { height: 50vh; min-height: 380px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding-top: 72px; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,16,0.75) 0%, rgba(17,17,16,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 5.5rem 4rem; }
.page-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 0.5rem; }
.page-hero-content h1 em { font-style: italic; color: var(--white); }
.page-hero-content p { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.48); max-width: 480px; }

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .site-nav { padding: 0 2.5rem; }
  .nav-links { gap: 1.75rem; }
  .hero-content { padding: 0 3.5rem 4rem; }
  .editorial-text { padding: 4rem 3.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { padding: 0 1.75rem; }
  .editorial { grid-template-columns: 1fr; }
  .editorial.flip { direction: ltr; }
  .editorial-media { min-height: 360px; }
  .editorial-text { padding: 3.5rem 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-connector { display: none; }
  .showroom-section { padding: 5rem 1.5rem; }
  .showroom-section-grid { grid-template-columns: 1fr; gap: 3rem; }
  .showroom-media { aspect-ratio: auto; height: 320px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-content { padding: 0 2rem 3.5rem; }
  .hero-scroll-indicator { display: none; }
  .collections-section, .services-section, .process-section, .contact-section { padding: 5rem 2rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer { padding: 3rem 2rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SAMPLE REQUEST MODAL — opens with OnePageCRM web form
   ============================================================ */
.sample-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.sample-modal.is-open {
  display: flex;
  opacity: 1;
}
.sample-modal-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: calc(100vh - 4rem);
  max-height: calc(100vh - 4rem);
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.sample-modal.is-open .sample-modal-panel {
  transform: translateY(0);
  opacity: 1;
}
.sample-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(17,17,16,0.08);
  background: #ffffff;
}
.sample-modal-eyebrow {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.sample-modal-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.sample-modal-title em { font-style: italic; }
.sample-modal-close {
  font-size: 1.6rem;
  font-weight: 200;
  color: rgba(17,17,16,0.5);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem 0 0;
  transition: color 0.2s;
}
.sample-modal-close:hover { color: var(--ink); }
.sample-modal-body {
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}
.sample-modal-form-mount {
  display: none;
  padding: 1.5rem 2rem 2rem;
  background: #ffffff;
  min-height: 200px;
}
.sample-modal-form-mount .opcrm-webform {
  width: 100%;
}
.sample-modal-form-mount iframe {
  width: 100% !important;
  border: 0 !important;
  display: block;
}
.sample-modal-loading {
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17,17,16,0.4);
}
/* Placeholder shown until the OnePageCRM URL is configured */
.sample-modal-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: #fafaf7;
}
.sample-modal-placeholder-mark {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.sample-modal-placeholder-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 380px;
  margin: 0 auto 1.5rem;
}
.sample-modal-placeholder-note {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,16,0.45);
  border: 1px dashed rgba(17,17,16,0.25);
  padding: 0.6rem 1rem;
  margin-top: 1rem;
}
.sample-modal-context {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.sample-modal-context strong {
  font-weight: 500;
  color: var(--ink);
}
.sample-modal-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(17,17,16,0.18);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem 0.35rem 0.55rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
}
.sample-modal-copy:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.sample-modal-copy.is-copied {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.sample-modal-copy-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.sample-modal-copy-label {
  display: inline-block;
}
@media (max-width: 600px) {
  .sample-modal { padding: 0; align-items: stretch; }
  .sample-modal-panel { max-width: none; max-height: 100vh; height: 100vh; }
  .sample-modal-header { padding: 1.25rem 1.5rem 1rem; }
  .sample-modal-title { font-size: 1.15rem; }
  .sample-modal-form-mount { padding: 1rem 1.5rem 1.5rem; }
}

/* Lock background scroll when modal is open */
body.modal-open { overflow: hidden; }

/* ============================================================
   TRUSTED BY — Logo carousel
   ============================================================ */
.trusted {
  background: #000000;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  position: relative;
}
.trusted-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}
.trusted-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.trusted-eyebrow::before,
.trusted-eyebrow::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* The viewport — clips the moving track */
.trusted-viewport {
  width: 100%;
  overflow: hidden;
  /* Subtle fade at edges so logos drift in/out gracefully */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

/* The track holds two copies of the logo set so the scroll loops seamlessly */
.trusted-track {
  display: flex;
  width: max-content;
  animation: trusted-marquee 50s linear infinite;
}

/* Each logo "slot" — generous height, content-driven width.
   Margin gives breathing space between logos; max-width prevents very wide
   wordmarks from dominating, while individual height tuning per logo
   keeps visual weight even across very different aspect ratios. */
.trusted-logo {
  flex-shrink: 0;
  height: 3rem;            /* default visual height */
  max-width: 16rem;
  margin: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trusted-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease);
}
.trusted-logo:hover img { opacity: 1; }

/* Per-logo height tuning so each brand reads at equal visual weight.
   Wide wordmarks (Daily Mail, Pecasa, BBC, Leon) get reduced height so their
   length doesn't make them dominate; tall/square logos (Nike, AKL, Joseph
   Scott, Worxzone) get fuller height because their height = their presence. */
.trusted-logo.tw-nike         { height: 3.25rem; }
.trusted-logo.tw-daily-mail   { height: 2rem;    max-width: 12rem; }
.trusted-logo.tw-akl-joinery  { height: 3rem; }
.trusted-logo.tw-worxzone     { height: 3.25rem; }
.trusted-logo.tw-pecasa       { height: 1.9rem;  max-width: 10rem; }
.trusted-logo.tw-joseph-scott { height: 3.5rem; }
.trusted-logo.tw-bbc          { height: 1.75rem; max-width: 9rem; }   /* three blocks read wide */
.trusted-logo.tw-fortnum      { height: 2.4rem;  max-width: 11rem; }  /* heritage serif — bit taller */
.trusted-logo.tw-leon         { height: 1.9rem;  max-width: 9rem; }   /* clean wide wordmark */
.trusted-logo.tw-per-tutti    { height: 2rem;    max-width: 10rem; }  /* serif with sprig — slim */
.trusted-logo.tw-barnet-fc    { height: 3.5rem; }                     /* crest + text stacked */

/* The marquee animation: shift the track by exactly half its width
   (one full copy of the logo set). Because the second copy follows
   identically, the loop is seamless. */
@keyframes trusted-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Respect reduced-motion preferences — important for accessibility */
@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .trusted-track > *:nth-child(n+12) { display: none; } /* hide the duplicate set (11 logos) */
}

/* Mobile sizing */
@media (max-width: 768px) {
  .trusted { padding: 3.5rem 0 4rem; }
  .trusted-header { margin-bottom: 2rem; }
  .trusted-logo {
    margin: 0 1.5rem;
    max-width: 10rem;
  }
  .trusted-logo.tw-nike         { height: 2.25rem; }
  .trusted-logo.tw-daily-mail   { height: 1.4rem;  max-width: 8rem; }
  .trusted-logo.tw-akl-joinery  { height: 2rem; }
  .trusted-logo.tw-worxzone     { height: 2.25rem; }
  .trusted-logo.tw-pecasa       { height: 1.3rem;  max-width: 7rem; }
  .trusted-logo.tw-joseph-scott { height: 2.5rem; }
  .trusted-logo.tw-bbc          { height: 1.2rem;  max-width: 6rem; }
  .trusted-logo.tw-fortnum      { height: 1.7rem;  max-width: 7.5rem; }
  .trusted-logo.tw-leon         { height: 1.3rem;  max-width: 6rem; }
  .trusted-logo.tw-per-tutti    { height: 1.4rem;  max-width: 7rem; }
  .trusted-logo.tw-barnet-fc    { height: 2.5rem; }
  .trusted-track { animation-duration: 38s; }
}


/* ============================================================
   PLANK CINEMA — scroll-driven frame sequence reveal
   ============================================================
   A single sticky stage holds 9 frames stacked on top of each other.
   As the user scrolls through the section (450vh tall), a 0-1 progress
   value drives which frame is visible. Adjacent frames cross-fade
   gently to mask the transitions, so 9 frames feel like ~36 of motion.
   5 text panels overlay at scene boundaries. */

.plank-cinema {
  position: relative;
  background: #000000;
  height: 220vh;
  --progress: 0;
}

.pc-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-plank-wrap {
  position: relative;
  width: min(82vw, 1280px);
  aspect-ratio: 1800 / 960;
}

/* Single img element — JS swaps .src to scrub through the frames.
   The mask softly fades the image edges into the surrounding black
   so the plank floats in the void rather than sitting in a visible
   rectangular frame. The fade is generous on the sides (less subject
   matter there) and gentler at top/bottom (more chance the plank
   itself extends to those edges). */
.pc-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 90% 95% at center, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 95% at center, #000 55%, transparent 100%);
}

.pc-copy {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%) translateY(20px);
  width: min(82vw, 720px);
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 10;
}
.pc-copy.is-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pc-copy-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.pc-copy-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.pc-copy-title em { font-style: italic; }

.pc-progress {
  position: absolute;
  bottom: 4.5vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(56vw, 420px);
  height: 1px;
  background: rgba(255,255,255,0.12);
  z-index: 11;
}
.pc-progress-fill {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  transform-origin: left center;
  transform: scaleX(var(--progress));
  transition: transform 0.1s linear;
}

@media (max-width: 768px) {
  .plank-cinema { height: 180vh; }
  .pc-plank-wrap { width: 92vw; }
  .pc-copy { bottom: 7vh; width: 92vw; }
  .pc-copy-title { font-size: clamp(1.3rem, 6vw, 2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .plank-cinema { height: auto; }
  .pc-stage { position: static; height: auto; padding: 4rem 2rem; display: block; }
  .pc-plank-wrap { margin: 0 auto 2rem; }
  .pc-frame-img { position: relative; }
  .pc-copy { position: relative; opacity: 1; transform: none; margin: 2rem auto 3rem; bottom: auto; }
  .pc-progress { display: none; }
}


/* Visually-hidden utility (accessible to screen readers, hidden from sight) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

