/* ===== Base ===== */
:root {
  --accent: #cc1818;
  --accent-tint: #f4dede;
  --dark: #141414;
  --dark-2: #1c1c1c;
  --light: #f5f3ef;
  --light-2: #efeae3;
  --white: #faf9f6;
  --text: #141414;
  --text-muted: #555;
  --border: #ddd8d0;
  --maxw: 1240px;
  --ease: 200ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow Condensed', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 14px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  min-height: 44px;
}
.btn-filled {
  background: var(--accent);
  color: #fff;
}
.btn-filled:hover { background: #a51212; }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 18px; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0;
  flex-shrink: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
}
.brand-text { line-height: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  transition: color var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta { color: #fff !important; }
.nav-cta:hover { background: #a51212 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  transition: transform var(--ease), opacity var(--ease);
}

/* ===== Hero ===== */
.hero {
  background: var(--dark);
  color: #fff;
  position: relative;
  min-height: calc(100vh - 42px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px 0;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.eyebrow-bar {
  width: 48px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 48px 28px 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-headline {
  font-size: clamp(56px, 13vw, 180px);
  font-weight: 900;
  color: #fff;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.hero-headline br + br { color: var(--accent); }
.hero-support {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1000px;
}
.hero-tag {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  font-style: italic;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.hero-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 55%;
  opacity: 0.28;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to left, #000 60%, transparent 100%);
  mask-image: linear-gradient(to left, #000 60%, transparent 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Trust ===== */
.trust {
  background: var(--accent);
  color: #fff;
  padding: 100px 28px;
  text-align: center;
}
.trust-sentence {
  font-size: clamp(36px, 8vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.trust-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-meta .dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

/* ===== Section Head ===== */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  padding: 0 28px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.92;
}

/* ===== Services ===== */
.services {
  background: var(--white);
  padding: 110px 0;
}
.services-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.service {
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-compact {
  border-left: 1px solid var(--border);
}
.service-featured {
  grid-row: span 3;
  border-left: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.service-featured .service-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.service-featured .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.service-featured .service-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 40%, transparent);
  color: #fff;
}
.service-featured .service-body h3 { color: #fff; }
.service-featured .service-body p { color: rgba(255,255,255,0.85); }
.service-featured .service-num { color: var(--accent); }

.service-num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.service h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1;
}
.service p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ===== Work ===== */
.work {
  background: var(--light-2);
  padding: 110px 0;
}
.work-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work-item {
  overflow: hidden;
  background: var(--border);
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-large {
  grid-column: span 2;
}
.work-large img { max-height: 520px; }

/* ===== About ===== */
.about {
  background: var(--white);
  padding: 110px 0;
}
.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 28px;
}
.about-text p {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 18px;
  color: var(--text-muted);
  max-width: 580px;
}
.about-since {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent) !important;
  font-size: 16px !important;
  margin-top: 12px;
}
.about-img {
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 560px;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--dark);
  color: #fff;
  padding: 130px 28px;
  text-align: center;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 24px;
}
.final-cta h2 br + br { color: var(--accent); }
.final-cta p {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin-bottom: 40px;
  font-style: italic;
}
.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.final-cta .btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding: 80px 28px 32px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-mark { margin-bottom: 20px; }
.footer-tag {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255,255,255,0.6);
}
.footer-col ul li a { transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-hidden {
  opacity: 0;
  transform: translateY(28px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-featured {
    grid-row: auto;
    border-left: none;
    min-height: 420px;
  }
  .service-compact {
    border-left: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img { max-height: 400px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 700px) {
  body { font-size: 18px; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    max-height: 420px;
  }
  .nav-links a {
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    min-height: 52px;
    justify-content: flex-start;
  }
  .nav-cta {
    margin: 12px 28px;
    text-align: center;
    border-bottom: none !important;
  }

  .hero {
    min-height: calc(90vh - 42px);
  }
  .hero-photo { display: none; }
  .hero-headline { margin-bottom: 28px; }
  .hero-support { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }

  .trust { padding: 70px 24px; }

  .services, .work, .about { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-large { grid-column: span 1; }
  .work-large img { max-height: 320px; }

  .final-cta { padding: 80px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 52px; }
  .hero-eyebrow { font-size: 12px; }
  .brand-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .work-item:hover img { transform: none; }
}