* {
  box-sizing: border-box;
}

:root {
  --cream: #fdf9f4;
  --sand: #f2e7d8;
  --border: #e6dccd;
  --primary: #b88a45;
  --charcoal: #141114;
  --muted: #6f675c;
}

body {
  background: linear-gradient(180deg, #fdf9f4 0%, #f7f0e6 60%, #fdf9f4 100%);
  color: var(--charcoal);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
}

.container-wide {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.container-narrow {
  width: min(900px, 92vw);
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.bg-cream {
  background-color: var(--cream);
}

.bg-charcoal {
  background-color: var(--charcoal);
}

.text-charcoal {
  color: var(--charcoal);
}

.text-cream {
  color: #fffaf3;
}

.text-gold {
  color: #e6c590;
}

.footer-link {
  color: rgba(255, 250, 243, 0.8);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #f3d9a6;
}

.mobile-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.mobile-link:hover {
  background: var(--sand);
  border-color: var(--border);
}

.mobile-link.active {
  background: var(--sand);
  color: var(--primary);
  border-color: var(--border);
}

.shadow-soft {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.shadow-gold {
  box-shadow: 0 25px 50px rgba(184, 138, 69, 0.25);
}

.active-filter {
  background: var(--primary) !important;
  color: #fffaf3 !important;
  border-color: transparent !important;
}

.page-box {
  width: min(1200px, 92vw);
  margin: -3rem auto 0;
  background: linear-gradient(180deg, #fdf9f4 0%, #f7f0e6 60%, #fdf9f4 100%);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-box.about-page,
.page-box.services-page,
.page-box.gallery-page,
.page-box.contact-page {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.page-box.about-page>section,
.page-box.services-page>section,
.page-box.gallery-page>section,
.page-box.contact-page>section {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.page-box.about-page .container-wide,
.page-box.about-page .container-narrow,
.page-box.services-page .container-wide,
.page-box.services-page .container-narrow,
.page-box.gallery-page .container-wide,
.page-box.gallery-page .container-narrow,
.page-box.contact-page .container-wide,
.page-box.contact-page .container-narrow {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.page-box>section {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #b88a45, #d2aa60);
  color: #fffaf3;
  border-color: #a57733;
  box-shadow: 0 18px 40px rgba(184, 138, 69, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(184, 138, 69, 0.45);
}

.btn-outline {
  background: transparent;
  color: #b88a45;
  border: 2px solid #b88a45;
}

.btn-outline:hover {
  background: #b88a45;
  color: #fffaf3;
  box-shadow: 0 12px 30px rgba(184, 138, 69, 0.25);
}

.btn-ghost {
  background: transparent;
  color: #b88a45;
  border-color: transparent;
}

.btn-ghost:hover {
  color: #8a642e;
  background: rgba(184, 138, 69, 0.08);
}

.icon-chip {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f7eddc, #f1dfc5);
  color: #8a642e;
  box-shadow: 0 12px 30px rgba(138, 100, 46, 0.18);
}

.icon-chip svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}


.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0e5d3, #e3d2b5);
  color: #8a6a3a;
  box-shadow: 0 12px 28px rgba(138, 106, 58, 0.15);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}


.hero-trust-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  color: #141114;
}

.hero-trust-card p {
  color: #141114;
}

.hero-trust-card .text-neutral-700 {
  color: #1f1b1c !important;
}

.hero-trust-card .service-icon {
  background: rgba(240, 229, 211, 0.4);
  color: #8a6a3a;
  box-shadow: 0 10px 22px rgba(138, 106, 58, 0.12);
}

.hero-trust-card .service-icon svg {
  stroke-width: 2.2;
}



.quality-badge {
  background: #a17f4d;
  color: #fffaf3;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(161, 127, 77, 0.3);
  min-width: 190px;
}

/* Testimonials Slider */
.testimonials-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  gap: 1.5rem;
}

.testimonial-card {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.52rem;
  box-shadow: var(--shadow-soft);
  display: flex !important;
  flex-direction: column !important;
  min-height: 380px;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem) !important;
    max-width: calc(50% - 0.75rem) !important;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem) !important;
    max-width: calc(33.333% - 1rem) !important;
  }
}

.star-rating {
  color: #8a6a3a !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 4px !important;
  margin-bottom: 1.25rem !important;
}

.star-rating svg {
  width: 18px !important;
  height: 18px !important;
  fill: #8a6a3a !important;
}

.testimonial-card .service-icon {
  margin-bottom: 1.5rem;
  color: #8a6a3a !important;
}

.testimonial-client-info h4 {
  color: var(--charcoal);
  font-weight: 700;
}

.testimonial-client-info p {
  color: #8a6a3a;
  font-weight: 600;
}