/* ============================================
   Chinchilla Construction, Shared Stylesheet
   Fonts: Playfair Display (display) + Inter (body)
   Palette derived from real project photography:
   warm brass hardware, walnut and white millwork,
   marble, and deep charcoal shadow tones.
   ============================================ */

:root {
  --ink: #17150f;
  --ink-soft: #29261f;
  --cream: #f7f2e9;
  --cream-dim: #efe8da;
  --stone: #6f6a5e;
  --stone-light: #a39c8c;
  --brass: #b1854a;
  --brass-light: #d3ab6e;
  --brass-dark: #8a6636;
  --line: rgba(23, 21, 15, 0.1);
  --shadow: 0 20px 60px rgba(23, 21, 15, 0.18);
  --radius: 2px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brass-dark);
  display: inline-block;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.btn-primary {
  background: var(--brass);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--brass-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(138, 102, 54, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(247, 242, 233, 0.5);
  color: var(--cream);
}
.btn-ghost:hover {
  background: rgba(247, 242, 233, 0.12);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--brass-dark);
  transform: translateY(-2px);
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  background: transparent;
}

.site-nav.scrolled {
  padding: 16px 0;
  background: rgba(23, 21, 15, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.brand span { color: var(--brass-light); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--brass-light);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-phone {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,21,15,0.35) 0%, rgba(23,21,15,0.35) 40%, rgba(23,21,15,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 32px 100px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  color: var(--cream);
}
.hero h1 { color: var(--cream); max-width: 900px; }
.hero-sub {
  color: rgba(247,242,233,0.82);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-small {
  min-height: 62vh;
}

/* Frosted rating chip: bottom-right of hero, aligned with the nav's right edge and bottom-aligned with the hero action buttons */
.rating-chip {
  position: absolute;
  bottom: 100px;
  right: 32px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 40px;
  background: rgba(247, 242, 233, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(247, 242, 233, 0.3);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.rating-chip:hover {
  background: rgba(247, 242, 233, 0.24);
  transform: translateY(-2px);
}
.rating-chip .stars { color: var(--brass-light); letter-spacing: 1px; }

/* Larger frosted review card, positioned the same way as the rating chip: bottom-right of the hero, right edge aligned with the nav CTA */
.review-card {
  position: absolute;
  bottom: 100px;
  right: 32px;
  z-index: 6;
  max-width: 300px;
  padding: 24px 26px;
  border-radius: 4px;
  background: rgba(247, 242, 233, 0.14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(247, 242, 233, 0.3);
  color: var(--cream);
  line-height: 1.5;
  transition: all 0.35s ease;
}
.review-card:hover {
  background: rgba(247, 242, 233, 0.24);
  transform: translateY(-3px);
}
.review-card .stars { color: var(--brass-light); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.review-card p { color: rgba(247,242,233,0.88); font-size: 0.88rem; margin: 0 0 14px; }
.review-card strong { display: block; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--brass-light); }

/* Frosted license card, for the Services hero, same bottom-right anchor point */
.license-chip {
  position: absolute;
  bottom: 100px;
  right: 32px;
  z-index: 6;
  padding: 18px 24px;
  border-radius: 4px;
  background: rgba(247, 242, 233, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(247, 242, 233, 0.3);
  color: var(--cream);
  transition: all 0.3s ease;
}
.license-chip:hover {
  background: rgba(247, 242, 233, 0.24);
  transform: translateY(-2px);
}
.license-chip .lbl { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247,242,233,0.65); margin-bottom: 4px; }
.license-chip .num { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 6px; }
.license-chip .verify { font-size: 0.78rem; color: var(--brass-light); font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 120px 0; }
.section-tight { padding: 90px 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark p { color: rgba(247,242,233,0.75); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dim { background: var(--cream-dim); }

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Service / Feature Cards ---------- */
.service-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.6,.2,1);
}
.service-card:hover img { transform: scale(1.08); }
.service-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,21,15,0) 40%, rgba(23,21,15,0.92) 100%);
}
.service-card .card-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: var(--cream);
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.service-card:hover .card-text { transform: translateY(0); }
.service-card h3 { color: var(--cream); margin-bottom: 8px; }
.service-card .card-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 0.9rem;
  color: rgba(247,242,233,0.85);
}
.service-card:hover .card-desc { max-height: 100px; opacity: 1; margin-top: 8px; }
.service-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 6px;
}

/* ---------- Alternating Service Rows (services.html) ---------- */
.services-section { padding-top: 40px; padding-bottom: 20px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row.reverse .row-media { order: 2; }
.service-row.reverse .row-text { order: 1; }
.row-media {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 5/4;
  position: relative;
}
.row-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.6,.2,1);
}
.service-row:hover .row-media img { transform: scale(1.05); }
.row-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: 0.1em;
}

.review-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review-chip .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.95rem; line-height: 1; flex-shrink: 0; }
.review-chip .text { display: flex; flex-direction: column; gap: 4px; }
.review-chip .quote { display: block; font-size: 0.92rem; font-style: italic; color: var(--ink-soft); margin: 0; line-height: 1.3; }
.review-chip .name { display: block; font-weight: 600; color: var(--ink); font-style: normal; font-size: 0.82rem; line-height: 1.3; }

/* ---------- Portfolio / Work grid ---------- */
.work-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--ink-soft);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.work-grid {
  columns: 3 260px;
  column-gap: 24px;
}
.work-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.work-item img {
  width: 100%;
  transition: transform 0.6s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-item .work-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(23,21,15,0) 0%, rgba(23,21,15,0.85) 100%);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.work-item:hover .work-label { opacity: 1; transform: translateY(0); }
.work-item[data-cat] { display: block; }
.work-item.hidden { display: none; }

/* ---------- Testimonial Spotlight ---------- */
.spotlight {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.spotlight .stars {
  color: var(--brass);
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 28px;
  display: block;
}
.spotlight blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
  margin: 0 0 28px;
  color: var(--ink);
}
.section-dark .spotlight blockquote { color: var(--cream); }
.spotlight .attribution { font-weight: 600; letter-spacing: 0.02em; }
.spotlight .attribution span { color: var(--stone-light); font-weight: 400; }

/* ---------- Process ---------- */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}
.process::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
}
.process-step .num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--brass);
  color: var(--brass-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.section-dark .process-step .num { background: var(--ink); }
.process-step h3 { font-size: 1.1rem; }
.process-step p { font-size: 0.92rem; }

/* ---------- Reviews Mosaic (home page) ---------- */
.reviews-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.mosaic-feature {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--ink);
  color: var(--cream);
  border-radius: 3px;
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mosaic-feature .stars { color: var(--brass-light); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.mosaic-feature blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 20px;
}
.mosaic-feature .attribution { font-weight: 600; font-size: 0.9rem; }
.mosaic-feature .attribution span { color: var(--stone-light); font-weight: 400; }

.mosaic-stat {
  grid-column: 2 / 4;
  grid-row: 1;
  background: var(--brass);
  color: var(--cream);
  border-radius: 3px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mosaic-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  line-height: 1;
}
.mosaic-stat .stat-copy { font-size: 0.92rem; line-height: 1.4; }
.mosaic-stat .stat-copy a { text-decoration: underline; text-underline-offset: 3px; }
.mosaic-stat .stat-copy a:hover { color: var(--ink); }

.mosaic-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 26px;
  transition: all 0.35s ease;
}
.mosaic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mosaic-card .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.mosaic-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 10px; }
.mosaic-card .name { font-weight: 600; color: var(--ink); font-size: 0.85rem; }
.mosaic-card .loc { color: var(--stone); font-size: 0.78rem; }

@media (max-width: 980px) {
  .reviews-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-feature { grid-column: 1 / 3; grid-row: 1; }
  .mosaic-stat { grid-column: 1 / 3; grid-row: 2; }
}
@media (max-width: 620px) {
  .reviews-mosaic { grid-template-columns: 1fr; }
  .mosaic-feature, .mosaic-stat { grid-column: 1; }
  .mosaic-stat { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ---------- Testimonial mini cards ---------- */
.review-mini {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 32px;
  transition: all 0.35s ease;
}
.review-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-mini .stars { color: var(--brass); letter-spacing: 2px; margin-bottom: 14px; display: block; }
.review-mini p { font-size: 0.95rem; color: var(--ink-soft); }
.review-mini .name { font-weight: 600; color: var(--ink); font-size: 0.9rem; margin-top: 12px; }
.review-mini .loc { color: var(--stone); font-size: 0.82rem; }

/* ---------- About ---------- */
.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat-row .stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--brass-dark);
}
.stat-row .stat span { font-size: 0.85rem; color: var(--stone); }

.badge-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Google Map embed, About page */
.map-embed {
  width: 100%;
  aspect-ratio: 16/8;
  border: 0;
  border-radius: 3px;
  filter: grayscale(0.15) contrast(1.05);
}

/* Object-position helper for cropping toward one side of a photo */
.pos-right { object-position: 78% center; }
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.contact-info-item .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,233,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass-light);
}
.contact-info-item h4 { color: var(--cream); font-family:'Inter'; font-size: 0.95rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em;}
.contact-info-item p { color: rgba(247,242,233,0.75); margin: 0; }
.contact-info-item a:hover { color: var(--brass-light); }

.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247,242,233,0.6);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(247,242,233,0.06);
  border: 1px solid rgba(247,242,233,0.22);
  border-radius: 2px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass-light);
  background: rgba(247,242,233,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247,242,233,0.65);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,242,233,0.12);
}
.footer-grid h4 {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  font-family: 'Inter';
  font-weight: 600;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--brass-light); }
.footer-brand { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.5rem; margin-bottom: 14px; }
.footer-tagline { color: rgba(247, 242, 233, 0.68) !important; font-size: 0.9rem; max-width: 280px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(247,242,233,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,242,233,0.8);
  transition: all 0.3s ease;
}
.social-row a svg { width: 17px; height: 17px; fill: currentColor; }
.social-row a:hover { border-color: var(--brass-light); color: var(--brass-light); transform: translateY(-2px); }

/* ---------- Utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(.2,.6,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .row-media, .service-row.reverse .row-text { order: unset; }
  .about-story { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process::before { display: none; }
  .work-grid { columns: 2 220px; }
}
@media (max-width: 620px) {
  section { padding: 80px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 60px; }
  .rating-chip, .review-card, .license-chip {
    position: static;
    margin: 24px 32px 0;
    max-width: none;
  }
  .reviews-mosaic { grid-template-columns: 1fr; }
  .mosaic-feature, .mosaic-stat { grid-column: 1; grid-row: auto; }
  .mosaic-stat { flex-direction: column; align-items: flex-start; text-align: left; }
}
