/* ============================================================
   Personalized Wallpaper Installers — Master Stylesheet
   Color Palette:
     Primary BG:   #24060F (black cherry)
     Secondary BG: #120207 (cherry shadow)
     Light BG:     #F3E1C8 (almond silk)
     Text dark-bg: #FAEFDD (pale almond)
     Text light-bg:#2B1F22 (cherry-charcoal)
     Accent:       #B47A2A (gilded amber)
   ============================================================ */


/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #faefdd;
  background: #24060f;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #b47a2a;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: #d4a04e;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  line-height: 1.25;
  font-weight: 700;
}

/* ---------- UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 48px 0;
}
.text-center {
  text-align: center;
}
.accent {
  color: #b47a2a;
}
.bg-dark {
  background: #120207;
}
.bg-light {
  background: #f3e1c8;
  color: #2b1f22;
}
.bg-light a {
  color: #b47a2a;
}
.bg-light h2,
.bg-light h3 {
  color: #2b1f22;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
  height: auto;
  min-height: 52px;
  line-height: 1.3;
}
.btn-primary {
  background: #b47a2a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(180, 122, 42, 0.35);
}
.bg-light .btn-primary {
  color: #fff;
}
.btn-primary:hover {
  background: #c98e3e;
  color: #fff;
  box-shadow: 0 6px 22px rgba(180, 122, 42, 0.5);
}
.btn-outline {
  background: transparent;
  color: #b47a2a;
  border: 2px solid #b47a2a;
}
.btn-outline:hover {
  background: #b47a2a;
  color: #faefdd;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 2, 7, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(180, 122, 42, 0.15);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
  height: 72px;
}
.logo {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #faefdd;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.logo span {
  color: #b47a2a;
}

/* Top bar with phone & email */
.header-top {
  background: #120207;
  border-bottom: 1px solid rgba(180, 122, 42, 0.1);
  font-size: 0.85rem;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 6px 24px;
}
.header-top a {
  color: #faefdd;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top a:hover {
  color: #b47a2a;
}
.header-top svg {
  width: 16px;
  height: 16px;
  fill: #b47a2a;
  flex-shrink: 0;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  color: #faefdd;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s;
}
.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: #b47a2a;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #120207;
  border: 1px solid rgba(180, 122, 42, 0.15);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 100;
}
.main-nav > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.main-nav > li:hover > .dropdown li {
  opacity: 1;
  transform: translateX(0);
}
.main-nav > li:hover > .dropdown li:nth-child(1) {
  transition-delay: 0.04s;
}
.main-nav > li:hover > .dropdown li:nth-child(2) {
  transition-delay: 0.08s;
}
.main-nav > li:hover > .dropdown li:nth-child(3) {
  transition-delay: 0.12s;
}
.main-nav > li:hover > .dropdown li:nth-child(4) {
  transition-delay: 0.16s;
}
.main-nav > li:hover > .dropdown li:nth-child(5) {
  transition-delay: 0.2s;
}
.main-nav > li:hover > .dropdown li:nth-child(6) {
  transition-delay: 0.24s;
}
.main-nav > li:hover > .dropdown li:nth-child(7) {
  transition-delay: 0.28s;
}
.main-nav > li:hover > .dropdown li:nth-child(8) {
  transition-delay: 0.32s;
}
.main-nav > li:hover > .dropdown li:nth-child(9) {
  transition-delay: 0.36s;
}
.main-nav > li:hover > .dropdown li:nth-child(10) {
  transition-delay: 0.4s;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: #faefdd;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.dropdown a:hover {
  background: rgba(180, 122, 42, 0.1);
  color: #b47a2a;
  padding-left: 26px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #faefdd;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hide mobile-only elements on desktop */
.mob-close {
  display: none;
}
.mob-overlay {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 2, 7, 0.88) 0%,
    rgba(36, 6, 15, 0.72) 50%,
    rgba(18, 2, 7, 0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text h1 span {
  color: #b47a2a;
}
.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: rgba(250, 239, 221, 0.85);
  max-width: 520px;
}
.hero-form {
  background: rgba(18, 2, 7, 0.6);
  border: 1px solid rgba(180, 122, 42, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

/* ---------- FORM ---------- */
.feedback-form-container h3,
.feedback-form-container .form-title {
  font-size: 1.35rem;
  margin-bottom: 20px;
  text-align: center;
  color: #faefdd;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(250, 239, 221, 0.06);
  border: 1px solid rgba(180, 122, 42, 0.25);
  border-radius: 10px;
  color: #faefdd;
  font-size: 0.95rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 239, 221, 0.45);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b47a2a;
  box-shadow: 0 0 0 3px rgba(180, 122, 42, 0.15);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  margin-top: 8px;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #b47a2a;
  color: #faefdd;
  border: none;
  border-radius: 11px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(180, 122, 42, 0.35);
  min-height: 52px;
}
.submit-btn:hover {
  background: #c98e3e;
  box-shadow: 0 6px 22px rgba(180, 122, 42, 0.5);
}
#form-success {
  text-align: center;
  padding: 24px;
}
#form-success p {
  color: #b47a2a;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Light bg form */
.bg-light .form-group input,
.bg-light .form-group textarea {
  background: rgba(43, 31, 34, 0.05);
  border-color: rgba(180, 122, 42, 0.3);
  color: #2b1f22;
}
.bg-light .form-group input::placeholder,
.bg-light .form-group textarea::placeholder {
  color: rgba(43, 31, 34, 0.45);
}
.bg-light .feedback-form-container h3,
.bg-light .feedback-form-container .form-title {
  color: #2b1f22;
}
.bg-light #form-success p {
  color: #b47a2a;
}

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
  padding: 80px 0;
}
.content-section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.content-section .common-project-title {
  margin-top: 48px;
}
.content-section h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.content-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.content-section ul,
.content-section ol {
  margin: 16px 0 24px 24px;
}
.content-section ul {
  list-style: disc;
}
.content-section ol {
  list-style: decimal;
}
.content-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.content-section :where(
  .two-col,
  .testimonial-section,
  .gallery-grid,
  .service-cards,
  .city-grid,
  .map-container,
  .cta-block
) + h2 {
  margin-top: 48px;
}
.content-section :where(
  .two-col,
  .testimonial-section,
  .gallery-grid,
  .service-cards,
  .city-grid,
  .map-container
) + p {
  margin-top: 24px;
}

/* Image panels */
.img-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(180, 122, 42, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.gallery-grid .img-panel {
  aspect-ratio: 4/3;
}

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, #120207 0%, #24060f 100%);
  border: 1px solid rgba(180, 122, 42, 0.15);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.cta-block p {
  margin-bottom: 20px;
  color: rgba(250, 239, 221, 0.8);
}
.bg-light .cta-block {
  background: linear-gradient(135deg, #e8d4b5 0%, #f3e1c8 100%);
  border-color: rgba(180, 122, 42, 0.2);
}
.bg-light .cta-block h3 {
  color: #2b1f22;
}
.bg-light .cta-block p {
  color: rgba(43, 31, 34, 0.7);
}
@media (min-width: 993px) {
  .cta-block .btn {
    margin-right: 12px;
  }
}

/* Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(180, 122, 42, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin: 24px 0;
  height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* FAQ */
.faq-item {
  background: rgba(250, 239, 221, 0.04);
  border: 1px solid rgba(180, 122, 42, 0.12);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: rgba(180, 122, 42, 0.3);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #b47a2a;
}
.faq-item p {
  color: rgba(250, 239, 221, 0.85);
  line-height: 1.7;
}
.bg-light .faq-item {
  background: rgba(43, 31, 34, 0.03);
  border-color: rgba(180, 122, 42, 0.15);
}
.bg-light .faq-item h3 {
  color: #b47a2a;
}
.bg-light .faq-item p {
  color: rgba(43, 31, 34, 0.8);
}

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.service-card {
  background: rgba(250, 239, 221, 0.04);
  border: 1px solid rgba(180, 122, 42, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: #b47a2a;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(180, 122, 42, 0.15);
}
.service-card .card-img {
  height: 200px;
  overflow: hidden;
}
.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .card-img img {
  transform: scale(1.05);
}
.service-card .card-body {
  padding: 20px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(250, 239, 221, 0.7);
  margin-bottom: 14px;
}

/* City cards */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.city-link {
  display: block;
  padding: 16px 20px;
  background: rgba(250, 239, 221, 0.04);
  border: 1px solid rgba(180, 122, 42, 0.12);
  border-radius: 10px;
  color: #faefdd;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
}
.city-link:hover {
  background: rgba(180, 122, 42, 0.1);
  border-color: #b47a2a;
  color: #b47a2a;
}

/* Neighborhoods */
.neighborhood-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.neighborhood-list li {
  padding: 10px 16px;
  background: rgba(250, 239, 221, 0.04);
  border: 1px solid rgba(180, 122, 42, 0.08);
  border-radius: 8px;
  font-size: 0.9rem;
  list-style: none;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #120207;
  border-top: 1px solid rgba(180, 122, 42, 0.12);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3,
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #b47a2a;
  font-weight: 600;
}
.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(250, 239, 221, 0.7);
  line-height: 1.8;
}
.footer-col a:hover {
  color: #b47a2a;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(180, 122, 42, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 239, 221, 0.5);
}

/* ---------- STICKY QUOTE BUTTON ---------- */
.sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  padding: 16px 32px;
  background: #b47a2a;
  color: #faefdd;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(180, 122, 42, 0.4);
  transition: all 0.3s;
  animation: pulse-glow 2.5s infinite;
  min-height: 52px;
}
.sticky-quote-btn:hover {
  background: #c98e3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180, 122, 42, 0.55);
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(180, 122, 42, 0.4);
  }
  50% {
    box-shadow: 0 6px 32px rgba(180, 122, 42, 0.65);
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: #24060f;
  border: 1px solid rgba(180, 122, 42, 0.2);
  border-radius: 16px;
  padding: 36px;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #faefdd;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #b47a2a;
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, #120207 0%, #24060f 100%);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 72px;
  border-bottom: 1px solid rgba(180, 122, 42, 0.1);
}
.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(250, 239, 221, 0.75);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: rgba(250, 239, 221, 0.5);
}
.breadcrumb a {
  color: rgba(250, 239, 221, 0.6);
}
.breadcrumb a:hover {
  color: #b47a2a;
}
.breadcrumb span {
  margin: 0 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .header-inner {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo {
    white-space: normal;
    line-height: 1.15;
    max-width: 70%;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 60vw;
    max-width: 320px;
    height: 100vh;
    background: #120207;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(180, 122, 42, 0.2);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1100;
    align-items: stretch;
    gap: 0;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  .mob-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .mob-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(180, 122, 42, 0.12);
  }
  .mob-close-btn {
    background: none;
    border: none;
    color: #faefdd;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
  }
  .mob-close-btn:hover {
    color: #b47a2a;
  }
  .main-nav > li {
    border-bottom: 1px solid rgba(180, 122, 42, 0.08);
  }
  .main-nav > li > a {
    display: block;
    padding: 16px 24px;
    font-size: 1.05rem;
    color: #faefdd;
    text-align: left;
    width: 100%;
  }
  .main-nav > li > a:hover,
  .main-nav > li.active > a {
    color: #b47a2a;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: none;
    background: rgba(36, 6, 15, 0.6);
    min-width: auto;
  }
  .main-nav > li.mob-open > .dropdown {
    display: block;
  }
  .dropdown li {
    opacity: 1;
    transform: none;
  }
  .dropdown a {
    padding: 12px 24px 12px 40px;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: 1px solid rgba(180, 122, 42, 0.05);
  }
  .dropdown a:hover {
    padding-left: 46px;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
    padding-top: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-2px);
  }
  .page-header {
    padding: 100px 0 40px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .header-top .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
}


/* ---------- MASTERS GRID ---------- */
.masters-grid {
  grid-template-columns: repeat(3, 1fr);
}
.masters-grid .img-panel {
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .masters-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.testimonial-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .testimonial-grid,
  .testimonial-grid-small {
    grid-template-columns: 1fr;
  }
}
.testimonial-item {
  background: rgba(180, 122, 42, 0.08);
  border-left: 4px solid #b47a2a;
  border-radius: 8px;
  padding: 20px 24px;
}
.testimonial-item p {
  font-style: italic;
  color: inherit;
  margin-bottom: 12px;
}
.testimonial-item .testimonial-author {
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  color: #b47a2a;
  margin-bottom: 0;
}
.testimonial-grid .testimonial-item {
  background: #fff;
  border: 1px solid rgba(180, 122, 42, 0.22);
  border-left: 4px solid #b47a2a;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(43, 31, 34, 0.08);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-grid .testimonial-item p {
  font-style: normal;
  color: #2b1f22;
  line-height: 1.65;
}
.testimonial-grid .testimonial-item p:first-child::before {
  content: "\201C";
  color: #b47a2a;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 4px;
}
.testimonial-grid .testimonial-item .testimonial-author {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(180, 122, 42, 0.18);
}
.testimonial-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(180, 122, 42, 0.2);
}
.testimonial-section h2 {
  margin-bottom: 8px;
}
