/* ==========================================================================
   MU Interior — main stylesheet
   ========================================================================== */

:root {
  --gold: #c9974d;
  --gold-light: #e2b876;
  --black: #171512;
  --black-soft: #211e1a;
  --cream: #f7f4ee;
  --cream-dark: #efe9df;
  --text: #3a352d;
  --text-light: #756e62;
  --white: #ffffff;
  --border: #e5ddce;

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.2;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head.left {
  text-align: left;
  margin: 0 0 56px;
}

.section-desc {
  color: var(--text-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ---------------- Topbar ---------------- */
.topbar {
  background: var(--black);
  color: #cfc9bd;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-info {
  display: flex;
  gap: 28px;
}
.topbar-info a, .topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfc9bd;
}
.topbar-info i {
  color: var(--gold);
}
.topbar-social {
  display: flex;
  gap: 16px;
}
.topbar-social a {
  color: #cfc9bd;
  transition: color 0.2s;
}
.topbar-social a:hover {
  color: var(--gold);
}

/* ---------------- Header / Nav ---------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo .logo-main {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}
.logo .logo-main span {
  color: var(--gold);
}
.logo .logo-sub {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo .logo-tag {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: #8a8479;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  color: #d8d3c8;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 3px;
}
.nav-cta .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.nav-cta .cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-cta .cta-text strong {
  font-size: 0.95rem;
}
.nav-cta .cta-text small {
  font-size: 0.68rem;
  opacity: 0.75;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #0d0c0a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,9,7,0.92) 0%, rgba(10,9,7,0.72) 45%, rgba(10,9,7,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content .eyebrow {
  color: var(--gold);
}
.hero-content h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero-content h1 .line-gold {
  color: var(--gold);
  display: block;
}
.hero-content p {
  color: #d8d3c8;
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* page hero for interior pages */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: #0d0c0a;
}
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(10,9,7,0.75) 0%, rgba(10,9,7,0.88) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}
.breadcrumb {
  margin-top: 14px;
  color: #cfc9bd;
  font-size: 0.9rem;
}
.breadcrumb a { color: var(--gold); }

/* ---------------- About ---------------- */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
}
.about-body p.lead {
  color: var(--text-light);
  margin-bottom: 28px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 6px 0 32px;
}
.about-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.about-point .icon-box {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-point h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.about-point p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ---------------- Services ---------------- */
.services {
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px 18px;
  text-align: center;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(23,21,18,0.08);
}
.service-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-card h4 {
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 30px;
  transition: all 0.25s ease;
}
.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 30px rgba(23,21,18,0.08);
  transform: translateY(-6px);
}
.service-full-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.service-full-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-full-card p {
  color: var(--text-light);
  font-size: 0.94rem;
  margin-bottom: 16px;
}
.service-full-card ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.service-full-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.72rem;
  top: 3px;
}

/* ---------------- Process ---------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-card {
  text-align: center;
  position: relative;
}
.process-card .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.process-card p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ---------------- Projects ---------------- */
.projects {
  background: var(--white);
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-head-row .view-all {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,21,18,0) 40%, rgba(23,21,18,0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.project-card .overlay .cat {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.project-card .overlay h4 {
  color: var(--white);
  font-size: 1.02rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.projects-grid.full {
  grid-template-columns: repeat(4, 1fr);
}
.project-item {
  display: none;
}
.project-item.show {
  display: block;
}

/* ---------------- Why us / stats strip ---------------- */
.stats {
  background: var(--black);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat h3 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.stat p {
  color: #cfc9bd;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------------- Testimonials ---------------- */
.testimonials {
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
}
.testi-card .quote-icon {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
  opacity: 0.8;
}
.testi-card p.msg {
  color: var(--text);
  font-size: 0.94rem;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.testi-person h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
}
.testi-person span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ---------------- FAQ ---------------- */
.faq {
  background: var(--white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--black);
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.25s ease;
  flex: none;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 18px 24px 22px;
  color: var(--text-light);
  font-size: 0.92rem;
}
.faq-item.open .faq-answer {
  max-height: 240px;
}

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--black) 0%, #2a251d 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.cta-band p {
  color: #cfc9bd;
  max-width: 560px;
  margin: 0 auto 30px;
}
.cta-band .hero-actions {
  justify-content: center;
}

/* ---------------- Blog ---------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.25s ease;
}
.blog-card:hover {
  box-shadow: 0 16px 30px rgba(23,21,18,0.08);
  transform: translateY(-6px);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body {
  padding: 26px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-meta i { color: var(--gold); }
.blog-card h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}
.blog-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  padding: 44px 36px;
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: #cfc9bd;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.contact-item .icon-box {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: rgba(201,151,77,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h5 {
  font-size: 0.85rem;
  color: #cfc9bd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  color: var(--white);
  font-size: 0.98rem;
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}
.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--text);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 60px;
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: var(--black);
  color: #b9b3a6;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about p {
  font-size: 0.9rem;
  margin: 16px 0 20px;
  color: #9d9border;
  color: #a39d90;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: #a39d90;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-col ul li a i {
  color: var(--gold);
  font-size: 0.75rem;
}
.footer-cta {
  background: rgba(201,151,77,0.08);
  border: 1px solid rgba(201,151,77,0.3);
  border-radius: 8px;
  padding: 26px 24px;
}
.footer-cta p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-cta a.phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer-cta a.phone i {
  color: var(--gold);
}
.footer-cta small {
  color: #a39d90;
  font-size: 0.8rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 0.82rem;
  color: #8a8479;
}
.footer-bottom a {
  color: #8a8479;
  margin-left: 20px;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ---------------- Back to top ---------------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border: none;
  font-size: 1rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------------- Page banner sections ---------------- */
.page-section-alt {
  background: var(--cream);
}

/* ---------------- Values / why choose ---------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.value-row {
  display: flex;
  gap: 20px;
}
.value-row .icon-box {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.value-row h4 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}
.value-row p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---------------- Team ---------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  text-align: center;
}
.team-photo {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-card span {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid, .projects-grid.full { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 360px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar .topbar-info > *:nth-child(3) { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-image img { height: 300px; }
}

@media (max-width: 640px) {
  .topbar-info { gap: 14px; }
  .topbar-info > *:nth-child(2) { display: none; }
  .topbar-social { gap: 12px; }
  .navbar { padding-top: 12px; padding-bottom: 12px; }
  .logo .logo-main { font-size: 1.5rem; }
  .projects-grid, .projects-grid.full { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero { min-height: 0; }
  .hero-content { padding-top: 90px; padding-bottom: 50px; }
  .home-hero-bg { background-image: url('../images/projects/19.jpg') !important; background-position: center 58% !important; }
  .hero-actions .btn,
  .cta-band .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .about-points { gap: 18px; }
  .contact-info-card, .contact-form { padding: 30px 22px; }
  .footer-grid { padding-bottom: 36px; }
}

@media (max-width: 420px) {
  .topbar-social a:nth-child(n+3) { display: none; }
  .logo .logo-tag { display: none; }
  .service-full-card, .testi-card, .blog-card-body { padding: 26px 20px; }
}

/* ---------------- Mobile nav drawer ---------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--black-soft);
  z-index: 1100;
  padding: 30px 26px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav .close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 30px;
  cursor: pointer;
}
.mobile-nav ul li {
  margin-bottom: 18px;
}
.mobile-nav ul li a {
  color: #d8d3c8;
  font-size: 1rem;
}
.mobile-nav ul li a.active,
.mobile-nav ul li a:hover {
  color: var(--gold);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  display: none;
}
.nav-overlay.show {
  display: block;
}
