/*
  NEW AGE IRON WORKS - MODERN STYLES
  Refactored from mockup design for high-contrast, industrial aesthetic.
*/

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --steel: #1c1c1e;
  --mid: #2a2a2a;
  --rust: #C84B2A;
  --rust-dark: #9E3B1E;
  --iron: #8a8a8a;
  --silver: #b0b0b0;
  --light: #e8e4df;
  --white: #f5f2ee;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--rust);
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rust);
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--rust);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--rust-dark);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 60%, rgba(10,10,10,1) 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 40px
    ),
    linear-gradient(135deg, #1a1410 0%, #0d0d0d 50%, #111518 100%);
}

/* steel plate texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 70% 30%, rgba(200,75,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 70%, rgba(139,139,139,0.05) 0%, transparent 60%);
}

/* large diagonal steel "beam" shape */
.hero-beam {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 3px;
  height: 110vh;
  background: linear-gradient(to bottom, transparent 0%, rgba(200,75,42,0.6) 30%, rgba(200,75,42,0.2) 70%, transparent 100%);
  transform: rotate(-12deg);
  transform-origin: top right;
}

.hero-beam::after {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.08) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  padding: 0 80px 100px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rust);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--white);
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
  font-style: normal;
  color: var(--rust);
  display: block;
}

.hero-body {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--silver);
  max-width: 520px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  align-items: center;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--rust);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-primary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.btn-secondary::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.2s;
}

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

.btn-secondary:hover::after {
  transform: translateX(4px);
}

/* hero stats bar */
.hero-stats {
  position: absolute;
  right: 80px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat {
  text-align: right;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron);
  margin-top: 4px;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-strip {
  background: var(--rust);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.75);
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-item::after {
  content: '✦';
  font-size: 10px;
  color: rgba(0,0,0,0.45);
}

/* ─── ABOUT SECTION ───────────────────────────────── */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-visual {
  position: relative;
  background: var(--steel);
  overflow: hidden;
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* blueprint / structural drawing SVG illustration */
.blueprint-svg {
  width: 75%;
  opacity: 0.2;
}

.about-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--rust), transparent);
}

.about-year-badge {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(200,75,42,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
}

.about-year-badge .year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--rust);
  line-height: 1;
}

.about-year-badge .since {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron);
}

.about-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--silver);
  max-width: 440px;
}

.section-body + .section-body {
  margin-top: 16px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,75,42,0.3);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.about-cta:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ─── SERVICES ────────────────────────────────────── */
.section-services {
  padding: 120px 80px;
  background: var(--black);
  position: relative;
}

.section-services::before {
  content: 'SERVICES';
  position: absolute;
  top: 80px;
  right: 80px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.1em;
  pointer-events: none;
  line-height: 1;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--iron);
  max-width: 320px;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--steel);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: #212121;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--rust);
  transition: height 0.3s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rust);
  margin-bottom: 32px;
  opacity: 0.7;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  filter: grayscale(0.5);
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--iron);
}

/* ─── CONTACT STRIP ───────────────────────────────── */
.section-contact {
  background: var(--rust);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  color: var(--black);
  letter-spacing: 0.03em;
}

.contact-subtext {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 260px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.contact-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--iron);
}

.footer-logo span {
  color: var(--rust);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--iron);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ─── GALLERY STRIP ───────────────────────────────── */
.section-gallery {
  padding: 100px 80px;
  background: var(--dark);
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--steel);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

  .gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;

  }



  .gallery-item:hover img {

    transform: scale(1.05);

  }



  .gallery-item-inner {


  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.3s;
  background: rgba(0,0,0,0);
}

.gallery-item:hover .gallery-item-inner {
  background: rgba(200,75,42,0.3);
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-placeholder-icon {
  font-size: 40px;
  opacity: 0.15;
}

/* Structural pattern fills for gallery placeholders */
.gp-1 { background: linear-gradient(135deg, #1a1a1a 0%, #222 100%),
  repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 50%);
  background-blend-mode: normal;
}

.gp-2 { background: linear-gradient(135deg, #161616 0%, #1c1c1c 100%); }
.gp-3 { background: linear-gradient(135deg, #1e1a18 0%, #181414 100%); }
.gp-4 { background: linear-gradient(135deg, #161818 0%, #1a1e1e 100%); }
.gp-5 { background: linear-gradient(135deg, #1a1818 0%, #1e1a1a 100%); }

  /* ─── GALLERY PAGE ────────────────────────────────── */

  .gallery-main-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 20px;

    padding: 40px 0;

  }



  .gallery-card {

    background: var(--steel);

    border: 1px solid rgba(255,255,255,0.05);

    overflow: hidden;

    position: relative;

    aspect-ratio: 3 / 4;

  }



  .gallery-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

    filter: grayscale(0.2);

  }



  .gallery-card:hover img {

    transform: scale(1.05);

    filter: grayscale(0);

  }



  .gallery-pagination {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 40px;

    font-family: 'Barlow Condensed', sans-serif;

    font-weight: 600;

    letter-spacing: 0.1em;

  }



  .gallery-pagination a {

    color: var(--iron);

    text-decoration: none;

    transition: color 0.2s;

  }



  .gallery-pagination a.active,

  .gallery-pagination a:hover {

    color: var(--rust);

  }



  /* ─── ANIMATIONS ──────────────────────────────────── */


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── NOTE BANNER ─────────────────────────────────── */
.mockup-note {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(200,75,42,0.9);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  z-index: 9999;
  backdrop-filter: blur(8px);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
