/* ============================================================
   Pentel Drywall – Mobile-First Responsive Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --orange:   #E87722;
  --orange-dark: #c5641a;
  --dark:     #1a1a1a;
  --charcoal: #2d2d2d;
  --mid-gray: #555;
  --light-gray: #f5f5f5;
  --white:    #ffffff;
  --border:   #e0e0e0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.2);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.top-bar a { color: #ccc; transition: color var(--transition); }
.top-bar a:hover { color: var(--orange); }
.top-bar .sep { opacity: 0.4; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.nav-menu.open { display: block; }
.nav-menu > li { border-bottom: 1px solid var(--border); }
.nav-menu > li:last-child { border-bottom: none; }
.nav-menu > li > a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}
.dropdown.open { display: block; }
.dropdown a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--mid-gray);
  transition: color var(--transition);
}
.dropdown a:hover { color: var(--orange); }
.dropdown-arrow {
  float: right;
  transition: transform var(--transition);
}
.has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,119,34,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- Section Styles ---- */
.section { padding: 4rem 1.25rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ---- Feature Cards (Homepage) ---- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}
.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--white); }
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.feature-card p { font-size: 0.93rem; color: var(--mid-gray); line-height: 1.65; }

/* ---- Services Section ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 1.75rem 1.25rem 1.25rem;
}
.service-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.service-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.service-overlay .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-overlay .service-link:hover { gap: 0.7rem; }

/* ---- Stats / Orange Banner ---- */
.stats-band {
  background: var(--orange);
  padding: 3rem 1.25rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--white);
}
.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3rem;
}

/* ---- Parallax Banner ---- */
.parallax-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.parallax-banner .parallax-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}
.parallax-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  color: var(--white);
}
.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.parallax-content p {
  font-size: 1rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}

/* ---- Projects Gallery ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.project-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  background: var(--white);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.project-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,119,34,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-img-overlay { opacity: 1; }
.project-img-overlay svg { width: 40px; height: 40px; fill: var(--white); }
.project-info { padding: 1.2rem; }
.project-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.project-info span {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- About Page ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-intro img {
  border-radius: 6px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 6px;
  border-left: 4px solid var(--orange);
}
.value-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.9rem; color: var(--mid-gray); }

/* ---- Service Detail Pages ---- */
.service-detail-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.service-detail-hero .hero-title {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
}

/* ---- Photo Gallery Grid ---- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.photo-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform var(--transition);
}
.photo-gallery img:hover { transform: scale(1.03); }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--white); }
.contact-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.contact-item-text a { color: var(--dark); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--orange); }

/* ---- Contact Form ---- */
.contact-form { background: var(--light-gray); border-radius: 8px; padding: 2rem 1.5rem; }
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: #e8f5e9;
  border-radius: 6px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 1rem;
}

/* ---- Page Banner (inner pages) ---- */
.page-banner {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 1.5rem;
}
.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Testimonials / Quote Band ---- */
.quote-band {
  background: var(--charcoal);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.quote-band blockquote {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.quote-band cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.25rem 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand img { height: 50px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top svg { width: 20px; height: 20px; fill: var(--white); }

/* ---- Utility ---- */
.bg-light { background: var(--light-gray); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ============================================================
   TABLET – 640px+
   ============================================================ */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .photo-gallery img { height: 180px; }
  .stats-inner   { grid-template-columns: repeat(4, 1fr); }
  .about-intro img { height: 380px; }
}

/* ============================================================
   DESKTOP – 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .top-bar { justify-content: flex-end; gap: 1.5rem; }

  /* Nav becomes horizontal */
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 0.25rem;
    align-items: center;
  }
  .nav-menu > li { border-bottom: none; }
  .nav-menu > li > a {
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
  }
  .has-dropdown { position: relative; }
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 0.75rem 0;
    z-index: 200;
  }
  .dropdown::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
  }
  .has-dropdown:hover .dropdown { display: block; }
  .dropdown a {
    display: block;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    white-space: nowrap;
  }
  .dropdown a:hover { background: var(--light-gray); color: var(--orange); }
  .dropdown-arrow { display: none; }

  .section { padding: 6rem 1.5rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .about-intro   { grid-template-columns: 1fr 1fr; }
  .about-intro img { height: 420px; }
  .contact-grid  { grid-template-columns: 1fr 1.4fr; }
  .footer-inner  { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .photo-gallery { grid-template-columns: repeat(4, 1fr); }
  .photo-gallery img { height: 200px; }
  .hero { min-height: 90vh; }
  .page-banner { height: 320px; }
}

@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}
