/* ============================================
   JA CONSTRUCTION GROUP — style.css
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
  --bg: #1c1c1c;
  --bg-light: #242424;
  --bg-lighter: #2e2e2e;
  --white: #f5f2ee;
  --white-muted: rgba(92, 56, 8, 0.6);
  --white-faint: rgba(245,242,238,0.12);
  --accent: #c8b89a;
  --accent-dim: rgba(200,184,154,0.25);
  --line: rgba(245,242,238,0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {

  .nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo svg { width: 38px; height: 38px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 0.18em;
  color: var(--white);
}
.nav-logo-text span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: 9px; letter-spacing: 0.38em;
  color: var(--accent); margin-top: 3px;
}
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--white-muted);
  font-size: 10.5px; letter-spacing: 0.22em; font-weight: 500;
  text-transform: uppercase; transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); padding: 10px 26px;
  font-size: 10px; letter-spacing: 0.22em; font-weight: 500;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; cursor: pointer;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; z-index: 200;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(20,20,20,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; color: var(--white);
  text-decoration: none; letter-spacing: 0.04em;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  width: 80%; text-align: center;
  transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-cta {
  margin-top: 36px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important; letter-spacing: 0.24em !important;
  font-weight: 600 !important; border: 1px solid var(--accent) !important;
  color: var(--accent) !important; padding: 16px 40px !important;
  border-bottom: 1px solid var(--accent) !important;
}

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  /*<!-- https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80 -->*/

  background: url('images/dahna10.jpg') center/cover no-repeat;
  filter: brightness(0.32);
  transform: scale(1.04);
  animation: slowZoom 18s ease-out forwards;
}
@keyframes slowZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,28,0.2) 0%, rgba(28,28,28,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  animation: fadeUp 1.4s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.38em; font-weight: 500;
  color: var(--accent); text-transform: uppercase; margin-bottom: 22px;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(52px, 8vw, 96px);
  line-height: 1.04; color: var(--white);
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 13px; letter-spacing: 0.06em; line-height: 1.9;
  color: var(--white-muted); max-width: 560px; margin: 0 auto 44px;
}
.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--bg);
  padding: 15px 38px; font-size: 10.5px; letter-spacing: 0.2em;
  font-weight: 600; text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--white); }
.btn-outline {
  background: transparent; border: 1px solid rgba(245,242,238,0.4);
  color: var(--white); padding: 15px 38px; font-size: 10.5px;
  letter-spacing: 0.2em; font-weight: 500; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; animation: fadeUp 1.4s 1.2s both;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 0.32em; color: var(--white-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); transform-origin: top; }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--accent);
  padding: 20px 60px;
  display: flex; align-items: center; gap: 60px;
  overflow: hidden;
}
.strip-inner { display: flex; gap: 60px; align-items: center; }
.intro-strip p {
  font-size: 11px; letter-spacing: 0.28em; font-weight: 600;
  color: var(--bg); text-transform: uppercase; white-space: nowrap;
}
.strip-dot { width: 4px; height: 4px; background: var(--bg); border-radius: 50%; flex-shrink: 0; }

/* ── SECTION BASE ── */
section { padding: 120px 60px; }
.section-label {
  font-size: 9.5px; letter-spacing: 0.42em; font-weight: 600;
  color: var(--accent); text-transform: uppercase; margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1; color: var(--white); margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-body {
  font-size: 13px; line-height: 1.95; color: var(--white-muted);
  max-width: 560px;
}

/* ── ABOUT ── */
#about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 120px 60px;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 580px; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); padding: 32px 28px; text-align: center;
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--bg); line-height: 1;
}
.about-badge .label {
  font-size: 8.5px; letter-spacing: 0.25em; font-weight: 600;
  color: var(--bg); text-transform: uppercase; margin-top: 6px;
}
.about-text { padding-left: 20px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 52px; padding-top: 44px;
  border-top: 1px solid var(--line);
}
.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--white); line-height: 1;
}
.stat-item .stat-label {
  font-size: 9.5px; letter-spacing: 0.22em; font-weight: 500;
  color: var(--white-muted); text-transform: uppercase; margin-top: 6px;
}

/* ── SERVICES ── */
#services { background: var(--bg-light); padding: 120px 60px; }
.services-header { text-align: center; margin-bottom: 70px; }
.services-header .section-body { margin: 0 auto; text-align: center; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; grid-template-rows: auto auto;
}
.service-card { position: relative; overflow: hidden; cursor: pointer; height: 420px; }
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.45);
}
.service-card:hover img { transform: scale(1.07); filter: brightness(0.3); }
.service-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(28,28,28,0.9) 0%, transparent 60%);
  transition: background 0.4s;
}
.service-card:hover .service-content {
  background: linear-gradient(to top, rgba(28,28,28,0.95) 0%, rgba(28,28,28,0.6) 100%);
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; color: var(--accent); letter-spacing: 0.28em; margin-bottom: 12px;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; color: var(--white);
  line-height: 1.2; margin-bottom: 14px;
}
.service-desc {
  font-size: 12px; line-height: 1.8; color: var(--white-muted);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s, transform 0.4s;
}
.service-card:hover .service-desc { opacity: 1; transform: translateY(0); }
.service-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 9.5px; letter-spacing: 0.2em;
  font-weight: 600; color: var(--accent); text-transform: uppercase;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ── WHY CHOOSE US BANNER ── */
.why-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.why-img { position: relative; overflow: hidden; }
.why-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45); transition: transform 0.7s;
}
.why-img:hover img { transform: scale(1.05); }
.why-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.7) 0%, transparent 100%);
}
.why-img-text { position: absolute; bottom: 48px; left: 48px; }
.why-img-text p {
  font-size: 9px; letter-spacing: 0.38em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 12px; font-weight: 600;
}
.why-img-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--white); line-height: 1.2;
}
.why-text {
  background: var(--bg-light);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center; gap: 32px;
}
.why-eyebrow {
  font-size: 9.5px; letter-spacing: 0.38em; color: var(--accent);
  text-transform: uppercase; font-weight: 600; margin-bottom: 18px;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 300;
  color: var(--white); line-height: 1.15;
}
.why-title em { font-style: italic; color: var(--accent); }
.why-points { display: flex; flex-direction: column; gap: 22px; }
.why-point {
  display: flex; gap: 18px; align-items: flex-start;
  padding-bottom: 22px; border-bottom: 1px solid rgba(245,242,238,0.1);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-tick {
  width: 32px; height: 32px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px; color: var(--bg); font-weight: 700;
}
.why-point-title {
  font-size: 12.5px; font-weight: 600; color: var(--white);
  letter-spacing: 0.05em; margin-bottom: 5px;
}
.why-point-body { font-size: 12px; color: var(--white-muted); line-height: 1.7; }

/* ── PROCESS ── */
#process { padding: 120px 60px; }
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.process-left { position: sticky; top: 120px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 28px;
  padding: 36px 0; border-bottom: 1px solid var(--line);
  transition: all 0.3s; cursor: default;
}
.process-step:first-child { padding-top: 0; }
.process-step:hover .step-num { color: var(--accent); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--white-faint);
  line-height: 1; min-width: 56px; transition: color 0.3s;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 10px;
}
.step-body { font-size: 12.5px; line-height: 1.85; color: var(--white-muted); }

/* ── PROJECTS ── */
#projects { background: var(--bg-light); padding: 120px 60px; }
.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto; gap: 3px;
}
.proj-card { position: relative; overflow: hidden; cursor: pointer; }
.proj-card:nth-child(1) { grid-column: span 7; height: 500px; }
.proj-card:nth-child(2) { grid-column: span 5; height: 500px; }
.proj-card:nth-child(3) { grid-column: span 4; height: 360px; }
.proj-card:nth-child(4) { grid-column: span 4; height: 360px; }
.proj-card:nth-child(5) { grid-column: span 4; height: 360px; }
.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; filter: brightness(0.55);
}
.proj-card:hover img { transform: scale(1.06); filter: brightness(0.35); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: all 0.3s;
}
.proj-card:hover .proj-overlay { background: rgba(28,28,28,0.72); }
.proj-tag {
  font-size: 9px; letter-spacing: 0.3em; font-weight: 600;
  color: var(--accent); text-transform: uppercase; margin-bottom: 8px;
}
.proj-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; color: var(--white); line-height: 1.2;
}

/* ── TESTIMONIAL ── */
#testimonial {
  padding: 140px 60px; text-align: center;
  position: relative; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1590274853856-f22d5ee3d228?w=1800&q=80') center/cover no-repeat fixed;
}
#testimonial::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(20,20,20,0.88); z-index: 0;
}
#testimonial > * { position: relative; z-index: 1; }
#testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 340px; font-weight: 300;
  color: var(--white-faint);
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%); line-height: 1;
  pointer-events: none; z-index: 0;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.5; max-width: 860px;
  margin: 0 auto 36px; position: relative; z-index: 1;
}
.testimonial-author {
  font-size: 10.5px; letter-spacing: 0.28em; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
}

/* ── CONTACT ── */
#contact {
  background: var(--bg-light); padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contact-info { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.contact-item .ci-label {
  font-size: 9px; letter-spacing: 0.32em; font-weight: 600;
  color: var(--accent); text-transform: uppercase; margin-bottom: 6px;
}
.contact-item .ci-val { font-size: 14px; color: var(--white); font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 9.5px; letter-spacing: 0.25em; font-weight: 600;
  color: var(--white-muted); text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-lighter); border: 1px solid var(--line);
  color: var(--white); padding: 14px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 300;
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select option { background: var(--bg-lighter); }
.btn-submit {
  background: var(--accent); color: var(--bg);
  padding: 16px 42px; font-size: 10.5px; letter-spacing: 0.2em;
  font-weight: 700; text-transform: uppercase; border: none;
  cursor: pointer; transition: all 0.3s; align-self: flex-start;
  font-family: 'Montserrat', sans-serif;
}
.btn-submit:hover { background: var(--white); }

/* ── FOOTER ── */
footer {
  background: #141414;
  padding: 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-top: 1px solid var(--line);
}
.footer-brand .fb-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--white); margin-bottom: 4px;
}
.footer-brand .fb-sub {
  font-size: 9px; letter-spacing: 0.38em; font-weight: 300;
  color: var(--accent); margin-bottom: 20px;
}
.footer-brand p { font-size: 12px; line-height: 1.85; color: var(--white-muted); max-width: 280px; }
.footer-col h4 {
  font-size: 9.5px; letter-spacing: 0.3em; font-weight: 600;
  color: var(--accent); text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  text-decoration: none; color: var(--white-muted);
  font-size: 12.5px; font-weight: 300; transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  background: #141414; padding: 20px 60px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 10.5px; color: var(--white-muted); letter-spacing: 0.06em; }

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  nav { padding: 22px 36px; }
  nav.scrolled { padding: 16px 36px; }
  section { padding: 100px 36px; }
  #about { padding: 100px 36px; gap: 50px; }
  #services { padding: 100px 36px; }
  #process { padding: 100px 36px; }
  #projects { padding: 100px 36px; }
  #contact { padding: 100px 36px; }
  footer { padding: 50px 36px; }
  .footer-bottom { padding: 18px 36px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-logo-text span:first-child { font-size: 11px; letter-spacing: 0.12em; }

  /* Hero */
  #hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.28em; margin-bottom: 16px; }
  .hero-h1 { font-size: clamp(40px, 11vw, 58px); margin-bottom: 18px; }
  .hero-sub { font-size: 12px; line-height: 1.8; margin-bottom: 32px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; padding: 16px 24px; font-size: 10px; }
  .hero-scroll { bottom: 24px; }

 /* ── INTRO STRIP ── */
/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
}
.strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.intro-strip p {
  font-size: 11px; letter-spacing: 0.28em; font-weight: 600;
  color: var(--bg); text-transform: uppercase; white-space: nowrap;
}
.strip-dot { width: 4px; height: 4px; background: var(--bg); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
  /* About */
  #about { grid-template-columns: 1fr; padding: 70px 20px 90px; gap: 40px; }
  .about-img-wrap img { height: 300px; }
  .about-badge { right: 0; bottom: -16px; padding: 20px 18px; }
  .about-badge .num { font-size: 36px; }
  .about-badge .label { font-size: 7.5px; }
  .about-text { padding-left: 0; padding-top: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; padding-top: 28px; }
  .stat-item .stat-num { font-size: 32px; }
  .stat-item .stat-label { font-size: 8.5px; }

  /* Services */
  #services { padding: 70px 20px; }
  .services-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 3px; }
  .service-card { height: 280px; }
  .service-desc { opacity: 1; transform: translateY(0); font-size: 11.5px; }
  .service-arrow { opacity: 1; transform: translateY(0); }
  .service-card img { filter: brightness(0.35); }
  .service-content { padding: 24px 22px; }
  .service-name { font-size: 26px; }

  /* Why Banner */
  .why-banner { grid-template-columns: 1fr; min-height: auto; }
  .why-img { height: 240px; }
  .why-text { padding: 44px 20px; }
  .why-img-text { bottom: 24px; left: 24px; }
  .why-img-text h3 { font-size: 28px; }

  /* Process */
  #process { padding: 70px 20px; }
  .process-inner { grid-template-columns: 1fr; gap: 44px; }
  .process-left { position: static; }
  .process-step { padding: 26px 0; gap: 18px; }
  .step-num { font-size: 32px; min-width: 44px; }
  .step-title { font-size: 20px; }
  .step-body { font-size: 12px; }

  /* Projects */
  #projects { padding: 70px 20px; }
  .projects-header { flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proj-card:nth-child(n) { grid-column: span 1; height: 240px; }
  .proj-name { font-size: 22px; }
  .proj-overlay { padding: 20px; }

  /* Testimonial */
  #testimonial { padding: 80px 20px; background-attachment: scroll; }
  #testimonial::before { font-size: 160px; top: -20px; }
  .testimonial-text { font-size: clamp(20px, 5.5vw, 28px); }

  /* Contact */
  #contact { grid-template-columns: 1fr; padding: 70px 20px; gap: 44px; }
  .contact-info { margin-top: 28px; gap: 18px; }
  .ci-val { font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field input,
  .form-field textarea,
  .form-field select { font-size: 16px; padding: 14px; } /* 16px prevents iOS zoom */
  .btn-submit { width: 100%; text-align: center; padding: 17px; font-size: 11px; align-self: stretch; }

  /* Footer */
  footer { grid-template-columns: 1fr; padding: 50px 20px; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 18px 20px; text-align: center; }
  .footer-bottom p { font-size: 10px; }

  /* General typography */
  section { padding: 70px 20px; }
  .section-title { font-size: clamp(30px, 8vw, 44px); }
  .section-body { font-size: 12.5px; max-width: 100%; }
  .section-label { font-size: 9px; }
}

/* ── SMALL PHONES (max 380px) ── */
@media (max-width: 380px) {
  .hero-h1 { font-size: 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item .stat-num { font-size: 28px; }
  nav { padding: 16px 16px; }
}

/* ── MOVING STRIP ── */
.moving-strip {
  width: 100%;
  height: 50px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(200,184,154,0.15);
  border-bottom: 1px solid rgba(200,184,154,0.15);
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: stripScroll 12s linear infinite;
  white-space: nowrap;
}

.strip-item {
  flex-shrink: 0;
  height: 52px;
  display: flex;
  align-items: center;
}

.strip-item img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* Crops to just the text in the center of each image */
  object-position: center;
  filter: brightness(0.9) contrast(1.05);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.strip-item img:hover {
  opacity: 1;
}

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}