/* ============================================
   Precision Wallpaper Installations
   Color Palette:
   - Primary bg: #1B1714 (deep espresso)
   - Secondary bg: #3A342F (warm taupe)
   - Light sections: #F5EFE6 (linen)
   - Text on dark: #F3EEE7 (soft ivory)
   - Text on light: #2A2521 (rich brown)
   - Accent: #B89B5E (antique gold)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: #2A2521;
  background: #F5EFE6;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #B89B5E; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #9a8248; text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.25;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  background: #1B1714;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(184,155,94,0.2);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,155,94,0.15);
  font-size: 14px;
}

.header-top a {
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
}

.header-top a:hover { color: #B89B5E; }

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact-info svg {
  width: 16px;
  height: 16px;
  fill: #B89B5E;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.header-contact-info a {
  display: inline-flex;
  align-items: center;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #F3EEE7;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo a span { color: #B89B5E; }

/* === NAVIGATION === */
.main-nav { display: flex; align-items: center; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.nav-list > li > a:hover,
.nav-list > li > a.active { color: #B89B5E; text-decoration: none; }

.nav-arrow {
  width: 10px;
  height: 10px;
  fill: #B89B5E;
  transition: transform 0.3s;
}

.nav-list > li:hover .nav-arrow { transform: rotate(180deg); }

/* === DROPDOWN === */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1B1714;
  border: 1px solid rgba(184,155,94,0.2);
  border-radius: 6px;
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 100;
}

.nav-list > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li { opacity: 0; transform: translateX(-10px); }

.nav-list > li:hover .dropdown li {
  opacity: 1;
  transform: translateX(0);
}

.dropdown li:nth-child(1) { transition: all 0.3s ease 0.05s; }
.dropdown li:nth-child(2) { transition: all 0.3s ease 0.1s; }
.dropdown li:nth-child(3) { transition: all 0.3s ease 0.15s; }
.dropdown li:nth-child(4) { transition: all 0.3s ease 0.2s; }
.dropdown li:nth-child(5) { transition: all 0.3s ease 0.25s; }
.dropdown li:nth-child(6) { transition: all 0.3s ease 0.3s; }
.dropdown li:nth-child(7) { transition: all 0.3s ease 0.35s; }
.dropdown li:nth-child(8) { transition: all 0.3s ease 0.4s; }
.dropdown li:nth-child(9) { transition: all 0.3s ease 0.45s; }
.dropdown li:nth-child(10) { transition: all 0.3s ease 0.5s; }
.dropdown li:nth-child(11) { transition: all 0.3s ease 0.55s; }

.dropdown a {
  display: block;
  padding: 9px 22px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.25s;
  border-left: 3px solid transparent;
}

.dropdown a:hover {
  color: #B89B5E;
  background: rgba(184,155,94,0.08);
  border-left-color: #B89B5E;
  text-decoration: none;
}

/* === MOBILE MENU === */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #F3EEE7;
  margin: 6px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}

.mobile-overlay.active { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 360px;
  height: 100vh;
  background: #1B1714;
  z-index: 1060;
  transition: right 0.35s ease;
  overflow-y: auto;
  padding: 0;
}

.mobile-nav.active { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(184,155,94,0.2);
}

.mobile-nav-header .logo-mobile {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #F3EEE7;
  font-weight: 700;
}

.mobile-nav-header .logo-mobile span { color: #B89B5E; }

.mobile-close {
  background: none;
  border: 1px solid rgba(184,155,94,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-close:hover { border-color: #B89B5E; background: rgba(184,155,94,0.1); }

.mobile-close svg { width: 16px; height: 16px; fill: #F3EEE7; }

.mobile-nav-list {
  list-style: none;
  padding: 16px 0;
}

.mobile-nav-list > li {
  border-bottom: 1px solid rgba(184,155,94,0.08);
}

.mobile-nav-list > li > a,
.mobile-nav-list > li > .mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > .mobile-dropdown-toggle:hover { color: #B89B5E; }

.mobile-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  fill: #B89B5E;
  transition: transform 0.3s;
}

.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

.mobile-dropdown {
  display: none;
  padding: 0 0 8px 0;
  background: rgba(58,52,47,0.3);
}

.mobile-dropdown.open { display: block; }

.mobile-dropdown a {
  display: block;
  padding: 10px 24px 10px 40px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-dropdown a:hover { color: #B89B5E; }

.mobile-nav-contact {
  padding: 20px 24px;
  border-top: 1px solid rgba(184,155,94,0.2);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
}

.mobile-nav-contact svg { width: 16px; height: 16px; fill: #B89B5E; flex-shrink: 0; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1B1714;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,23,20,0.85) 0%, rgba(27,23,20,0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text h1 {
  font-size: 52px;
  color: #F3EEE7;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text h1 span { color: #B89B5E; }

.hero-text p {
  color: rgba(243,238,231,0.85);
  font-size: 19px;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.hero-badge svg { width: 20px; height: 20px; fill: #B89B5E; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid #B89B5E;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: #B89B5E;
  color: #1B1714;
}

.btn-gold:hover {
  background: #a08545;
  color: #1B1714;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #B89B5E;
}

.btn-outline:hover {
  background: #B89B5E;
  color: #1B1714;
  text-decoration: none;
}

.btn-outline-dark {
  background: transparent;
  color: #2A2521;
  border-color: #2A2521;
}

.btn-outline-dark:hover {
  background: #2A2521;
  color: #F3EEE7;
  text-decoration: none;
}

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-dark { background: #1B1714; color: #F3EEE7; }
.section-taupe { background: #3A342F; color: #F3EEE7; }
.section-light { background: #F5EFE6; color: #2A2521; }
.section-linen { background: #EDE7DC; color: #2A2521; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-header .accent-line {
  width: 60px;
  height: 2px;
  background: #B89B5E;
  margin: 0 auto 20px;
}

.section-header p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.85;
}

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* === CARDS === */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 24px; }
.card-body h3 { font-size: 22px; margin-bottom: 10px; color: #2A2521; }
.card-body p { font-size: 15px; color: #5a5450; margin-bottom: 16px; }

/* Dark card variant */
.card-dark {
  background: #3A342F;
  color: #F3EEE7;
}
.card-dark h3 { color: #F3EEE7; }
.card-dark p { color: rgba(243,238,231,0.75); }

/* === CONTACT FORM === */
.feedback-form-container {
  background: rgba(27,23,20,0.95);
  border: 1px solid rgba(184,155,94,0.25);
  border-radius: 10px;
  padding: 36px 32px;
  max-width: 480px;
}

.feedback-form-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #F3EEE7;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form .form-group { margin-bottom: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(245,239,230,0.08);
  border: 1px solid rgba(184,155,94,0.25);
  border-radius: 6px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(243,238,231,0.45); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: #B89B5E; }

.contact-form textarea { min-height: 100px; resize: vertical; margin-bottom: 14px; }

.form-submit { margin-top: 8px; }

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #B89B5E;
  color: #1B1714;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover { background: #a08545; }

#form-success {
  text-align: center;
  padding: 20px;
}

#form-success p {
  color: #B89B5E;
  font-size: 16px;
}

/* Light form variant */
.form-light .feedback-form-container {
  background: #fff;
  border-color: rgba(42,37,33,0.15);
}

.form-light .feedback-form-container h3 { color: #2A2521; }

.form-light .contact-form input,
.form-light .contact-form textarea {
  background: #F5EFE6;
  border-color: rgba(42,37,33,0.15);
  color: #2A2521;
}

.form-light .contact-form input::placeholder,
.form-light .contact-form textarea::placeholder { color: rgba(42,37,33,0.45); }

/* === CTA BLOCKS === */
.cta-block {
  text-align: center;
  padding: 50px 30px;
  border-radius: 10px;
  margin: 40px 0;
}

.cta-block h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 17px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-dark {
  background: #1B1714;
  color: #F3EEE7;
}

.cta-gold {
  background: linear-gradient(135deg, #B89B5E 0%, #9a8248 100%);
  color: #1B1714;
}

.cta-gold .btn { border-color: #1B1714; color: #1B1714; }
.cta-gold .btn:hover { background: #1B1714; color: #F3EEE7; }

/* === MAP === */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184,155,94,0.2);
}

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

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid rgba(184,155,94,0.2);
  padding: 20px 0;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  fill: #B89B5E;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 14px;
}

/* === FOOTER === */
.site-footer {
  background: #1B1714;
  color: #F3EEE7;
  padding: 60px 0 0;
  border-top: 2px solid #B89B5E;
}

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

.footer-col h4 {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #B89B5E;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 15px;
  color: rgba(243,238,231,0.75);
  line-height: 1.7;
}

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

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(243,238,231,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: #B89B5E; text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: #B89B5E;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(243,238,231,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(184,155,94,0.15);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(243,238,231,0.5);
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: #B89B5E;
  color: #1B1714;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(184,155,94,0.4);
  transition: all 0.3s;
}

.sticky-quote-btn:hover {
  background: #a08545;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,155,94,0.5);
}

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
  position: relative;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 1px solid rgba(184,155,94,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.modal-close:hover { border-color: #B89B5E; background: rgba(184,155,94,0.15); }
.modal-close svg { width: 14px; height: 14px; fill: #F3EEE7; }

/* === CONTENT SECTIONS === */
.content-block { margin-bottom: 40px; }
.content-block h2 { font-size: 32px; margin-bottom: 16px; }
.content-block h3 { font-size: 24px; margin-bottom: 12px; }
.content-block p { margin-bottom: 16px; font-size: 17px; }

.content-block ul,
.content-block ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-block li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.7;
}

/* === AREAS LIST === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.areas-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(184,155,94,0.08);
  border: 1px solid rgba(184,155,94,0.15);
  border-radius: 6px;
  color: inherit;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s;
}

.areas-grid a:hover {
  background: #B89B5E;
  color: #1B1714;
  text-decoration: none;
  border-color: #B89B5E;
}

.areas-grid a svg { width: 14px; height: 14px; fill: #B89B5E; flex-shrink: 0; }
.areas-grid a:hover svg { fill: #1B1714; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  padding: 100px 0 60px;
  background: #1B1714;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,23,20,0.7), rgba(27,23,20,0.9));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 44px;
  color: #F3EEE7;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(243,238,231,0.8);
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

.breadcrumb a { color: #B89B5E; }
.breadcrumb span { color: rgba(243,238,231,0.5); }

/* === ICON LIST === */
.icon-list { list-style: none; padding: 0; }

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
}

.icon-list li svg {
  width: 20px;
  height: 20px;
  fill: #B89B5E;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === PROCESS STEPS === */
.process-steps { counter-reset: step; list-style: none; padding: 0; }

.process-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
}

.process-steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #B89B5E;
  color: #1B1714;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* === IMAGE GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 42px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .header-top { display: none; }

  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 34px; }
  .hero-content { padding: 60px 0; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 30px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .page-hero h1 { font-size: 32px; }

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

  .sticky-quote-btn {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }

  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-2px);
  }

  .cta-block h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-text h1 { font-size: 28px; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .feedback-form-container { padding: 24px 20px; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-gold { color: #B89B5E; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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