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

:root {
  --black:    #141312;
  --dark:     #1c1a18;
  --mid:      #252220;
  --border:   #2c2926;
  --card-border: #363330;
  --red:      #c42818;
  --red-dark: #a82010;
  --white:    #f0eeea;
  --muted:    #5e5c5a;
  --dim:      #3e3c3a;
  --concrete:       #eeeae4;
  --concrete-light: #f4f0ea;
  --concrete-border:#d0ccc4;
  --concrete-muted: #6a6660;
  --green:    #3d7a28;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ─────────────────────────────────── */
.red  { color: var(--red); }
.sup  { font-size: 0.42em; vertical-align: super; color: var(--red); line-height: 0; }

/* ── NAV ───────────────────────────────────────── */
nav {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.logo-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-book {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 7px 18px;
  font-weight: 500;
  transition: background 0.2s !important;
}

.nav-book:hover { background: var(--red-dark) !important; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  background: var(--black);
  padding: 0 48px 36px;
}

.hero-status {
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-status span {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-type {
  overflow: hidden;
  margin: 14px -48px 0;
  padding: 0 48px;
}

.hero-line-1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 20vw, 160px);
  line-height: 0.84;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hero-line-2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 13vw, 104px);
  line-height: 0.84;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hero-bottom {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.hero-ctas {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  padding: 11px 24px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
  padding: 11px 24px;
  border: 0.5px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

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

/* ── TICKER ────────────────────────────────────── */
.ticker-wrap {
  background: var(--red);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
}

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

/* ── SECTION SHARED ────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--border);
}

.services .section-header { border-bottom-color: var(--concrete-border); }

.section-num {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.section-title.on-concrete { color: var(--black); }

.section-link {
  margin-left: auto;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.section-link:hover { color: var(--red); }

/* ── WORK ──────────────────────────────────────── */
.work {
  background: var(--dark);
  padding: 32px 48px;
}

.work-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
  align-items: start;
}

.work-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-card {
  background: var(--mid);
  border: 0.5px solid var(--card-border);
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
}

.work-card:hover { border-color: var(--red); }

.work-card-large { aspect-ratio: 4/5; }

.work-col .work-card { min-height: 160px; flex: 1; }

.card-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  opacity: 0.1;
}

.card-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

/* When a real image is used, it covers the card */
.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.work-card:hover .card-img { opacity: 0.7; }

.card-label {
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--white);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.work-col .card-title { font-size: 28px; }

/* ── SERVICES ──────────────────────────────────── */
.services {
  background: var(--concrete);
  padding: 32px 48px;
}

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

.service-card {
  background: var(--concrete-light);
  border: 1px solid var(--concrete-border);
  padding: 20px 18px;
}

.service-num {
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 10px;
}

.service-body {
  font-size: 12px;
  color: var(--concrete-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── ABOUT ─────────────────────────────────────── */
.about {
  background: var(--black);
  padding: 32px 48px;
  border-top: 0.5px solid var(--border);
}

.about-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.about-text { flex: 1; min-width: 0; }

.about-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.about-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

.about-mark {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  background: var(--dark);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mark span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--red);
  letter-spacing: 0.04em;
}

/* ── CONTACT ───────────────────────────────────── */
.contact {
  background: var(--black);
  padding: 32px 48px 56px;
  border-top: 2px solid var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.contact-meta {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2;
}

/* Form */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 0.5px solid var(--border);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 11px 14px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }

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

.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--white); }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--red-dark); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  padding: 32px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.form-success span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 6px;
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 0.5px solid var(--border);
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 10px;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .logo-sub { display: none; }
  .nav-links { gap: 14px; }

  .hero { padding: 0 20px 28px; }
  .hero-type { margin: 14px -20px 0; padding: 0 20px; }

  .work       { padding: 28px 20px; }
  .work-grid  { grid-template-columns: 1fr; }
  .work-card-large { aspect-ratio: 3/2; }
  .work-col   { flex-direction: row; }
  .work-col .work-card { min-height: 180px; }

  .services       { padding: 28px 20px; }
  .services-grid  { grid-template-columns: 1fr; }

  .about { padding: 28px 20px; }

  .contact      { padding: 28px 20px 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .nav-links li:not(:last-child) { display: none; }
  .work-col { flex-direction: column; }
}
