/* ============================================================
   Tony Painters — Auckland
   Mobile-first stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --clr-primary: #1e3a4f;
  --clr-primary-light: #2a5470;
  --clr-accent: #c67b3c;
  --clr-accent-light: #d99a5f;
  --clr-accent-dark: #a8632d;
  --clr-bg: #faf7f2;
  --clr-white: #ffffff;
  --clr-text: #1a1a1a;
  --clr-text-muted: #5a6570;
  --clr-border: #e4ded5;
  --clr-card: #ffffff;
  --clr-overlay: rgba(30, 58, 79, 0.72);
  --clr-overlay-dark: rgba(12, 24, 34, 0.78);

  /* Typography */
  --ff-heading: 'Source Serif 4', 'Georgia', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-base: 16px;
  --lh-body: 1.65;
  --lh-heading: 1.18;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* Layout */
  --max-w: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

html { font-size: var(--fs-base); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: var(--lh-heading);
  color: var(--clr-primary);
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw + 0.3rem, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-xs);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
}
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(198,123,60,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-phone {
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
}
.btn-phone:hover {
  background: var(--clr-accent-dark);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(198,123,60,0.35);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 58, 79, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(30, 58, 79, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem var(--sp-md);
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo span {
  color: var(--clr-accent-light);
}

/* Desktop nav — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}
.nav-links .nav-cta {
  background: var(--clr-accent);
  color: var(--clr-white);
  margin-left: 0.5rem;
  padding: 0.5rem 1.2rem;
}
.nav-links .nav-cta:hover {
  background: var(--clr-accent-dark);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--clr-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--clr-text);
  font-size: 0.88rem;
  border-radius: 0;
}
.dropdown-menu a:hover {
  background: var(--clr-bg);
  color: var(--clr-accent-dark);
}

/* Mobile burger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-primary);
  z-index: 999;
  padding: 5rem var(--sp-md) var(--sp-lg);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--clr-accent-light);
}
.mobile-nav .mobile-sub {
  padding-left: 1rem;
}
.mobile-nav .mobile-sub a {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.06);
}
.mobile-nav .mobile-cta {
  margin-top: auto;
  padding-top: var(--sp-md);
}
.mobile-nav .mobile-cta a {
  display: inline-flex;
  border: none;
  font-size: 1.1rem;
  color: var(--clr-white);
  font-weight: 600;
}
.mobile-nav .mobile-cta .btn-phone {
  margin-top: var(--sp-sm);
  text-align: center;
  justify-content: center;
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 24, 34, 0.88) 0%,
    rgba(12, 24, 34, 0.6) 35%,
    rgba(12, 24, 34, 0.25) 65%,
    rgba(12, 24, 34, 0.15) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
}
.hero h1 {
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
  max-width: 600px;
}
.hero .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: var(--sp-md);
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  max-width: 320px;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg img {
  object-position: center center;
}
.page-hero .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(12, 24, 34, 0.85) 0%,
    rgba(12, 24, 34, 0.5) 40%,
    rgba(12, 24, 34, 0.2) 100%
  );
}
.page-hero .hero-content {
  padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
}
.page-hero h1 {
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}
.page-hero .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
}

/* --- Section blocks --- */
.section {
  padding: var(--sp-xl) 0;
}
.section-alt {
  background: var(--clr-white);
}
.section-dark {
  background: var(--clr-primary);
  color: rgba(255,255,255,0.9);
}
.section-dark h2,
.section-dark h3 {
  color: var(--clr-white);
}
.section-dark .section-label {
  color: var(--clr-accent-light);
}

.section-header {
  margin-bottom: var(--sp-lg);
}
.section-header p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: var(--sp-xs);
}

/* --- Services grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

.service-card {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-body {
  padding: var(--sp-md);
}
.service-card-body h3 {
  margin-bottom: var(--sp-xs);
}
.service-card-body p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--sp-sm);
}
.service-card-body .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card-body .card-link:hover {
  gap: 0.5rem;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.review-card {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow);
  position: relative;
}
.review-stars {
  color: var(--clr-accent);
  font-size: 1rem;
  margin-bottom: var(--sp-sm);
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
  font-style: italic;
}
.review-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--clr-primary);
}
.review-source {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.15rem;
}

/* --- Trust bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: center;
}
.trust-item {
  padding: var(--sp-md);
}
.trust-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.trust-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* --- Content sections --- */
.content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.content-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-split-img img {
  width: 100%;
  height: auto;
  display: block;
}
.content-split-text h2 {
  margin-bottom: var(--sp-sm);
}
.content-split-text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
}
.content-split-text p:last-of-type {
  margin-bottom: var(--sp-md);
}

/* Feature list */
.feature-list {
  margin: var(--sp-md) 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--clr-text);
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--clr-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M8.5 13.3 5.2 10l1.1-1.1 2.2 2.2 4.7-4.7 1.1 1.1z'/%3E%3C/svg%3E");
  background-size: 20px;
}

/* --- Service detail page layout --- */
.service-detail {
  padding: var(--sp-xl) 0;
}
.service-detail-body {
  max-width: 720px;
}
.service-detail-body h2 {
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}
.service-detail-body p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
}
.service-detail-body .highlight {
  background: var(--clr-white);
  border-left: 4px solid var(--clr-accent);
  padding: var(--sp-md);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--sp-md) 0;
}
.service-detail-body .highlight p {
  color: var(--clr-text);
  margin-bottom: 0;
  font-weight: 500;
}

/* Services page: compact grid */
.services-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.service-compact {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow);
}
.service-compact h3 {
  margin-bottom: var(--sp-xs);
}
.service-compact p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

/* --- Image gallery row --- */
.gallery-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
  margin: var(--sp-lg) 0;
}
.gallery-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* --- CTA band --- */
.cta-band {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.cta-band h2 {
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.contact-info {
  order: -1;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--sp-md);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-white);
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
}
.contact-info-text h4 {
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--clr-primary);
}
.contact-info-text p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}
.contact-info-text a {
  color: var(--clr-accent-dark);
  font-weight: 600;
}

.contact-form {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: var(--sp-sm);
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--clr-primary);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(198,123,60,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
}
.form-submit {
  margin-top: var(--sp-sm);
}
.form-submit .btn {
  width: 100%;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
}
.form-success.show {
  display: block;
}
.form-success h3 {
  color: var(--clr-primary);
  margin-bottom: var(--sp-xs);
}
.form-success p {
  color: var(--clr-text-muted);
}

/* --- Map embed --- */
.map-wrap {
  margin-top: var(--sp-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--clr-primary);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-xl) 0 var(--sp-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.footer-brand .site-logo {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: var(--sp-xs);
}
.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}
.footer-links h4 {
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--sp-sm);
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--clr-accent-light); }

/* --- About page --- */
.about-intro {
  max-width: 720px;
}
.about-intro p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--sp-sm);
}
.about-intro p:first-of-type {
  font-size: 1.15rem;
  color: var(--clr-text);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.value-item {
  padding: var(--sp-md);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-xs);
}
.value-item p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

/* --- Legal pages --- */
.legal-content {
  max-width: 720px;
  padding: var(--sp-xl) 0;
}
.legal-content h1 {
  margin-bottom: var(--sp-lg);
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}
.legal-content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
}

/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .content-split {
    grid-template-columns: 1fr 1fr;
  }
  .content-split.reverse .content-split-img {
    order: -1;
  }
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-row img {
    height: 260px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .contact-info {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-cta {
    flex-direction: row;
  }
  .cta-band .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  /* Show desktop nav, hide burger */
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  .hero { min-height: 90vh; align-items: center; }
  .hero-content {
    padding: 8rem var(--sp-md) var(--sp-xl);
  }
  .hero h1 { max-width: 650px; }

  .page-hero { min-height: 45vh; }

  .section { padding: var(--sp-2xl) 0; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
  }
  .gallery-row img {
    height: 300px;
  }

  .services-compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-wrap iframe {
    height: 400px;
  }
}

/* ============================================================
   RESPONSIVE — Large desktop (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  .container { padding: 0 var(--sp-lg); }
  .header-inner { padding: 0.8rem var(--sp-lg); }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
