/* ============================================================
   UR Waterproofing – Orange & White Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Orange palette */
  --orange:        #F4671A;
  --orange-light:  #FF8C45;
  --orange-deep:   #D4500E;
  --orange-pale:   #FFF0E8;
  --orange-pale2:  #FFE4D0;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-bg:       #F5F5F5;
  --gray-border:   #E8E8E8;
  --gray:          #9BA3AF;
  --text:          #1A1A1A;
  --text-muted:    #6B7280;
  --dark:          #111827;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 1px 8px rgba(0,0,0,.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.13);
  --shadow-orange: 0 8px 32px rgba(244,103,26,.3);

  --transition: .28s cubic-bezier(.4,0,.2,1);

  --max-w:  1200px;
  --nav-h:  72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  box-shadow: 0 10px 40px rgba(244,103,26,.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-dark:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section headers ---------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.75); }
.section-header.light .section-label {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid var(--orange-pale2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 14px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  /* Safe area for notched iPhones */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-border), 0 4px 24px rgba(0,0,0,.07);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.logo:hover .logo-img {
  transform: scale(1.06);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: .95rem; font-weight: 700; color: var(--white); transition: var(--transition); }
.logo-tagline { font-size: .68rem; color: rgba(255,255,255,.65); font-weight: 400; }
.navbar.scrolled .logo-name { color: var(--dark); }
.navbar.scrolled .logo-tagline { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover, .navbar.scrolled .nav-links a:hover { color: var(--orange); background: var(--orange-pale); }
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 14px rgba(244,103,26,.35);
}
.nav-links .nav-cta:hover {
  background: var(--orange-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,103,26,.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO  –  Full redesign
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--dark);
}

/* Left half – text */
.hero-left {
  position: relative;
  z-index: 2;
  padding: 80px 48px 80px max(5vw, 40px);
  max-width: 680px;
  justify-self: end;
  width: 100%;
}

/* Right half – visual panel */
.hero-right {
  position: relative;
  align-self: stretch;
  background: var(--orange);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right-inner {
  position: relative;
  z-index: 2;
  padding: 60px 60px 60px 80px;
  width: 100%;
}
/* Decorative circles on orange panel */
.hero-right::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.08);
  top: -120px; right: -120px;
  z-index: 1;
}
.hero-right::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.06);
  bottom: -80px; left: 30px;
  z-index: 1;
}

/* Background dot pattern on dark left side */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 1;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(244,103,26,.15);
  border: 1px solid rgba(244,103,26,.3);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--orange);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: .4;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--white); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats bar */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  max-width: 460px;
  width: 100%;
}
.stat {
  flex: 1 1 25%;
  min-width: 0;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
/* When stats wrap to 2 rows, remove bottom border on last row */
.stat:nth-last-child(-n+2):nth-child(2n+1),
.stat:nth-last-child(-n+2):nth-child(2n+1) ~ .stat { border-bottom: none; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Right panel: floating info cards */
.hero-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 3;
}
.hero-feature-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.hero-feature-card:hover {
  background: rgba(255,255,255,.22);
  transform: translateX(-6px);
}
.hfc-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hfc-text h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.hfc-text p {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* Trust strip on orange panel */
.hero-trust {
  position: absolute;
  bottom: 32px;
  left: 80px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 12px 20px;
  backdrop-filter: blur(8px);
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: .78rem; font-weight: 600; color: var(--white); }
.trust-text span { display: block; font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.7); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 5%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ============================================================
   HERO PANEL HEADING
   ============================================================ */
.hero-panel-heading {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

/* ============================================================
   HOW IT WORKS – PROCESS
   ============================================================ */
.process-section { padding: 96px 0; background: var(--white); }
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 2px solid var(--orange-pale2);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.process-step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-pale2), var(--orange));
  margin-top: 52px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--orange);
}

/* ============================================================
   WHERE WE WORK
   ============================================================ */
.where-section { padding: 96px 0; background: var(--off-white); }
.where-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
}
.where-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.where-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(244,103,26,.12);
  transform: translateY(-4px);
}
.where-icon { font-size: 2rem; margin-bottom: 10px; }
.where-card span { font-size: .85rem; font-weight: 600; color: var(--dark); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 96px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-pale) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.service-card:hover { border-color: var(--orange); box-shadow: 0 8px 40px rgba(244,103,26,.12); transform: translateY(-6px); }
.service-card:hover::after { opacity: 1; }

.service-num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--orange-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--orange); }
.service-icon { font-size: 1.8rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: .92rem; color: var(--text-muted); margin-bottom: 20px; position: relative; z-index: 1; }
.service-points li {
  font-size: .87rem;
  color: var(--text-muted);
  padding: 7px 0 7px 22px;
  position: relative;
  border-top: 1px solid var(--gray-border);
  z-index: 1;
}
.service-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .85rem;
}

/* ============================================================
   METHODS
   ============================================================ */
.methods-section {
  padding: 96px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.methods-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(255,255,255,.06);
  top: -200px; right: -200px;
}
.methods-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,.05);
  bottom: -150px; left: -100px;
}
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.method-pill {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: default;
  backdrop-filter: blur(4px);
}
.method-pill:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* ============================================================
   WHY US
   ============================================================ */
.whyus-section { padding: 96px 0; background: var(--gray-bg); }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 28px rgba(244,103,26,.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); }
.why-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 96px 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,103,26,.1);
  transform: translateY(-4px);
}
.testi-stars { font-size: 1.1rem; color: #F4A620; letter-spacing: 2px; }
.testi-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testi-text::before { content: '"'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.4em; margin-right: 4px; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name  { display: block; font-size: .92rem; font-weight: 700; color: var(--dark); }
.testi-role  { display: block; font-size: .78rem; color: var(--gray); margin-top: 2px; }

/* ============================================================
   STORY
   ============================================================ */
.story-section { padding: 96px 0; background: var(--white); }
.story-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-inner { max-width: 100%; }
.story-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid var(--orange-pale2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 40px;
}
.story-body p { font-size: 1.02rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.story-body strong { color: var(--dark); }
.story-quote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--orange);
  background: var(--orange-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.75;
}
.story-milestones {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1.5px solid var(--gray-border);
}
.milestone { display: flex; flex-direction: column; gap: 4px; }
.m-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.m-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* Story aside */
.story-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.story-aside-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
}
.story-aside-card.accent {
  background: var(--dark);
  border-color: var(--dark);
}
.aside-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.aside-text {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.trusted-list { display: flex; flex-direction: column; gap: 10px; }
.trusted-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
}
.trusted-item:last-child { border-bottom: none; }
.trusted-item span { font-weight: 500; color: var(--dark); }

/* Form heading */
.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-subheading {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.req { color: var(--orange); }

/* Footer social */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); }
.footer-cta { margin-top: 20px; }

/* ============================================================
   OUR WORK – GALLERY
   ============================================================ */
.gallery-section { padding: 96px 0; background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

/* Wide item spans 2 columns */
.gallery-item--wide { grid-column: span 2; }

/* Tall item spans 2 rows */
.gallery-item--tall { grid-row: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-bg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,.88) 0%, rgba(17,24,39,.3) 50%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

.gallery-overlay p {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin: 0;
}

/* Bottom CTA */
.gallery-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.gallery-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 36px 36px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px;
  background: rgba(244,103,26,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 4px; }
.c-value { display: block; font-size: .97rem; color: rgba(255,255,255,.85); font-weight: 500; transition: var(--transition); }
a.c-value:hover { color: var(--orange); }
.contact-highlight {
  background: rgba(244,103,26,.1);
  border: 1px solid rgba(244,103,26,.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.6;
}
.contact-highlight strong { color: var(--orange-light); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-bg);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select { color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 0 0 3px rgba(244,103,26,.1);
}
.form-note { text-align: center; font-size: .8rem; color: var(--gray); margin-top: 12px; }

/* Success state */
.form-success { text-align: center; padding: 60px 20px; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--orange); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0D0D;
  padding-top: 72px;
  color: rgba(255,255,255,.55);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-name  { color: rgba(255,255,255,.85); }
.footer-brand .logo-tagline { color: var(--orange); }
.footer-desc { font-size: .9rem; line-height: 1.75; max-width: 280px; }
.footer-links, .footer-services, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5, .footer-services h5, .footer-contact h5 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-links a, .footer-contact a { font-size: .9rem; transition: var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-services span { font-size: .9rem; }
.footer-contact span { font-size: .9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .81rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   TOUCH / MOBILE UX IMPROVEMENTS
   ============================================================ */

/* Always-visible overlay on touch screens (no hover) */
@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(17,24,39,.75) 0%, rgba(17,24,39,.15) 55%, transparent 100%);
  }
  .gallery-item img { transform: none !important; }
  .gallery-overlay p { display: block; font-size: .8rem; }

  /* Remove hover-only transforms on touch */
  .service-card:hover,
  .where-card:hover,
  .why-card:hover,
  .testimonial-card:hover,
  .process-step:hover .step-icon,
  .hero-feature-card:hover { transform: none; }
}

/* Ensure all tappable elements have comfortable touch targets */
.nav-links a,
.btn,
.nav-cta,
.hamburger,
.social-link { min-height: 44px; }

/* Prevent text size inflation on iOS */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Smooth momentum scrolling on iOS */
body { -webkit-overflow-scrolling: touch; }

/* Fix 100vw overflow on mobile */
.hero,
.methods-section,
.contact-section,
.footer { max-width: 100vw; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Tablet landscape: 1024px ---------- */
@media (max-width: 1024px) {
  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 80px 40px 56px;
    max-width: 100%;
    justify-self: auto;
  }
  .hero-right {
    clip-path: none;
    min-height: 420px;
  }
  .hero-right-inner { padding: 40px 40px 80px; }
  .hero-trust { left: 40px; right: 40px; bottom: 24px; }
  .hero-stats { max-width: 100%; }

  /* Process: wrap nicely */
  .process-grid { flex-wrap: wrap; justify-content: center; gap: 16px 0; }
  .process-step { min-width: 200px; flex: 1 1 200px; }
  .process-connector { display: none; }

  /* Gallery: 2-col */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  /* Story: single col */
  .story-layout { grid-template-columns: 1fr; }
  .story-aside { position: static; }

  /* Contact: single col */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Footer: 2-col */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ---------- Tablet portrait: 768px ---------- */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Section padding tighter */
  .process-section,
  .where-section,
  .services-section,
  .methods-section,
  .gallery-section,
  .whyus-section,
  .testimonials-section,
  .story-section,
  .contact-section { padding: 72px 0; }

  .section-header { margin-bottom: 44px; }

  /* Hamburger nav */
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 40px 20px;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    color: var(--dark) !important;
    border-radius: var(--radius-sm);
  }
  .nav-links a:hover { color: var(--orange) !important; background: var(--orange-pale) !important; }
  .nav-links .nav-cta {
    color: var(--white) !important;
    margin-top: 8px;
    background: var(--orange) !important;
    border-radius: var(--radius-xl);
  }
  .hamburger { display: flex; }

  /* Hero */
  .hero-left {
    padding: 64px 24px 48px;
    text-align: center;
  }
  .hero-badge { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .stat { flex: 1 1 calc(50% - 1px); min-width: 0; }
  .hero-right { min-height: 360px; }
  .hero-right-inner { padding: 32px 24px 80px; }
  .hero-trust { left: 24px; right: 24px; bottom: 20px; }
  .hero-scroll-hint { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Process: 2-col grid */
  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-step { min-width: unset; padding: 0 12px; }
  .process-connector { display: none; }

  /* Where grid: 2-col */
  .where-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .where-card { padding: 18px 12px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 28px; }

  /* Methods pills: smaller */
  .method-pill { font-size: .82rem; padding: 10px 18px; }

  /* Gallery: 2-col */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-overlay { padding: 16px; }
  .gallery-overlay p { display: none; } /* hide description, keep tag on small screens */

  /* Why Us */
  .whyus-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 22px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Story */
  .story-aside { position: static; }
  .story-milestones { gap: 24px; }
  .m-year { font-size: 2rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section .section-header { text-align: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .footer-desc { max-width: 100%; }
}

/* ---------- Mobile: 480px ---------- */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  /* Tighter section padding */
  .process-section,
  .where-section,
  .services-section,
  .methods-section,
  .gallery-section,
  .whyus-section,
  .testimonials-section,
  .story-section,
  .contact-section { padding: 56px 0; }

  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-header p { font-size: .92rem; }

  /* Hero */
  .hero-left { padding: 56px 20px 40px; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-badge { font-size: .7rem; }
  .hero-stats { flex-wrap: wrap; }
  .stat { flex: 1 1 calc(50% - 1px); }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .62rem; }
  .hero-right { min-height: 320px; }
  .hero-right-inner { padding: 28px 20px 72px; }
  .hero-feature-cards { gap: 10px; }
  .hero-feature-card { padding: 14px 16px; gap: 12px; }
  .hfc-icon { width: 36px; height: 36px; font-size: 1rem; }
  .hfc-text h4 { font-size: .88rem; }
  .hfc-text p { font-size: .75rem; }
  .hero-trust { flex-wrap: wrap; gap: 8px; padding: 10px 14px; font-size: .72rem; left: 16px; right: 16px; bottom: 16px; }

  /* Process: single col on tiny phones */
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-icon { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Where: 2-col stays but compact */
  .where-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .where-card { padding: 16px 10px; }
  .where-icon { font-size: 1.6rem; }
  .where-card span { font-size: .78rem; }

  /* Services */
  .service-card { padding: 28px 20px; }
  .service-card h3 { font-size: 1.1rem; }

  /* Methods */
  .methods-grid { gap: 8px; }
  .method-pill { font-size: .78rem; padding: 9px 14px; }

  /* Gallery: single col */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-cta p { font-size: .95rem; }

  /* Why Us */
  .why-card { padding: 24px 18px; }
  .why-icon { width: 44px; height: 44px; font-size: 1.3rem; }

  /* Testimonials */
  .testimonial-card { padding: 28px 22px; }

  /* Story */
  .story-milestones { gap: 20px; }
  .story-milestones .milestone { flex: 1 1 40%; }
  .m-year { font-size: 1.8rem; }
  .story-quote { padding: 20px 20px; font-size: .95rem; }
  .story-aside-card { padding: 22px 20px; }

  /* Contact form */
  .contact-form { padding: 28px 16px; border-radius: var(--radius-md); }
  .form-heading { font-size: 1.2rem; }
  .contact-info { gap: 20px; }
  .contact-highlight { padding: 14px 16px; font-size: .85rem; }

  /* Footer */
  .footer { padding-top: 48px; }
  .footer-inner { gap: 28px; }
  .logo-name { font-size: .88rem; }
  .logo-tagline { font-size: .63rem; }
  .logo-img { height: 40px; }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: .9rem; }
}

/* ---------- Very small phones: 360px ---------- */
@media (max-width: 360px) {
  .hero-left { padding: 48px 16px 36px; }
  .hero-title { font-size: 1.75rem; }
  .hero-trust { display: none; }
  .stat { padding: 14px 10px; }
  .where-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-auto-rows: 170px; }
  .method-pill { font-size: .75rem; padding: 8px 12px; }
  .contact-form { padding: 24px 14px; }
}
