/* ============================================================
   Prescott Valley Glass — stylesheet
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  --navy:        #1b3a5c;
  --navy-mid:    #2d5a8e;
  --navy-light:  #e8f0f8;
  --gold:        #fbb92b;
  --gold-light:  #fcca5a;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --light:       #f1f5f9;
  --border:      #dde4ed;
  --text:        #1e2d3d;
  --text-mid:    #4a5a6a;
  --text-light:  #5c6c7c;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 32px rgba(0,0,0,.14);

  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --transition:  0.25s ease;
  --max-w:       1200px;
  --nav-h:       72px;
}

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

/* ---------- Skip navigation ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  transition: top .15s;
}
.skip-link:focus { top: .75rem; outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Focus styles ---------- */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 3px;
}
.section--dark :focus-visible,
.stats-band :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold); }
/* Forms use box-shadow focus — suppress duplicate outline */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible { outline: none; }

/* ---------- Screen-reader only utility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* ---------- Utility ---------- */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}
.section {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}
.section--alt { background: var(--off-white); }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2,
.section--dark h3,
.section--dark p { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .6rem;
}
/* On dark backgrounds the navy label would vanish — keep it gold there */
.page-hero .section-label,
.section--dark .section-label { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-header p {
  max-width: 56ch;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}

.divider {
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin: .75rem auto 0;
  border-radius: 2px;
}
.divider--left { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 14px rgba(251,185,43,.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.01em;
}
.nav-logo-text span {
  font-size: .68rem;
  color: var(--text-light);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .45rem .85rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--light); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-cta {
  margin-left: .5rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--light); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 999;
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: .25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: .7rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
}
.nav-drawer a:hover { background: var(--light); }
.nav-drawer .btn { margin-top: .5rem; justify-content: center; }

/* ---------- Page offset for fixed nav ---------- */
.page-top { padding-top: var(--nav-h); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,.85) 40%, rgba(27,58,92,.5));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(251,185,43,.15);
  border: 1px solid rgba(251,185,43,.35);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero p {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy);
  padding-block: 1.25rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--gold);
  line-height: 1.1;
}
.stat-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.service-card-body h3 { margin-bottom: .4rem; }
.service-card-body p { font-size: .92rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { gap: .6rem; color: var(--navy-mid); }
.service-card-link::after { content: '→'; }

/* ---------- About section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: .55rem 1.1rem .9rem;
  border-radius: var(--radius);
  line-height: 1.2;
  text-align: center;
}
.about-img-badge small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .25rem;
}
.about-text h2 { margin-bottom: .75rem; }
.about-text p { margin-bottom: 1rem; font-size: 1rem; }
.about-bullets { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.about-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: .15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231b3a5c'%3E%3Cpath d='M12.5 4.5l-6 6L3 7'  stroke='%231b3a5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Portfolio teaser ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 2rem;
}
.teaser-img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: opacity var(--transition), transform var(--transition);
}
.teaser-img:hover { opacity: .88; transform: scale(1.02); }

/* ---------- CTA section ---------- */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: .4rem; }
.cta-text p { color: rgba(255,255,255,.75); max-width: 48ch; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.72); margin: .6rem auto 0; max-width: 52ch; }

/* ---------- Gallery ---------- */
.gallery-section { margin-bottom: 3.5rem; }
.gallery-section h2 {
  font-size: 1.6rem;
  margin-bottom: .35rem;
}
.gallery-section > p {
  color: var(--text-light);
  font-size: .92rem;
  margin-bottom: 1.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.85);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  color: var(--white);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 1.5rem;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 1.4rem;
  transition: background var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}

/* ---------- Services page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-text h2 { margin-bottom: .75rem; }
.service-detail-text p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.7; }
.service-detail-text p:last-of-type { margin-bottom: 1.5rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 1.75rem; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-body {
  min-width: 0;
}
.contact-card-body strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .2rem; }
.contact-card-body a, .contact-card-body p { color: var(--text); font-weight: 500; overflow-wrap: anywhere; }
.contact-card-body a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: .35rem; }
.contact-form-wrap > p { font-size: .92rem; margin-bottom: 1.75rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(45,90,142,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success svg { color: #22c55e; margin: 0 auto .75rem; }
.form-success h3 { margin-bottom: .4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-block: 3rem 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: .85rem; }
.footer-brand .nav-logo-text strong { color: var(--white); }
.footer-brand .nav-logo-text span { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.6); }

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .65rem;
}
.footer-contact-item svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: .2rem; }
.footer-contact-item p { color: rgba(255,255,255,.85); }
.footer-contact-item a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 520px; margin-inline: auto; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}
