/* ============================================================
   SANSEBO — site/styles.css
   Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop)
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }
a { text-decoration: none; }

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Hollowpoint';
  src: url('/fonts/hollowpoint.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hollowpoint';
  src: url('/fonts/hollowpointsuperital.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Custom properties ---------- */
:root {
  /* Colors */
  --color-ink:       #0F172A;
  --color-ink-mid:   #1e293b;
  --color-ink-muted: #334155;
  --color-muted:     #64748b;
  --color-subtle:    #94a3b8;
  --color-surface:   #F5F7FA;
  --color-white:     #FFFFFF;
  --color-blue:      #2563EB;
  --color-blue-dark: #1d4ed8;
  --color-orange:    #EA7317;

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-5xl:  3rem;

  /* Border radii */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
}

/* ---------- Base typography ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

h1, h2 {
  font-family: 'Hollowpoint', var(--font-heading);
  font-weight: 400;
}

/* ---------- Layout utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }

.site-nav {
  background: var(--color-white);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  margin-left: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-muted);
  transition: color .15s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--color-blue); }

.nav-cta {
  display: none;
  margin-left: auto;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background .15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--color-blue-dark); }

.nav-phone {
  display: flex;
  align-items: center;
  color: var(--color-ink-muted);
  margin-left: auto;
  padding: 8px;
  transition: color .15s;
}

.nav-phone:hover { color: var(--color-blue); }

.nav-hamburger {
  background: none;
  border: none;
  color: var(--color-ink-muted);
  padding: 8px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  transition: color .15s;
}

.nav-hamburger:hover { color: var(--color-ink); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-ink);
  z-index: 200;
  overflow-y: auto;
}

.nav-drawer[hidden] { display: none; }

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 20px 24px 40px;
  min-height: 100%;
}

.nav-drawer-close {
  background: none;
  border: none;
  color: var(--color-subtle);
  align-self: flex-end;
  padding: 8px;
  margin-bottom: 32px;
  transition: color .15s;
}

.nav-drawer-close:hover { color: #fff; }

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-drawer-links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-ink-mid);
  transition: color .15s;
}

.nav-drawer-links a:hover { color: var(--color-blue); }

.nav-drawer-cta {
  margin-top: 32px;
  text-align: center;
  display: block;
  padding: 14px 24px;
  font-size: var(--text-lg);
}

.nav-drawer-phone {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-blue);
  display: block;
}

/* Tablet+ */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-phone { display: none; }
  .nav-hamburger { display: none; }
}

/* ============================================================
   HERO (home page)
   ============================================================ */
.hero {
  background: var(--color-ink);
  background-image: linear-gradient(to right, rgba(15,23,42,.92) 45%, rgba(15,23,42,.55)), url('/images/badkamer-renovatie.jpg');
  background-size: cover;
  background-position: center right;
  padding: 64px 0 56px;
}

@media (min-width: 768px) { .hero { padding: 88px 0 72px; } }

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 20px;
}

.hero-heading {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 640px;
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--color-subtle);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

/* Shared buttons — used in hero, CTA, drawer */
.btn-primary {
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-block;
  transition: background .15s;
}

.btn-primary:hover { background: var(--color-blue-dark); }

.btn-ghost {
  background: transparent;
  color: var(--color-subtle);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-ink-muted);
  display: inline-block;
  transition: color .15s, border-color .15s;
}

.btn-ghost:hover { color: #fff; border-color: var(--color-muted); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  background: var(--color-ink-mid);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.badge--stars { color: var(--color-orange); }

.badge--logo {
  background: #fff;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
}
.badge--logo img { display: block; height: 28px; width: auto; }

/* ============================================================
   SERVICE CARDS (home 2×2)
   ============================================================ */
.services-section {
  background: var(--color-surface);
  padding: 80px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-ink);
  margin-bottom: 8px;
}

.section-header p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 540px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: block;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .35);
}

.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-blue);
}

.services-see-all {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue);
  padding: 8px;
}

.services-see-all:hover { text-decoration: underline; }

/* ============================================================
   USP GRID (home)
   ============================================================ */
.usps-section {
  background: var(--color-white);
  padding: 80px 0;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  list-style: none;
}

@media (min-width: 1024px) { .usps-grid { grid-template-columns: repeat(4, 1fr); } }

.usp-item { text-align: center; }

.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-blue);
}

.usp-item h4 {
  font-size: var(--text-base);
  color: var(--color-ink);
  margin-bottom: 8px;
}

.usp-item p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============================================================
   REVIEWS STRIP (home)
   ============================================================ */
.reviews-section {
  background: var(--color-ink);
  padding: 80px 0;
}

.reviews-header h2 { color: #fff; }

.reviews-rating {
  margin-top: 8px;
  font-size: var(--text-sm);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-stars { color: var(--color-orange); font-size: 1.1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background: var(--color-ink-mid);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars { color: var(--color-orange); font-size: 0.9rem; }

.review-text {
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-subtle);
  line-height: 1.75;
  flex: 1;
  quotes: "\201C" "\201D";
}

.review-text::before { content: open-quote; }
.review-text::after  { content: close-quote; }

.review-footer {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.review-cite {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  color: #fff;
}

.review-source {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-blue);
  padding: 72px 0;
}

.cta-inner {
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-white {
  background: #fff;
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: opacity .15s;
}

.btn-white:hover { opacity: .9; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, .5);
  display: inline-block;
  transition: border-color .15s;
}

.btn-outline-white:hover { border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-ink);
  border-top: 1px solid var(--color-ink-mid);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 20px;
}

.footer-social a:hover { text-decoration: underline; }

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color .15s;
}

.footer-links a:hover { color: #fff; }

.footer-contact-info {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.85;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-info a { color: var(--color-blue); }

.footer-bottom {
  border-top: 1px solid var(--color-ink-mid);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-powered {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.footer-powered a { color: var(--color-blue); }

/* ============================================================
   INNER PAGE HERO (diensten, projecten, contact)
   ============================================================ */
.page-hero {
  background: var(--color-ink);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--color-ink-mid);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1em;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero-sub {
  font-size: var(--text-base);
  color: var(--color-muted);
}

/* ============================================================
   SERVICE SECTIONS (diensten page — alternating)
   ============================================================ */
.diensten-intro {
  padding: 64px 0 48px;
  background: var(--color-white);
}

.diensten-intro p {
  font-size: var(--text-base);
  color: #334155;
  line-height: 1.75;
  max-width: 720px;
}

.service-section {
  padding: 72px 0;
}

.service-section:nth-of-type(odd)  { background: var(--color-white); }
.service-section:nth-of-type(even) { background: var(--color-surface); }

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .service-section-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  /* Even sections: flip text/image order */
  .service-section:nth-of-type(even) .service-section-inner {
    direction: rtl;
  }
  .service-section:nth-of-type(even) .service-section-content {
    direction: ltr;
  }
}

.service-section-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  color: var(--color-ink);
  margin-bottom: 20px;
}

.service-section-content p {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-section-content p:last-child { margin-bottom: 0; }

.service-section-content ul {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 16px;
}

.service-section-content strong { font-weight: 700; color: var(--color-ink); }

.service-img-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.service-section-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.rescert-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  padding: 16px;
  background: var(--color-surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
}
.rescert-seal {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.rescert-callout p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-ink);
}

.service-section--text-only .service-section-inner {
  grid-template-columns: 1fr;
  max-width: 720px;
}

/* ============================================================
   PROJECTEN PAGE
   ============================================================ */
.projecten-section {
  background: var(--color-white);
  padding: 64px 0 80px;
}

.projecten-intro {
  font-size: var(--text-base);
  color: #334155;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 640px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) { .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.photo-grid figure { margin: 0; }

.photo-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.photo-item:hover img { transform: scale(1.03); }

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.photo-grid figcaption {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: 8px;
  padding: 0 4px;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 2px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-muted);
  gap: 4px;
}

.photo-placeholder span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--color-white);
  padding: 64px 0 80px;
}

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

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

.contact-form-col h2,
.contact-info-col h2 {
  font-size: var(--text-2xl);
  color: var(--color-ink);
  margin-bottom: 12px;
}

.contact-form-intro {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* Form rows */
.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.form-row--2   { grid-template-columns: 1fr 1fr; }
.form-row--3-1 { grid-template-columns: 3fr 1fr; }
.form-row--1-2 { grid-template-columns: 1fr 2fr; }

@media (max-width: 540px) {
  .form-row--2,
  .form-row--3-1,
  .form-row--1-2 { grid-template-columns: 1fr; }
}

/* Form groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-row .form-group { margin-bottom: 20px; }

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
}

.form-group abbr {
  text-decoration: none;
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

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

/* Checkbox */
.form-group--checkbox { margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: #334155;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-blue);
}

.form-gdpr {
  font-size: var(--text-xs);
  color: var(--color-muted);
  display: block;
  margin-top: 4px;
}

/* Submit + status */
.form-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: var(--text-base);
  margin-bottom: 12px;
}

.form-status {
  font-size: var(--text-sm);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status:not(:empty) { display: block; }
.form-status.success { background: #f0fdf4; color: #166534; }
.form-status.error   { background: #fef2f2; color: #991b1b; }

/* Contact info */
.contact-info-block {
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: var(--text-base);
  color: var(--color-ink);
  font-style: normal;
  line-height: 1.7;
}

.contact-info-value a { color: var(--color-blue); }
.contact-info-value a:hover { text-decoration: underline; }

.contact-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: var(--text-sm);
}

.contact-hours dt { color: var(--color-ink); font-weight: 600; }
.contact-hours dd { color: #334155; margin: 0; }

.contact-map { margin-top: 28px; border-radius: var(--radius); overflow: hidden; }

.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger grid children */
.service-cards .service-card:nth-child(2),
.usp-grid .usp-item:nth-child(2),
.reviews-grid .review-card:nth-child(2),
.photo-grid .photo-item:nth-child(2) { transition-delay: 0.1s; }

.service-cards .service-card:nth-child(3),
.usp-grid .usp-item:nth-child(3),
.reviews-grid .review-card:nth-child(3),
.photo-grid .photo-item:nth-child(3) { transition-delay: 0.2s; }

.service-cards .service-card:nth-child(4),
.usp-grid .usp-item:nth-child(4),
.photo-grid .photo-item:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .animate-ready { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  padding: 16px;
  animation: lightbox-fade 0.2s ease;
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  display: block;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
  animation: lightbox-scale 0.25s ease;
}

@keyframes lightbox-scale {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: var(--text-sm);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.lightbox-close:hover { background: rgba(255, 255, 255, .25); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, .25); }

@media (max-width: 600px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; }
}

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

/* Hero buttons: stack on very small screens */
@media (max-width: 400px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { text-align: center; }
}

/* Services grid: single column fallback already defined.
   2×2 triggers at 540px — intentional for small tablets. */

/* USPs: 2-col on mobile, 4-col on desktop already set */

/* Reviews: single col on mobile, 2-col at 768px already set */

/* Footer: single col on mobile, 3-col at 768px already set */

/* CTA buttons on mobile */
@media (max-width: 540px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-white, .btn-outline-white { text-align: center; }
}

/* Service sections: on mobile, image appears below text */
@media (max-width: 767px) {
  .service-section:nth-of-type(even) .service-section-inner { direction: ltr; }
}

/* Page hero: tighter on mobile */
@media (max-width: 767px) {
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 1.75rem; }
}

/* Contact form: reduce padding on mobile */
@media (max-width: 767px) {
  .contact-section { padding: 40px 0 56px; }
}
