/* ============================================================
   NJL CONSTRUCTION — Real construction company aesthetic.
   White/light surfaces, photography-driven, orange accent, dark CTA strips.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --orange:        #e07800;
  --orange-deep:   #b25e00;
  --orange-soft:   #f5b840;
  --black:         #0d0d0d;
  --gray-1:        #1a1a1a;
  --gray-2:        #2a2a2a;
  --text:          #0d0d0d;
  --text-mid:      #4a4a4a;
  --text-muted:    #6f6f6f;
  --bg:            #ffffff;
  --bg-soft:       #f5f5f4;
  --bg-stone:      #ebe9e6;
  --border:        #e3e3e1;
  --transition:    0.25s ease;
  --radius:        12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.header-logo img { height: 40px; width: 40px; object-fit: contain; }
.header-logo .brand {
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}
.header-nav {
  display: none; gap: 32px; align-items: center;
}
.header-nav a {
  color: var(--text-mid); font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--orange); }
.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff;
  padding: 11px 20px; border-radius: 8px;
  font-weight: 800; font-size: 0.92rem; text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 10px rgba(224,120,0,0.22);
}
.header-call:hover { background: var(--orange-deep); transform: translateY(-1px); }
.header-call:active { transform: translateY(0); }
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: all 0.3s ease; border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 1.6rem;
  padding-top: 60px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem; font-weight: 800; color: var(--text);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--orange); }

@media (min-width: 900px) {
  .header { padding: 16px 40px; }
  .header-nav { display: flex; }
  .nav-burger { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 8px;
  font-weight: 800; font-size: 0.96rem;
  text-decoration: none; cursor: pointer;
  border: none; font-family: inherit;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(224,120,0,0.3);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-primary.large { padding: 18px 32px; font-size: 1.05rem; }
.btn-primary.huge { padding: 22px 38px; font-size: 1.15rem; }

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: #fff; }

.btn-on-dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--gray-1);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: url('../assets/njl-7.jpg');
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.45) 55%, rgba(13,13,13,0.7) 100%);
}
@media (max-width: 900px) {
  .hero-bg::after { background: linear-gradient(180deg, rgba(13,13,13,0.65) 0%, rgba(13,13,13,0.85) 100%); }
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 80px 28px;
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  width: 100%;
  align-items: start;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center; }
}
.hero-content { color: #fff; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  width: fit-content;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero h1 .accent { color: var(--orange-soft); }
.hero p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px 26px;
  font-size: 0.86rem; color: rgba(255,255,255,0.72); font-weight: 500;
}
.hero-trust div { display: flex; align-items: center; gap: 8px; }
.hero-trust div::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
.form-card-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.form-card-title {
  font-size: 1.5rem; font-weight: 900;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 18px;
}
.field { margin-bottom: 12px; }
.field label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px; font-family: inherit;
  color: var(--text);
  outline: none; padding: 12px 14px;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange); background: #fff;
}
.field textarea { resize: none; height: 78px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.btn-submit {
  display: block; width: 100%;
  background: var(--orange); color: #fff;
  border: none; border-radius: 8px;
  padding: 15px; font-weight: 800; font-size: 1rem;
  font-family: inherit; cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 6px;
  box-shadow: 0 4px 14px rgba(224,120,0,0.3);
  transition: all var(--transition);
}
.btn-submit:hover { background: var(--orange-deep); transform: translateY(-1px); }
.form-note {
  margin-top: 12px; text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
}
.form-note a { color: var(--orange); font-weight: 700; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 80px 28px; }
.section.dark { background: var(--gray-1); color: #fff; }
.section.dark .section-eyebrow { color: var(--orange-soft); }
.section.dark .lead { color: rgba(255,255,255,0.75); }
.section.dark h2 { color: #fff; }
.section.soft { background: var(--bg-soft); }
.section-inner { max-width: 1240px; margin: 0 auto; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  width: fit-content;
}
.section h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 760px;
}
.section h2 .accent { color: var(--orange); }
.section .lead {
  font-size: 1.04rem; color: var(--text-mid);
  max-width: 620px;
  line-height: 1.65;
}
@media (min-width: 900px) { .section { padding: 110px 40px; } }

/* ============================================================
   SERVICES GRID — photo-backed cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.service-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none; color: #fff;
  background: var(--gray-1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.service-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.85) 100%);
  transition: background var(--transition);
}
.service-card .label {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  z-index: 2; color: #fff;
}
.service-card .label .kicker {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 6px;
}
.service-card .label h3 {
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.service-card .label p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card .label .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--orange-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }
.service-card:hover .photo { transform: scale(1.05); }
.service-card:hover .scrim {
  background: linear-gradient(180deg, rgba(224,120,0,0.05) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.92) 100%);
}

/* ============================================================
   GALLERY (Our Work)
   ============================================================ */
.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-1);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 4/6; }
@media (max-width: 999px) {
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* ============================================================
   WHY US — split layout with photo
   ============================================================ */
.why-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 36px;
}
@media (min-width: 1000px) {
  .why-grid { grid-template-columns: 1.05fr 1fr; gap: 60px; }
}
.why-photo {
  width: 100%; aspect-ratio: 4/5;
  background: var(--gray-1) center/cover no-repeat;
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0,0,0,0.16);
}
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 18px; }
.why-item .num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.05rem;
}
.why-item h4 {
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 4px; letter-spacing: -0.2px;
  color: var(--text);
}
.why-item p {
  font-size: 0.96rem; color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   PROCESS (about page)
   ============================================================ */
.process {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}
@media (min-width: 800px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.process-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.process-item .step {
  position: absolute; top: -18px; left: 24px;
  background: var(--orange); color: #fff;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.96rem;
  box-shadow: 0 6px 18px rgba(224,120,0,0.3);
}
.process-item h4 {
  font-size: 1.1rem; font-weight: 800;
  margin: 8px 0 6px; letter-spacing: -0.2px;
}
.process-item p {
  font-size: 0.94rem; color: var(--text-mid); line-height: 1.65;
}

/* ============================================================
   AREA TILES
   ============================================================ */
.area-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}
@media (min-width: 600px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92rem; font-weight: 600;
  color: rgba(255,255,255,0.86);
  text-align: center;
  transition: all var(--transition);
}
.area-tile:hover {
  background: rgba(224,120,0,0.12);
  border-color: var(--orange);
  color: #fff;
}

/* ============================================================
   CTA BAND — orange
   ============================================================ */
.cta-band {
  background: var(--orange);
  color: #fff;
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,200,120,0.25), transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.6px;
  margin-bottom: 14px;
  color: #fff;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.92); margin-bottom: 26px; }
.phone-big {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--black); color: #fff;
  padding: 22px 36px; border-radius: 12px;
  font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.4px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  transition: transform var(--transition);
}
.phone-big:hover { transform: scale(1.03); }
.phone-big:active { transform: scale(0.98); }
.cta-band-small {
  display: block; margin-top: 18px;
  font-size: 0.88rem; color: rgba(255,255,255,0.78);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 60px 28px 28px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer { padding: 64px 40px 32px; }
}
.footer-brand img { height: 44px; width: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; max-width: 320px; }
.footer h5 {
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { color: rgba(255,255,255,0.72); font-size: 0.92rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--orange-soft); }
.footer-bottom {
  max-width: 1240px; margin: 36px auto 0;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.42);
}

/* ============================================================
   STICKY MOBILE CALL
   ============================================================ */
.sticky-call {
  position: fixed; bottom: 18px; right: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff;
  padding: 14px 22px; border-radius: 50px;
  font-weight: 800; font-size: 0.96rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(224,120,0,0.5);
}
.sticky-call:active { transform: scale(0.96); }
@media (min-width: 900px) { .sticky-call { display: none; } }

/* ============================================================
   SECONDARY PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--gray-1); color: #fff;
  padding: 64px 28px 56px;
  position: relative;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -1px;
  line-height: 1.05; margin-bottom: 14px;
}
.page-hero h1 .accent { color: var(--orange-soft); }
.page-hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
}

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.svc-hero {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center;
  background: var(--gray-1);
  color: #fff;
  overflow: hidden;
  padding: 80px 28px;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.svc-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.42) 60%, rgba(13,13,13,0.7) 100%);
}
.svc-hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.svc-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; letter-spacing: -1px;
  line-height: 1.04; margin-bottom: 14px;
}
.svc-hero h1 .accent { color: var(--orange-soft); }
.svc-hero p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.84);
  max-width: 620px; line-height: 1.6;
  margin-bottom: 26px;
}

.svc-content { max-width: 760px; margin: 0 auto; }
.svc-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900; letter-spacing: -0.4px;
  line-height: 1.15;
  margin: 36px 0 14px;
  color: var(--text);
}
.svc-content h2 .accent { color: var(--orange); }
.svc-content p {
  font-size: 1.02rem; line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.svc-content ul { margin: 14px 0 22px; }
.svc-content ul li {
  font-size: 0.98rem; line-height: 1.7;
  color: var(--text-mid);
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.svc-content ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}

.svc-photo-strip {
  display: grid; gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
}
.svc-photo-strip .ph {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
}
@media (max-width: 700px) {
  .svc-photo-strip { grid-template-columns: 1fr; }
  .svc-photo-strip .ph:nth-child(n+2) { display: none; }
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-block {
  text-align: center;
  padding: 100px 28px 80px;
  max-width: 600px; margin: 0 auto;
}
.thanks-check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 26px rgba(224,120,0,0.4);
}
.thanks-check svg { width: 36px; height: 36px; stroke: #fff; stroke-width: 3; fill: none; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d2 { transition-delay: 0.08s; }
.reveal-d3 { transition-delay: 0.16s; }
.reveal-d4 { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .hero { min-height: 80vh; }
  .header-logo .brand { display: none; }
}
