/* ============================================
   RKG Driveways & Landscaping — Redesign Concept
   Interruptive Studios, 2026
============================================ */

:root {
  --orange: #ff9900;
  --orange-soft: #ffb84d;
  --orange-deep: #e68900;
  --orange-dark: #cc7a00;
  --black: #0a0a0a;
  --ink: #141414;
  --charcoal: #1d1d1d;
  --grey-900: #242424;
  --grey-700: #3c3c3c;
  --grey-500: #6b6b6b;
  --grey-400: #9a9a9a;
  --grey-300: #c4c4c4;
  --grey-200: #e5e5e5;
  --grey-100: #f2f2f2;
  --paper: #fafaf8;
  --white: #ffffff;

  --radius-btn: 41px;
  --radius-card: 16px;
  --radius-input: 8px;

  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1320px;
  --container-pad: clamp(20px, 4vw, 64px);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }
strong { font-weight: 700; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

::selection { background: var(--orange); color: var(--black); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; border: 2px solid var(--grey-100); }

/* ========== ANNOUNCE BAR ========== */
.announce {
  background: var(--black);
  color: var(--grey-300);
  font-size: 12.5px;
  font-weight: 500;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.announce .dot { color: var(--orange); font-size: 8px; }
.announce span:first-child, .announce span:not(.dot) { color: var(--grey-300); }
@media (max-width: 720px) {
  .announce { display: none; }
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--container-pad);
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.1);
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.logo-shield {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-shield-big { width: 72px; height: 72px; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-rkg {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  line-height: 1;
}

/* Footer — full horizontal logo lockup */
.footer-logo-full {
  display: block;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 auto 0 16px;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--orange-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transition: right 0.4s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.nav-phone:hover { color: var(--orange-deep); }
.nav-phone svg { color: var(--orange); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--orange);
  color: var(--black);
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--black); color: var(--orange); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; border: 0; background: transparent; cursor: pointer; z-index: 60; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }

/* ========== MEGA MENU ========== */
/* Stretch nav-links and the has-mega li to the full nav height so the
   dropdown can anchor at exactly the nav's bottom edge. */
.nav-links { align-self: stretch; align-items: stretch; }
.nav-links .has-mega {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-links .has-mega > a {
  display: inline-flex;
  align-items: center;
}
.nav-links .has-mega > a .caret {
  display: inline-block;
  font-size: 10px;
  margin-left: 4px;
  transform: translateY(-1px);
  transition: transform 0.2s var(--ease);
}
.nav-links .has-mega.open > a .caret,
.nav-links .has-mega:hover > a .caret { transform: rotate(180deg) translateY(1px); }
/* Suppress the animated underline on mega trigger anchors */
.nav-links .has-mega > a::after { display: none; }

.mega {
  position: absolute;
  top: calc(100% + 26px);
  left: 0;
  transform: translateY(-6px);
  min-width: 720px;
  max-width: min(720px, calc(100vw - 32px));
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(20,20,20,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.25s var(--ease);
  z-index: 100;
}
.mega::before {
  content: '';
  position: absolute;
  top: -8px; left: 28px;
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.97);
  border-left: 1px solid rgba(0,0,0,0.05);
  border-top: 1px solid rgba(0,0,0,0.05);
  transform: rotate(45deg);
}
.nav-links .has-mega:hover > .mega,
.nav-links .has-mega.open > .mega,
.nav-links .has-mega:focus-within > .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* hover bridge — invisible area between trigger and menu so cursor can cross */
.nav-links .has-mega::after {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 36px;
  z-index: 99;
  pointer-events: auto;
}
.nav-links .has-mega:not(:hover):not(.open):not(:focus-within)::after { pointer-events: none; }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mega-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.mega-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.mega-item:hover { background: var(--paper); transform: translateX(2px); }
.mega-item::after { display: none !important; }
.mega-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-title .mega-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange-deep);
  background: rgba(255,153,0,0.12);
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mega-desc {
  font-size: 12px;
  color: var(--grey-500);
  line-height: 1.4;
  font-weight: 500;
}
.mega-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}
.mega-foot a {
  font-weight: 700;
  color: var(--orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-foot a::after { display: none !important; }
.mega-foot .mega-foot-cta {
  background: var(--orange);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .mega { min-width: 480px; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  /* Mobile menu mode — mega becomes nested list under the parent */
  body.nav-open .nav-links .has-mega {
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  body.nav-open .nav-links .has-mega > a {
    width: 100%;
    padding: 16px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
  }
  body.nav-open .nav-links .has-mega > a .caret {
    display: inline-block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
  }
  body.nav-open .nav-links .has-mega::after { display: none; }
  body.nav-open .nav-links .mega {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 6px 0 18px 14px;
    opacity: 1;
    pointer-events: auto;
    border-left: 2px solid rgba(255,255,255,0.1);
    margin-left: 4px;
    display: none;
  }
  body.nav-open .nav-links .has-mega.open .mega { display: block; }
  body.nav-open .nav-links .mega::before { display: none; }
  body.nav-open .nav-links .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  body.nav-open .nav-links .mega-item {
    padding: 10px 8px;
    color: rgba(255,255,255,0.7);
    border-bottom: 0;
  }
  body.nav-open .nav-links .mega-item:hover { background: rgba(255,255,255,0.05); }
  body.nav-open .nav-links .mega-title { color: #fff; font-size: 14px; }
  body.nav-open .nav-links .mega-title .mega-tag { background: rgba(255,153,0,0.18); color: var(--orange); }
  body.nav-open .nav-links .mega-desc { color: rgba(255,255,255,0.5); font-size: 11.5px; }
  body.nav-open .nav-links .mega-foot { border-color: rgba(255,255,255,0.1); }
  body.nav-open .nav-links .mega-foot a { color: var(--orange); }
}

@media (max-width: 1000px) {
  .nav-links, .nav-phone { display: none; }
  .logo-sub { display: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }

  /* Mobile drawer overlay */
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    inset: 64px 0 0 0;
    padding: 24px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    z-index: 50;
    margin: 0;
    align-items: stretch;
  }
  body.nav-open .nav-links a {
    color: #fff;
    padding: 16px 0;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  body.nav-open .nav-links a::after { display: none; }
  /* Nav remains white when the drawer opens, so keep the X icon dark */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0) 60%),
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.hero-text { max-width: 760px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-btn);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.05);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
}
.pulse {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7);
  animation: pulse 2s infinite var(--ease);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 153, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title .accent { color: var(--orange); }

.hero-desc {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 36px;
  font-weight: 400;
}

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

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.9); }
.trust-item strong { color: var(--white); font-weight: 700; }
.trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 1.5px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  font-size: 11px; font-weight: 900;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--container-pad);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-scroll svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: var(--radius-btn);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--black); color: var(--orange); border-color: var(--black); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary svg { transition: transform 0.3s var(--ease); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-full { width: 100%; justify-content: center; padding: 17px 24px; }

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--black);
  color: var(--white);
  padding: clamp(32px, 5vw, 56px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 clamp(8px, 2vw, 20px);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-block:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}
.stat-num .stat-small { font-size: 0.5em; color: var(--orange); font-weight: 700; }
.stat-block:nth-child(1) .stat-num,
.stat-block:nth-child(3) .stat-num { color: var(--orange); }
.stat-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
@media (max-width: 780px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat-block:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ========== SECTION HEAD ========== */
.section-head {
  margin-bottom: clamp(44px, 6vw, 80px);
  max-width: 820px;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 30px;
}
.section-title {
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title .accent { color: var(--orange); }
.section-lede {
  margin-top: 20px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--grey-500);
  max-width: 620px;
}

/* ========== SERVICES ========== */
.services {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
  border-color: var(--orange);
}
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  transition: opacity 0.4s var(--ease);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 12px;
}
.service-body h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grey-500);
  margin-bottom: 20px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.service-card:hover .service-link { color: var(--orange-deep); gap: 12px; }
.service-link svg { color: var(--orange); }

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ========== FEATURE / WHY RKG ========== */
.feature {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--white);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.feature-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 640px;
}
.feature-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--black);
  padding: 20px 24px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}
.feature-tag-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.feature-tag-label {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.feature-text .section-title { margin-bottom: 32px; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-top: 2px;
}
.feature-list strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-list p {
  font-size: 14.5px;
  color: var(--grey-500);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-visual { aspect-ratio: 16/10; max-height: 440px; }
}

/* ========== GALLERY ========== */
.gallery {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--paper);
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 100%;
}
.gallery-head > div { max-width: 720px; }
.gallery-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-btn);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.gallery-all:hover { background: var(--orange); color: var(--black); border-color: var(--orange); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--charcoal);
}
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.g-item:hover::after { opacity: 1; }
.g-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--black);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  width: fit-content;
}
.g-item figcaption strong { font-size: 16px; font-weight: 700; }

@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .g-item figcaption { opacity: 1; transform: translateY(0); }
  .g-item::after { opacity: 1; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item.g-wide, .g-item.g-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
}

/* ========== PROCESS ========== */
.process {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--radius-card);
  border: 1px solid var(--grey-200);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-step:hover { transform: translateY(-4px); border-color: var(--orange); }
.step-num {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange-deep);
  margin-bottom: 20px;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grey-500);
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ========== REVIEWS ========== */
.reviews {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--paper);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.review-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12); }
.review-card .stars { font-size: 16px; letter-spacing: 2px; }
.review-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}
.review-card footer strong { font-weight: 700; font-size: 14.5px; }
.review-card footer span { font-size: 12.5px; color: var(--grey-500); }

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid var(--grey-200);
}
.badge-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-btn);
  transition: border-color 0.3s var(--ease);
}
.badge-pill:hover { border-color: var(--orange); }
.badge-pill .stars { font-size: 14px; }
.check-big {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
}
.badge-pill > div { display: flex; flex-direction: column; line-height: 1.25; }
.badge-pill strong { font-size: 14px; font-weight: 700; }
.badge-pill span { font-size: 12px; color: var(--grey-500); }

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ========== AREAS ========== */
.areas {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--white);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.areas-list a {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-btn);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.areas-list a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}
.areas-note {
  font-size: 14.5px;
  color: var(--grey-500);
  font-style: italic;
}

/* ========== ABOUT ========== */
.about {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-text .section-title { margin-bottom: 28px; }
.about-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-700);
  margin-bottom: 16px;
  max-width: 520px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange-deep);
  line-height: 1;
}
.about-stats span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.about-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/10; max-height: 360px; order: -1; }
}

/* ========== FAQ ========== */
.faq {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--white);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.3s var(--ease);
}
.faq-item[open] { background: var(--paper); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 24px 16px;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-deep); }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--orange);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 24px 26px 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-700);
  max-width: 700px;
}
.faq-body em { color: var(--orange-deep); font-style: italic; }

/* ========== QUOTE CTA ========== */
.quote-cta {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-cta::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.quote-cta .eyebrow { color: var(--orange); background: rgba(255, 153, 0, 0.14); }
.quote-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
}
.quote-title .accent { color: var(--orange); }
.quote-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

.quote-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.quote-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.quote-call {
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.quote-call > span { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.quote-call a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
}

.quote-form {
  background: var(--white);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.quote-form h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field:last-of-type { margin-bottom: 20px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-input);
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-400); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23ff9900' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.quote-reassure {
  font-size: 12.5px;
  color: var(--grey-500);
  text-align: center;
  margin-top: 12px;
}

.quote-done {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  background: rgba(255, 153, 0, 0.08);
  border: 1px solid var(--orange);
  border-radius: var(--radius-card);
  text-align: center;
  color: var(--white);
}
.quote-done.show { display: flex; }
.quote-done strong { font-size: 22px; font-weight: 800; }
.quote-done p { color: rgba(255,255,255,0.75); font-size: 15px; max-width: 400px; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(64px, 9vw, 100px) 0 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand .logo-rkg { color: var(--white); }
.footer-tagline {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 10px;
}
.footer-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s var(--ease);
  margin-bottom: 4px;
}
.footer-link:hover { color: var(--orange); }
.footer-meta { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s var(--ease);
}
.footer-col ul a:hover { color: var(--orange); }

.footer-wordmark {
  font-size: clamp(120px, 24vw, 380px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 153, 0, 0.22);
  text-align: center;
  user-select: none;
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--orange); font-weight: 600; }

@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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

/* Stagger within grids */
.service-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.service-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.service-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.service-grid [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.service-grid [data-reveal]:nth-child(6) { transition-delay: 0.4s; }
.gallery-grid [data-reveal]:nth-child(n+2) { transition-delay: calc(var(--i, 1) * 0.06s); }
.process-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.process-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.process-grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }
.reviews-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }
