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

:root {
  --red: #c0272d;
  --dark: #1a1a1a;
  --mid: #2d2d2d;
  --light-gray: #f4f4f4;
  --text: #333;
  --white: #fff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
}

/* ── HEADER ── */
header {
  background: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

header .logo img {
  height: 80px;
  display: block;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav ul li a {
  display: block;
  padding: 28px 22px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--dark);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

.hero-content p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 20px);
  color: rgba(255,255,255,0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  background: var(--dark);
  padding: 60px 40px;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-banner p {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 8px;
}

/* ── SECTIONS ── */
section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

section.full-width {
  max-width: 100%;
  padding: 80px 40px;
}

/* ── HOME CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e0e0e0;
  margin-top: 0;
}

.card {
  background: var(--white);
  padding: 50px 40px;
  text-align: center;
}

.card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.card a {
  color: var(--red);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.card a:hover { opacity: 0.7; }

/* ── ABOUT ── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.policy-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.policy-icons a img {
  height: 80px;
  transition: opacity 0.2s;
}

.policy-icons a:hover img { opacity: 0.75; }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: #e0e0e0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, opacity 0.4s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
  opacity: 0.5;
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.portfolio-item .overlay h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-layout img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.services-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.services-text ul {
  list-style: none;
  margin-bottom: 24px;
}

.services-text ul li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-text ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.contact-info strong {
  color: var(--dark);
  font-weight: 600;
}

.contact-info a {
  color: var(--red);
  text-decoration: none;
}

.contact-form h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: #a01e23; }

/* ── RED STRIP ── */
.red-strip {
  background: var(--red);
  padding: 50px 40px;
  text-align: center;
}

.red-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.red-strip a {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.red-strip a:hover { background: var(--dark); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer nav ul {
  gap: 0;
}

footer nav ul li a {
  padding: 4px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  border-bottom: none;
}

footer nav ul li a:hover { color: var(--white); }

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

footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  header { padding: 0 20px; }

  .menu-toggle { display: flex; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav.open { display: block; }

  nav ul { flex-direction: column; }

  nav ul li a {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    border-left: none;
  }

  .cards { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  section { padding: 50px 20px; }
  .page-banner { padding: 40px 20px; }
  .red-strip { padding: 40px 20px; }
  footer { padding: 30px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  footer nav ul { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
