/* ═══════════════════════════════════════════════════════════════
   MURRAY NILSSON CONSTRUCTION — STYLES
   Aesthetic: Industrial Refined · Dark Slate + Warm Amber
   Fonts: Bebas Neue (display) · Lora (serif body) · DM Sans (UI)
═══════════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1a1a18;
  --ink-soft:   #2e2e2a;
  --ink-mid:    #4a4a44;
  --stone:      #f5f2ec;
  --stone-mid:  #e8e3d8;
  --amber:      #c8882a;
  --amber-light:#e8a84a;
  --amber-dark: #a06818;
  --white:      #ffffff;
  --nav-h:      80px;

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'Lora', Georgia, serif;
  --ff-ui:      'DM Sans', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-ui);
  background: var(--stone);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 520px;
  margin: 0 auto;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 136, 42, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ── HEADER / NAV ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(26, 26, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 136, 42, 0.2);
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link { flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover {
  color: var(--amber-light);
  background: rgba(200, 136, 42, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 24, 0.88) 0%,
    rgba(26, 26, 24, 0.65) 50%,
    rgba(26, 26, 24, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--amber-light);
}

.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--ink);
  padding: 2.5rem 0;
  border-bottom: 3px solid var(--amber);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 3rem;
  text-align: center;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--amber-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-section {
  background: var(--stone);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--ink-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}

.about-image { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--amber);
  border-radius: 3px;
  z-index: -1;
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  text-align: center;
  line-height: 1.2;
}

.about-img-badge span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-img-badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services-section {
  background: var(--ink);
  padding: 6rem 0;
}

.services-section .section-label { color: var(--amber-light); }
.services-section .section-title { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.service-card {
  background: var(--ink-soft);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover { background: #252520; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  transition: color 0.2s;
}
.service-link:hover { color: var(--white); }

/* ── GALLERY / OUR WORK ──────────────────────────────────────── */
.work-section {
  background: var(--stone);
}

.gallery-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--stone-mid);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.85rem 1.5rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--stone-mid);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transform: translateY(8px);
  transition: transform 0.3s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ── QUOTE BANNER ────────────────────────────────────────────── */
.quote-banner {
  position: relative;
  padding: 7rem 2rem;
  text-align: center;
  overflow: hidden;
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.82);
}

.quote-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.quote-banner-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}

.quote-banner-content p {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
}

/* ── QUOTE FORM ──────────────────────────────────────────────── */
.quote-section {
  background: var(--ink);
}

.quote-section .section-label { color: var(--amber-light); }
.quote-section .section-title { color: var(--white); }
.quote-section p { color: rgba(255,255,255,0.6); font-family: var(--ff-serif); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-item strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}

.contact-item a {
  color: var(--amber-light);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--white); }

.contact-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* Form */
.quote-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2.5rem;
}

.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--ink-soft); color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(200, 136, 42, 0.06);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CONTACT SECTION ─────────────────────────────────────────── */
.contact-section {
  background: var(--stone);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-section .contact-item strong { color: var(--ink); }
.contact-section .contact-item span { color: var(--ink-mid); }
.contact-section .contact-item a { color: var(--amber-dark); }
.contact-section .contact-item a:hover { color: var(--ink); }
.contact-section .contact-icon { color: var(--amber); }

.contact-image {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,26,24,0.18);
}

.contact-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--amber);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0.35rem 0.75rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--amber-light); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  padding: 0.75rem;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 2rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover { color: var(--white); transform: rotate(90deg); }
.lightbox-prev:hover  { color: var(--amber-light); transform: translateY(-50%) translateX(-4px); }
.lightbox-next:hover  { color: var(--amber-light); transform: translateY(-50%) translateX(4px); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .quote-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .main-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(200,136,42,0.2);
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease-out);
    z-index: 99;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .nav-toggle { display: flex; }

  .about-grid,
  .quote-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-img-frame img { height: 320px; }
  .about-img-frame::before { display: none; }
  .about-img-badge { bottom: 1rem; left: 1rem; }

  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }

  .stat { padding: 0.75rem 1.5rem; }
  .stat-divider { display: none; }
  .stats-inner { gap: 0; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.5rem; }

  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

  .quote-form-wrap { padding: 1.5rem; }

  .contact-image img { height: 280px; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { padding: 0.75rem 1rem; font-size: 0.72rem; }
}
