:root {
  --bg: #080909;
  --panel: #111514;
  --panel-2: #171b1a;
  --text: #f5f1e8;
  --muted: #b7afa2;
  --line: rgba(245, 241, 232, 0.14);
  --accent: #c91631;
  --accent-2: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(8, 9, 9, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(201, 22, 49, 0.22));
}

.brand-subtitle {
  border-left: 1px solid rgba(245, 241, 232, 0.22);
  padding-left: 12px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 30px);
  margin-left: auto;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a,
.contact-panel a {
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover,
.contact-panel a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(245, 241, 232, 0.3);
  background: rgba(245, 241, 232, 0.08);
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 72px) 64px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 63% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.94) 0%, rgba(8, 9, 9, 0.74) 38%, rgba(8, 9, 9, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 9, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
}

.hero-logo-stack {
  display: grid;
  justify-items: start;
  gap: 12px;
  width: min(320px, 82vw);
  margin: 16px 0 24px;
  filter:
    drop-shadow(0 20px 46px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 22px rgba(201, 22, 49, 0.18));
}

.hero-wordmark {
  width: 100%;
  height: auto;
}

.hero-media {
  width: 76%;
  height: auto;
  margin-left: 12%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.tag,
.service-code {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 11vw, 8.7rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-copy {
  width: min(620px, 100%);
  color: #ded7ca;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-stats {
  margin-top: 32px;
  color: var(--muted);
}

.hero-stats span {
  min-width: 150px;
  border-left: 2px solid rgba(201, 22, 49, 0.86);
  padding-left: 14px;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.18rem;
}

.strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-block: 1px solid var(--line);
  background: #0d1110;
}

.strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #d8d0c3;
  font-weight: 800;
  text-align: center;
  padding: 12px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 72px);
}

.section[id] {
  scroll-margin-top: 92px;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.work-card p,
.service-card p,
.quote-card span,
.booking-copy p {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.work-card,
.service-card,
.quote-card,
.process-step,
.booking-form {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.work-card,
.service-card,
.quote-card,
.process-step {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.work-card:hover,
.service-card:hover,
.quote-card:hover,
.process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 22, 49, 0.42);
  background: #131817;
}

.work-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  min-height: 230px;
  padding: 16px;
  align-items: end;
}

.feature-card {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.work-thumb {
  min-height: 160px;
  height: 100%;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(201, 22, 49, 0.28), rgba(255, 255, 255, 0.06)),
    linear-gradient(45deg, #121010, #25161a);
  position: relative;
  overflow: hidden;
}

.feature-card .work-thumb {
  min-height: 310px;
}

.work-thumb::before,
.work-thumb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(245, 241, 232, 0.26);
  transform: skewX(-10deg);
}

.work-thumb::after {
  inset: auto 18px 18px auto;
  width: 46px;
  height: 46px;
  border-color: var(--accent);
  transform: rotate(45deg);
}

.cinematic-thumb {
  background:
    linear-gradient(135deg, rgba(245, 241, 232, 0.14), rgba(201, 22, 49, 0.18)),
    linear-gradient(45deg, #161414, #302126);
}

.college-thumb {
  background:
    linear-gradient(135deg, rgba(201, 22, 49, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(45deg, #111111, #241b1d);
}

.party-thumb {
  background:
    linear-gradient(135deg, rgba(201, 22, 49, 0.34), rgba(245, 241, 232, 0.08)),
    linear-gradient(45deg, #1d1113, #221a1b);
}

.services-section {
  background: #0c0f0e;
}

.service-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.quote-card {
  padding: 24px;
}

.service-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #ddd5c8;
}

.service-card li + li {
  margin-top: 8px;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(201, 22, 49, 0.08), rgba(8, 9, 9, 0) 48%),
    #090b0b;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 230px;
  padding: 24px;
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(201, 22, 49, 0.5);
  border-radius: 6px;
  color: var(--accent);
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
}

.proof-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.compact {
  margin-bottom: 24px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-wall span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ded6c8;
  background: rgba(245, 241, 232, 0.04);
  text-align: center;
  padding: 12px;
  font-weight: 800;
}

.testimonial-section {
  background:
    linear-gradient(180deg, rgba(201, 22, 49, 0.08), rgba(8, 9, 9, 0) 45%),
    var(--bg);
}

.quote-card p {
  color: #efe7d9;
  font-size: 0.98rem;
}

.quote-card span {
  display: block;
  margin-top: 24px;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #0d1110;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-panel a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: #e8dfd1;
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

label {
  display: grid;
  gap: 8px;
  color: #e4dccf;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 6px;
  background: #090b0b;
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--accent-2);
}

.site-footer {
  padding: clamp(56px, 7vw, 88px) clamp(20px, 6vw, 72px) 28px;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 22, 49, 0.2), transparent 32%),
    linear-gradient(180deg, #0b0c0c 0%, #050505 100%);
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand {
  max-width: 430px;
}

.footer-logo-stack {
  display: grid;
  justify-items: start;
  gap: 10px;
  width: min(220px, 78vw);
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 34px rgba(201, 22, 49, 0.22));
}

.footer-wordmark,
.footer-media {
  height: auto;
}

.footer-wordmark {
  width: 100%;
}

.footer-media {
  width: 76%;
  margin-left: 12%;
}

.footer-brand p {
  margin: 0 0 24px;
  color: #ddd6ca;
}

.footer-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  padding: 11px 18px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  background: #e21b3b;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-column a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-contact span {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(42px, 6vw, 70px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .strip,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .logo-wall,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-row: auto;
  }

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo {
    width: 86px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: 96vh;
    padding: 110px 18px 50px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.92), rgba(8, 9, 9, 0.62)),
      linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 9, 0) 45%);
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .feature-card .work-thumb,
  .work-thumb {
    min-height: 220px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    display: grid;
  }
}
