/* =================================================================
   JK STONEMASONS — Core Stylesheet
   Theme: black background, JK orange accent
   ================================================================= */

:root {
  --black:        #0c0c0c;
  --black-2:      #121212;
  --black-3:      #181818;
  --panel:        #1c1c1c;
  --red:          #ed5637;   /* JK orange */
  --red-dark:     #c0401f;
  --red-light:    #ff7d5c;
  --text:         #f4f4f4;
  --muted:        #b0b0b0;
  --muted-2:      #888888;
  --line:         rgba(255, 255, 255, 0.09);
  --line-strong:  rgba(255, 255, 255, 0.18);
  --max:          1200px;
  --radius:       4px;
  --shadow:       0 18px 40px rgba(0, 0, 0, 0.55);
  --header-h:     74px;
  --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-head:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

a { color: var(--red-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--text); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .5px;
  margin: 0 0 .5em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1em; color: var(--muted); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--black-2); }
.section--panel { background: var(--black-3); }

.text-center { text-align: center; }
.accent { color: var(--red); }
.lead { font-size: 1.18rem; color: var(--text); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .82rem;
  color: var(--red);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-head { max-width: 720px; margin: 0 auto 54px; }
.section-head.left { margin-left: 0; }
.divider { width: 56px; height: 3px; background: var(--red); border: 0; margin: 18px 0 0; }
.section-head.center .divider { margin: 18px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s var(--ease);
  line-height: 1;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--red); color: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, height .3s;
}
.site-header.scrolled { background: rgba(8, 8, 8, 0.96); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__img { height: 52px; width: auto; display: block; }
.site-footer .logo__img { height: 64px; }
.logo__mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 1px;
  background: var(--red);
  color: #fff;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  line-height: 1;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__text b {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.logo__text span {
  font-size: .64rem;
  letter-spacing: 3.5px;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* Inline header nav (desktop) — same links also live in the overlay */
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .92rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--red); transition: right .25s var(--ease);
}
.header-nav a:hover, .header-nav a.active { color: var(--red); }
.header-nav a:hover::after, .header-nav a.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); letter-spacing: 1px;
  color: var(--text); font-size: 1.05rem;
}
.header-phone svg { fill: var(--red); }

/* Hamburger */
.hamburger {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: grid; place-items: center;
  gap: 3px;
  padding: 0;
  transition: border-color .2s, background .2s;
}
.hamburger:hover { border-color: var(--red); }
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span + span { margin-top: 3px; }
.nav-open .hamburger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Full-screen overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(160deg, #0a0a0a 0%, #161616 100%);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav-open .nav-overlay { opacity: 1; visibility: visible; }
.nav-overlay__inner {
  margin: auto;
  width: 100%;
  max-width: var(--max);
  padding: 110px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list li {
  opacity: 0;
  transform: translateY(18px);
  border-bottom: 1px solid var(--line);
}
.nav-open .nav-list li { animation: navIn .5s var(--ease) forwards; }
.nav-open .nav-list li:nth-child(1) { animation-delay: .08s; }
.nav-open .nav-list li:nth-child(2) { animation-delay: .14s; }
.nav-open .nav-list li:nth-child(3) { animation-delay: .20s; }
.nav-open .nav-list li:nth-child(4) { animation-delay: .26s; }
.nav-open .nav-list li:nth-child(5) { animation-delay: .32s; }
.nav-open .nav-list li:nth-child(6) { animation-delay: .38s; }
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }

.nav-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 6px;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 1px;
  transition: color .2s, padding .25s;
}
.nav-list a:hover, .nav-list a.active { color: var(--red); padding-left: 16px; }
.nav-list a .num {
  font-size: .8rem;
  color: var(--muted-2);
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.nav-side {
  border-left: 1px solid var(--line);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.nav-side h4 { color: var(--muted-2); letter-spacing: 2px; font-size: .8rem; margin-bottom: 6px; }
.nav-side a { color: var(--text); font-size: 1.05rem; }
.nav-side a:hover { color: var(--red); }
.nav-side .sub-services { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.nav-side .sub-services a { color: var(--muted); font-size: .98rem; }
.nav-social { display: flex; gap: 14px; }
.nav-social a {
  width: 42px; height: 42px; border: 1px solid var(--line-strong);
  border-radius: var(--radius); display: grid; place-items: center;
}
.nav-social a:hover { border-color: var(--red); background: var(--red); }
.nav-social svg { fill: var(--text); width: 18px; height: 18px; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1614 0%, #0c0c0c 60%);
  z-index: 0;
}
.hero__bg .ph-photo,
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.72) 45%, rgba(8,8,8,.45) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}
.hero__content { max-width: 680px; }
.hero__logo { width: min(420px, 80%); height: auto; margin-bottom: 26px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { display: block; }
.hero__sub { font-size: 1.18rem; color: #ddd; max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badges {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
}

/* Hero enquiry card */
.hero-enquiry {
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  max-width: 440px;
  margin-left: auto;
}
.hero-enquiry h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}
.hero-enquiry .he-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: none;
}
.hero-enquiry .field { margin-bottom: 12px; }
.hero-enquiry .field input,
.hero-enquiry .field select,
.hero-enquiry .field textarea {
  padding: 11px 14px;
  font-size: .95rem;
}
.hero-enquiry .field textarea { min-height: 74px; }
.hero-enquiry .form-row { gap: 12px; }
.hero-enquiry .btn { margin-top: 4px; }
.hero-enquiry .he-foot {
  margin-top: 12px; font-size: .8rem; color: var(--muted-2); text-align: center;
}
.hero__badge { display: flex; flex-direction: column; }
.hero__badge b { font-family: var(--font-head); font-size: 2rem; color: var(--red); }
.hero__badge span { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* Page banner (interior pages) */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 64px;
  background: linear-gradient(135deg, #1a1614 0%, #0c0c0c 70%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(237,86,55,.16), transparent 45%);
}
.page-banner .container { position: relative; }
.page-banner h1 { margin-bottom: 14px; }
.breadcrumb { font-size: .9rem; color: var(--muted-2); letter-spacing: .5px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--red); }

/* =================================================================
   GRIDS & CARDS
   ================================================================= */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); border-color: rgba(237,86,55,.5); }
.card__media { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.card__media img, .card__media .ph-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card__icon {
  width: 50px; height: 50px; margin-bottom: 8px;
  display: grid; place-items: center;
  background: rgba(237,86,55,.12); border-radius: var(--radius);
}
.card__icon svg { width: 26px; height: 26px; fill: var(--red); }
.spec-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .72rem; font-weight: 600; padding: 6px 12px; border-radius: 3px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; flex: 1; }
.card__link {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .85rem; color: var(--red); margin-top: 14px; display: inline-flex; gap: 8px;
}
.card__link:hover { color: #fff; gap: 12px; }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.feature__icon {
  width: 56px; height: 56px; border: 1px solid var(--line-strong);
  border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 18px;
}
.feature__icon svg { width: 28px; height: 28px; fill: var(--red); }
.feature h3 { font-size: 1.25rem; }
.feature p { font-size: .98rem; }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; border: 1px solid var(--line); }
.split__media .ph-photo, .split__media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.checklist li::before {
  content: "✓"; color: var(--red); font-weight: 700; flex: none;
  width: 26px; height: 26px; display: grid; place-items: center;
  background: rgba(237,86,55,.12); border-radius: 3px; font-size: .9rem; margin-top: 2px;
}

/* =================================================================
   GALLERY
   ================================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery--home { grid-template-columns: repeat(4, 1fr); }
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--line);
}
.gallery__item.tall { aspect-ratio: 1 / 1.3; }
.gallery__item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__item img, .gallery__item .ph-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(237,86,55,.35), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; background: rgba(12,12,12,.7); border-radius: 50%;
  display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: .25s;
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: scale(1); }
.gallery__zoom svg { width: 18px; height: 18px; fill: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,6,6,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img, .lightbox .ph-photo {
  max-width: 90vw; max-height: 84vh; border-radius: var(--radius);
  width: auto; box-shadow: var(--shadow);
}
.lightbox .ph-photo { width: 70vw; height: 70vh; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.07); border: 1px solid var(--line-strong);
  color: #fff; cursor: pointer; border-radius: var(--radius);
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.4rem;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); }
.lightbox__close { top: 26px; right: 26px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 26px; }
.lightbox__nav.next { right: 26px; }

/* =================================================================
   PHOTO PLACEHOLDER (until real photos are added)
   ================================================================= */
.ph-photo {
  position: relative;
  width: 100%; height: 100%;
  min-height: 120px;
  background:
    repeating-linear-gradient(45deg, #1d1d1d 0 14px, #191919 14px 28px);
  display: grid; place-items: center;
  color: var(--muted-2);
  overflow: hidden;
}
.ph-photo::before {
  content: "JK";
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem;
  color: rgba(237,86,55,.55); letter-spacing: 2px;
}
.ph-photo::after {
  content: "Photo coming soon";
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2);
}
/* Image that fails to load gets this class via JS */
img.is-missing { display: none; }

/* =================================================================
   CTA STRIP
   ================================================================= */
.cta-strip {
  position: relative;
  background: linear-gradient(120deg, var(--red-dark), #7d1012);
  padding: 70px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-strip .btn--primary { background: #0c0c0c; }
.cta-strip .btn--primary:hover { background: #000; }
.cta-strip .btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-strip .btn--ghost:hover { background: #fff; color: var(--red-dark); border-color: #fff; }
.cta-strip .hero__cta { justify-content: center; }

/* =================================================================
   CONTACT / FORMS
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 22px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item__icon {
  flex: none; width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(237,86,55,.12); display: grid; place-items: center;
}
.info-item__icon svg { width: 24px; height: 24px; fill: var(--red); }
.info-item h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 4px; color: var(--muted); font-size: .85rem; }
.info-item a, .info-item p { color: var(--text); font-size: 1.1rem; margin: 0; }

.form-card {
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 8px; font-family: var(--font-head);
}
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--black); border: 1px solid var(--line-strong);
  border-radius: var(--radius); color: var(--text); font-family: var(--font-body);
  font-size: 1rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted-2); margin-top: 8px; }
.form-success {
  display: none; padding: 18px 20px; border-radius: var(--radius);
  background: rgba(40,160,70,.12); border: 1px solid rgba(40,160,70,.4);
  color: #aef0bd; margin-bottom: 20px; font-size: .95rem;
}
.form-success.show { display: block; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: #070707;
  border-top: 1px solid var(--line);
  padding: 70px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .95rem; color: #fff; margin-bottom: 20px;
}
.footer-col p { font-size: .95rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col ul a { color: var(--muted); font-size: .95rem; }
.footer-col ul a:hover { color: var(--red); }
.footer-contact li { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: .95rem; }
.footer-contact svg { fill: var(--red); flex: none; }
.footer-bottom {
  margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .85rem; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  display: grid; place-items: center;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { fill: #fff; width: 18px; height: 18px; }

/* =================================================================
   MISC
   ================================================================= */
.prose p { color: var(--muted); }
.prose h2 { margin-top: 1.4em; }
.tba {
  display: inline-block; background: rgba(237,86,55,.12); color: var(--red);
  border: 1px dashed rgba(237,86,55,.5); padding: 4px 14px; border-radius: 20px;
  font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-head);
}
.placeholder-block {
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  padding: 40px; text-align: center; color: var(--muted-2); background: var(--black-2);
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
/* Collapse the inline header nav into the hamburger when space runs short */
@media (max-width: 1040px) {
  .header-nav { display: none; }
}
@media (max-width: 980px) {
  .grid--3, .grid--4, .features { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-overlay__inner { grid-template-columns: 1fr; gap: 30px; padding-top: 100px; }
  .nav-side { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery--home { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-enquiry { margin-left: 0; max-width: 100%; }
  .hero { min-height: 0; padding-bottom: 56px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .header-phone { display: none; }
  .grid--3, .grid--4, .features, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 22px; }
  .lightbox__nav { width: 44px; height: 44px; }
}
