/* ============================================
   Redline Motors — Contact page
   ============================================ */

/*-- ----------------------------- -->
<---          Page Hero           -->
<--- ----------------------------- -*/

#page-hero {
  position: relative;
  background: var(--asphalt);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(380px, 52vh, 540px);
  display: flex;
  align-items: center;
}
#page-hero .ph-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
#page-hero .ph-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.7) contrast(1.05);
}
#page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 13, 16, 0.55) 0%, rgba(12, 13, 16, 0.85) 60%, rgba(12, 13, 16, 0.95) 100%),
    linear-gradient(90deg, rgba(12, 13, 16, 0.92) 0%, rgba(12, 13, 16, 0.4) 70%, transparent 100%);
}
#page-hero .ph-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 25% 60%, black 30%, transparent 75%);
}
.ph-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}
.breadcrumbs {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.breadcrumbs a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--red-bright);
  border-color: var(--red);
}
.breadcrumbs span[aria-current] {
  color: var(--red-bright);
}
.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(225, 6, 0, 0.4);
  background: rgba(225, 6, 0, 0.08);
  margin-bottom: 1.5rem;
}
.ph-tag-bar {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.ph-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.ph-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
}
.ph-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 0.07em;
  background: var(--red);
  box-shadow: 0 0 16px var(--red-glow);
}
.ph-lede {
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38rem;
}

/*-- ----------------------------- -->
<---       Quick Contact Bar      -->
<--- ----------------------------- -*/

#quick-contact {
  background: var(--carbon);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.qc-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .qc-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .qc-inner {
    grid-template-columns: 1fr;
  }
}
.qc-card {
  background: var(--steel);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: background 0.25s;
  overflow: hidden;
}
.qc-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.qc-card:hover {
  background: var(--steel-2);
}
.qc-card:hover::after {
  transform: scaleX(1);
}
.qc-card-accent {
  background: var(--steel-2);
  border-left: 3px solid var(--red);
}
.qc-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--red-bright);
  font-weight: 600;
}
.qc-icon {
  width: 28px;
  height: 28px;
  color: var(--ink);
  margin: 0.5rem 0 0.25rem;
}
.qc-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.qc-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/*-- ----------------------------- -->
<---           Section Header     -->
<--- ----------------------------- -*/

.section-header {
  max-width: var(--content-max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.section-header.section-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
}
.section-header .section-title {
  max-width: 20ch;
}
.section-header .header-right {
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 32rem;
  justify-self: end;
}
@media (max-width: 820px) {
  .section-header {
    grid-template-columns: 1fr;
  }
  .section-header .header-right {
    justify-self: start;
  }
}

/*-- ----------------------------- -->
<---            Booking           -->
<--- ----------------------------- -*/

#book {
  background: var(--asphalt);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
#book::before {
  content: 'BOOK';
  position: absolute;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 24rem);
  color: var(--carbon);
  top: 12%;
  right: -2rem;
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
}
.bk-grid {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 960px) {
  .bk-grid {
    grid-template-columns: 1fr;
  }
}
.bk-text .section-title {
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.bk-lede {
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
}
.bk-promise {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.bk-promise li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.bk-tick {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 6, 0, 0.14);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: var(--red-bright);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bk-emergency {
  background: var(--steel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bk-emer-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 600;
}
.bk-emergency p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.bk-emergency a {
  color: var(--ink);
  border-bottom: 1px solid var(--gunmetal);
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}
.bk-emergency a:hover {
  color: var(--red-bright);
  border-color: var(--red);
}

/*-- ----------------------------- -->
<---             Form             -->
<--- ----------------------------- -*/

.bk-form,
.fl-form {
  background: var(--steel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}
.form-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 600;
}
.form-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-row.field-row-3 {
  grid-template-columns: 6rem 1fr 1fr;
}
@media (max-width: 540px) {
  .field-row,
  .field-row.field-row-3 {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--asphalt);
  border: 1px solid var(--line);
  padding: 0.8rem 0.95rem;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.5;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e10600' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  opacity: 0.65;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--carbon);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.14);
}

.field-checks {
  border: none;
  margin: 0;
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.field-checks legend {
  margin-bottom: 0.6rem;
  padding: 0;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--asphalt);
  border: 1px solid var(--gunmetal);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.check input[type='checkbox']:checked {
  background: var(--red);
  border-color: var(--red);
}
.check input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check input[type='checkbox']:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}
.form-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1.6;
}

/*-- ----------------------------- -->
<---       Visit / Hours / Map    -->
<--- ----------------------------- -*/

#visit {
  background: var(--carbon);
  padding: var(--section-pad);
  position: relative;
}
#visit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 80px,
    rgba(255, 255, 255, 0.012) 80px,
    rgba(255, 255, 255, 0.012) 81px
  );
  pointer-events: none;
}
.visit-grid {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 960px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }
}
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.visit-block {
  background: var(--steel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 1.4rem 1.5rem;
}
.visit-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--line);
}
.visit-line {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.visit-line-mute {
  color: var(--ink-mute);
  margin-top: 0.85rem;
}
.visit-cta {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.2rem;
  transition: color 0.2s;
}
.visit-cta:hover {
  color: var(--ink);
}

.hours-list {
  display: flex;
  flex-direction: column;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line-soft);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list li span:first-child {
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.hours-list li.hours-closed {
  color: var(--ink-mute);
}
.hours-list li.hours-closed span:last-child {
  color: var(--red);
  font-weight: 600;
}
.hours-note {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1.6;
}

.visit-map {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--asphalt);
  overflow: hidden;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.55) contrast(1.05) brightness(0.92);
}
.visit-map .map-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(225, 6, 0, 0.35);
  pointer-events: none;
}
.map-cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.95rem;
  background: rgba(12, 13, 16, 0.92);
  backdrop-filter: blur(4px);
  border-left: 2px solid var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.map-pin {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2.4s ease-in-out infinite;
}

/*-- ----------------------------- -->
<---           Fleet              -->
<--- ----------------------------- -*/

#fleet {
  background: var(--asphalt);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}
#fleet::before {
  content: 'FLEET';
  position: absolute;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  color: var(--carbon);
  top: 12%;
  left: -2rem;
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
}
.fl-grid {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 960px) {
  .fl-grid {
    grid-template-columns: 1fr;
  }
}
.fl-text .section-title {
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.fl-lede {
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
}
.fl-list {
  display: flex;
  flex-direction: column;
}
.fl-list li {
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
}
.fl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 8px;
  height: 2px;
  background: var(--red);
}
.fl-list li strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-right: 0.4rem;
}
.fl-list li a {
  color: var(--ink);
  border-bottom: 1px solid var(--gunmetal);
  transition: color 0.2s, border-color 0.2s;
}
.fl-list li a:hover {
  color: var(--red-bright);
  border-color: var(--red);
}

/*-- ----------------------------- -->
<---            CTA               -->
<--- ----------------------------- -*/

#cta-strip {
  position: relative;
  background: linear-gradient(135deg, #1a0000 0%, #4a0200 50%, var(--red-deep) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}
#cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 30px,
    rgba(0, 0, 0, 0.12) 30px,
    rgba(0, 0, 0, 0.12) 31px
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 2.85rem);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.005em;
  line-height: 1;
  max-width: 22ch;
}
.cta-sub {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
  display: block;
}
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fff;
  color: var(--red-deep);
  padding: 1.1rem 2rem;
  border-radius: 2px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-primary-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

/*-- ----------------------------- -->
<---           Footer             -->
<--- ----------------------------- -*/

#site-footer {
  background: #07080a;
  color: var(--ink-soft);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
}
.footer-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.footer-name .brand-red {
  color: var(--red);
}
.footer-blurb {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 22rem;
}
.footer-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-line {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.footer-spacer {
  margin-top: 1rem;
}
.footer-link {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--red-bright);
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--steel);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.credit-link {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gunmetal);
  transition: color 0.2s, border-color 0.2s;
}
.credit-link:hover {
  color: var(--red-bright);
  border-color: var(--red);
}
