/* Dream Wall Creations - San Mateo */
/* Color Palette: Dark Olive + Antique Bronze */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&family=Cormorant:wght@400;600;700&display=swap');

:root {
  /* Colors */
  --dark-olive: #12170E;
  --olive-shadow: #0A0E07;
  --oat-cream: #F2E4CF;
  --oat-mist: #F8EEDD;
  --olive-charcoal: #1E241A;
  --antique-bronze: #A7773E;
  
  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Roboto', sans-serif;
  --font-accent: 'Cormorant', serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 23, 14, 0.15);
  --shadow-md: 0 4px 16px rgba(18, 23, 14, 0.2);
  --shadow-lg: 0 8px 32px rgba(18, 23, 14, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--oat-mist);
  background: var(--dark-olive);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--oat-cream);
}

h1 { font-size: 3.4rem; font-weight: 700; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }

p { margin-bottom: var(--spacing-sm); }

a {
  color: var(--antique-bronze);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--oat-cream);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header - UNIQUE LAYOUT: Logo left, menu right */
header {
  background: var(--olive-shadow);
  border-bottom: 2px solid var(--antique-bronze);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.top-bar {
  background: var(--olive-charcoal);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(167, 119, 62, 0.3);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.top-bar-contact a {
  margin-left: var(--spacing-md);
  color: var(--oat-cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--antique-bronze);
}

.header-main {
  padding: var(--spacing-md) 0 var(--spacing-sm);
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.logo {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--antique-bronze);
  letter-spacing: 1.5px;
  text-align: left;
}

nav {
  margin-left: auto;
  position: relative;
}

nav > ul {
  list-style: none;
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: flex-end;
}

nav > ul li {
  position: relative;
}

nav > ul li > a {
  color: var(--oat-mist);
  font-weight: 500;
  font-size: 15px;
  padding: var(--spacing-xs) var(--spacing-sm);
  display: block;
  transition: color 0.3s ease;
}

nav > ul li > a:hover {
  color: var(--antique-bronze);
}

nav > ul li.has-dropdown > a::after {
  content: '▾';
  margin-left: 8px;
  color: var(--antique-bronze);
  font-size: 0.8em;
}

/* Dropdown - wallpaper-unroll animation */
nav > ul li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--olive-shadow);
  min-width: 240px;
  border: 2px solid var(--antique-bronze);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  padding: var(--spacing-sm);
}

nav > ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

nav > ul li .dropdown li {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

nav > ul li:hover .dropdown li {
  opacity: 1;
  transform: translateY(0);
}

nav > ul li:hover .dropdown li:nth-child(1) { transition-delay: 0.05s; }
nav > ul li:hover .dropdown li:nth-child(2) { transition-delay: 0.1s; }
nav > ul li:hover .dropdown li:nth-child(3) { transition-delay: 0.15s; }
nav > ul li:hover .dropdown li:nth-child(4) { transition-delay: 0.2s; }
nav > ul li:hover .dropdown li:nth-child(5) { transition-delay: 0.25s; }
nav > ul li:hover .dropdown li:nth-child(6) { transition-delay: 0.3s; }
nav > ul li:hover .dropdown li:nth-child(7) { transition-delay: 0.35s; }
nav > ul li:hover .dropdown li:nth-child(8) { transition-delay: 0.4s; }
nav > ul li:hover .dropdown li:nth-child(9) { transition-delay: 0.45s; }
nav > ul li:hover .dropdown li:nth-child(10) { transition-delay: 0.5s; }

nav > ul li .dropdown li a {
  padding: var(--spacing-xs) var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-xs);
  color: var(--oat-mist);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

nav > ul li .dropdown li a:hover {
  background: rgba(167, 119, 62, 0.15);
  color: var(--antique-bronze);
  padding-left: 20px;
}

nav > ul li .dropdown li a svg {
  width: 16px;
  height: 16px;
  fill: var(--antique-bronze);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  position: relative;
  z-index: 1002;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--antique-bronze);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section - UNIQUE: Split layout on desktop */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--olive-shadow) 0%, var(--dark-olive) 100%);
  overflow: hidden;
  text-align: left;
  padding: var(--spacing-xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/dream-wall-luxury-wallpaper.webp') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.hero-content {
  flex: 1 1 55%;
}

.hero-content h1 {
  font-size: 3.8rem;
  color: var(--oat-cream);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--oat-mist);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  max-width: 600px;
}

.hero-form {
  background: var(--oat-cream);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--antique-bronze);
  max-width: 520px;
  width: 100%;
  flex: 1 1 45%;
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section-light {
  background: var(--oat-cream);
  color: var(--olive-charcoal);
}

.section-light h1, .section-light h2, .section-light h3 {
  color: var(--olive-charcoal);
}

.section-dark {
  background: var(--olive-shadow);
  color: var(--oat-mist);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Trust Grid - UNIQUE: 4-column grid with icons */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.trust-item {
  background: var(--dark-olive);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--antique-bronze);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--oat-cream);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: var(--antique-bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--dark-olive);
}

.trust-item h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
  color: var(--oat-cream);
}

.trust-item p {
  color: var(--oat-mist);
  font-size: 1rem;
}

/* Services Grid - UNIQUE: 2-column grid with larger cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.service-card {
  background: var(--oat-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--antique-bronze);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--olive-charcoal);
}

.service-card-content p {
  font-size: 1rem;
  color: var(--olive-charcoal);
  margin-bottom: var(--spacing-md);
  opacity: 0.85;
  flex: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--antique-bronze);
  color: var(--oat-cream);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: var(--olive-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--oat-cream);
}

/* Form Styles */
.feedback-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  color: var(--olive-charcoal);
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.contact-form .form-group {
  margin-bottom: var(--spacing-sm);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(30, 36, 26, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--olive-charcoal);
  background: white;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--antique-bronze);
  box-shadow: 0 0 0 3px rgba(167, 119, 62, 0.1);
}

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

.contact-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--antique-bronze);
  color: var(--oat-cream);
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  height: 56px;
}

.contact-form .submit-btn:hover {
  background: var(--olive-charcoal);
  color: var(--oat-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Gallery Grid - UNIQUE: 3-column grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--antique-bronze);
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Areas Grid - UNIQUE: 2-column grid with larger cards */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
  gap: var(--spacing-lg);
}

.area-card {
  background: var(--oat-mist);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--antique-bronze);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--oat-cream);
}

.area-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: var(--antique-bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--oat-cream);
}

.area-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--olive-charcoal);
}

.area-card p {
  font-size: 0.95rem;
  color: var(--olive-charcoal);
  opacity: 0.8;
  margin-bottom: var(--spacing-md);
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-info-card {
  background: var(--dark-olive);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--antique-bronze);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: var(--antique-bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--oat-cream);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--oat-cream);
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--oat-mist);
  opacity: 0.8;
  margin-bottom: var(--spacing-sm);
}

.contact-info-card a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--antique-bronze);
}

/* Map Section */
.map-section {
  padding: var(--spacing-xl) 0;
  background: var(--olive-shadow);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--antique-bronze);
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ */
.faq-section {
  padding: var(--spacing-xl) 0;
  background: var(--oat-cream);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--oat-mist);
  margin-bottom: var(--spacing-md);
  border-radius: 18px;
  border: 2px solid rgba(167, 119, 62, 0.35);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.faq-item.active {
  border-color: var(--antique-bronze);
  box-shadow: var(--shadow-md);
  background: var(--oat-cream);
}

.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--olive-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: var(--oat-mist);
  border: none;
  border-radius: 0;
  width: 100%;
  min-height: 72px;
}

.faq-question:hover {
  background: rgba(167, 119, 62, 0.08);
  color: var(--olive-charcoal);
}

.faq-icon {
  font-size: 1.7rem;
  color: #b07a3c;
  margin-left: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--olive-charcoal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--spacing-md) var(--spacing-md) 0;
}

/* Sticky Button */
.sticky-quote-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--antique-bronze);
  color: var(--oat-cream);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  border: 3px solid var(--dark-olive);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-quote-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(167, 119, 62, 0.4);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 7, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--oat-cream);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  position: relative;
  border: 3px solid var(--antique-bronze);
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--olive-charcoal);
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--antique-bronze);
  transform: rotate(90deg);
}

/* Footer */
footer {
  background: var(--olive-shadow);
  color: var(--oat-mist);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 3px solid var(--antique-bronze);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
  color: var(--antique-bronze);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
  color: var(--oat-mist);
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--antique-bronze);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(167, 119, 62, 0.3);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--olive-charcoal);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(167, 119, 62, 0.3);
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  gap: var(--spacing-xs);
  font-size: 14px;
}

.breadcrumbs ul li::after {
  content: '›';
  margin-left: var(--spacing-xs);
  color: var(--antique-bronze);
}

.breadcrumbs ul li:last-child::after {
  content: '';
}

.breadcrumbs a {
  color: var(--oat-mist);
}

.breadcrumbs a:hover {
  color: var(--antique-bronze);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--olive-shadow) 0%, var(--dark-olive) 100%);
  padding: var(--spacing-xl) 0;
  text-align: center;
  border-bottom: 3px solid var(--antique-bronze);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--oat-cream);
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--oat-mist);
  opacity: 0.9;
}

/* Content Split */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--antique-bronze);
  box-shadow: var(--shadow-md);
}

.content-text h2 {
  margin-bottom: var(--spacing-md);
}

.content-text ul {
  list-style: none;
  margin-top: var(--spacing-md);
}

.content-text ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: var(--spacing-xs);
}

.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--antique-bronze);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .header-content {
    gap: var(--spacing-sm);
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    min-height: 56px;
  }

  .logo {
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: normal;
    max-width: 70%;
  }
  
  nav > ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--olive-shadow);
    position: absolute;
    top: 100%;
    left: 0;
    padding: var(--spacing-md);
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  
  nav > ul.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-top: 48px;
    padding-bottom: calc(var(--spacing-md) + 24px);
    z-index: 1001;
  }
  
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .mobile-menu-toggle.active {
    position: fixed;
    top: 24px;
    right: 20px;
  }

  nav {
    width: 100%;
    order: 3;
  }

  nav > ul li,
  nav > ul li > a {
    width: 100%;
  }

  nav > ul li .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav > ul li.open .dropdown {
    max-height: 1000px;
    padding: var(--spacing-xs) 0 0;
  }

  nav > ul li .dropdown li {
    opacity: 1;
    transform: none;
  }
  
  .hero-content h1 { font-size: 2.5rem; }
  
  .trust-grid,
  .contact-info-grid,
  .gallery-grid,
  .content-split,
  .footer-content { grid-template-columns: 1fr; }
  
  .contact-form .form-row { grid-template-columns: 1fr; }
  
  .sticky-quote-btn {
    bottom: 20px;
    right: 20px;
    left: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2rem; }
  .section { padding: var(--spacing-lg) 0; }
}
