/* =========================================================
   Great Falls Prestige — Luxury Dark Premium Wallpaper
   style.css
   ========================================================= */

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

:root {
  --navy-deep: #0f172a;
  --charcoal: #111827;
  --charcoal-light: #1f2937;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --off-white: #f5f3f0;
  --gray-light: #e5e7eb;
  --gray-mid: #9ca3af;
  --gray-dark: #6b7280;
  --text: #f3f4f6;
  --text-muted: #d1d5db;
  --shadow: rgba(0, 0, 0, 0.5);
  --shadow-lg: rgba(0, 0, 0, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1400px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--navy-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1.2rem; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.8;
}

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

section { padding: 7rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}

#navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 10px 40px var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo .brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 0.7rem 1.8rem !important; font-size: 0.8rem !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.1);
  animation: heroZoom 25s infinite alternate ease-in-out;
}

@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1.2); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 40%,
    rgba(15, 23, 42, 0.5) 100%
  );
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
  animation: slideIn 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@keyframes slideIn { from { width: 0; opacity: 1; } to { width: 60px; opacity: 1; } }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px var(--shadow-lg);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-phone svg { color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-image {
  position: relative;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: 0 40px 80px var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

/* ── About ── */
#about { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--charcoal) 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 40px 80px var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.about-badge .num { font-size: 3rem; font-weight: 900; line-height: 1; display: block; }
.about-badge .txt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.6rem; font-weight: 700; }

.about-text .section-subtitle { max-width: 100%; margin-bottom: 2rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feat-item svg { color: var(--gold); flex-shrink: 0; margin-top: 0.3rem; }

.feat-item h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--white); }

.feat-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── Services ── */
#services { background: var(--charcoal); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-12px); border-color: var(--gold); box-shadow: 0 30px 60px var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px; height: 70px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold);
  transition: all var(--transition);
}

.service-card:hover .service-icon { background: var(--gold); color: var(--charcoal); transform: scale(1.1); }

.service-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }

.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── Why Choose Us ── */
#why { background: linear-gradient(180deg, var(--charcoal) 0%, var(--navy-deep) 100%); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.why-item:hover { background: rgba(212, 175, 55, 0.08); border-color: var(--gold); transform: translateX(8px); }

.why-icon {
  width: 56px; height: 56px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.why-item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.6rem; }

.why-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── Gallery ── */
#gallery { background: var(--navy-deep); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid var(--glass-border);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.gallery-item:nth-child(4) { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.12); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay svg { color: var(--gold); transform: scale(0.8); transition: transform 0.4s ease; }

.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.98);
  align-items: center; justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

#lightbox.active { display: flex; }

#lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 0 60px var(--shadow-lg); }

#lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: var(--gold);
  font-size: 3rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

#lightbox-close:hover { color: var(--gold-light); }

/* ── Testimonials ── */
#testimonials { background: var(--charcoal); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover { transform: translateY(-8px); border-color: var(--gold); }

.stars { color: var(--gold); margin-bottom: 1.5rem; font-size: 0.95rem; letter-spacing: 0.2em; }

.testimonial-card p { font-style: italic; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; position: relative; z-index: 1; }

.reviewer { display: flex; align-items: center; gap: 1.2rem; }

.reviewer-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.reviewer-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }

.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Service Area ── */
#service-area { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--charcoal) 100%); }

.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.area-item svg { color: var(--gold); }

.area-item:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--gold); transform: translateX(6px); }

.area-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.area-img { border-radius: 8px; box-shadow: 0 40px 80px var(--shadow-lg); }

/* ── Contact ── */
#contact { background: var(--charcoal); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-info p { color: var(--text-muted); margin-bottom: 2.5rem; }

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-list .icon {
  width: 52px; height: 52px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list h4 { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }

.contact-list p, .contact-list a { font-size: 1.05rem; font-weight: 600; color: var(--white); }

.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.form-group { margin-bottom: 2rem; }

.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-mid); }

.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(212, 175, 55, 0.08); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }

.form-group input.input-error, .form-group textarea.input-error { border-color: #ff6b6b; }

.error-message { color: #ff6b6b; font-size: 0.8rem; margin-top: 0.5rem; display: block; }

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

.form-submit { width: 100%; justify-content: center; padding: 1.2rem; font-size: 1rem; }

#form-success {
  display: none;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  animation: fadeIn 0.5s ease;
}

#form-success h3 { color: #a7f3d0; margin-bottom: 0.5rem; font-size: 1.1rem; }

#form-success p { font-size: 0.95rem; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Map ── */
#map-section { padding: 0; }

.map-wrap iframe { width: 100%; height: 500px; border: 0; display: block; filter: grayscale(40%) brightness(0.8); }

/* ── Footer ── */
footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--navy-deep) 100%);
  color: var(--text-muted);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .brand-name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 0.4rem; }

.footer-brand .brand-tagline { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; }

.footer-brand p { line-height: 1.8; }

.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 2rem; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 1rem; }

.footer-links a { transition: color var(--transition); }

.footer-links a:hover { color: var(--gold); }

.footer-contact li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }

.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .about-grid, .contact-grid, .area-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap img { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-image { display: none; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    border-top: 1px solid var(--glass-border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .area-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}
