/* ==========================================================================
   Dutch Furniture Workshop — styles
   Palette: Delft blue, chalk, ink, saddle tan (brass tacks & buttons)
   Type:    Young Serif (display) + Figtree (body)
   ========================================================================== */

:root {
  --delft: #1F3D7A;
  --delft-deep: #16305F;
  --cobalt: #2E5BB8;
  --cobalt-soft: #E4EBF8;
  --chalk: #F3F5F8;
  --white: #FFFFFF;
  --ink: #151B27;
  --ink-2: #3A4354;
  --mute: #6B7486;
  --line: #D9DEE6;
  --saddle: #B5793C;
  --saddle-deep: #8F5C28;
  --saddle-soft: #F3EADC;

  --font-display: "Young Serif", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.85rem, 0.82rem + 0.15vw, 0.93rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.25rem + 1vw, 2rem);
  --step-3: clamp(1.9rem, 1.5rem + 2vw, 2.9rem);
  --step-4: clamp(2.5rem, 1.8rem + 3.6vw, 4.6rem);

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 6px;
  --shadow: 0 20px 50px -20px rgba(21, 27, 39, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--delft); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.1; letter-spacing: -0.005em; }
h1, h2 { font-family: var(--font-display); }
h3, h4 { font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--saddle); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 4px;
}
.skip-link:focus { top: 12px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap--narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saddle-deep); margin-bottom: 14px;
}
.eyebrow--light { color: #E5C9A3; }

/* running stitch: the one repeating motif */
.stitch::after {
  content: ""; display: block; width: 72px; margin-top: 18px;
  border-top: 2px dashed var(--saddle);
}
.stitch--center::after { margin-inline: auto; }
.stitch--light::after { border-color: #E5C9A3; }

.lede { font-size: var(--step-1); color: var(--ink-2); line-height: 1.5; max-width: 62ch; }
.muted { color: var(--mute); }
.text-center { text-align: center; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--white { background: var(--white); }
.section--delft { background: var(--delft); color: #fff; }
.section--ink { background: var(--ink); color: #fff; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: var(--step-3); }
.section-head p { margin-top: 18px; }
.section--delft .section-head p, .section--ink .section-head p { color: rgba(255,255,255,0.78); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; line-height: 1;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--saddle); color: #fff; }
.btn--primary:hover { background: var(--saddle-deep); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--delft-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { border-color: #fff; color: #fff; }
.btn--small { padding: 10px 16px; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.05; }
.brand__name small { display: block; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-top: 3px; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 8px 12px; border-radius: 999px; }
.nav a:hover { color: var(--ink); background: var(--chalk); }
.nav a[aria-current="page"] { color: var(--delft); background: var(--cobalt-soft); }
.nav .header__cta { margin-left: 12px; color: #fff; padding: 10px 16px; font-size: 0.9rem; }
.nav .header__cta:hover { background: var(--delft-deep); color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  border-radius: 8px; color: var(--ink); align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.25s var(--ease), background-color 0.2s; content: ""; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 66px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    display: none;
    box-shadow: 0 24px 40px -24px rgba(21,27,39,0.3);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 1.05rem; border-radius: 8px; }
  .nav .header__cta { margin: 10px 0 0; justify-content: center; padding: 14px; font-size: 1rem; }
  .header__inner { height: 66px; }
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero { background: var(--delft); color: #fff; position: relative; overflow: visible; }
.hero::before {
  /* soft light from the top-left, like a shutter door left open */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 10% -10%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-top: clamp(48px, 7vw, 96px);
}
.hero__title { font-size: var(--step-4); line-height: 1.02; max-width: 12ch; }
.hero__title em { font-style: normal; color: #F0D6B2; }
.hero__lede { margin-top: 24px; font-size: var(--step-1); color: rgba(255,255,255,0.82); max-width: 50ch; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 40px; padding-bottom: clamp(48px, 7vw, 96px); }
.hero__proof li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero__proof svg { width: 16px; height: 16px; color: #F0D6B2; flex: none; }

.hero__media { position: relative; align-self: end; margin-bottom: -72px; z-index: 2; }
.hero__media .ba__frame { box-shadow: var(--shadow); }
.hero__media .ba figcaption { color: var(--mute); }
.hero__media .ba figcaption strong { color: var(--ink); }
.hero + .section { padding-top: calc(72px + clamp(48px, 7vw, 96px)); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero__proof { padding-bottom: 36px; }
  .hero__media { margin-bottom: -48px; max-width: 560px; }
  .hero + .section { padding-top: calc(48px + 56px); }
}

/* --------------------------------------------------------------------------
   Before / after slider
   -------------------------------------------------------------------------- */
.ba { margin: 0; --pos: 50%; }
.ba__frame {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; background: var(--ink); user-select: none; -webkit-user-select: none;
  touch-action: pan-y;
}
.ba__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before-wrap { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__label {
  position: absolute; top: 14px; z-index: 2;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 3px; pointer-events: none;
}
.ba__label--before { left: 14px; background: rgba(21,27,39,0.7); color: #fff; }
.ba__label--after { right: 14px; background: var(--saddle); color: #fff; }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px;
  background: #fff; z-index: 2; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 3; pointer-events: none;
  width: 48px; height: 48px; margin: -24px 0 0 -24px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #D9A86B, var(--saddle) 55%, var(--saddle-deep));
  box-shadow: 0 6px 18px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.35);
  display: grid; place-items: center;
}
.ba__handle svg { width: 26px; height: 26px; color: #fff; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; z-index: 4;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 100%; }
.ba__range::-moz-range-thumb { width: 48px; height: 100%; border: 0; }
.ba__range:focus-visible ~ .ba__handle { outline: 3px solid #fff; outline-offset: 3px; }
.ba figcaption { margin-top: 12px; font-size: 0.92rem; color: var(--mute); display: flex; justify-content: space-between; gap: 12px; }
.ba figcaption strong { color: var(--ink); font-weight: 600; }
.section--delft .ba figcaption, .section--ink .ba figcaption { color: rgba(255,255,255,0.7); }
.section--delft .ba figcaption strong, .section--ink .ba figcaption strong { color: #fff; }

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit; position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; color: inherit; }
.service-card__icon { width: 44px; height: 44px; color: var(--delft); }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--ink-2); font-size: 0.97rem; flex: 1; }
.service-card__more { font-weight: 600; color: var(--cobalt); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card__more svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__more svg { transform: translateX(4px); }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Work strip (home featured)
   -------------------------------------------------------------------------- */
.work-strip { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 300px; gap: 14px; }
.work-tile { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); margin: 0; }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.work-tile:hover img { transform: scale(1.04); }
.work-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(21,27,39,0.85), transparent);
  color: #fff; font-size: 0.9rem; font-weight: 500;
}
.work-tile figcaption span { display: block; color: rgba(255,255,255,0.7); font-weight: 400; font-size: 0.82rem; }
.work-tile--tall { grid-row: span 2; }
@media (max-width: 900px) { .work-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; } }
@media (max-width: 560px) { .work-strip { grid-template-columns: 1fr; grid-auto-rows: 260px; } .work-tile--tall { grid-row: span 1; } }

/* --------------------------------------------------------------------------
   Process (a real sequence, so it is numbered)
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 28px; counter-reset: step; }
.process__step { padding: 28px 0; border-top: 2px solid rgba(255,255,255,0.18); position: relative; counter-increment: step; }
.process__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2rem; color: #F0D6B2; display: block; margin-bottom: 14px;
}
.process__step h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.process__step p { color: rgba(255,255,255,0.75); font-size: 0.97rem; }
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 18px;
}
.review__stars { display: flex; gap: 3px; color: var(--saddle); }
.review__stars svg { width: 18px; height: 18px; }
.review blockquote { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--ink); flex: 1; }
.review blockquote p::before { content: "\201C"; }
.review blockquote p::after { content: "\201D"; }
.review__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 0.9rem; color: var(--mute); }
.review__meta strong { color: var(--ink); font-weight: 600; display: block; }
.review__fb { display: inline-flex; align-items: center; gap: 6px; color: var(--mute); text-decoration: none; font-weight: 500; }
.review__fb svg { width: 16px; height: 16px; }
.review--feature { grid-column: 1 / -1; background: var(--saddle-soft); border-color: transparent; }
.review--feature blockquote { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.3; max-width: 30ch; }
@media (max-width: 1000px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .reviews { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Find us
   -------------------------------------------------------------------------- */
.find { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.find__map { border-radius: var(--radius); overflow: hidden; min-height: 380px; background: var(--line); border: 1px solid var(--line); }
.find__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.85); }
.details { display: grid; gap: 22px; margin-top: 28px; }
.detail { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.detail__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--cobalt-soft); color: var(--delft); display: grid; place-items: center; }
.detail__icon svg { width: 20px; height: 20px; }
.detail h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-bottom: 4px; }
.detail p, .detail a { font-size: 1.05rem; color: var(--ink); }
.detail a { text-decoration: none; font-weight: 600; }
.detail a:hover { text-decoration: underline; }
.detail small { display: block; color: var(--mute); font-size: 0.9rem; margin-top: 2px; }
@media (max-width: 860px) { .find { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--delft); color: #fff; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(40px, 6vw, 72px); }
.cta-band h2 { font-size: var(--step-3); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 10px; max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: clamp(48px, 6vw, 72px) 0 28px; font-size: 0.95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { color: #fff; }
.footer .brand__name small { color: rgba(255,255,255,0.55); }
.footer__about { margin-top: 18px; max-width: 36ch; }
.footer h3 { color: #fff; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer li + li { margin-top: 10px; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer address { font-style: normal; line-height: 1.6; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer__social { display: inline-flex; align-items: center; gap: 8px; }
.footer__social svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Inner page hero
   -------------------------------------------------------------------------- */
.page-hero { background: var(--delft); color: #fff; padding: clamp(48px, 7vw, 96px) 0; position: relative; overflow: clip; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 90% 0%, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: var(--step-4); max-width: 16ch; line-height: 1.02; }
.page-hero p { margin-top: 22px; font-size: var(--step-1); color: rgba(255,255,255,0.82); max-width: 54ch; line-height: 1.5; }
.page-hero--media { padding-bottom: 0; }
.page-hero--media .page-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: end; }
.page-hero--media .page-hero__text { padding-bottom: clamp(48px, 7vw, 96px); }
.page-hero__img { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 4 / 3; }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .page-hero--media .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero--media .page-hero__text { padding-bottom: 40px; }
}

/* --------------------------------------------------------------------------
   Feature rows (services & commercial pages)
   -------------------------------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 80px); align-items: center; padding-block: clamp(40px, 6vw, 80px); }
.feature + .feature { border-top: 1px solid var(--line); }
.feature--flip .feature__media { order: 2; }
.feature__media img, .feature__media .ba__frame { border-radius: var(--radius); }
.feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__media--portrait img { aspect-ratio: 4 / 5; }
.feature__media--wide img { aspect-ratio: 16 / 9; }
.feature h2 { font-size: var(--step-2); }
.feature p { color: var(--ink-2); margin-top: 16px; }
.feature ul { margin-top: 18px; display: grid; gap: 8px; }
.feature li { padding-left: 22px; position: relative; color: var(--ink-2); }
.feature li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 10px; height: 10px; border-radius: 50%;
  background: var(--saddle); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
}
.feature__cta { margin-top: 24px; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* Small-jobs list */
.small-jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.small-job { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 20px; }
.small-job h3 { font-size: 1.05rem; margin-bottom: 8px; }
.small-job p { color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 860px) { .small-jobs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .small-jobs { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 18px; }
@media (max-width: 960px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ba-grid { grid-template-columns: 1fr; } }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.pair img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.pair__cell { position: relative; }
.pair__cell + .pair__cell { border-left: 2px solid var(--white); }
.pair__tag { position: absolute; left: 12px; top: 12px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 9px; border-radius: 3px; background: rgba(21,27,39,0.7); color: #fff; }
.pair__cell:last-child .pair__tag { background: var(--saddle); }
.pairs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pairs figure { margin: 0; }
.pairs figcaption { margin-top: 12px; font-size: 0.92rem; color: var(--mute); }
.pairs figcaption strong { color: var(--ink); font-weight: 600; display: block; }
@media (max-width: 960px) { .pairs { grid-template-columns: 1fr; } .pairs figure { max-width: 720px; } }

.masonry { columns: 3; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--ink); }
.masonry img { width: 100%; transition: transform 0.8s var(--ease); }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 16px 14px; color: #fff; font-size: 0.88rem; background: linear-gradient(to top, rgba(21,27,39,0.85), transparent); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-grid img { border-radius: var(--radius); width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about-grid h2 { font-size: var(--step-3); }
.about-grid .prose { margin-top: 22px; }
.prose p { color: var(--ink-2); }
.prose p + p { margin-top: 1em; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { padding: 28px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.value h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; margin-bottom: 10px; }
.value p { color: var(--ink-2); font-size: 0.97rem; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }

.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 700px) { .strip { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.form h2 { font-size: var(--step-2); margin-bottom: 8px; }
.form > p { color: var(--ink-2); margin-bottom: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field label span { color: var(--mute); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--chalk); border: 1px solid var(--line); border-radius: 4px;
  padding: 12px 14px; width: 100%; transition: border-color 0.2s, background-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--delft); background: #fff; box-shadow: 0 0 0 3px var(--cobalt-soft); }
.field textarea { min-height: 140px; resize: vertical; }
.form__hint { font-size: 0.88rem; color: var(--mute); margin-top: 14px; }
.form__status { margin-top: 16px; padding: 14px 16px; border-radius: 4px; font-size: 0.95rem; display: none; }
.form__status.is-ok { display: block; background: #E8F3EA; color: #1E5A2C; }
.form__status.is-err { display: block; background: #FBEAEA; color: #8B2020; }
.form__fallback { display: none; margin-top: 18px; border-top: 1px solid var(--line); padding-top: 18px; }
.form__fallback.is-visible { display: block; }
.form__fallback textarea { width: 100%; min-height: 160px; font: inherit; font-size: 0.92rem; padding: 12px; border: 1px solid var(--line); border-radius: 4px; background: var(--chalk); }
.form__fallback .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

.hours-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--saddle); background: var(--saddle-soft); border-radius: 0 4px 4px 0; font-size: 0.95rem; color: var(--ink-2); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
