/* ============================================================
   GMS Painting & Decorating — Premium CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --cream: #F2EDE6;
  --charcoal: #1A1A1A;
  --charcoal-2: #242424;
  --charcoal-3: #2E2E2E;
  --warm-grey: #6B6460;
  --light-grey: #C8C4BF;
  --border: rgba(107, 100, 96, 0.2);

  /* Rainbow accent — subtle */
  --accent-red:    #E8614A;
  --accent-orange: #F0913A;
  --accent-yellow: #F5C842;
  --accent-green:  #5BAD7F;
  --accent-blue:   #4A8FD4;
  --accent-violet: #9B6EC8;

  --rainbow-gradient: linear-gradient(90deg,
    var(--accent-red),
    var(--accent-orange),
    var(--accent-yellow),
    var(--accent-green),
    var(--accent-blue),
    var(--accent-violet));

  --shadow-soft: 0 4px 32px rgba(26,26,26,0.08);
  --shadow-medium: 0 8px 48px rgba(26,26,26,0.14);
  --shadow-heavy: 0 16px 64px rgba(26,26,26,0.22);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s ease;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --max-width: 1280px;
  --section-pad: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); }

/* ── Rainbow bar ── */
.rainbow-bar {
  height: 3px;
  background: var(--rainbow-gradient);
  width: 100%;
}

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--rainbow-gradient);
  border-radius: 2px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section-heading em {
  font-style: italic;
  font-weight: 300;
}
.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--warm-grey);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--white);
}
.btn-light:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn svg { transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(4px); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
  padding: 0;
}
#header .rainbow-bar { transition: opacity 0.5s ease; }
#header.scrolled .rainbow-bar { opacity: 0; height: 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px clamp(24px, 5vw, 60px);
  transition: padding 0.4s ease;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 24px rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
}
#header.scrolled .header-inner { padding-top: 6px; padding-bottom: 6px; }
#header.scrolled .logo-img { height: 72px; }
#header.hero-transparent .logo-text,
#header.hero-transparent .nav-link { color: var(--white); }
#header.hero-transparent .btn-quote {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
#header.scrolled .logo-text { color: var(--charcoal); }
#header.scrolled .nav-link { color: var(--charcoal); }
#header.scrolled .btn-quote {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-img {
  height: 100px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
  transition: transform var(--transition);
}
.logo-img:hover { transform: scale(1.04); }
#header.scrolled .logo-img {
  height: 80px;
  mix-blend-mode: multiply;
  filter: brightness(0.95) contrast(1.1);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color var(--transition);
}
.logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.65;
}

nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition-fast), opacity var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rainbow-gradient);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.btn-quote {
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-quote:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: var(--transition);
}
#header.hero-transparent .hamburger span { background: var(--white); }
#header.scrolled .hamburger span { background: var(--charcoal); }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-nav.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.mobile-nav a {
  padding: 13px clamp(24px, 5vw, 60px);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn-quote-mobile {
  margin: 16px clamp(24px, 5vw, 60px) 0;
  display: inline-block;
  padding: 13px 28px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2a2018 100%);
}
/* Decorative painted strokes */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center,
    rgba(232, 97, 74, 0.06) 0%,
    rgba(74, 143, 212, 0.04) 40%,
    transparent 70%);
  transform: rotate(-15deg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center,
    rgba(91, 173, 127, 0.05) 0%,
    rgba(155, 110, 200, 0.03) 50%,
    transparent 70%);
  transform: rotate(10deg);
}

/* Parallax image overlay */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.55) 0%,
    rgba(13,13,13,0.40) 50%,
    rgba(13,13,13,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px clamp(24px, 5vw, 60px) 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s ease forwards;
}
.hero-tag-dot {
  width: 32px;
  height: 2px;
  background: var(--rainbow-gradient);
  border-radius: 2px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(46px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}
.hero-heading em {
  font-style: italic;
  font-weight: 300;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 24px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
}

/* Stats floating cards */
.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 64px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 18px 28px;
  min-width: 140px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.stat-accent {
  width: 20px;
  height: 2px;
  background: var(--rainbow-gradient);
  border-radius: 2px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}
.hero-scroll span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-pad);
  background: var(--white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rainbow-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--off-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  z-index: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--charcoal);
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--warm-grey);
  transition: stroke var(--transition);
}
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.7;
}
.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: rgba(107, 100, 96, 0.08);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(107,100,96,0.12); }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: var(--section-pad);
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-main-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e3dc, #d4cfc8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--warm-grey);
  letter-spacing: 0.1em;
}
.about-accent-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  background: var(--charcoal);
  color: var(--white);
  padding: 28px;
  border-radius: 2px;
}
.accent-card-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.accent-card-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  line-height: 1.5;
}
.accent-card-bar {
  width: 24px;
  height: 2px;
  background: var(--rainbow-gradient);
  margin-top: 14px;
}

.about-content { padding-left: 20px; }
.about-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.85;
  margin-top: 24px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
}
.about-value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rainbow-gradient);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
  padding: var(--section-pad);
  background: var(--charcoal);
  color: var(--white);
}
.why-header {
  text-align: center;
  margin-bottom: 72px;
}
.why-header .section-tag { color: rgba(255,255,255,0.4); justify-content: center; }
.why-header .section-tag::before { background: var(--rainbow-gradient); }
.why-header .section-heading { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.why-card {
  background: var(--charcoal);
  padding: 44px 36px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rainbow-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { background: var(--charcoal-3); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.7); }
.why-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   PROJECTS / GALLERY
   ============================================================ */
#projects {
  padding: var(--section-pad);
  background: var(--white);
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 40px;
  flex-wrap: wrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 4px;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

/* Real image */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

/* Fallback when no image yet */
.gallery-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.12);
}
.gallery-fallback span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 0 16px;
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay-content { transform: translateY(0); }

.gallery-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.gallery-view-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  margin-top: 10px;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); color: var(--white); }

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: var(--section-pad);
  background: var(--cream);
}
.process-header { text-align: center; margin-bottom: 72px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--rainbow-gradient), var(--border), transparent);
}
.process-step {
  padding: 0 40px;
  text-align: center;
  position: relative;
}
.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.process-step:hover .process-num {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: scale(1.06);
}
.process-step-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.process-step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--section-pad);
  background: var(--white);
  overflow: hidden;
}
.testimonials-header { margin-bottom: 52px; }
.testimonials-track-wrap { position: relative; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rainbow-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.testi-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}
.testi-card:hover::before { opacity: 1; }

/* Glassmorphism variant */
.testi-card.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star { color: #F5C842; font-size: 14px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0dbd2, #c8c3bb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--warm-grey);
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.testi-location {
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,97,74,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(74,143,212,0.08) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-tag { justify-content: center; color: rgba(255,255,255,0.4); }
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.cta-heading em {
  font-style: italic;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: var(--transition);
}
.btn-cta-phone:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: var(--section-pad);
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--warm-grey); }
.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 2px;
}
.service-areas {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.service-areas-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 14px;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 400;
  color: var(--charcoal);
  border-radius: 30px;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 4px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  -webkit-appearance: none;
}
.form-control:focus {
  background: var(--white);
  border-color: var(--charcoal);
}
.form-control::placeholder { color: var(--light-grey); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--charcoal-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-msg {
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 13px;
  margin-top: 16px;
  display: none;
}
.form-msg.success { background: #e8f5ed; color: #2d7a4a; border: 1px solid #b8dfc8; display: block; }
.form-msg.error { background: #fdf0ee; color: #c0392b; border: 1px solid #f5c6c0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--charcoal-2);
  color: var(--white);
  padding: 72px clamp(24px, 5vw, 60px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-top: 4px;
}
.footer-logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 2px;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-icon:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}
.social-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); }
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

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

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-main-img { aspect-ratio: 16/9; max-height: 420px; }
  .about-accent-card { right: 20px; bottom: -20px; width: 180px; }
  .about-content { padding-left: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 4px;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 240px; }

  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0 20px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .hero-stats { flex-wrap: wrap; gap: 12px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px 20px;
  }

  /* Header */
  .header-inner { padding: 6px 20px; }
  .logo-img { height: 78px; }
  #header.scrolled .logo-img { height: 64px; }

  /* Hero */
  #hero { min-height: 100svh; }
  .hero-content { padding: 120px 20px 80px; }
  .hero-heading { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 13px; }
  .hero-stats {
    gap: 8px;
    margin-top: 40px;
  }
  .stat-card {
    padding: 12px 16px;
    min-width: 100px;
    flex: 1;
  }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 10px; }

  /* Sections */
  .section-heading { font-size: clamp(30px, 9vw, 44px); }
  .section-sub { font-size: 15px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-header .section-sub { max-width: 100%; }
  .service-card { padding: 32px 24px; }
  .service-number { font-size: 44px; }

  /* About */
  .about-main-img { aspect-ratio: 4/3; }
  .about-accent-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
  }
  .accent-card-number { font-size: 36px; }
  .about-values { grid-template-columns: 1fr; gap: 10px; }
  .about-text { font-size: 15px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-card { padding: 32px 24px; }
  .why-header { margin-bottom: 48px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .gallery-overlay { opacity: 1; } /* always show label on touch */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Process */
  .process-header { margin-bottom: 48px; }
  .process-step { padding: 0; text-align: left; }
  .process-num {
    margin: 0 0 20px 0;
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 24px; }
  .testi-quote { font-size: 15px; }

  /* CTA */
  #cta { padding: 64px 20px; }
  .cta-heading { font-size: clamp(28px, 9vw, 44px); }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn,
  .btn-cta-phone { width: 100%; justify-content: center; }

  /* Contact */
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 22px; }
  .service-areas { margin-top: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  #footer { padding: 48px 20px 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
  }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }
  .footer-tagline { font-size: 13px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-heading { font-size: clamp(34px, 12vw, 46px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 calc(50% - 8px); min-width: 0; }

  .btn { padding: 13px 20px; }
  .btn-quote { display: none; } /* hide header CTA on very small screens, hamburger takes over */

  .about-main-img { aspect-ratio: 1/1; }
  .areas-list { gap: 6px; }
  .area-tag { font-size: 11px; padding: 4px 10px; }

  .gallery-item { height: 180px; }

  .contact-form-wrap { padding: 24px 16px; }
  .form-control { padding: 12px 14px; font-size: 15px; } /* 15px prevents iOS zoom */
  select.form-control { font-size: 15px; }
  textarea.form-control { font-size: 15px; }
  input.form-control { font-size: 15px; }
  .form-submit { font-size: 12px; padding: 15px; }
}

/* ── iOS input zoom fix — font-size must be ≥16px on focus OR set explicitly ── */
@media (max-width: 768px) {
  input.form-control,
  select.form-control,
  textarea.form-control {
    font-size: 16px; /* prevents iOS Safari zoom on focus */
  }
}

/* ── Touch: remove hover effects that don't make sense ── */
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: none; }
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-light:hover { transform: none; }
  .testi-card:hover { transform: none; }
  .process-num:hover { transform: none; }
}