/* ============================
   Stretchhaus — Landing Page Styles
   Brand: Forest #2A4A36 · Ink #1A1A1A · Paper #F4F1EC
   ============================ */

:root {
  --forest: #2A4A36;
  --forest-light: #5A8A6E;
  --forest-dark: #1F3528;
  --ink: #1A1A1A;
  --ink-soft: #2A2A2A;
  --paper: #F4F1EC;
  --paper-warm: #EDE8DF;
  --stone: #8A8580;
  --white: #FFFFFF;

  --max-width: 1280px;
  --max-width-narrow: 800px;
  --gutter: 1.5rem;

  --letter-spacing-caps: 0.32em;
  --letter-spacing-eyebrow: 0.18em;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 72px; /* space for sticky bar on mobile */
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Image fill rules for content areas */
.hero-img,
.bleed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.finish-image img,
.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finish-image,
.sector-image {
  overflow: hidden;
}

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

.container-narrow { max-width: var(--max-width-narrow); }

/* ============================
   Header
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--forest);
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo svg { flex-shrink: 0; }

.header-wordmark {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--paper);
}

@media (max-width: 480px) {
  .header-wordmark { font-size: 14px; letter-spacing: 0.24em; }
  .header-logo svg { width: 48px; height: 38px; }
  .header-inner { padding-top: 1rem; padding-bottom: 1rem; }
}

.header-nav {
  display: none;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .header-nav { display: flex; }
}

.header-nav > a {
  font-size: 14px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
  padding: 8px 4px;
}

.header-nav > a:hover { opacity: 0.65; }

.nav-cta {
  background: var(--paper);
  color: var(--forest) !important;
  padding: 10px 20px;
  border-radius: 4px;
  letter-spacing: 0.05em !important;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #fff;
  opacity: 1 !important;
  transform: translateY(-1px);
}

/* ============================
   Floating bottom-right contact widget
   ============================ */
.float-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

@media (min-width: 768px) {
  .float-widget { display: flex; }
}

.float-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 18px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
  white-space: nowrap;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.float-btn-whatsapp {
  background: #25D366;
  color: white !important;
}

.float-btn-call {
  background: var(--forest);
  color: var(--paper) !important;
}

.float-btn svg { flex-shrink: 0; }

/* ============================
   Sticky mobile bar
   ============================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .sticky-bar { display: none; }
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
}

.sticky-whatsapp { background: #25D366; }
.sticky-call { background: var(--forest); }

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

@media (min-width: 768px) {
  .hero { min-height: 90vh; }
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.placeholder-hero {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  background: linear-gradient(135deg, #2A4A36 0%, #1A1A1A 100%);
  color: rgba(244, 241, 236, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(244, 241, 236, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(244, 241, 236, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-headline {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(244, 241, 236, 0.85);
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: 13px;
  color: rgba(244, 241, 236, 0.7);
  letter-spacing: 0.04em;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-primary:hover { background: #1FAE52; border-color: #1FAE52; }

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-secondary:hover { background: var(--paper); color: var(--ink); }

.btn-secondary-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary-dark:hover { background: var(--ink); color: var(--paper); }

.btn-block { width: 100%; }

/* ============================
   Trust strip - Forest dark band (compact)
   ============================ */
.trust-strip {
  background: var(--forest);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  color: var(--paper);
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 241, 236, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.trust-strip > .container { position: relative; z-index: 1; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 600px) {
  .trust-card {
    padding: 0.5rem 1.5rem;
    border-right: 1px solid rgba(244, 241, 236, 0.18);
  }
  .trust-card:nth-child(2n) { border-right: none; }
  .trust-card:first-child { padding-left: 0; }
  .trust-card:nth-child(2n+1) { padding-left: 0; }
}

@media (min-width: 900px) {
  .trust-card {
    padding: 0.5rem 1.5rem;
    border-right: 1px solid rgba(244, 241, 236, 0.18);
  }
  .trust-card:nth-child(2n) { border-right: 1px solid rgba(244, 241, 236, 0.18); }
  .trust-card:last-child { border-right: none; }
  .trust-card:first-child { padding-left: 0; }
  .trust-card:nth-child(2n+1) { padding-left: 1.5rem; }
  .trust-card:first-child { padding-left: 0; }
}

.trust-num {
  font-size: clamp(36px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.375rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.trust-unit {
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(244, 241, 236, 0.7);
  text-transform: lowercase;
}

.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.trust-detail {
  font-size: 12px;
  color: rgba(244, 241, 236, 0.55);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ============================
   Sections
   ============================ */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
}

.section-alt {
  background: var(--paper-warm);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(42, 74, 54, 0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}

.section-alt > .container { position: relative; z-index: 1; }

.section-dark { background: var(--ink); color: var(--paper); }

/* ============================
   Manufacturers - tight logo strip
   ============================ */
.manufacturers {
  padding: 2.5rem 0;
  background: var(--paper);
  position: relative;
  border-top: 1px solid rgba(42, 74, 54, 0.08);
  border-bottom: 1px solid rgba(42, 74, 54, 0.08);
}

@media (max-width: 768px) {
  .manufacturers { padding: 2rem 0; }
}

.manufacturers-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--letter-spacing-eyebrow);
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-bottom: 1.5rem;
}

.manufacturers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
}

@media (min-width: 768px) {
  .manufacturers-grid { grid-template-columns: repeat(6, 1fr); }
}

.manufacturer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  height: 60px;
  background: transparent;
  transition: opacity 0.2s ease;
  border: none;
  aspect-ratio: auto;
}

.manufacturer-logo:hover { background: transparent; }

.logo-img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.2s ease;
  mix-blend-mode: multiply;
}

.manufacturer-logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  transition: color 0.2s ease;
}

.manufacturer-logo:hover .logo-text {
  color: var(--forest);
}

/* ============================
   Full-bleed image moment
   ============================ */
.bleed-image {
  position: relative;
  height: 38vh;
  min-height: 280px;
  max-height: 420px;
  background: var(--ink);
  overflow: hidden;
}

.bleed-image-inner {
  position: absolute;
  inset: 0;
}

.placeholder-bleed {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A4A36 0%, #1A1A1A 60%, #2A4A36 100%);
  color: rgba(244, 241, 236, 0.4);
}

.bleed-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.bleed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 2rem;
  text-align: center;
}

.bleed-quote {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.bleed-attribution {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.7);
  font-weight: 500;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--letter-spacing-eyebrow);
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.eyebrow-light { color: rgba(244, 241, 236, 0.6); }

.section-headline {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.section-dark .section-headline { color: var(--paper); }

.section-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 3rem;
}

/* ============================
   Finish grid (What we make)
   ============================ */
.finish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) { .finish-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .finish-grid { grid-template-columns: 1fr 1fr 1fr; } }

.finish-tile {
  display: flex;
  flex-direction: column;
}

.finish-image {
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.finish-tile h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.finish-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================
   CTA band
   ============================ */
.cta-band {
  background: var(--forest);
  color: var(--paper);
  padding: 4rem 0;
}

.cta-band-inner {
  text-align: center;
}

.cta-band-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(244, 241, 236, 0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-band .btn-secondary-dark {
  color: var(--paper);
  border-color: var(--paper);
}
.cta-band .btn-secondary-dark:hover {
  background: var(--paper);
  color: var(--forest);
}

/* ============================
   Sector grid
   ============================ */
.sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sector-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .sector-tile-wide { grid-column: 1 / -1; }
}

.sector-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.sector-tile-wide {
  aspect-ratio: 21 / 9;
  max-height: 320px;
}

.sector-image {
  position: absolute;
  inset: 0;
}

.sector-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.sector-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--paper);
  z-index: 2;
}

.sector-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.sector-content p {
  font-size: 14px;
  color: rgba(244, 241, 236, 0.9);
  line-height: 1.5;
}

/* ============================
   Why grid
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .why-item-wide { grid-column: 1 / -1; }
  .why-item-wide {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .why-item-wide .why-icon { flex-shrink: 0; margin-bottom: 0; }
  .why-item-wide h3 { margin-top: 0.25rem; }
}

.why-item {
  background: var(--paper);
  border: 1px solid rgba(42, 74, 54, 0.1);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  border-color: rgba(42, 74, 54, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 74, 54, 0.06);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--forest);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.why-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.why-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* ============================
   Gallery
   ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item { aspect-ratio: auto; }
  .gallery-item-tall { grid-row: span 2; }
  .gallery-item-wide { grid-column: span 2; }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 220px;
  }
}

.gallery-item {
  background: var(--paper-warm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item-tall, .gallery-item-wide { aspect-ratio: auto; }

/* ============================
   FAQ
   ============================ */
.faq-list {
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.faq-item summary {
  padding: 1.5rem 2rem 1.5rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  padding: 0 0 1.5rem 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 700px;
}

/* ============================
   Contact section
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 1rem;
  max-width: 500px;
}

.contact-sub {
  font-size: 1rem;
  color: rgba(244, 241, 236, 0.75);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 0;
  border-top: 1px solid rgba(244, 241, 236, 0.15);
  color: var(--paper);
  transition: opacity 0.2s ease;
}

.contact-channel:last-child { border-bottom: 1px solid rgba(244, 241, 236, 0.15); }
.contact-channel:hover { opacity: 0.75; }

.contact-channel svg { color: var(--forest-light); flex-shrink: 0; }

.contact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.5);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
}

/* ============================
   Form
   ============================ */
.contact-form-wrap {
  background: var(--paper);
  padding: 2rem;
  border-radius: 4px;
}

@media (min-width: 600px) {
  .contact-form-wrap { padding: 2.5rem; }
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--forest);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 12px;
  color: var(--stone);
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================
   Footer
   ============================ */
.footer {
  background: var(--ink);
  color: rgba(244, 241, 236, 0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand svg { margin-bottom: 4px; }

.footer-wordmark {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: var(--letter-spacing-caps);
  color: var(--paper);
}

.footer-tag {
  font-size: 13px;
  color: rgba(244, 241, 236, 0.5);
  margin-top: 4px;
}

.footer-meta { font-size: 14px; line-height: 1.8; }
.footer-meta a:hover { color: var(--paper); }

.footer-legal {
  font-size: 12px;
  color: rgba(244, 241, 236, 0.4);
}

@media (min-width: 768px) {
  .footer-legal { text-align: right; }
}

/* ============================
   Placeholder system
   ============================ */
.placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      var(--paper-warm),
      var(--paper-warm) 10px,
      #E5DFD3 10px,
      #E5DFD3 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.gallery-item .placeholder { min-height: 200px; }
.finish-image .placeholder, .sector-image .placeholder { min-height: 300px; }
