/* Virtue Renovations — Premium dark editorial theme */
[hidden] { display: none !important; }
:root {
  --bg-dark: #000000;
  --bg-light: #ffffff;
  --bg-soft: #f5f5f5;
  --text-light: #ffffff;
  --text-dark: #000000;
  --text-muted: #666666;
  --text-muted-light: #aaaaaa;
  --border: #e5e5e5;
  --accent: #C47A3C;
  --max-width: 1280px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --radius: 12px;
  --gap: 24px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Geist', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Offset anchor scrolling so section headings clear the fixed nav */
section[id], header[id], [id="testimonials"], [id="faq"], [id="about"], [id="services"], [id="contact"] {
  scroll-margin-top: 84px;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.kicker.light { color: var(--text-muted-light); }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-weight: 300; font-size: clamp(42px, 7vw, 74px); }
h2 { font-weight: 400; font-size: clamp(28px, 4vw, 40px); }
h3 { font-weight: 500; font-size: 24px; }
h4 { font-weight: 500; font-size: 18px; }

.section { padding: var(--section-padding) 24px; }
.section.dark { background: var(--bg-dark); color: var(--text-light); }
.section.light { background: var(--bg-light); color: var(--text-dark); }
.section.soft { background: var(--bg-soft); }
.container { max-width: var(--max-width); margin: 0 auto; }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}
/* Shine sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.7s cubic-bezier(.16,.84,.44,1);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(130%); }
/* Trailing arrow icon (SVG mask, inherits text colour) */
.btn::after {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateX(-2px);
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1);
}
.btn:hover::after { transform: translateX(4px); }
/* Optional leading icon injected in HTML */
.btn .btn-ico {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1);
}
.btn:hover .btn-ico { transform: scale(1.12) rotate(-3deg); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 14px rgba(196,122,60,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(196,122,60,0.42);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 24px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 8vw, 74px);
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 5px;
  text-underline-offset: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:not(.nav-cta):not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1);
}
.nav-links a:not(.nav-cta):not(.btn):hover::after { transform: scaleX(1); }
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,122,60,0.35);
}
.nav-links .btn {
  padding: 10px 20px;
  font-size: 13px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-dark);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}
.hero-content { max-width: 760px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.hero-body {
  font-size: 16px;
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
.hero-grid img:nth-child(1) { animation-delay: 0.1s; }
.hero-grid img:nth-child(2) { animation-delay: 0.25s; }
.hero-grid img:nth-child(3) { animation-delay: 0.4s; }
.hero-grid img:nth-child(4) { animation-delay: 0.55s; }

/* About */
.about-text { max-width: 680px; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy { max-width: 560px; }
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-gallery img:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}
.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  grid-column: span 2;
}
.service-card-bg {
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
}
.service-card-bg .content { background: transparent; }
.service-card-bg h4,
.service-card-bg p { color: var(--text-light); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card .content { padding: 24px; }
.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); }
.service-card-bg p { color: rgba(255,255,255,0.85); }
.services-grid > .service-card:nth-child(4),
.services-grid > .service-card:nth-child(5) {
  grid-column: span 3;
}
/* If last row has 2 cards, make equal width via 6-col fallback handled by grid auto placement */

/* Projects slideshow */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slideshow img.active { opacity: 1; }

/* CTA section */
.cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; max-width: 760px; }
.cta-content h2 { margin-bottom: 20px; }
.cta-content p { opacity: 0.85; margin-bottom: 32px; }

/* Testimonials */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.trust-stat {
  flex: 1 1 160px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  border-color: rgba(196,122,60,0.4);
}
.trust-stat strong {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  color: var(--text-dark);
}
.trust-stat small {
  font-size: 13px;
  color: var(--text-muted);
}
.trust-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
  margin: 2px 0;
}
.trust-stars svg { width: 15px; height: 15px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap);
}
.testimonial-feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-feature img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}
.testimonial-card {
  position: relative;
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(.16,.84,.44,1);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(0,0,0,0.09);
  border-color: rgba(196,122,60,0.35);
}
.testimonial-card:hover::before { transform: scaleY(1); }
.testimonial-card.is-feature {
  background: var(--bg-soft);
}
.quote-mark {
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.14;
  pointer-events: none;
}
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}
.stars svg { width: 17px; height: 17px; }
.testimonial-card p {
  font-size: 15px;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #e0a86a);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.testimonial-card cite span { color: var(--text-muted); font-weight: 400; font-size: 13px; }
.testimonial-stack { display: flex; flex-direction: column; gap: var(--gap); }

/* FAQ */
.faq-header { text-align: center; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-icon { font-size: 20px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 15px;
  text-align: left;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* Contact */
.contact-section {
  position: relative;
  color: var(--text-light);
}
.contact-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { opacity: 0.85; margin-bottom: 24px; }
.contact-detail { margin-bottom: 14px; }
.contact-detail strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.contact-detail a { font-size: 18px; font-weight: 500; }
.contact-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.success-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 24px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-tagline { font-size: 18px; opacity: 0.85; max-width: 320px; }
.footer-links h4 { font-size: 14px; margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}
.footer-bottom span:not(:last-child)::after {
  content: "•";
  margin-left: 16px;
  opacity: 0.6;
}

/* Projects page */
.page-header { padding: 140px 24px 60px; background: var(--bg-dark); color: var(--text-light); text-align: center; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding-top: var(--section-padding);
}
.project-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.project-card .img-wrap { overflow: hidden; }
.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card .content { padding: 22px; }
.project-card .category {
  font-family: var(--font-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.project-card h3 { font-size: 18px; margin-bottom: 6px; }
.project-card .location { font-size: 14px; color: var(--text-muted); }

/* Project detail */
.project-hero {
  padding-top: 90px;
}
.project-hero img {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  object-fit: cover;
}
.project-meta {
  padding: 48px 24px 24px;
}
.project-meta .container {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.meta-item strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.project-body { padding: 24px 24px 60px; }
.project-body p { max-width: 760px; font-size: 17px; color: var(--text-dark); }
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  padding: 0 24px 80px;
}
.project-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 40px 24px;
  font-weight: 500;
  transition: gap 0.2s;
}
.back-link:hover { gap: 12px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Privacy */
.privacy-content { max-width: 760px; }
.privacy-content h2 { margin: 32px 0 16px; }
.privacy-content p { margin-bottom: 16px; color: var(--text-muted); }

/* 404 */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero-grid { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5) { grid-column: span 1; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(0,0,0,0.95);
    padding: 24px;
    gap: 16px;
  }
  .hero-grid { display: none; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .about-split { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .about-gallery img { height: 160px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5) { grid-column: span 1; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-section .container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom span:not(:last-child)::after { content: none; }
  .section { padding: var(--section-padding-mobile) 20px; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PREMIUM ENHANCEMENTS
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #e0a86a);
  z-index: 300;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(196,122,60,0.6);
}

/* Scroll-triggered image reveal (fade + rise + soft blur) */
.img-reveal {
  opacity: 0;
  transform: translateY(34px) scale(1.03);
  filter: blur(10px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(.16,.84,.44,1), filter 0.9s ease;
  will-change: opacity, transform, filter;
}
.img-reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Fade-up utility for text blocks with stagger */
.rise {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.16,.84,.44,1);
}
.rise.in { opacity: 1; transform: none; }

/* Hero: subtle zoom-in ambience + parallax hook */
.hero-bg {
  background-attachment: scroll;
}
.hero-content h1 { position: relative; }
.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s cubic-bezier(.16,.84,.44,1) forwards;
}
.hero-content h1 { animation-delay: 0.15s; }
.hero-content .hero-sub { animation-delay: 0.3s; }
.hero-content .hero-body { animation-delay: 0.45s; }
.hero-content .hero-actions { animation-delay: 0.6s; }
@keyframes heroKen {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Service cards — premium reveal on hover */
.service-card-bg {
  position: relative;
  transition: transform 0.5s cubic-bezier(.16,.84,.44,1), box-shadow 0.5s ease;
}
.service-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(196,122,60,0.0) 100%);
  transition: background 0.5s ease;
  pointer-events: none;
}
.service-card-bg:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.35);
}
.service-card-bg:hover::after {
  background: linear-gradient(180deg, transparent 30%, rgba(196,122,60,0.35) 100%);
}
.service-card-bg .content {
  transition: transform 0.5s cubic-bezier(.16,.84,.44,1);
}
.service-card-bg:hover .content { transform: translateY(-6px); }
.service-card-bg .content h4 {
  position: relative;
  display: inline-block;
}
.service-card-bg .content h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(.16,.84,.44,1);
}
.service-card-bg:hover .content h4::after { width: 46px; }

/* Testimonial images share the reveal + gentle zoom */
.testimonial-feature img,
.testimonial-card { will-change: transform; }
.testimonial-feature { overflow: visible; }
.testimonial-feature img {
  transition: transform 0.6s cubic-bezier(.16,.84,.44,1), box-shadow 0.6s ease;
}
.testimonial-feature img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* FAQ — premium accent on open */
.faq-item {
  transition: border-color 0.3s ease;
}
.faq-question span:first-child { transition: color 0.3s ease; }
.faq-item.open .faq-question span:first-child { color: var(--accent); }
.faq-question:hover span:first-child { color: var(--accent); }
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 18px;
  color: var(--text-dark);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Nav logo micro-interaction */
.logo { transition: text-decoration-color 0.3s ease, transform 0.3s ease; display: inline-block; }
.logo:hover { transform: translateY(-1px); }

/* Contact form focus glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(196,122,60,0.25);
}

/* Floating call button (mobile-friendly premium touch) */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(196,122,60,0.45);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.16,.84,.44,1), opacity 0.5s ease, box-shadow 0.3s ease;
}
.floating-call.show { transform: translateY(0); opacity: 1; }
.floating-call:hover { box-shadow: 0 14px 40px rgba(196,122,60,0.6); transform: translateY(-3px) scale(1.05); }
.floating-call svg { width: 24px; height: 24px; }
.floating-call::before,
.floating-call::after { content: none; }

/* Section headings subtle entrance handled by .reveal (already present) */

/* Slideshow premium frame */
.slideshow {
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}
.slideshow img { transform: scale(1.0); }
.slideshow img.active { animation: slowZoom 6s ease-out forwards; }
@keyframes slowZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .img-reveal, .rise { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-content > * { opacity: 1 !important; transform: none !important; animation: none !important; }
  .slideshow img.active { animation: none !important; }
  .floating-call { transition: none; }
}
