/* JC Pressure — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

/* Typography
   Bebas Neue is reserved for the brand mark, big numerals and prices,
   the elements that echo the logo's condensed industrial lettering.
   Everything a visitor actually reads uses Plus Jakarta Sans at heavy
   weight, set in sentence case, so the site reads as considered rather
   than shouted. */

:root {
  --bg: #07070a;
  --surface: #101014;
  --surface-2: #17171d;
  --text: #f4f5f7;
  --muted: #9aa0ac;
  --border: rgba(255, 255, 255, 0.09);
  --accent: #2f6df6;
  --accent-bright: #5b8eff;
  --silver-1: #eef0f3;
  --silver-2: #a7acb6;

  --container: min(1180px, 100% - 2.5rem);
  --pad-section: clamp(3.5rem, 9vw, 8rem);
  --radius: 14px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin: 0;
  text-transform: none;
}

p { margin: 0; }

.container {
  width: var(--container);
  margin-inline: auto;
}

section {
  padding-block: var(--pad-section);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(47, 109, 246, 0.65);
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 16px 30px -12px rgba(91, 142, 255, 0.75);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent-bright);
  background: rgba(91, 142, 255, 0.08);
}

.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
}

.brand .jc {
  background: linear-gradient(180deg, var(--silver-1), var(--silver-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand .pressure {
  color: var(--accent-bright);
}

.brand .dot { color: var(--accent-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 700;
  font-size: 0.82rem;
}

.nav-links a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s var(--ease);
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.85rem;
  color: var(--muted);
}
.header-call strong {
  color: var(--text);
  font-size: 1.02rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  padding: 1.5rem;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav .close-mobile {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 2rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,9,0.55) 0%, rgba(6,6,9,0.35) 35%, rgba(6,6,9,0.92) 100%),
    linear-gradient(90deg, rgba(6,6,9,0.75) 0%, rgba(6,6,9,0.15) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(2.5rem, 8vw, 5rem);
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  color: var(--silver-1);
}
.hero h1 span { color: var(--accent-bright); }

.hero-sub {
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Section heads */
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-head .kicker {
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}
.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  color: var(--silver-1);
}
.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services list (home teaser + services page) */
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.9rem 0;
  border-top: 1px solid var(--border);
}
.service-list .service-row:last-child { border-bottom: 1px solid var(--border); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  color: var(--surface-2);
  -webkit-text-stroke: 1px var(--border);
}

.service-row h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  text-transform: none;
  font-size: 1.25rem;
  color: var(--text);
}
.service-row p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 56ch;
}

.service-row .btn { flex-shrink: 0; }

/* Work / gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.6);
}
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }

.gallery-item .tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(7,7,10,0.75);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* Values strip */
.values {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.values .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.value-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: none;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.value-item p { color: var(--muted); font-size: 0.98rem; }

/* Social / instagram */
.social-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.social-cta h3 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--silver-1);
}
.social-cta p { color: var(--muted); margin-top: 0.5rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #0d1830, #050608 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--silver-1);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-banner p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.cta-banner .hero-actions { justify-content: center; margin-top: 2.2rem; }

/* Footer */
.site-footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 34ch;
  font-size: 0.95rem;
}
.footer-col h5 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--text);
  padding-block: 0.35rem;
  font-size: 0.98rem;
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Page hero (services / contact) */
.page-hero {
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.page-hero .kicker {
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--silver-1);
}
.page-hero p {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
}

/* Service detail blocks */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: 1px solid var(--border); }
.service-detail.reverse .service-media { order: 2; }
.service-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.65);
}
.service-media img, .service-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.service-copy .service-num {
  display: block;
  margin-bottom: 0.8rem;
}
.service-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--text);
  text-transform: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.service-copy p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.03rem;
}
.service-copy .btn { margin-top: 1.6rem; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.call-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: 0 30px 60px -35px rgba(0, 0, 0, 0.7);
}
.call-card .kicker {
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.call-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--silver-1);
  margin-block: 0.6rem 1.5rem;
  display: block;
}
.call-card .hero-actions { margin-top: 0; }
.call-card .fine {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.info-list { display: flex; flex-direction: column; gap: 1.6rem; }
.info-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  background: var(--surface);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.info-item:hover {
  border-color: rgba(91, 142, 255, 0.35);
  transform: translateY(-2px);
}
.info-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}
.info-item p { color: var(--muted); margin-top: 0.4rem; font-size: 0.97rem; }

.map-wrap {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.4) contrast(1.05);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.request-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.request-list li {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links, .header-call { display: none; }
  .nav-toggle { display: flex; }
  .values .container { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row .btn { grid-column: 1 / -1; margin-top: 0.5rem; width: fit-content; }
  .gallery-grid { grid-template-columns: 1fr; }
  .social-cta { flex-direction: column; align-items: flex-start; }
  .request-list { grid-template-columns: 1fr; }
  .hero { align-items: flex-end; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* Media banner (video strip used on pricing / contact) */
.media-banner {
  position: relative;
  height: clamp(260px, 42vw, 440px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 70px -35px rgba(0, 0, 0, 0.7);
}
.media-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,6,9,0.92) 0%, rgba(6,6,9,0.25) 45%, rgba(6,6,9,0.5) 100%);
}
.media-banner .banner-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 2.5rem);
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 1;
  max-width: 46ch;
}
.media-banner .banner-copy .kicker {
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.media-banner .banner-copy h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--silver-1);
}

/* Pricing */
.price-block {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--border);
}
.price-block:last-of-type { border-bottom: 1px solid var(--border); }

.price-block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.price-block-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--silver-1);
}
.price-block-head p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 46ch;
  margin-top: 0.5rem;
}
.price-block-head .btn { flex-shrink: 0; }

.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.price-tier {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 1.3rem;
  padding: 1.3rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.price-tier:hover {
  border-color: rgba(91, 142, 255, 0.35);
  transform: translateY(-2px);
}
.price-tier .service-num {
  font-size: 1.6rem;
  color: var(--muted);
  -webkit-text-stroke: 0;
}
.price-tier h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: none;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text);
}
.price-tier p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tag small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 0.3rem;
}

.price-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
  margin-top: 1.6rem;
}
.price-includes li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.price-includes svg { flex-shrink: 0; color: var(--accent-bright); }

.price-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 620px) {
  .price-tier {
    grid-template-columns: 40px 1fr;
  }
  .price-tag {
    grid-column: 1 / -1;
    justify-self: flex-start;
    margin-top: 0.4rem;
  }
}
