/* Triangle Triumph — modern static site + Bootstrap 5 */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --ink: #0c1118;
  --ink-2: #161d27;
  --ink-3: #222b38;
  --stone: #eef1f4;
  --stone-2: #f7f8fa;
  --paper: #ffffff;
  --muted: #4d5968;
  --line: rgba(12, 17, 24, 0.1);
  --line-strong: rgba(12, 17, 24, 0.18);
  --brass: #c4a35a;
  --brass-deep: #9a7a35;
  --brass-soft: rgba(196, 163, 90, 0.16);
  --teal: #2a6f6a;
  --ok: #1f7a4c;
  --danger: #b42318;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 18px 50px rgba(12, 17, 24, 0.12);
  --container: 1140px;
  --header-h: 78px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Bootstrap theme bridge */
  --bs-body-font-family: var(--font-body);
  --bs-body-font-size: 1.0625rem;
  --bs-body-line-height: 1.7;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--stone-2);
  --bs-heading-color: var(--ink);
  --bs-primary: #c4a35a;
  --bs-primary-rgb: 196, 163, 90;
  --bs-dark: #0c1118;
  --bs-dark-rgb: 12, 17, 24;
  --bs-secondary: #4d5968;
  --bs-border-radius: 0.65rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: var(--brass-deep);
  --bs-link-hover-color: #7e6428;
  --bs-font-sans-serif: var(--font-body);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--stone-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[src*="images.unsplash.com"] {
  background: var(--ink-2);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0 0 0.55em;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
  max-width: 65ch;
}

p:last-child {
  margin-bottom: 0;
}

.lead,
.section-head p,
.split-copy p,
.prose p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
}

.container-wide {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.85rem;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center p {
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  color: var(--ink);
  line-height: 1.2;
}

.section-head p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Buttons — branded Bootstrap overrides */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.015em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
  background: var(--brass) !important;
  border-color: var(--brass) !important;
  color: var(--ink) !important;
  box-shadow: 0 10px 28px rgba(196, 163, 90, 0.28);
}

.btn-primary:hover {
  background: #d4b46a !important;
  border-color: #d4b46a !important;
  color: var(--ink) !important;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-dark,
.btn-dark:focus,
.btn-dark:active {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
}

.btn-dark:hover {
  background: var(--ink-2) !important;
  border-color: var(--ink-2) !important;
  color: #fff !important;
}

.btn-outline,
.btn-outline-dark {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: var(--line-strong) !important;
}

.btn-outline:hover,
.btn-outline-dark:hover {
  border-color: var(--ink) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .nav-link,
.site-header.solid .nav-link,
.site-header.is-scrolled .menu-toggle,
.site-header.solid .menu-toggle {
  color: var(--ink);
  text-shadow: none;
}

.site-header.is-scrolled .brand-mark,
.site-header.solid .brand-mark {
  filter: none;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 2;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand-mark {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header .nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
}

.site-header .nav-link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.is-active {
  color: #fff;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active,
.site-header.solid .nav-link:hover,
.site-header.solid .nav-link.is-active {
  color: var(--brass-deep);
}

.site-header .nav-cta {
  margin-left: 0.65rem;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  color: var(--ink) !important;
  text-shadow: none;
  background: var(--brass);
  border: 1.5px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(196, 163, 90, 0.28);
}

.site-header .nav-cta:hover {
  background: #d4b46a;
  color: var(--ink) !important;
}

.site-header.is-scrolled .nav-cta,
.site-header.solid .nav-cta {
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  filter: saturate(0.88) brightness(0.7);
}

.hero-slide.is-active img {
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 50% at 18% 55%, rgba(196, 163, 90, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 40% at 88% 18%, rgba(42, 111, 106, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.62) 0%, rgba(8, 12, 18, 0.28) 42%, rgba(8, 12, 18, 0.55) 72%, rgba(8, 12, 18, 0.88) 100%),
    linear-gradient(100deg, rgba(8, 12, 18, 0.82) 0%, rgba(8, 12, 18, 0.45) 42%, rgba(8, 12, 18, 0.2) 100%);
}

.hero-glow {
  position: absolute;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  border-radius: 50%;
  left: -6%;
  top: 42%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.22), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: max(1.25rem, calc((100% - var(--container)) / 2));
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 12, 18, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.hero-nav:hover {
  background: rgba(196, 163, 90, 0.85);
  border-color: var(--brass);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.25rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s ease;
}

.hero-dot.is-active {
  width: 1.75rem;
  background: var(--brass);
}

.hero-dot:focus-visible,
.hero-nav:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) 0 5.5rem;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 38rem;
  padding-top: 0.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  animation: riseIn 0.85s var(--ease) both;
}

.hero-kicker::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--brass);
  flex-shrink: 0;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.85rem, 6.4vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.038em;
  margin: 0 0 1.1rem;
  color: #fff;
  max-width: 12ch;
  animation: riseIn 0.9s 0.06s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.3vw, 1.75rem);
  font-weight: 600;
  max-width: 22ch;
  margin: 0 0 0.95rem;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.96);
  animation: riseIn 0.9s 0.12s var(--ease) both;
}

.hero-lead {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.65;
  margin: 0 0 1.85rem;
  animation: riseIn 0.9s 0.18s var(--ease) both;
}

.hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 0.9s 0.26s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: max(1.25rem, calc((100% - var(--container)) / 2));
  bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  animation: riseIn 1s 0.45s var(--ease) both;
}

.hero-scroll-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll-line {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  transform-origin: left center;
  animation: scrollLine 1.8s ease-in-out infinite;
}

.hero-page {
  min-height: 48vh;
  align-items: flex-end;
}

.hero-page .hero-content {
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  display: block;
}

.hero-page .hero-copy {
  max-width: 42rem;
  padding-top: 0;
}

.hero-page .hero-brand {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: none;
  margin-bottom: 0.75rem;
}

.hero-page h1 {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  max-width: 36ch;
  margin-bottom: 0;
}

.hero-page .hero-glow,
.hero-page .hero-scroll,
.hero-page .hero-kicker,
.hero-page .hero-lead,
.hero-page .btn-row,
.hero-page .hero-controls {
  display: none;
}

@keyframes glowPulse {
  from { opacity: 0.55; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.05); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleX(0.45); opacity: 0.35; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Quiet construction note */
.quiet-band {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quiet-intro {
  padding: 3.25rem 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.quiet-intro h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin-bottom: 0.75rem;
}

.quiet-intro p {
  color: var(--muted);
  max-width: 38rem;
}

.quiet-intro-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.quiet-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiet-band p {
  margin: 0;
  color: var(--muted);
  max-width: none;
  font-size: 1rem;
}

.quiet-band a {
  color: var(--brass-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quiet-band a:hover {
  color: var(--ink);
}

/* Grain / texture accents */
.texture-panel {
  position: relative;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(196, 163, 90, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(42, 111, 106, 0.1), transparent 40%),
    var(--stone-2);
}

.texture-dark {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 163, 90, 0.14), transparent 40%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, #1a2834 100%);
  color: #fff;
}

/* Feature strip */
.feature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-item {
  padding: 1.85rem 1.35rem;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item h3 {
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: #0a0e14 !important;
  font-weight: 700;
}

.feature-item p {
  color: #4a5563;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: none;
}

.feature-item .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brass-deep);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

@media (max-width: 1199.98px) {
  .feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-item:nth-child(3n) {
    border-right: 0;
  }

  .feature-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 767.98px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item:nth-child(3n) {
    border-right: 0;
  }

  .feature-item:nth-child(n + 4) {
    border-top: 0;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split-visual {
  position: relative;
}

.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: auto -12px -12px auto;
  width: 42%;
  height: 42%;
  border: 2px solid var(--brass);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.7;
}

.split-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.split-copy p {
  color: var(--muted);
}

.checklist {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.checklist .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brass-soft);
  color: var(--brass-deep);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.checklist strong {
  display: block;
  margin-bottom: 0.15rem;
}

.checklist span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Product / category tiles — interaction surfaces */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  color: #fff;
  isolation: isolate;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: -2;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 17, 24, 0.15) 10%, rgba(12, 17, 24, 0.82) 100%);
  z-index: -1;
}

.tile:hover img {
  transform: scale(1.06);
}

.tile-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
}

.tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.tile p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.tile-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-top: 0.25rem;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--brass);
  margin-bottom: 0.85rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: #fff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  max-width: none;
}

.texture-dark .process-step h3,
.texture-dark .process-step .h3 {
  color: #fff;
}

.texture-dark .process-step p {
  color: rgba(255, 255, 255, 0.72);
}

/* Mission / vision blocks */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mv-block {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.mv-block h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mv-block p {
  color: var(--muted);
}

/* Product catalog */
.catalog {
  display: grid;
  gap: 2.5rem;
}

.catalog-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.catalog-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.catalog-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.catalog-copy h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
}

.catalog-copy > p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.brand-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--stone);
  color: var(--ink-3);
}

.item-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

.item-cols h4 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.item-cols p,
.item-cols li {
  color: var(--muted);
  font-size: 0.92rem;
}

.item-cols ul {
  display: grid;
  gap: 0.25rem;
}

.item-cols li::before {
  content: "– ";
  color: var(--brass-deep);
}

/* Construction categories */
.const-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.const-item {
  padding: 1.5rem 1.4rem;
  background: var(--paper);
  border-top: 3px solid var(--brass);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 30px rgba(12, 17, 24, 0.04);
}

.const-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.const-item > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  max-width: none;
}

.const-item ul {
  display: grid;
  gap: 0.35rem;
}

.const-item li {
  color: var(--ink-3);
  font-size: 0.98rem;
  line-height: 1.55;
  padding-left: 0.9rem;
  position: relative;
}

.const-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}

/* Services */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.3rem 1.4rem;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: rgba(196, 163, 90, 0.55);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brass-soft);
  color: var(--brass-deep);
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  max-width: none;
}

.service-card ul {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.service-card li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-3);
  padding-left: 0.85rem;
  position: relative;
}

.service-card li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.catalog-copy > p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
}

.tile p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  max-width: none;
}

/* CTA band */
.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 46ch;
  margin: 0 auto 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.info-block h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.45rem;
}

.info-block p,
.info-block a {
  color: var(--ink);
  font-weight: 600;
}

.info-block a:hover {
  color: var(--brass-deep);
}

.contact-form,
.side-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 12px 40px rgba(12, 17, 24, 0.05);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink-3);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: var(--stone-2);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.ok {
  display: block;
  background: rgba(31, 122, 76, 0.1);
  color: var(--ok);
}

.form-status.err {
  display: block;
  background: rgba(180, 35, 24, 0.08);
  color: var(--danger);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Privacy */
.prose {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  margin: 0 0 1em;
  padding-left: 1.1rem;
  list-style: disc;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.75rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 2.4fr) 0.85fr 0.85fr minmax(200px, 1.15fr);
  gap: 2rem 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top > [class*="col-"] {
  width: auto;
  max-width: none;
  flex: none;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: none;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--brass);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(12, 17, 24, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-link {
    font-size: 1.35rem;
    color: #fff !important;
    padding: 0.7rem 1rem;
  }

  .nav-cta {
    margin: 1rem 0 0;
    color: var(--ink) !important;
  }

  .feature-strip,
  .tile-grid,
  .process,
  .mv-grid,
  .services-grid,
  .const-grid,
  .split,
  .contact-grid,
  .catalog-block,
  .footer-top,
  .item-cols,
  .form-row {
    grid-template-columns: 1fr;
  }

  .split.reverse {
    direction: ltr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .process {
    gap: 1.75rem;
  }

  .tile {
    min-height: 260px;
  }

  .brand-mark {
    filter: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
  }

  .menu-toggle {
    color: var(--ink);
  }

  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero-content {
    padding: calc(var(--header-h) + 1rem) 0 4.5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-brand {
    max-width: 9ch;
  }

  .hero-scroll {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .hero-controls {
    right: 1.25rem;
    bottom: 1.25rem;
    gap: 0.5rem;
  }

  .hero-nav {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 720px) {
  .container-wide {
    width: min(100% - 1.5rem, 1280px);
  }

  .hero-content {
    padding: calc(var(--header-h) + 0.5rem) 0 4rem;
  }

  .hero-brand {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
    margin-bottom: 0.95rem;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(1.2rem, 4.6vw, 1.45rem);
  }

  .hero-lead {
    max-width: 32ch;
    margin-bottom: 1.5rem;
  }

  .const-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .tile-grid,
  .services-grid,
  .const-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Bootstrap layout helpers used across pages */
.tt-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(12, 17, 24, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.tt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tt-card h3,
.tt-card .tt-card-title,
.tt-card .h6 {
  font-family: var(--font-display);
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  color: var(--ink) !important;
}

.tt-card .tt-card-title .bi,
.tt-card h3 .bi {
  color: var(--brass-deep) !important;
}

.tt-card p,
.tt-card .small {
  color: var(--muted) !important;
  max-width: none;
  line-height: 1.6;
}

.feature-item h3 {
  color: #0a0e14 !important;
}

.mv-block h3 {
  color: var(--ink) !important;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 0.65rem;
  border-color: var(--line-strong);
  background: var(--stone-2);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 0.2rem rgba(196, 163, 90, 0.2);
  background: #fff;
}

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink-3);
}

.texture-dark h2,
.texture-dark h3,
.texture-dark .h2,
.texture-dark .h3 {
  color: #fff;
}

.texture-dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.bi {
  vertical-align: -0.1em;
}

/* Stronger image presentation */
.split-visual img,
.catalog-media img,
.tile img,
.hero-slide img,
.hero-media > img {
  object-fit: cover;
}

.catalog-media img {
  min-height: 240px;
}
