:root {
  --off-white: #f8f9fa;
  --light-grey: #f4f5f6;
  --border-grey: #D8D8D4;
  --text-mid: #4A4A4A;
  --text-light: #888880;
  --fm-red: #E3000B;
  --fm-red-dark: #B8000A;
  --fm-black: #121212;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border-grey);
  height: 64px;
  display: flex;
  align-items: center
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  overflow: hidden;
  height: 22px;
  display: block;
  flex-shrink: 0
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-top: -2px
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--fm-red)
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-nav-red {
  background: var(--fm-red);
  color: #fff
}

.btn-nav-red:hover {
  background: var(--fm-red-dark)
}

.btn-nav-dark {
  background: var(--fm-black);
  color: #fff
}

.btn-nav-dark:hover {
  background: #333
}

/* BREADCRUMB */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 2rem;
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none
}

.breadcrumb a:hover {
  color: var(--fm-red)
}

.breadcrumb .sep {
  opacity: .5
}

.breadcrumb .current {
  color: var(--text-mid)
}

/* HERO */
.hero-wrap {
  position: relative;
  overflow: hidden;
  height: 540px
}

.hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 26, .72) 0%, rgba(26, 26, 26, .22) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 56px
}

.hero-content {
  max-width: 580px
}

.hero-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px
}

.tag-red {
  background: var(--fm-red);
  color: #fff
}

.tag-outline {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 10px
}

.hero-title strong {
  font-weight: 700;
  display: block
}

.hero-sub {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5
}

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

/* BUTTONS */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--fm-red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s;
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  background: var(--fm-red-dark)
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255, 255, 255, .75);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: border-color .2s, background .2s;
  background: none;
  cursor: pointer;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1)
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--fm-red);
  color: var(--fm-red);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s, color .2s;
  background: none;
  cursor: pointer;
}

.btn-outline-red:hover {
  background: var(--fm-red);
  color: #fff
}

.btn-white {
  background: #fff;
  color: var(--fm-red-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  opacity: .9
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 13px 28px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* METRICS */
.metrics-band {
  background: var(--fm-black);
  padding: 48px 2rem
}

.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.metric-item {
  padding: 0 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.metric-item:first-child {
  padding-left: 0;
  text-align: left
}

.metric-item:last-child {
  border-right: none
}

.metric-num {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em
}

.metric-num span {
  font-size: 22px;
  font-weight: 400;
  color: var(--fm-red)
}

.metric-lbl {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5
}

/* LAYOUT */
.two-col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem
}

.section-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fm-red);
  display: block;
  margin-bottom: 16px
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -.01em
}

.section-title strong {
  font-weight: 600
}

.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 640px
}

.divider {
  border: none;
  border-top: 1px solid var(--border-grey);
  margin: 0
}

/* FACT CARD */
.fact-card {
  border: 1px solid var(--border-grey);
  border-radius: 3px;
  overflow: hidden;
  position: sticky;
  top: 80px
}

.fact-hdr {
  background: var(--fm-black);
  color: #fff;
  padding: 22px 24px
}

.fact-hdr .lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 6px
}

.fact-hdr .proj {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3
}

.fact-rows {
  padding: 0
}

.fact-row {
  display: flex;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--light-grey)
}

.fact-row:last-child {
  border-bottom: none
}

.fact-key {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 88px;
  flex-shrink: 0;
  padding-top: 1px
}

.fact-val {
  font-size: 14px;
  color: #111;
  line-height: 1.5
}

.fact-val strong {
  color: var(--fm-red);
  font-weight: 600
}

.fact-val small {
  font-size: 12px;
  color: var(--text-light);
  display: block
}

/* CHALLENGE */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-grey);
  border: 1px solid var(--border-grey);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 40px
}

.ch-cell {
  background: #fff;
  padding: 28px 24px;
  transition: background .2s
}

.ch-cell:hover {
  background: var(--off-white)
}

.ch-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--fm-red);
  opacity: .3;
  line-height: 1;
  margin-bottom: 12px
}

.ch-cell h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px
}

.ch-cell p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65
}

/* DIAGRAM */
.diagram-box {
  border: 1px solid var(--border-grey);
  border-radius: 3px;
  overflow: hidden
}

.diagram-hdr {
  background: var(--light-grey);
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-grey)
}

.diagram-body {
  padding: 24px 20px
}

.layers {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.layer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 2px;
  border-left: 3px solid transparent
}

.l1 {
  background: #E3000B10;
  border-left-color: var(--fm-red)
}

.l2,
.l3 {
  background: var(--off-white);
  border-left-color: var(--border-grey)
}

.l4 {
  background: #12121208;
  border-left-color: #888
}

.l-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px
}

.l-title {
  font-size: 13px;
  font-weight: 600;
  color: #111
}

.l-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.5
}

.arrow {
  text-align: center;
  font-size: 16px;
  color: var(--border-grey)
}

.spec-strip {
  background: var(--light-grey);
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  padding: 28px 2rem
}

.spec-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px
}

.s-lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block
}

.s-val {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  line-height: 1.5
}

.s-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px
}

/* ARCHITECT */
.arch-section {
  background: #111;
  padding: 80px 2rem;
  position: relative;
  overflow: hidden
}

.arch-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, .025);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1
}

.arch-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1
}

.arch-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.arch-photo-wrap {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--fm-red);
  box-shadow: 0 0 0 6px rgba(227, 0, 11, .15), 0 20px 40px rgba(0, 0, 0, .4);
  margin-bottom: 18px
}

.arch-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.05) contrast(1.05)
}

.arch-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px
}

.arch-firm {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

.arch-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fm-red);
  border: 1px solid rgba(227, 0, 11, .4);
  padding: 4px 12px;
  border-radius: 2px
}

.q-line {
  width: 48px;
  height: 3px;
  background: var(--fm-red);
  margin-bottom: 28px
}

.q-mark {
  font-size: 80px;
  font-weight: 700;
  color: var(--fm-red);
  line-height: .5;
  margin-bottom: 24px;
  display: block;
  font-family: Georgia, serif;
  opacity: .8
}

.q-text {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 640px
}

.q-text em {
  font-style: normal;
  color: var(--fm-red);
  font-weight: 500
}

.q-attr {
  font-size: 13px;
  color: rgba(255, 255, 255, .5)
}

.q-attr strong {
  font-weight: 600;
  color: rgba(255, 255, 255, .85)
}

/* GALLERY */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 380px 240px;
  gap: 6px;
  margin-top: 32px
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in
}

.g-item:first-child {
  grid-row: span 2
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .3s
}

.g-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.06)
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s
}

.g-item:hover .g-overlay {
  background: rgba(0, 0, 0, .22)
}

.g-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
  color: var(--fm-black)
}

.g-item:hover .g-zoom {
  opacity: 1;
  transform: scale(1)
}

.gallery-cap {
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
  margin-top: 10px
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px
}

.lightbox.open {
  display: flex
}

.lb-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.lb-cap {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-top: 16px;
  text-align: center
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.lb-close:hover {
  background: rgba(255, 255, 255, .3)
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.lb-nav:hover {
  background: rgba(255, 255, 255, .3)
}

.lb-prev {
  left: 16px
}

.lb-next {
  right: 16px
}

.lb-ctr {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .5);
  font-size: 13px
}

/* PERF TABLE */
.perf-section {
  max-width: 1200px;
  margin: 0 auto;
}

.perf-title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 24px;
  padding-top: 60px;
}

.perf-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	border: 1px solid var(--border-grey);
}

.perf-table thead th {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--fm-black);
  background: var(--off-white)
}

.perf-table td {
  padding: 16px;
  border-bottom: 1px solid var(--light-grey);
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.55
}

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

.perf-table td:first-child {
  font-weight: 600;
  color: #111;
  width: 190px;
  font-size: 13px
}

.perf-table tr:nth-child(even) td {
  background: var(--off-white)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  background: #E6F4EC;
  color: #1A6B32;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap
}

/* RESOURCES */
.res-section {
  background: var(--light-grey);
  padding: 60px 2rem
}

.res-inner {
  max-width: 1200px;
  margin: 0 auto
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 32px
}

.res-card {
  background: #fff;
  border: 1px solid var(--border-grey);
  border-radius: 3px;
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, box-shadow .2s
}

.res-card:hover {
  border-color: var(--fm-red);
  box-shadow: 0 2px 12px rgba(227, 0, 11, .08)
}

.res-type {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block
}

.res-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px
}

.res-link {
  font-size: 13px;
  color: var(--fm-red);
  font-weight: 500
}

/* CTA */
.cta-band {
  background: var(--fm-red);
  padding: 72px 2rem;
  text-align: center
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto
}

.cta-band .section-lbl {
  color: rgba(255, 255, 255, .6)
}

.cta-band h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.01em
}

.cta-band h2 strong {
  font-weight: 600
}

.cta-band p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.7
}

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

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal-overlay.open {
  display: flex
}

.modal-box {
  background: #fff;
  border-radius: 4px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.modal-hdr {
  background: var(--fm-black);
  color: #fff;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.modal-hdr h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3
}

.modal-hdr p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: color .2s
}

.modal-close:hover {
  color: #fff
}

.modal-body {
  padding: 28px
}

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fg.full {
  grid-column: 1/-1
}

.flbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid)
}

.flbl .req {
  color: var(--fm-red)
}

.finput,
.fsel,
.ftxt {
  width: 100%;
  border: 1px solid var(--border-grey);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111;
  background: #fff;
  transition: border-color .2s;
  outline: none
}

.finput:focus,
.fsel:focus,
.ftxt:focus {
  border-color: var(--fm-red)
}

.ftxt {
  resize: vertical;
  min-height: 80px
}

.fsel {
  -webkit-appearance: none;
  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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.modal-foot {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-submit {
  background: var(--fm-red);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
  flex: 1
}

.btn-submit:hover {
  background: var(--fm-red-dark)
}

.btn-cancel {
  background: none;
  border: 1px solid var(--border-grey);
  color: var(--text-mid);
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 2px;
  cursor: pointer;
}

.btn-cancel:hover {
  border-color: #111
}

.fnote {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 12px
}

.success {
  display: none;
  padding: 40px 28px;
  text-align: center
}

.success.open {
  display: block
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px
}

.success h4 {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px
}

.success p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  margin: 0;
  padding: 0;
  display: block
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 2rem 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px
}

/* Logo: overflow hidden to clip tagline, show wordmark only */
.ft-logo-wrap {
  width: 148px;
  height: 22px;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
}

.ft-logo-wrap img {
  width: 210px;
  max-width: none;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin: 0;
}

.ft-company {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 12px;
  background: transparent;
  border: none;
  padding: 0
}

.ft-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.9;
  font-style: normal;
  background: transparent
}

.ft-addr a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s
}

.ft-addr a:hover {
  color: var(--fm-red)
}

.ft-col h4 {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 14px;
  font-weight: 500
}

.ft-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s
}

.ft-col a:hover {
  color: var(--fm-red)
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .3)
}

.ft-legal {
  display: flex;
  gap: 20px
}

.ft-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color .2s
}

.ft-legal a:hover {
  color: var(--fm-red)
}

/* RESPONSIVE */
@media(max-width:960px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .fact-card {
    position: static
  }

  .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .metric-item {
    border-right: none;
    padding: 0;
    text-align: left
  }

  .ch-grid {
    grid-template-columns: 1fr 1fr
  }

  .spec-strip-inner {
    grid-template-columns: 1fr
  }

  .arch-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .arch-left {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    align-items: flex-start
  }

  .arch-photo-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 120px
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .g-item:first-child {
    grid-row: span 1;
    height: 320px
  }

  .g-item:not(:first-child) {
    height: 220px
  }

  .nav-links {
    display: none
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:600px) {
  .hero-wrap {
    height: 420px
  }

  .hero-overlay {
    padding: 24px
  }

  .ch-grid {
    grid-template-columns: 1fr
  }

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

  .footer-main {
    grid-template-columns: 1fr
  }

  .arch-left {
    flex-direction: column;
    align-items: center;
    text-align: center
  }
}