/* =============================================================
   CASCADE FORGE — Design System & Shared Styles
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:             #0e1214;
  --bg2:            #141a1e;
  --bg3:            #1a2228;
  --teal:           #1d8a7a;
  --teal-l:         #25a890;
  --teal-d:         #0f4f47;
  --teal-t:         rgba(29,138,122,0.15);
  --silver:         #7a8a94;
  --silver-l:       #a8b8c0;
  --white:          #f0f4f6;
  --white-d:        #c8d4da;
  --border:         rgba(255,255,255,0.07);
  --border-t:       rgba(29,138,122,0.3);
  --amber:          #c8861e;
  --amber-d:        rgba(200,134,30,0.12);
  --amber-b:        rgba(200,134,30,0.35);
  --fh:             'Montserrat', sans-serif;
  --fb:             'DM Sans', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 74px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(48px, calc((100% - 1280px) / 2 + 48px));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--fh);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-l);
}

.btn-nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}

.btn-nav-cta:hover { background: var(--teal-l); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-d);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #070b0d;
  border-top: 1px solid var(--border);
  padding: 44px max(48px, calc((100% - 1280px) / 2 + 48px));
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand .footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo-name {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
}

.footer-brand .footer-logo-sub {
  font-family: var(--fh);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}

.footer-brand p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
  max-width: 230px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 8px;
  font-weight: 300;
  transition: color .2s;
}

.footer-col a:hover { color: var(--teal-l); }
.footer-col a.teal-link { color: var(--teal-l); }

.footer-bottom {
  background: #070b0d;
  border-top: 1px solid var(--border);
  padding: 16px max(48px, calc((100% - 1280px) / 2 + 48px));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--silver);
  font-weight: 300;
}

/* ─── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--teal-d);
  border-top: 1px solid var(--border-t);
  border-bottom: 1px solid var(--border-t);
  padding: 52px max(48px, calc((100% - 1280px) / 2 + 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band-text h2 {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-band-text p {
  font-size: 15px;
  color: var(--silver-l);
  font-weight: 300;
}

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px 48px;
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,138,122,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,122,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--fh);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 15px;
  color: var(--silver-l);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
}

/* ─── Section Shared ─────────────────────────────────────────── */
section { padding: 64px max(48px, calc((100% - 1280px) / 2 + 48px)); }
.bg-primary { background: var(--bg); }
.bg-secondary { background: var(--bg2); }

.section-tag {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--fh);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  color: var(--silver-l);
  line-height: 1.65;
  font-weight: 300;
  max-width: 560px;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px;
}

.card.card-teal { border-color: var(--border-t); }

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-d);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal-l);
  fill: none;
  stroke-width: 2;
}

.card h3 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  font-weight: 300;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--teal-l);
  transition: color .2s;
}

.card-link:hover { color: var(--white); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 13px 26px;
  border-radius: 3px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--teal-l); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--silver-l);
  padding: 13px 26px;
  border-radius: 3px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--border-t);
  color: var(--white);
}

/* ─── Notice Boxes ───────────────────────────────────────────── */
.notice-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  margin-top: 18px;
}

.notice-box p {
  font-size: 13px;
  color: var(--silver-l);
  font-weight: 300;
  line-height: 1.6;
}

.amber-notice {
  background: var(--amber-d);
  border: 1px solid var(--amber-b);
  border-radius: 4px;
  padding: 10px 14px;
  margin-top: 8px;
}

.amber-notice p {
  font-size: 11px;
  color: var(--amber);
  font-weight: 300;
  line-height: 1.5;
}

/* ─── Chips / Tags ───────────────────────────────────────────── */
.chip {
  display: inline-block;
  background: var(--teal-d);
  color: var(--teal-l);
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin: 2px 2px 2px 0;
}

.chip.chip-grey {
  background: var(--bg3);
  color: var(--silver);
  border: 1px solid var(--border);
}

.chip.chip-amber {
  background: var(--amber-d);
  color: var(--amber);
  border: 1px solid var(--amber-b);
}

/* ─── Badge ──────────────────────────────────────────────────── */
.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ─── Two-Column Layout ──────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col.col-wide-left {
  grid-template-columns: 3fr 2fr;
}

/* ─── HOME PAGE ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-left: max(48px, calc((100% - 1280px) / 2 + 48px));
  padding-right: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,138,122,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,122,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(29,138,122,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0;
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-eyebrow {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-top: 0;
  margin-bottom: 0;
}

.hero h1 {
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 2px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-l);
}

.hero-tagline {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 300;
  color: var(--silver-l);
  margin-bottom: 6px;
}

.hero-body {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  margin-top: auto;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 340px;
  flex-shrink: 0;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  margin-right: max(48px, calc((100% - 1280px) / 2 + 48px));
  margin-bottom: 0;
}

.hero-printer-box {
  width: 100%;
  height: 100%;
  max-height: none;
  background: var(--bg2);
  border: 1px solid var(--border-t);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-printer-label {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}

.hero-printer-sub {
  font-size: 11px;
  color: var(--silver);
  font-weight: 300;
}

/* Stat Bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 max(48px, calc((100% - 1280px) / 2 + 48px));
}

.stat-item {
  padding: 26px 28px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  color: var(--teal-l);
}

.stat-label {
  font-size: 13px;
  color: var(--silver);
  margin-top: 4px;
  font-weight: 300;
}

.stat-sub {
  font-size: 11px;
  color: var(--silver);
  margin-top: 2px;
  font-weight: 300;
}

/* Markets / Who We Serve */
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 44px;
}

.market-col h3 {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.market-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.market-item:last-child { border-bottom: none; }

.market-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.market-item h4 {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-d);
  margin-bottom: 3px;
}

.market-item p {
  font-size: 12px;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.5;
}

.market-note {
  font-size: 11px;
  color: var(--amber);
  margin-top: 4px;
}

/* Materials Grid */
.materials-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0;
}

.material-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
}

.material-chip.material-chip-teal { border-color: var(--border-t); }

.material-chip .mat-name {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.material-chip .mat-desc {
  font-size: 11px;
  color: var(--silver);
  font-weight: 300;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.about-two-col {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image-placeholder {
  width: 100%;
  height: 360px;
  background: var(--bg3);
  border: 1px solid var(--border-t);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-image-placeholder span {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}

.about-content p {
  font-size: 15px;
  color: var(--silver-l);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.spec-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
}

.spec-item .spec-label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}

.spec-item .spec-value {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

/* ─── SERVICES PAGE ──────────────────────────────────────────── */
.svc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.svc-table th {
  text-align: left;
  padding: 10px 16px;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  border-bottom: 1px solid var(--border);
}

.svc-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--silver-l);
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  vertical-align: top;
}

.svc-table tr:last-child td { border-bottom: none; }

.svc-table .svc-name {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-d);
  margin-bottom: 2px;
}

.svc-table .svc-detail {
  font-size: 11px;
  color: var(--silver);
  font-weight: 300;
}

.coming-soon-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 26px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.coming-soon-card .cs-content h3 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white-d);
  margin-bottom: 6px;
}

.coming-soon-card .cs-content p {
  font-size: 13px;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── PRICING PAGE ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  position: relative;
}

.pricing-card.pricing-featured { border-color: var(--teal); }

.pricing-card .pc-label {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}

.pricing-card .pc-price {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card .pc-mat {
  font-size: 12px;
  color: var(--silver);
  font-weight: 300;
  margin-bottom: 20px;
}

.pricing-card ul {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.pricing-card ul li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--silver-l);
  font-weight: 300;
  margin-bottom: 10px;
  align-items: flex-start;
}

.pricing-card ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Special Rates */
.special-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.special-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px;
}

.special-card h3 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.special-card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 16px;
}

.special-card a {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--teal-l);
  transition: color .2s;
}

.special-card a:hover { color: var(--white); }

/* ─── GALLERY PAGE ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--border-t);
  color: var(--teal-l);
  background: var(--teal-t);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.gallery-placeholder {
  height: 180px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--silver);
  fill: none;
  stroke-width: 1.5;
  opacity: .4;
}

.gallery-placeholder span {
  font-family: var(--fh);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: .4;
}

.gallery-caption {
  padding: 14px 16px;
}

.gallery-caption h4 {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--white-d);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 11px;
  color: var(--silver);
  font-weight: 300;
}

/* ─── SUPPORT PAGE ───────────────────────────────────────────── */
.faq-list { margin-top: 32px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-d);
  transition: color .2s;
  user-select: none;
}

.faq-question:hover { color: var(--teal-l); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--teal-l);
  transition: transform .2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  font-size: 13px;
  color: var(--silver-l);
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 18px;
}

/* Contact Cards */
.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px;
}

.contact-card h3 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 12px;
}

.contact-card .contact-email {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-l);
}

/* ─── QUOTE PAGE ─────────────────────────────────────────────── */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.quote-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
}

.quote-form h2 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-group .field-hint {
  font-size: 11px;
  color: var(--silver);
  font-weight: 300;
}

.form-control {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  transition: border-color .2s;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--border-t);
}

.form-control::placeholder { color: var(--silver); }

.form-control.error-field { border-color: var(--amber-b); }

.field-error {
  font-size: 11px;
  color: var(--amber);
  margin-top: 3px;
  display: none;
}

.field-error.visible { display: block; }

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8a94' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
  font-family: var(--fb);
}

/* File Upload Zone */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: var(--border-t);
  background: var(--teal-t);
}

.file-upload-zone svg {
  width: 32px;
  height: 32px;
  stroke: var(--silver);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 10px;
  display: block;
}

.file-upload-zone p {
  font-size: 13px;
  color: var(--silver);
  font-weight: 300;
  margin-bottom: 4px;
}

.file-upload-zone small {
  font-size: 11px;
  color: var(--silver);
  opacity: .7;
}

.file-upload-zone .file-name {
  margin-top: 8px;
  font-size: 12px;
  color: var(--teal-l);
  font-weight: 600;
}

#quote-file-input { display: none; }

/* Form States */
.form-success {
  border: 1px solid var(--border-t);
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  display: none;
}

.form-success.visible { display: block; }

.success-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-l);
  fill: none;
  stroke-width: 2.5;
}

.form-success h3 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14px;
  color: var(--silver-l);
  line-height: 1.7;
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto;
}

.form-error-msg {
  background: var(--amber-d);
  border: 1px solid var(--amber-b);
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--amber);
  font-weight: 300;
  display: none;
}

.form-error-msg.visible { display: block; }

.submit-row {
  margin-top: 8px;
}

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: #fff;
  padding: 16px;
  border-radius: 3px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover { background: var(--teal-l); }

.submit-note {
  text-align: center;
  font-size: 11px;
  color: var(--silver);
  font-weight: 300;
  margin-top: 10px;
}

.submit-note a { color: var(--teal-l); }

/* Quote Sidebar */
.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
}

.sidebar-card h3 {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.sidebar-card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  font-weight: 300;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  width: 22px;
  height: 22px;
  background: var(--teal-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 800;
  color: var(--teal-l);
  flex-shrink: 0;
}

.step-item h4 {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--white-d);
  margin-bottom: 2px;
}

.step-item p {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
  font-weight: 300;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .site-nav {
    padding: 0 20px;
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 0;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links a:last-child { border-bottom: none; }

  .btn-nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }

  .nav-hamburger { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-left: 0;
    padding-bottom: 40px;
  }

  .hero-inner {
    padding: 48px 20px;
    max-width: 100%;
  }

  .hero h1 { font-size: 34px; }

  .hero-right { display: none; }

  /* Stat Bar */
  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  /* Sections */
  section { padding: 44px 20px; }
  .page-hero { padding: 40px 20px 32px; }

  /* Grids */
  .card-grid-3,
  .card-grid-2,
  .pricing-grid,
  .special-rates-grid,
  .gallery-grid { grid-template-columns: 1fr; }

  .markets-grid,
  .two-col,
  .two-col.col-wide-left,
  .materials-section-inner,
  .about-two-col { grid-template-columns: 1fr; gap: 32px; }

  .section-title { font-size: 26px; }

  /* Quote */
  .quote-layout { grid-template-columns: 1fr; }

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

  /* Footer */
  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 24px;
  }

  .footer-bottom {
    padding: 12px 20px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* CTA Band */
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 20px;
  }

  /* Nav */
  .site-nav { padding: 0 20px; }

  .spec-grid { grid-template-columns: 1fr; }

  /* Services table scroll */
  .svc-table-wrap { overflow-x: auto; }

  /* Filter bar */
  .filter-bar { gap: 6px; }
}


/* ─── Contact card flex layout ───────────────────────────────── */
.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card .contact-email,
.contact-card .card-link {
  margin-top: auto;
}

/* ─── Upload large file note ─────────────────────────────────── */
.upload-large-file-note {
  font-size: 11px;
  color: var(--silver);
  margin-top: 8px;
  font-weight: 300;
}

.upload-large-file-note a {
  color: var(--teal-l);
  text-decoration: underline;
}

/* ─── Gallery social band ────────────────────────────────────── */
.social-band {
  margin-top: 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-band-text {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}

.social-band-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--silver-l);
  text-decoration: none;
  transition: color .2s;
}

a.social-link:hover {
  color: var(--teal-l);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-link-inactive {
  cursor: default;
  opacity: .55;
}

.social-coming-soon {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  color: var(--silver);
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .social-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .social-band-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
