/* --------------------------------------------------
   GLOBAL FONT IMPORTS
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------
   ROOT VARIABLES
-------------------------------------------------- */

:root {
  /* BRAND COLORS */
  --primary-color: #d60000;     /* Red */
  --font-color: #000000;        /* Black */
  --triwall-color: #983D03;     /* Tri-Wall Japan color */

  /* TYPOGRAPHY */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

html,
body {
  overflow-x: hidden;
}

/* =========================================================
   SHARED PAGE HERO STRIP (USED ON ABOUT, SERVICES, ETC.)
   =======================================================*/

.page-hero {
  position: relative;
  width: 100%;
  padding: 80px 7vw 70px;
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* Default background (fallback) */
.page-hero {
  background: radial-gradient(circle at 10% 0, #5a2b00 0, #1b0700 55%, #000 100%);
}

/* ABOUT PAGE VARIANT – uses honeycomb image */
.page-hero--about {
  background-image: url("../assets/images/herobg.jpg"); /* change path/name if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional soft overlay for legibility */
.page-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 64px 6vw 52px;
  }

  .page-hero-subtitle {
    max-width: 100%;
  }
}



/* ============================================= */
/* ============ CONTACT CTA STRIP ============== */
/* ============================================= */

.contact-cta {
  position: relative;
  padding: 52px 7vw 52px;
  background: linear-gradient(120deg, #1a1f2a 0%, #b00000 60%, #7a1200 100%);
  color: #ffffff;
  overflow: hidden;
}

.contact-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* left copy */
.contact-cta-copy {
  max-width: 620px;
}

.contact-cta-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.contact-cta-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* button */
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: white;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-cta-btn:hover {
  background: black;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* right image */
.contact-cta-media {
  flex: 0 0 320px;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta-media img {
  width: 150%;
  max-height: 300px;
  height: auto;
  object-fit: contain;
}

/* ------------- Responsive ------------- */

@media (max-width: 900px) {
  .contact-cta {
    padding: 44px 6vw 44px;
  }

  .contact-cta-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .contact-cta-media {
    width: 70%;
    max-width: 320px;
    margin: 0 auto 12px;
  }
}

@media (max-width: 600px) {
  .contact-cta-inner {
    align-items: flex-start;
  }

  .contact-cta-media {
    width: 80%;
  }

  .contact-cta-title {
    letter-spacing: 0.1em;
  }

  .contact-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

