@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #131310;
  --charcoal: #24231f;
  --paper: #f6f4f2;
  --surface: #ffffff;
  --orange: #f35a28;
  --orange-dark: #d94b1c;
  --olive: #374920;
  --sage: #738949;
  --sand: #d3c0ad;
  --stone: #a09e97;
  --muted: #6d6b64;
  --line: #ded9d3;
  --success: #2e6b4e;
  --display: "DM Serif Display", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --container: 70rem;
  --narrow: 48rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 7vw, 6rem);
  --shadow-sm: 0 0.75rem 2rem rgba(19, 19, 16, 0.08);
  --shadow-lg: 0 1.75rem 5rem rgba(19, 19, 16, 0.16);
  --radius: 0.125rem;
  --ease: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(243, 90, 40, 0.42);
  outline-offset: 3px;
}

::selection { color: var(--surface); background: var(--orange); }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--surface);
  background: var(--orange);
  transform: translateY(-180%);
  transition: transform var(--ease);
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - (2 * var(--gutter)), var(--container)); margin-inline: auto; }
.narrow { width: min(100%, var(--narrow)); }
.section { padding-block: var(--section); }
.section--white { background: var(--surface); }
.section--dark { color: var(--surface); background: var(--ink); }
.section--sand { background: color-mix(in srgb, var(--sand) 23%, var(--paper)); }
.section--flush-top { padding-top: 0; }
.muted { color: var(--muted); }
.no-margin { margin: 0; }

.eyebrow {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before { width: 1.8rem; height: 1px; background: currentColor; content: ""; }
.eyebrow--light { color: #f58b68; }

.display,
.page-title,
.section-title,
.card-title,
.quote-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-kerning: normal;
}

.display { font-size: clamp(3rem, 5.3vw, 4.9rem); letter-spacing: -0.006em; line-height: 0.99; }
.page-title { font-size: clamp(2.75rem, 4.6vw, 4.25rem); letter-spacing: -0.006em; line-height: 1; }
.section-title { font-size: clamp(2.25rem, 3.5vw, 3.5rem); letter-spacing: 0; line-height: 1.05; }
.card-title { font-size: clamp(1.4rem, 2.1vw, 1.9rem); letter-spacing: 0; line-height: 1.16; }
.quote-title { font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.16; }
.display em, .page-title em, .section-title em { color: var(--orange); font-weight: 400; }

.lead {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.75;
}

.section--dark .lead { color: #b8b5af; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 30rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-heading p:last-child { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.75; }
.section--dark .section-heading p:last-child { color: #aaa7a1; }

.btn {
  display: inline-flex;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn--dark { background: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn--outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.btn--outline:hover { color: var(--surface); background: var(--ink); }
.btn--ghost { color: var(--surface); background: transparent; border-color: rgba(255, 255, 255, 0.45); }
.btn--ghost:hover { color: var(--ink); background: var(--surface); border-color: var(--surface); }
.btn--whatsapp { background: var(--success); border-color: var(--success); }
.btn--whatsapp:hover { background: #24583f; border-color: #24583f; }
.btn svg { width: 1rem; height: 1rem; transition: transform var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  gap: 0.6rem;
  align-items: center;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration-color: rgba(243, 90, 40, 0.4);
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--surface);
  background: rgba(19, 19, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  gap: 1.5rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 11.5rem;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--orange);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.05rem;
}

.brand-name { display: block; font-family: var(--display); font-size: 0.92rem; letter-spacing: 0.025em; line-height: 1; text-transform: uppercase; }
.brand-tagline { display: block; margin-top: 0.3rem; color: var(--stone); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; line-height: 1; text-transform: uppercase; }

.site-nav { display: flex; margin-left: auto; gap: clamp(0.75rem, 1.5vw, 1.45rem); align-items: center; }
.site-nav a { position: relative; color: #d4d1cc; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.015em; text-decoration: none; }
.site-nav a::after { position: absolute; right: 0; bottom: -0.55rem; left: 0; height: 1px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform var(--ease); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--surface); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { min-height: 2.55rem; padding-inline: 0.95rem; }

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: auto;
  padding: 0;
  place-items: center;
  color: var(--surface);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 1rem; height: 1px; background: currentColor; content: ""; transition: transform var(--ease); }
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -0.35rem; }
.menu-toggle span::after { position: absolute; top: 0.35rem; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(38rem, calc(100svh - 4.5rem), 46rem);
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
  place-items: center start;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 6, 0.92) 0%, rgba(8, 9, 6, 0.65) 42%, rgba(8, 9, 6, 0.1) 78%),
    linear-gradient(0deg, rgba(8, 9, 6, 0.58), transparent 44%),
    url("images/hero-workshop.webp") center / cover no-repeat;
  content: "";
}

.home-hero::after { position: absolute; inset: 1rem; border: 1px solid rgba(255, 255, 255, 0.13); content: ""; pointer-events: none; }
.home-hero-content { position: relative; z-index: 1; max-width: 46rem; padding-block: 5.25rem; }
.home-hero .display { max-width: 14.5ch; }
.home-hero .lead { max-width: 39rem; color: #d4d1cc; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0.8rem 1.75rem; margin-top: 2.25rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.hero-proof span { color: #c7c4be; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

.page-hero {
  position: relative;
  display: flex;
  min-height: 36rem;
  padding-block: clamp(4.75rem, 7vw, 5.75rem);
  align-items: center;
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
}

.page-hero--image::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 10, 8, 0.9) 0%, rgba(10, 10, 8, 0.66) 45%, rgba(10, 10, 8, 0.18) 82%), var(--hero-image) center / cover no-repeat; content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .page-title { max-width: 13ch; }
.page-hero .lead { max-width: 38rem; color: #d0cdc7; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.5rem; color: #aaa7a1; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.breadcrumb a { color: var(--surface); text-decoration: none; }
.breadcrumb span { color: var(--orange); }

/* Shared content */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split--reverse > :first-child { order: 2; }
.split-media { position: relative; min-height: 34rem; overflow: hidden; background: var(--sand); box-shadow: var(--shadow-lg); }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media--landscape { min-height: 27rem; }
.split-copy p:not(.eyebrow) { color: var(--muted); }
.split-copy .section-title { max-width: 13ch; }

.quality-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.quality-item { padding-top: 1rem; border-top: 1px solid var(--line); }
.quality-item strong { display: block; margin-bottom: 0.35rem; font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.quality-item span { color: var(--muted); font-size: 0.78rem; line-height: 1.6; }

.stat-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); color: var(--surface); background: var(--ink); }
.stat { padding: 2.2rem var(--gutter); border-right: 1px solid rgba(255, 255, 255, 0.12); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--orange); font-family: var(--display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: 0.5rem; color: #aaa7a1; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.product-card { display: flex; min-height: 29rem; overflow: hidden; flex-direction: column; background: var(--surface); border: 1px solid var(--line); transition: transform var(--ease), box-shadow var(--ease); }
.product-card--text { min-height: 16rem; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-card-media { position: relative; min-height: 15.5rem; overflow: hidden; background: var(--sand); }
.product-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.product-card:hover img { transform: scale(1.05); }
.product-label { position: absolute; top: 0.8rem; left: 0.8rem; padding: 0.4rem 0.55rem; color: var(--surface); background: rgba(19, 19, 16, 0.82); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.product-card-content { display: flex; padding: 1.45rem; flex: 1; flex-direction: column; }
.card-index { color: var(--orange); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.product-card h3 { margin: 0.55rem 0 0.7rem; }
.product-card p { margin: 0 0 1.35rem; color: var(--muted); font-size: 0.82rem; line-height: 1.7; }
.product-card .text-link { margin-top: auto; }

.product-feature { display: grid; grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr); min-height: 32rem; background: var(--surface); border: 1px solid var(--line); }
.product-feature + .product-feature { margin-top: 1.25rem; }
.product-feature:nth-child(even) { grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr); }
.product-feature:nth-child(even) .product-feature-media { order: 2; }
.product-feature-media { position: relative; min-height: 26rem; overflow: hidden; }
.product-feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-feature-copy { display: flex; padding: clamp(2rem, 4vw, 3.5rem); flex-direction: column; justify-content: center; }
.product-feature-copy p { color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1rem 0 1.5rem; padding: 0; list-style: none; }
.tag-list li { padding: 0.45rem 0.7rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* Process */
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: process; }
.process-grid::before { position: absolute; top: 1.35rem; right: calc(25% - 1.35rem); left: 1.35rem; height: 1px; background: var(--line); content: ""; }
.process-step { position: relative; padding-right: 1.5rem; counter-increment: process; }
.process-number { position: relative; z-index: 1; display: grid; width: 2.7rem; height: 2.7rem; margin-bottom: 1.5rem; place-items: center; color: var(--orange); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-family: var(--display); }
.process-number::before { content: counter(process, decimal-leading-zero); }
.process-step h3 { margin: 0 0 0.45rem; font-family: var(--display); font-size: 1.1rem; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.65; }

.timeline { position: relative; display: grid; gap: 1rem; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 2.05rem; width: 1px; background: var(--line); content: ""; }
.timeline-item { position: relative; display: grid; grid-template-columns: 4.1rem minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.timeline-number { position: relative; z-index: 1; display: grid; width: 4.1rem; height: 4.1rem; place-items: center; color: var(--orange); background: var(--paper); border: 1px solid var(--line); font-family: var(--display); font-size: 1.25rem; }
.timeline-content { display: grid; grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1fr); gap: 2rem; padding: 0.7rem 0 3.5rem; border-bottom: 1px solid var(--line); }
.timeline-content h2 { margin: 0; font-family: var(--display); font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 400; line-height: 1.12; }
.timeline-content p { margin: 0; color: var(--muted); }
.timeline-list { display: grid; gap: 0.5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.timeline-list li { position: relative; padding-left: 1.1rem; color: var(--muted); font-size: 0.82rem; }
.timeline-list li::before { position: absolute; top: 0.65rem; left: 0; width: 0.35rem; height: 0.35rem; background: var(--orange); border-radius: 50%; content: ""; }

/* Gallery */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2rem; }
.filter-button { min-height: 2.35rem; padding: 0.55rem 0.9rem; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: all var(--ease); }
.filter-button:hover, .filter-button[aria-pressed="true"] { color: var(--surface); background: var(--orange); border-color: var(--orange); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 8rem; gap: 1rem; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 3; overflow: hidden; color: var(--surface); background: var(--charcoal); text-decoration: none; }
.gallery-item--wide { grid-column: span 8; }
.gallery-item--tall { grid-row: span 4; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.86)); content: ""; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 1.3rem; }
.gallery-caption small { color: #f58b68; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.gallery-caption h3 { margin: 0.35rem 0 0; font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.85rem); font-weight: 400; line-height: 1.12; }

.project-hero-image { position: relative; height: min(60vh, 40rem); min-height: 24rem; overflow: hidden; background: var(--charcoal); }
.project-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.project-layout { display: grid; grid-template-columns: minmax(14rem, 0.35fr) minmax(0, 0.65fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.project-meta { position: sticky; top: 7rem; display: grid; gap: 1rem; }
.meta-row { padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); }
.meta-row span { display: block; color: var(--stone); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.meta-row strong { display: block; margin-top: 0.3rem; font-size: 0.78rem; font-weight: 600; }
.project-copy .section-title { max-width: 13ch; }
.project-copy p { color: var(--muted); }
.project-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }
.project-gallery figure { margin: 0; overflow: hidden; background: var(--sand); }
.project-gallery figure:first-child { grid-column: 1 / -1; }
.project-gallery img { aspect-ratio: 4 / 3; object-fit: cover; }
.project-gallery figure:first-child img { aspect-ratio: 16 / 8; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.testimonial-card { position: relative; min-height: 18rem; padding: 1.75rem; background: var(--surface); border: 1px solid var(--line); }
.testimonial-card::after { position: absolute; top: 0.5rem; right: 1rem; color: var(--line); content: "\201C"; font-family: var(--display); font-size: 5rem; line-height: 1; }
.stars { color: var(--orange); font-size: 0.7rem; letter-spacing: 0.15em; }
.testimonial-card blockquote { margin: 1rem 0 4rem; font-family: var(--display); font-size: 1.1rem; line-height: 1.65; }
.testimonial-person { position: absolute; right: 1.6rem; bottom: 1.4rem; left: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.testimonial-person strong { display: block; font-size: 0.72rem; }
.testimonial-person small { display: block; color: var(--muted); font-size: 0.62rem; }
.featured-quote { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); min-height: 30rem; color: var(--surface); background: var(--ink); }
.featured-quote-media { position: relative; min-height: 26rem; overflow: hidden; }
.featured-quote-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-quote-copy { display: flex; padding: clamp(2.5rem, 4vw, 4rem); flex-direction: column; justify-content: center; }
.featured-quote blockquote { margin: 1.2rem 0 1.5rem; font-family: var(--display); font-size: clamp(1.8rem, 2.6vw, 2.25rem); line-height: 1.24; }
.featured-quote cite { color: #aaa7a1; font-size: 0.7rem; font-style: normal; }

/* CTA and footer */
.cta-panel { position: relative; padding: clamp(3rem, 6vw, 4.75rem); overflow: hidden; color: var(--surface); background: var(--ink); text-align: center; }
.cta-panel::before, .cta-panel::after { position: absolute; width: 18rem; height: 18rem; border: 1px solid rgba(243, 90, 40, 0.16); border-radius: 50%; content: ""; }
.cta-panel::before { top: -12rem; left: -8rem; }
.cta-panel::after { right: -8rem; bottom: -13rem; }
.cta-panel > * { position: relative; }
.cta-panel .section-title { max-width: 15ch; margin-inline: auto; }
.cta-panel p { max-width: 43rem; margin: 1rem auto 1.8rem; color: #aaa7a1; }
.cta-panel .button-row { justify-content: center; }

.site-footer { color: #aaa7a1; background: #0b0b09; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; padding-block: 4rem; }
.footer-brand p { max-width: 25rem; margin: 1.2rem 0 0; font-size: 0.8rem; }
.footer-heading { margin: 0 0 1rem; color: var(--surface); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-list { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; font-size: 0.76rem; }
.footer-list a { text-decoration: none; transition: color var(--ease); }
.footer-list a:hover { color: var(--orange); }
.footer-bottom { display: flex; padding-block: 1.2rem; gap: 1rem; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.62rem; }

/* Global WhatsApp contact */
.whatsapp-float {
  position: fixed;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 0.8rem 2.2rem rgba(19, 19, 16, 0.24);
  text-decoration: none;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), opacity var(--ease);
}

.whatsapp-float svg { width: 1.85rem; height: 1.85rem; }
.whatsapp-float:hover { background: #1fbd59; box-shadow: 0 1rem 2.7rem rgba(19, 19, 16, 0.3); transform: translateY(-0.2rem); }
.whatsapp-float:active { transform: translateY(0); }
.whatsapp-float-label { position: absolute; right: calc(100% + 0.7rem); padding: 0.45rem 0.65rem; color: var(--surface); background: rgba(19, 19, 16, 0.92); border-radius: 0.15rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; opacity: 0; pointer-events: none; transform: translateX(0.3rem); transition: opacity var(--ease), transform var(--ease); white-space: nowrap; }
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label { opacity: 1; transform: none; }
body.nav-open .whatsapp-float { opacity: 0; pointer-events: none; transform: translateY(0.5rem); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(1.2rem); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 68rem) {
  .site-header { backdrop-filter: none; }
  .site-nav {
    position: fixed;
    top: 4.5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    margin: 0;
    padding: 2rem var(--gutter);
    gap: 0;
    background: rgba(19, 19, 16, 0.99);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--display); font-size: 1.6rem; font-weight: 400; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: grid; }
  .header-cta { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card { min-height: 0; }
  .gallery-item { grid-column: span 6; }
  .gallery-item--wide { grid-column: span 12; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 52rem) {
  .section-heading, .split, .project-layout, .featured-quote { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .split-media, .split-media--landscape { min-height: 27rem; }
  .section-heading { align-items: start; }
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1rem; }
  .process-grid::before { display: none; }
  .timeline-content { grid-template-columns: 1fr; gap: 1rem; }
  .product-feature, .product-feature:nth-child(even) { grid-template-columns: 1fr; }
  .product-feature:nth-child(even) .product-feature-media { order: initial; }
  .gallery-grid { grid-auto-rows: 7rem; }
  .gallery-item, .gallery-item--wide { grid-column: span 6; }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-quote-media { min-height: 26rem; }
  .project-meta { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 36rem) {
  .brand { min-width: 0; }
  .brand-tagline { display: none; }
  .display { font-size: clamp(2.7rem, 12vw, 3.25rem); line-height: 1; }
  .page-title { font-size: clamp(2.65rem, 12vw, 3.1rem); line-height: 1.02; }
  .section-title { font-size: clamp(2.15rem, 10vw, 2.65rem); }
  .home-hero { min-height: 43rem; }
  .home-hero::before { background: linear-gradient(90deg, rgba(8, 9, 6, 0.9), rgba(8, 9, 6, 0.3)), linear-gradient(0deg, rgba(8, 9, 6, 0.76), transparent 55%), url("images/hero-workshop.webp") 62% center / cover no-repeat; }
  .home-hero::after { inset: 0.75rem; }
  .home-hero-content { padding-block: 4.25rem; }
  .page-hero { min-height: 32rem; padding-block: 3.75rem; }
  .page-hero .lead { font-size: 0.94rem; line-height: 1.7; }
  .breadcrumb { margin-bottom: 1.25rem; }
  .split-media, .split-media--landscape { min-height: 23rem; }
  .product-feature-media { min-height: 22rem; }
  .button-row .btn { width: 100%; }
  .quality-grid, .product-grid, .process-grid, .testimonial-grid, .footer-main, .project-gallery { grid-template-columns: 1fr; }
  .stat { padding: 1.5rem 1.25rem; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item, .gallery-item--wide, .gallery-item--tall { grid-column: auto; grid-row: auto; min-height: 22rem; }
  .timeline { gap: 0; }
  .timeline::before { left: 1.5rem; }
  .timeline-item { grid-template-columns: 3rem minmax(0, 1fr); gap: 1rem; }
  .timeline-number { width: 3rem; height: 3rem; }
  .timeline-content { padding-top: 0.25rem; }
  .project-meta { grid-template-columns: 1fr; }
  .project-gallery figure:first-child { grid-column: auto; }
  .project-gallery figure:first-child img { aspect-ratio: 4 / 3; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); width: 3.4rem; height: 3.4rem; }
  .whatsapp-float svg { width: 1.65rem; height: 1.65rem; }
  .whatsapp-float-label { display: none; }
}

/* About — editorial studio story */
.about-page .section-title { max-width: none; text-wrap: balance; }

.about-intro {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  background: var(--paper);
}

.about-breadcrumb {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-breadcrumb a { color: var(--ink); text-decoration: none; }
.about-breadcrumb span[aria-hidden] { color: var(--orange); }

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.about-title {
  max-width: 47rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.2vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 0.98;
  text-wrap: balance;
}

.about-title em { color: var(--orange); font-weight: 400; }
.about-intro-copy { padding: 0.3rem 0 0.35rem 1.5rem; border-left: 1px solid var(--orange); }
.about-intro-copy p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.about-intro-copy span { display: block; margin-top: 1.35rem; color: var(--ink); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

.about-opening-media {
  position: relative;
  aspect-ratio: 16 / 6.25;
  margin: clamp(3.5rem, 6vw, 5rem) 0 0;
  overflow: hidden;
  background: var(--charcoal);
}

.about-opening-media::after { position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(8, 8, 7, 0.62)); content: ""; }
.about-opening-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.about-opening-media figcaption { position: absolute; right: 1.5rem; bottom: 1.2rem; left: 1.5rem; z-index: 1; display: flex; justify-content: space-between; gap: 1rem; color: #d8d4ce; font-size: 0.61rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.about-story-grid .section-title { font-size: clamp(2.55rem, 3.4vw, 3.35rem); }
.about-story-copy { max-width: 43rem; }
.about-story-copy > p { margin: 0 0 1.25rem; color: var(--muted); line-height: 1.8; }
.about-story-copy blockquote { margin: 2.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.45rem, 2.2vw, 1.9rem); line-height: 1.3; }

.about-values { background: #efede9; }
.about-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.about-section-heading > p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.75; }
.about-value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.25rem; }
.about-value { padding-top: 1.5rem; border-top: 1px solid var(--ink); }
.about-value > span { color: var(--orange); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; }
.about-value h3 { margin: 1.25rem 0 0.75rem; font-family: var(--display); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.about-value p { margin: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.75; }

.about-feature-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr); gap: clamp(3.5rem, 8vw, 7rem); align-items: center; }
.about-feature-grid--reverse { grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.05fr); }
.about-feature-grid--reverse .about-feature-media { order: 2; }
.about-feature-media { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--sand); }
.about-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.about-feature-media--craft img { object-position: center 42%; }
.about-feature-copy .section-title { font-size: clamp(2.5rem, 3.25vw, 3.25rem); }
.about-feature-copy > p:not(.eyebrow) { margin: 1.35rem 0 0; color: var(--muted); line-height: 1.8; }
.about-artisans .about-feature-copy > p:not(.eyebrow) { color: #aaa7a1; }
.about-feature-copy .text-link { margin-top: 1.3rem; }

.about-checklist { display: grid; gap: 1rem; margin-top: 2rem; }
.about-checklist > div { display: grid; grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 1.35fr); gap: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.about-checklist strong { font-family: var(--display); font-size: 1rem; font-weight: 400; }
.about-checklist span { color: var(--muted); font-size: 0.76rem; line-height: 1.65; }

.about-contact { padding-block: 5rem; background: #e8dfd5; }
.about-contact-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.about-contact-grid .section-title { font-size: clamp(2.5rem, 3.2vw, 3.2rem); }
.about-contact-grid > div:last-child p { margin: 0 0 1.5rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 52rem) {
  .about-intro-grid,
  .about-story-grid,
  .about-section-heading,
  .about-feature-grid,
  .about-feature-grid--reverse,
  .about-contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { gap: 2rem; }
  .about-intro-copy { max-width: 38rem; }
  .about-opening-media { aspect-ratio: 4 / 2.25; }
  .about-story-grid, .about-feature-grid, .about-feature-grid--reverse { gap: 2.5rem; }
  .about-feature-grid--reverse .about-feature-media { order: initial; }
  .about-section-heading { gap: 1.25rem; }
  .about-value-grid { gap: 1rem; }
  .about-contact-grid { gap: 2rem; }
}

@media (max-width: 36rem) {
  .about-intro { padding-top: 2.75rem; }
  .about-breadcrumb { margin-bottom: 2rem; }
  .about-title { font-size: clamp(2.65rem, 11vw, 2.85rem); line-height: 1; }
  .about-intro-copy { padding-left: 1rem; }
  .about-opening-media { aspect-ratio: 4 / 3; margin-top: 2.75rem; }
  .about-opening-media figcaption { right: 1rem; bottom: 0.85rem; left: 1rem; }
  .about-opening-media figcaption span:last-child { display: none; }
  .about-story-grid .section-title,
  .about-feature-copy .section-title,
  .about-contact-grid .section-title { font-size: 2.35rem; }
  .about-value-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-value h3 { margin-top: 0.85rem; }
  .about-feature-media { aspect-ratio: 4 / 3; }
  .about-checklist > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .about-contact { padding-block: 3.5rem; }
}

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

/* Homepage — contemporary Balinese craft */
.home-hero--split {
  position: relative;
  display: grid;
  min-height: 42rem;
  overflow: hidden;
  color: var(--surface);
  background: var(--charcoal);
}

.home-hero--split::before,
.home-hero--split::after { display: none; }

.home-hero-grid {
  position: relative;
  display: block;
  min-height: 42rem;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 43rem);
  min-height: 42rem;
  padding-block: 5.25rem 4.75rem;
  flex-direction: column;
  justify-content: center;
}

.home-hero-copy .display {
  max-width: 42rem;
  font-size: clamp(3.25rem, 4.3vw, 3.9rem);
  line-height: 1;
  text-wrap: balance;
}

.home-hero-copy .lead { max-width: 35rem; color: #c5c2bc; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; margin-top: 2rem; }
.home-secondary-link { display: inline-flex; min-height: 2.75rem; align-items: center; color: #e1ded8; font-size: 0.75rem; font-weight: 600; text-underline-offset: 0.35rem; }
.home-secondary-link:hover { color: var(--orange); }
.home-hero-meta { margin: 2.25rem 0 0; padding-top: 1.1rem; color: #98958f; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.home-hero-meta span { margin-inline: 0.45rem; color: var(--orange); }

.home-hero-media { position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; margin: 0; overflow: hidden; background: var(--charcoal); transform: translateX(-50%); }
.home-hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13, 13, 10, 0.74) 0%, rgba(13, 13, 10, 0.52) 38%, rgba(13, 13, 10, 0.12) 76%), linear-gradient(0deg, rgba(13, 13, 10, 0.42), transparent 45%); content: ""; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.home-hero-media figcaption { position: absolute; right: 2rem; bottom: 1.6rem; z-index: 1; max-width: 17rem; color: #d5d1ca; font-size: 0.65rem; letter-spacing: 0.04em; text-align: right; }

.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.home-section-intro p { margin: 0 0 1rem; color: var(--muted); font-size: 0.92rem; line-height: 1.75; }
.home-section-intro .eyebrow { margin-bottom: 1rem; }
.home-section-intro .text-link { margin-top: 0.25rem; }
.home-section-intro .section-title,
.home-craft .section-title,
.home-contact-grid .section-title { max-width: none; text-wrap: balance; }

.home-projects { background: #efede9; }
.home-project-grid { display: grid; height: 38rem; grid-template-columns: minmax(0, 2fr) minmax(17rem, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.home-project-card { position: relative; min-height: 0; overflow: hidden; color: var(--surface); background: var(--charcoal); text-decoration: none; }
.home-project-card--large { grid-row: 1 / -1; }
.home-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.home-project-card--large img { object-position: center; }
.home-project-card:hover img { transform: scale(1.025); }
.home-project-shade { position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(8, 8, 7, 0.88)); }
.home-project-caption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; padding: 1.5rem; }
.home-project-caption small { color: #f28a68; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.home-project-caption strong { margin-top: 0.35rem; font-family: var(--display); font-size: clamp(1.55rem, 2.4vw, 2.3rem); font-weight: 400; line-height: 1.08; }
.home-project-card:not(.home-project-card--large) .home-project-caption strong { font-size: 1.45rem; }
.home-project-caption > span { margin-top: 0.75rem; color: #d6d2cc; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0; transform: translateY(0.35rem); transition: opacity var(--ease), transform var(--ease); }
.home-project-card:hover .home-project-caption > span { opacity: 1; transform: none; }

.home-clients { padding-block: clamp(3.5rem, 6vw, 5.25rem); background: var(--surface); border-bottom: 1px solid var(--line); }
.home-clients-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 2.25rem; }
.home-clients-heading .eyebrow { margin-bottom: 0.75rem; }
.home-clients-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 2.8vw, 2.75rem); font-weight: 400; line-height: 1.08; text-wrap: balance; }
.home-clients-heading > p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.75; }
.home-client-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-client-mark { display: flex; min-height: 8rem; padding: 1.25rem 0.9rem; align-items: center; flex-direction: column; justify-content: center; color: #45433f; border-right: 1px solid var(--line); text-align: center; }
.home-client-mark:last-child { border-right: 0; }
.home-client-mark strong { font-size: 0.86rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; }
.home-client-mark span { margin-top: 0.55rem; color: var(--stone); font-size: 0.48rem; font-weight: 700; letter-spacing: 0.14em; line-height: 1.4; text-transform: uppercase; }
.home-client-mark--serif strong { font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.home-client-mark--spaced strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; }
.home-client-mark--compact strong { font-family: var(--display); font-size: 1.25rem; font-weight: 400; letter-spacing: 0.04em; }

.home-craft .split-media { min-height: 36rem; box-shadow: none; }
.home-craft .split-copy .section-title { max-width: none; font-size: clamp(2.5rem, 3.15vw, 3.2rem); }
.home-craft-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.home-craft-points > div { padding-top: 1rem; border-top: 1px solid var(--line); }
.home-craft-points strong { display: block; margin-bottom: 0.35rem; font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.home-craft-points span { display: block; color: var(--muted); font-size: 0.76rem; line-height: 1.65; }

.home-capabilities { background: var(--paper); }
.home-capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.home-capability-card { display: grid; min-height: 15rem; overflow: hidden; grid-template-columns: minmax(10rem, 0.82fr) minmax(0, 1.18fr); color: var(--ink); background: var(--surface); border: 1px solid var(--line); text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.home-capability-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.home-capability-media { position: relative; min-height: 15rem; overflow: hidden; background: var(--sand); }
.home-capability-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.home-capability-card:hover img { transform: scale(1.035); }
.home-capability-copy { display: flex; padding: 1.75rem; flex-direction: column; justify-content: center; }
.home-capability-copy small { color: var(--orange); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; }
.home-capability-copy strong { margin-top: 0.65rem; font-family: var(--display); font-size: 1.7rem; font-weight: 400; line-height: 1.1; }
.home-capability-copy > span { margin-top: 0.8rem; color: var(--muted); font-size: 0.8rem; line-height: 1.65; }

.home-process .home-section-intro p { color: #aaa7a1; }
.home-process .home-section-intro .section-title { color: var(--surface); }
.home-process .process-grid::before { background: rgba(255, 255, 255, 0.18); }
.home-process .process-number { color: #f58b68; background: var(--ink); border-color: rgba(255, 255, 255, 0.24); box-shadow: none; }
.home-process .process-step h3 { color: var(--surface); }
.home-process .process-step p { color: #aaa7a1; }

.home-reviews { background: var(--surface); }
.home-review-grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(20rem, 0.72fr); gap: 1rem; }
.home-review-featured,
.home-review-card { margin: 0; }
.home-review-featured { position: relative; display: flex; min-height: 25rem; padding: clamp(2.25rem, 4vw, 3.5rem); flex-direction: column; justify-content: space-between; overflow: hidden; background: #efede9; }
.home-review-featured::after { position: absolute; right: -3rem; bottom: -5rem; width: 13rem; height: 13rem; border: 1px solid rgba(243, 90, 40, 0.22); border-radius: 50%; content: ""; }
.home-review-mark { color: var(--orange); font-family: var(--display); font-size: 3.75rem; line-height: 0.7; }
.home-review-featured > p { position: relative; z-index: 1; max-width: 30rem; margin: 2.25rem 0; font-family: var(--display); font-size: clamp(1.6rem, 2.2vw, 2rem); line-height: 1.2; }
.home-review-featured footer,
.home-review-card footer { display: grid; gap: 0.2rem; }
.home-review-featured footer strong,
.home-review-card footer strong { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; }
.home-review-featured footer span,
.home-review-card footer span { color: var(--muted); font-size: 0.63rem; }
.home-review-secondary { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.home-review-card { display: flex; min-height: 12rem; padding: 1.75rem; flex-direction: column; justify-content: space-between; background: var(--paper); border: 1px solid var(--line); }
.home-review-card > p { margin: 0 0 1.75rem; color: var(--ink); font-family: var(--display); font-size: 1.15rem; line-height: 1.4; }

.home-contact { padding-block: 0; background: #e8dfd5; }
.home-contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; padding-block: 5rem; }
.home-contact-grid .section-title { max-width: none; font-size: clamp(2.5rem, 3.15vw, 3.2rem); }
.home-contact-grid > div:last-child p { margin: 0 0 1.6rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 52rem) {
  .home-hero--split { min-height: 0; color: var(--ink); background: var(--paper); }
  .home-hero-grid { display: flex; min-height: 0; flex-direction: column; }
  .home-hero-media { position: relative; top: auto; bottom: auto; left: auto; order: -1; width: auto; min-height: 19rem; margin-inline: calc(-1 * var(--gutter)); transform: none; }
  .home-hero-media::after { background: linear-gradient(0deg, rgba(13, 13, 10, 0.38), transparent 48%); }
  .home-hero-media figcaption { display: none; }
  .home-hero-copy { width: 100%; min-height: 0; padding: 3.5rem 0 4rem; }
  .home-hero-copy .display { max-width: 40rem; }
  .home-hero-copy .lead { color: var(--muted); }
  .home-hero-copy .eyebrow { color: var(--orange); }
  .home-secondary-link { color: var(--ink); }
  .home-hero-meta { color: var(--muted); border-top-color: var(--line); }
  .home-section-intro { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.25rem; }
  .home-section-intro > div:last-child { max-width: 34rem; }
  .home-project-grid { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .home-project-card--large { grid-row: auto; grid-column: 1 / -1; min-height: 24rem; }
  .home-project-card:not(.home-project-card--large) { min-height: 18rem; }
  .home-project-caption > span { display: none; }
  .home-clients-heading { grid-template-columns: 1fr; gap: 1rem; }
  .home-clients-heading > p { max-width: 34rem; }
  .home-client-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-client-mark:nth-child(3) { border-right: 0; }
  .home-client-mark:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .home-capability-grid { grid-template-columns: 1fr; }
  .home-review-grid { grid-template-columns: 1fr; }
  .home-review-featured { min-height: 22rem; }
  .home-review-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .home-contact-grid { grid-template-columns: 1fr; gap: 2rem; padding-block: 4rem; }
}

@media (max-width: 36rem) {
  .home-hero-media { min-height: 13rem; }
  .home-hero-copy { padding: 2.5rem 0 2.75rem; }
  .home-hero-copy .display { font-size: clamp(2.7rem, 11.5vw, 2.95rem); }
  .home-hero-copy .lead { font-size: 0.92rem; line-height: 1.65; }
  .home-hero-actions { align-items: stretch; flex-direction: column; }
  .home-hero-actions .btn { width: 100%; }
  .home-secondary-link { justify-content: center; }
  .home-hero-actions { margin-top: 1.5rem; }
  .home-hero-meta { display: none; }
  .home-project-card--large { min-height: 18rem; }
  .home-project-card:not(.home-project-card--large) { min-height: 14rem; }
  .home-project-caption { padding: 1rem; }
  .home-project-caption strong, .home-project-card:not(.home-project-card--large) .home-project-caption strong { font-size: 1.25rem; }
  .home-project-caption small { font-size: 0.52rem; }
  .home-clients { padding-block: 3.25rem; }
  .home-clients-heading { margin-bottom: 1.75rem; }
  .home-clients-heading h2 { font-size: 2rem; }
  .home-client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-client-mark { min-height: 6.75rem; }
  .home-client-mark:nth-child(3) { border-right: 1px solid var(--line); }
  .home-client-mark:nth-child(even) { border-right: 0; }
  .home-client-mark:nth-child(-n + 4) { border-bottom: 1px solid var(--line); }
  .home-craft .split-media { min-height: 21rem; }
  .home-craft .section-title { max-width: 100%; font-size: 2.35rem; }
  .home-craft-points { gap: 1rem; }
  .home-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-capability-card { display: block; min-height: 0; }
  .home-capability-media { display: block; min-height: 0; aspect-ratio: 4 / 3; }
  .home-capability-copy { min-height: 6.75rem; padding: 1rem; justify-content: start; }
  .home-capability-copy strong { margin-top: 0.4rem; font-size: 1.22rem; }
  .home-capability-copy > span { display: none; }
  .home-process .process-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
  .home-process .process-grid::before { display: block; top: 1.35rem; right: auto; bottom: 1.35rem; left: 1.35rem; width: 1px; height: auto; }
  .home-process .process-step { min-height: 0; padding: 0 0 2.5rem 4.25rem; }
  .home-process .process-step:last-child { padding-bottom: 0; }
  .home-process .process-number { position: absolute; top: 0; left: 0; margin: 0; }
  .home-review-featured { min-height: 0; padding: 1.75rem; }
  .home-review-featured > p { margin-block: 1.5rem; font-size: 1.55rem; }
  .home-review-secondary { display: flex; margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-review-secondary::-webkit-scrollbar { display: none; }
  .home-review-card { flex: 0 0 84%; min-height: 11.5rem; scroll-snap-align: start; }
  .home-contact-grid { padding-block: 3.5rem; }
  .home-contact-grid .section-title { font-size: 2.4rem; }
}

/* Products — scannable custom-work catalog */
.products-page .section-title { max-width: none; text-wrap: balance; }

.products-intro { padding-block: clamp(2.25rem, 3.5vw, 3rem) clamp(2rem, 3vw, 2.75rem); background: var(--surface); }
.products-breadcrumb { display: flex; gap: 0.55rem; align-items: center; margin-bottom: 1.5rem; color: var(--muted); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.products-breadcrumb a { color: var(--ink); text-decoration: none; }
.products-breadcrumb span[aria-hidden] { color: var(--orange); }
.products-intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.products-title { max-width: 47rem; margin: 0; font-family: var(--display); font-size: clamp(3rem, 4vw, 3.65rem); font-weight: 400; letter-spacing: -0.006em; line-height: 1; text-wrap: balance; }
.products-title em { color: var(--orange); font-weight: 400; }
.products-intro-copy { padding: 0.25rem 0 0.35rem 1.5rem; border-left: 1px solid var(--orange); }
.products-intro-copy p { margin: 0; color: var(--muted); line-height: 1.8; }

.products-catalog { padding-top: clamp(2rem, 3vw, 2.75rem); }
.products-catalog-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.products-catalog-heading .eyebrow { margin-bottom: 0.55rem; }
.products-catalog-heading h2 { margin: 0; font-family: var(--display); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.products-catalog-heading > p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.7; }

.products-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.products-section-heading > p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.75; }
.products-section-heading .section-title { font-size: clamp(2.55rem, 3.4vw, 3.35rem); }

.products-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.products-category-card { display: grid; min-height: 22rem; overflow: hidden; grid-template-columns: minmax(11rem, 0.9fr) minmax(0, 1.1fr); color: var(--ink); background: var(--paper); border: 1px solid var(--line); text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.products-category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.products-category-card figure { position: relative; min-height: 100%; margin: 0; overflow: hidden; background: var(--sand); }
.products-category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.products-category-card:hover img { transform: scale(1.035); }
.products-category-copy { display: flex; min-width: 0; padding: 1.75rem; flex-direction: column; }
.products-category-index { color: var(--orange); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.products-category-copy h2 { margin: 0.9rem 0 0.75rem; font-family: var(--display); font-size: clamp(1.7rem, 2.2vw, 2rem); font-weight: 400; line-height: 1.05; text-wrap: balance; }
.products-category-copy p { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.7; }
.products-category-copy ul { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.products-category-copy li { padding: 0.32rem 0.55rem; color: var(--muted); background: var(--surface); border: 1px solid var(--line); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.04em; }
.products-category-action { margin-top: auto; padding-top: 1.25rem; color: var(--orange); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.products-material { background: #efede9; }
.products-material-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr); gap: clamp(3.5rem, 8vw, 7rem); align-items: center; }
.products-material-media { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--sand); }
.products-material-media img { width: 100%; height: 100%; object-fit: cover; }
.products-material-media--craft img { object-position: center 42%; }
.products-material-copy .section-title { font-size: clamp(2.5rem, 3.25vw, 3.25rem); }
.products-material-copy > p:not(.eyebrow) { margin: 1.35rem 0 0; color: var(--muted); line-height: 1.8; }
.products-material-list { display: grid; margin-top: 2rem; }
.products-material-list > div { display: grid; grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 1.35fr); gap: 1.5rem; padding-block: 1rem; border-top: 1px solid var(--line); }
.products-material-list strong { font-family: var(--display); font-size: 1rem; font-weight: 400; }
.products-material-list span { color: var(--muted); font-size: 0.74rem; line-height: 1.65; }

.products-order .products-section-heading > p { color: #aaa7a1; }
.products-order-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.products-order-grid article { padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.products-order-grid article > span { color: #f58b68; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; }
.products-order-grid h3 { margin: 1.1rem 0 0.65rem; font-family: var(--display); font-size: 1.55rem; font-weight: 400; }
.products-order-grid p { max-width: 20rem; margin: 0; color: #aaa7a1; font-size: 0.8rem; line-height: 1.7; }

.products-contact { padding-block: 5rem; background: #e8dfd5; }
.products-contact-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.products-contact-grid .section-title { font-size: clamp(2.5rem, 3.2vw, 3.2rem); }
.products-contact-grid > div:last-child p { margin: 0 0 1.5rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 52rem) {
  .products-intro-grid,
  .products-catalog-heading,
  .products-section-heading,
  .products-material-grid,
  .products-contact-grid { grid-template-columns: 1fr; }
  .products-intro-grid { gap: 2rem; }
  .products-intro-copy { max-width: 38rem; }
  .products-section-heading { gap: 1.25rem; }
  .products-catalog-heading { gap: 1rem; }
  .products-category-grid { grid-template-columns: 1fr; }
  .products-category-card { min-height: 20rem; grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.1fr); }
  .products-material-grid { gap: 2.5rem; }
  .products-order-grid { gap: 1rem; }
  .products-contact-grid { gap: 2rem; }
}

@media (max-width: 36rem) {
  .products-intro { padding-block: 2rem 2.25rem; }
  .products-breadcrumb { margin-bottom: 1.5rem; }
  .products-title { font-size: clamp(2.65rem, 11vw, 2.85rem); line-height: 1; }
  .products-intro-copy { padding-left: 1rem; }
  .products-section-heading .section-title,
  .products-material-copy .section-title,
  .products-contact-grid .section-title { font-size: 2.35rem; }
  .products-category-card { display: block; min-height: 0; }
  .products-category-card figure { min-height: 0; aspect-ratio: 4 / 2.8; }
  .products-category-copy { min-height: 16.5rem; padding: 1.35rem; }
  .products-category-copy h2 { font-size: 1.8rem; }
  .products-material-list > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .products-order-grid { grid-template-columns: 1fr; gap: 2rem; }
  .products-contact { padding-block: 3.5rem; }
}

/* Process — clear stages and approval points */
.process-page .section-title { max-width: none; text-wrap: balance; }

.process-intro { padding-block: clamp(2.25rem, 3.5vw, 3rem) clamp(2rem, 3vw, 2.75rem); background: var(--surface); }
.process-breadcrumb { display: flex; gap: 0.55rem; align-items: center; margin-bottom: 1.5rem; color: var(--muted); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.process-breadcrumb a { color: var(--ink); text-decoration: none; }
.process-breadcrumb span[aria-hidden] { color: var(--orange); }
.process-intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.process-title { max-width: 47rem; margin: 0; font-family: var(--display); font-size: clamp(3rem, 4vw, 3.65rem); font-weight: 400; letter-spacing: -0.006em; line-height: 1; text-wrap: balance; }
.process-title em { color: var(--orange); font-weight: 400; }
.process-intro-copy { padding: 0.25rem 0 0.35rem 1.5rem; border-left: 1px solid var(--orange); }
.process-intro-copy p { margin: 0; color: var(--muted); line-height: 1.8; }

.process-timeline-section { padding-top: clamp(2rem, 3vw, 2.75rem); }
.process-timeline-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.process-timeline-heading .eyebrow { margin-bottom: 0.55rem; }
.process-timeline-heading h2 { margin: 0; font-family: var(--display); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.process-timeline-heading > p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.7; }

.process-stages { display: grid; }
.process-stage { display: grid; grid-template-columns: minmax(7rem, 0.48fr) minmax(15rem, 0.92fr) minmax(20rem, 1.6fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; padding-block: 2.25rem; border-top: 1px solid var(--line); }
.process-stage:first-child { border-top: 0; }
.process-stage:last-child { border-bottom: 1px solid var(--line); }
.process-stage-label { display: grid; gap: 0.55rem; }
.process-stage-label span { color: var(--orange); font-family: var(--display); font-size: 1.4rem; }
.process-stage-label strong { color: var(--muted); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; }
.process-stage > h2 { margin: 0; font-family: var(--display); font-size: clamp(1.7rem, 2.3vw, 2.1rem); font-weight: 400; line-height: 1.1; text-wrap: balance; }
.process-stage-detail > p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.75; }
.process-stage-detail h3 { margin: 1.25rem 0 0.65rem; color: var(--ink); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.process-stage-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.45rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.process-stage-detail li { position: relative; padding-left: 0.85rem; color: var(--muted); font-size: 0.72rem; line-height: 1.55; }
.process-stage-detail li::before { position: absolute; top: 0.55rem; left: 0; width: 0.25rem; height: 0.25rem; background: var(--orange); border-radius: 50%; content: ""; }

.process-preparation { background: #efede9; }
.process-preparation-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr); gap: clamp(3.5rem, 8vw, 7rem); align-items: center; }
.process-preparation-media { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--sand); }
.process-preparation-media img { width: 100%; height: 100%; object-fit: cover; }
.process-preparation-media--craft img { object-position: center 42%; }
.process-preparation-copy .section-title { font-size: clamp(2.5rem, 3.25vw, 3.25rem); }
.process-preparation-copy > p:not(.eyebrow) { margin: 1.35rem 0 0; color: var(--muted); line-height: 1.8; }
.process-preparation-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.process-preparation-list > div { padding-top: 1rem; border-top: 1px solid var(--line); }
.process-preparation-list strong { display: block; font-family: var(--display); font-size: 1rem; font-weight: 400; }
.process-preparation-list span { display: block; margin-top: 0.3rem; color: var(--muted); font-size: 0.72rem; line-height: 1.6; }

.process-approvals-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 3.25rem; }
.process-approvals-heading .section-title { font-size: clamp(2.55rem, 3.4vw, 3.35rem); color: var(--surface); }
.process-approvals-heading > p { margin: 0; color: #aaa7a1; font-size: 0.9rem; line-height: 1.75; }
.process-approval-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.process-approval-grid article { padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.process-approval-grid article > span { color: #f58b68; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; }
.process-approval-grid h3 { margin: 1rem 0 0.55rem; font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.process-approval-grid p { margin: 0; color: #aaa7a1; font-size: 0.76rem; line-height: 1.7; }

.process-contact { padding-block: 5rem; background: #e8dfd5; }
.process-contact-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.process-contact-grid .section-title { font-size: clamp(2.5rem, 3.2vw, 3.2rem); }
.process-contact-grid > div:last-child p { margin: 0 0 1.5rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 52rem) {
  .process-intro-grid,
  .process-timeline-heading,
  .process-preparation-grid,
  .process-approvals-heading,
  .process-contact-grid { grid-template-columns: 1fr; }
  .process-intro-grid { gap: 2rem; }
  .process-intro-copy { max-width: 38rem; }
  .process-timeline-heading { gap: 1rem; }
  .process-stage { grid-template-columns: 6rem minmax(13rem, 0.9fr) minmax(0, 1.4fr); gap: 1.5rem; }
  .process-preparation-grid { gap: 2.5rem; }
  .process-approvals-heading { gap: 1.25rem; }
  .process-approval-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1rem; }
  .process-contact-grid { gap: 2rem; }
}

@media (max-width: 36rem) {
  .process-intro { padding-block: 2rem 2.25rem; }
  .process-breadcrumb { margin-bottom: 1.5rem; }
  .process-title { font-size: clamp(2.65rem, 11vw, 2.85rem); }
  .process-intro-copy { padding-left: 1rem; }
  .process-timeline-heading h2 { font-size: 1.75rem; }
  .process-stage { grid-template-columns: 1fr; gap: 1rem; padding-block: 2rem; }
  .process-stage-label { display: flex; gap: 0.75rem; align-items: baseline; }
  .process-stage > h2 { font-size: 1.9rem; }
  .process-stage-detail ul { grid-template-columns: 1fr; }
  .process-preparation-copy .section-title,
  .process-approvals-heading .section-title,
  .process-contact-grid .section-title { font-size: 2.35rem; }
  .process-preparation-list { grid-template-columns: 1fr; gap: 1rem; }
  .process-approval-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-contact { padding-block: 3.5rem; }
}

/* Gallery — filterable visual portfolio */
.gallery-page .section-title { max-width: none; text-wrap: balance; }

.gallery-intro { padding-block: clamp(2.25rem, 3.5vw, 3rem) clamp(2rem, 3vw, 2.75rem); background: var(--surface); }
.gallery-breadcrumb { display: flex; gap: 0.55rem; align-items: center; margin-bottom: 1.5rem; color: var(--muted); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.gallery-breadcrumb a { color: var(--ink); text-decoration: none; }
.gallery-breadcrumb span[aria-hidden] { color: var(--orange); }
.gallery-intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.gallery-title { max-width: 47rem; margin: 0; font-family: var(--display); font-size: clamp(3rem, 4vw, 3.65rem); font-weight: 400; letter-spacing: -0.006em; line-height: 1; text-wrap: balance; }
.gallery-title em { color: var(--orange); font-weight: 400; }
.gallery-intro-copy { padding: 0.25rem 0 0.35rem 1.5rem; border-left: 1px solid var(--orange); }
.gallery-intro-copy p { margin: 0; color: var(--muted); line-height: 1.8; }

.gallery-portfolio { padding-top: clamp(2rem, 3vw, 2.75rem); }
.gallery-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem); gap: 3rem; align-items: end; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.gallery-toolbar .eyebrow { margin-bottom: 0.55rem; }
.gallery-toolbar h2 { margin: 0; font-family: var(--display); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.gallery-toolbar > p { margin: 0; color: #aaa7a1; font-size: 0.82rem; line-height: 1.7; }

.gallery-filter-bar { position: sticky; top: 4.5rem; z-index: 8; display: flex; min-height: 4.5rem; gap: 1.5rem; align-items: center; justify-content: space-between; margin: 0 0 1rem; padding-block: 0.8rem; background: rgba(19, 19, 16, 0.96); border-bottom: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(12px); }
.gallery-page .filter-row { flex-wrap: nowrap; min-width: 0; margin: 0; overflow-x: auto; scrollbar-width: none; }
.gallery-page .filter-row::-webkit-scrollbar { display: none; }
.gallery-page .filter-button { flex: 0 0 auto; min-height: 2.75rem; color: #b9b6b0; border-color: rgba(255, 255, 255, 0.22); }
.gallery-result-count { flex: 0 0 auto; color: #8f8c86; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.gallery-page .gallery-grid { grid-auto-flow: dense; grid-auto-rows: 5rem; gap: 1rem; }
.gallery-page .gallery-item { grid-column: span 4; grid-row: span 4; min-height: 0; }
.gallery-page article.gallery-item { cursor: default; }
.gallery-page .gallery-item--featured { grid-column: span 8; grid-row: span 6; }
.gallery-page .gallery-item--portrait { grid-column: span 4; grid-row: span 6; }
.gallery-page .gallery-item--landscape { grid-column: span 8; grid-row: span 4; }
.gallery-page .gallery-grid.is-filtered .gallery-item { grid-column: span 4; grid-row: span 4; }
.gallery-page .gallery-caption { padding: 1.4rem; }
.gallery-page .gallery-caption h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
.gallery-page .gallery-caption > span { display: inline-block; margin-top: 0.75rem; color: #ddd8d1; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0; transform: translateY(0.3rem); transition: opacity var(--ease), transform var(--ease); }
.gallery-page .gallery-item:hover .gallery-caption > span { opacity: 1; transform: none; }

.gallery-contact { padding-block: 5rem; background: #e8dfd5; }
.gallery-contact-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.gallery-contact-grid .section-title { font-size: clamp(2.5rem, 3.2vw, 3.2rem); }
.gallery-contact-grid > div:last-child p { margin: 0 0 1.5rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 52rem) {
  .gallery-intro-grid,
  .gallery-toolbar,
  .gallery-contact-grid { grid-template-columns: 1fr; }
  .gallery-intro-grid { gap: 2rem; }
  .gallery-intro-copy { max-width: 38rem; }
  .gallery-toolbar { gap: 1rem; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .gallery-page .gallery-item,
  .gallery-page .gallery-item--portrait,
  .gallery-page .gallery-item--landscape,
  .gallery-page .gallery-grid.is-filtered .gallery-item { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery-page .gallery-item--featured { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 8; }
  .gallery-contact-grid { gap: 2rem; }
}

@media (max-width: 36rem) {
  .gallery-intro { padding-block: 2rem 2.25rem; }
  .gallery-breadcrumb { margin-bottom: 1.5rem; }
  .gallery-title { font-size: clamp(2.65rem, 11vw, 2.85rem); }
  .gallery-intro-copy { padding-left: 1rem; }
  .gallery-toolbar h2 { font-size: 1.75rem; }
  .gallery-filter-bar { display: grid; min-height: 0; gap: 0.55rem; margin-inline: calc(-1 * var(--gutter)); padding: 0.7rem var(--gutter); }
  .gallery-result-count { grid-row: 1; justify-self: start; }
  .gallery-page .filter-row { grid-row: 2; width: 100%; }
  .gallery-page .gallery-grid { grid-template-columns: 1fr; }
  .gallery-page .gallery-item,
  .gallery-page .gallery-item--featured,
  .gallery-page .gallery-item--portrait,
  .gallery-page .gallery-item--landscape,
  .gallery-page .gallery-grid.is-filtered .gallery-item { grid-column: auto; grid-row: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .gallery-page .gallery-caption > span { display: none; }
  .gallery-contact { padding-block: 3.5rem; }
  .gallery-contact-grid .section-title { font-size: 2.35rem; }
}

/* Gallery detail — editorial project case study */
.project-page h1,
.project-page h2 { text-wrap: balance; }

.project-intro {
  padding: clamp(2.75rem, 5vw, 4.75rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--paper);
}

.project-breadcrumb {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-breadcrumb a { color: var(--ink); text-decoration: none; }
.project-breadcrumb a:hover { color: var(--orange); }
.project-breadcrumb span { color: var(--stone); }
.project-breadcrumb span:last-child { color: var(--orange); }

.project-intro-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}

.project-intro-copy h1 {
  margin: 1.25rem 0 1.5rem;
  max-width: none;
  font-family: var(--display);
  font-size: clamp(3.25rem, 5.25vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.project-intro-copy h1 em { color: var(--orange); font-weight: 400; }
.project-summary { max-width: 31rem; margin: 0 0 1.75rem; color: var(--muted); font-size: 0.96rem; line-height: 1.75; }
.project-cover { min-height: clamp(29rem, 44vw, 38rem); margin: 0; overflow: hidden; background: var(--sand); }
.project-cover img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center; }

.project-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(2.75rem, 5vw, 4.5rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-facts div { padding: 1.3rem 1.1rem; border-right: 1px solid var(--line); }
.project-facts div:first-child { padding-left: 0; }
.project-facts div:last-child { padding-right: 0; border-right: 0; }
.project-facts dt { color: var(--stone); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.project-facts dd { margin: 0.4rem 0 0; color: var(--ink); font-size: 0.76rem; font-weight: 600; line-height: 1.45; }

.project-story { padding: clamp(4.75rem, 7vw, 6.75rem) 0; background: var(--surface); }
.project-story-intro { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.project-story-intro h2 { margin: 1.15rem 0 0; max-width: 11.5em; font-family: var(--display); font-size: clamp(2.4rem, 3.3vw, 3rem); font-weight: 400; letter-spacing: -0.012em; line-height: 1.08; }
.project-narrative { max-width: 39rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.project-narrative p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.85; }
.project-narrative p + p { margin-top: 1.25rem; }

.project-visual-sequence { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(4rem, 7vw, 7rem); }
.project-visual { margin: 0; }
.project-visual--wide { grid-column: 1 / -1; }
.project-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.project-visual--wide img { aspect-ratio: 16 / 7; }
.project-visual figcaption { display: grid; grid-template-columns: 2.3rem minmax(0, 1fr); gap: 0.8rem; margin-top: 0.8rem; color: var(--muted); font-size: 0.69rem; line-height: 1.55; }
.project-visual figcaption span { color: var(--orange); font-weight: 700; letter-spacing: 0.08em; }

.project-outcome {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 1fr);
  gap: 1.5rem clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: clamp(4.25rem, 7vw, 7rem);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2.25rem, 5vw, 4.5rem);
  background: #efede9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-outcome .eyebrow { margin: 0; color: var(--orange); }
.project-outcome > p:not(.eyebrow) { grid-column: 2; margin: 0; max-width: 36rem; color: var(--ink); font-family: var(--display); font-size: clamp(1.3rem, 1.65vw, 1.55rem); line-height: 1.45; }
.project-outcome .btn { grid-column: 2; justify-self: start; white-space: nowrap; }

.project-related { padding: clamp(4.75rem, 8vw, 7rem) 0; background: var(--paper); }
.project-related-heading { display: flex; gap: 2rem; align-items: end; justify-content: space-between; margin-bottom: 2.25rem; }
.project-related-heading h2 { margin: 0.9rem 0 0; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 3.9rem); font-weight: 400; line-height: 1.05; }
.project-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.project-related-card { color: var(--ink); text-decoration: none; }
.project-related-card figure { margin: 0 0 1.1rem; overflow: hidden; background: var(--sand); }
.project-related-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 600ms ease; }
.project-related-card:hover img { transform: scale(1.035); }
.project-related-card span { color: var(--orange); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.project-related-card h3 { margin: 0.45rem 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 400; line-height: 1.15; }

.project-contact { padding: clamp(4.5rem, 8vw, 7rem) 0; background: #e9dfd2; }
.project-contact-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.62fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.project-contact h2 { margin: 1rem 0 0; font-family: var(--display); font-size: clamp(2.75rem, 4.6vw, 4.6rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.03; }
.project-contact-inner > div:last-child { padding-top: 1.5rem; border-top: 1px solid rgba(19, 19, 16, 0.2); }
.project-contact p:not(.eyebrow) { margin: 0 0 1.5rem; color: var(--muted); }

@media (max-width: 60rem) {
  .project-intro-grid { grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr); gap: 2.5rem; }
  .project-cover { min-height: 29rem; }
  .project-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-facts div { border-bottom: 1px solid var(--line); }
  .project-facts div:nth-child(3) { border-right: 0; }
  .project-facts div:nth-child(n + 4) { border-bottom: 0; }
  .project-facts div:first-child { padding-left: 1.1rem; }
  .project-outcome { grid-template-columns: minmax(7rem, 0.3fr) minmax(0, 1fr); }
}

@media (max-width: 46rem) {
  .project-intro-grid,
  .project-story-intro,
  .project-contact-inner { grid-template-columns: 1fr; }
  .project-intro-copy { max-width: 37rem; }
  .project-cover { min-height: 0; }
  .project-cover img { min-height: 0; aspect-ratio: 4 / 3; }
  .project-story-intro { gap: 2.5rem; }
  .project-narrative { padding-top: 1.5rem; }
  .project-outcome { grid-template-columns: 1fr; }
  .project-outcome .eyebrow { grid-column: auto; }
  .project-outcome > p:not(.eyebrow),
  .project-outcome .btn { grid-column: auto; }
  .project-related-heading { align-items: start; flex-direction: column; }
  .project-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-related-card:last-child { display: none; }
  .project-contact-inner { gap: 2.5rem; }
}

@media (max-width: 36rem) {
  .project-intro { padding-top: 2rem; }
  .project-breadcrumb { margin-bottom: 2.25rem; overflow: hidden; white-space: nowrap; }
  .project-intro-copy h1 { font-size: clamp(2.8rem, 14vw, 3.65rem); }
  .project-summary { font-size: 0.9rem; }
  .project-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-facts div:nth-child(3) { border-right: 1px solid var(--line); }
  .project-facts div:nth-child(even) { border-right: 0; }
  .project-facts div:nth-child(4) { border-bottom: 1px solid var(--line); }
  .project-facts div:last-child { grid-column: 1 / -1; padding-left: 1.1rem; border-top: 0; }
  .project-story-intro h2 { font-size: clamp(2.2rem, 10vw, 2.6rem); }
  .project-visual-sequence { grid-template-columns: 1fr; }
  .project-visual--wide { grid-column: auto; }
  .project-visual--wide img,
  .project-visual img { aspect-ratio: 4 / 3; }
  .project-outcome { margin-inline: auto; padding: 2rem; }
  .project-outcome .btn { width: 100%; white-space: normal; }
  .project-related-grid {
    display: flex;
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .project-related-grid::-webkit-scrollbar { display: none; }
  .project-related-card { flex: 0 0 82%; scroll-snap-align: start; }
  .project-related-card:last-child { display: block; }
  .project-contact .btn { width: 100%; }
}

/* Testimonials — social proof before decoration */
.testimonials-page h1,
.testimonials-page h2 { max-width: none; text-wrap: balance; }

.testimonials-intro { padding: clamp(2.75rem, 5vw, 4.75rem) 0 clamp(4.5rem, 8vw, 7rem); background: var(--paper); }
.testimonials-breadcrumb { display: flex; gap: 0.55rem; align-items: center; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); color: var(--muted); font-size: 0.59rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.testimonials-breadcrumb a { color: var(--ink); text-decoration: none; }
.testimonials-breadcrumb a:hover { color: var(--orange); }
.testimonials-breadcrumb span { color: var(--stone); }
.testimonials-breadcrumb span:last-child { color: var(--orange); }

.testimonials-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.52fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.testimonials-heading h1 { margin: 1.15rem 0 0; font-family: var(--display); font-size: clamp(3.15rem, 5.15vw, 5rem); font-weight: 400; letter-spacing: -0.025em; line-height: 1; }
.testimonials-heading > p { margin: 0 0 0.35rem; padding-top: 1.4rem; color: var(--muted); border-top: 1px solid var(--line); font-size: 0.9rem; line-height: 1.8; }

.testimonials-featured { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr); min-height: 31rem; margin-top: clamp(3.5rem, 6vw, 5.5rem); background: var(--surface); border: 1px solid var(--line); }
.testimonials-featured figure { position: relative; min-height: 31rem; margin: 0; overflow: hidden; background: var(--sand); }
.testimonials-featured figure::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.14)); content: ""; }
.testimonials-featured img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.testimonials-featured-copy { display: flex; padding: clamp(2.25rem, 4vw, 3.5rem); flex-direction: column; justify-content: center; }
.quote-mark { height: 2.8rem; color: var(--orange); font-family: var(--display); font-size: 5rem; line-height: 0.85; }
.testimonials-featured blockquote { margin: 1rem 0 1.8rem; font-family: var(--display); font-size: clamp(1.65rem, 2.25vw, 2rem); line-height: 1.34; }
.testimonials-featured footer { display: flex; gap: 1.5rem; align-items: end; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.testimonials-featured footer strong,
.testimonials-quote footer strong { display: block; font-size: 0.72rem; }
.testimonials-featured footer > div span,
.testimonials-quote footer span { display: block; margin-top: 0.25rem; color: var(--muted); font-size: 0.64rem; }

.testimonials-stories { padding: clamp(5rem, 7vw, 7rem) 0; background: var(--surface); }
.testimonials-section-heading { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.5fr); gap: clamp(3rem, 9vw, 9rem); align-items: end; margin-bottom: clamp(3.25rem, 5vw, 4.75rem); }
.testimonials-section-heading h2 { margin: 1rem 0 0; font-family: var(--display); font-size: clamp(2.7rem, 4.2vw, 4.15rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; }
.testimonials-section-heading > p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.8; }

.testimonials-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.testimonials-quote { display: flex; min-height: 18rem; padding: clamp(2rem, 3.5vw, 3rem); flex-direction: column; border-bottom: 1px solid var(--line); }
.testimonials-quote:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
.testimonials-quote:nth-child(even) { padding-right: 0; }
.testimonial-topic { color: var(--orange); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.testimonials-quote blockquote { margin: 1.4rem 0 2rem; max-width: 19em; font-family: var(--display); font-size: clamp(1.45rem, 2vw, 1.75rem); line-height: 1.44; }
.testimonials-quote footer { margin-top: auto; padding-top: 1.15rem; border-top: 1px solid var(--line); }

.testimonials-values { padding: clamp(5rem, 8vw, 7.5rem) 0; color: var(--surface); background: var(--ink); }
.testimonials-values-grid { display: grid; grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr); gap: clamp(4rem, 10vw, 10rem); align-items: start; }
.testimonials-values-title { position: sticky; top: 7.5rem; }
.testimonials-values-title h2 { margin: 1.1rem 0 2rem; font-family: var(--display); font-size: clamp(2.65rem, 4vw, 3.9rem); font-weight: 400; line-height: 1.06; }
.testimonials-values .text-link { color: #d0cdc7; }
.testimonials-value-list { margin: 0; padding: 0; list-style: none; }
.testimonials-value-list li { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr); gap: 1.25rem; padding: 2rem 0 2.4rem; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.testimonials-value-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.testimonials-value-list li > span { color: var(--orange); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; }
.testimonials-value-list h3 { margin: -0.25rem 0 0.65rem; font-family: var(--display); font-size: clamp(1.6rem, 2.3vw, 2.15rem); font-weight: 400; }
.testimonials-value-list p { margin: 0; max-width: 34rem; color: #aaa7a1; font-size: 0.82rem; line-height: 1.8; }

.testimonials-contact { padding: clamp(4.5rem, 8vw, 7rem) 0; background: #e9dfd2; }
.testimonials-contact-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.62fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.testimonials-contact h2 { margin: 1rem 0 0; font-family: var(--display); font-size: clamp(2.75rem, 4.6vw, 4.6rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.03; }
.testimonials-contact-inner > div:last-child { padding-top: 1.5rem; border-top: 1px solid rgba(19, 19, 16, 0.2); }
.testimonials-contact p:not(.eyebrow) { margin: 0 0 1.5rem; color: var(--muted); }

@media (max-width: 52rem) {
  .testimonials-heading,
  .testimonials-section-heading,
  .testimonials-values-grid,
  .testimonials-contact-inner { grid-template-columns: 1fr; }
  .testimonials-heading,
  .testimonials-section-heading { gap: 2rem; }
  .testimonials-heading > p { max-width: 38rem; }
  .testimonials-featured { grid-template-columns: 1fr; }
  .testimonials-featured figure { min-height: 28rem; }
  .testimonials-values-grid { gap: 3rem; }
  .testimonials-values-title { position: static; max-width: 36rem; }
  .testimonials-contact-inner { gap: 2.5rem; }
}

@media (max-width: 36rem) {
  .testimonials-intro { padding-top: 2rem; }
  .testimonials-breadcrumb { margin-bottom: 2.25rem; }
  .testimonials-heading h1 { font-size: clamp(2.75rem, 13vw, 3.45rem); }
  .testimonials-heading > p { font-size: 0.86rem; }
  .testimonials-featured { margin-top: 3rem; }
  .testimonials-featured figure { min-height: 0; }
  .testimonials-featured img { min-height: 0; aspect-ratio: 4 / 3; }
  .testimonials-featured-copy { padding: 2rem 1.4rem; }
  .testimonials-featured blockquote { font-size: 1.55rem; }
  .testimonials-featured footer { align-items: start; flex-direction: column; }
  .testimonials-list { grid-template-columns: 1fr; }
  .testimonials-quote { min-height: 18rem; padding: 2.25rem 0; border-right: 0 !important; }
  .testimonials-quote blockquote { font-size: 1.55rem; }
  .testimonials-value-list li { grid-template-columns: 2.25rem minmax(0, 1fr); gap: 0.75rem; }
  .testimonials-contact .btn { width: 100%; }
}
