/* =====================================================================
   MALLICK INTERIORS — Premium Interior Design Website
   Design system: Ink / Stone / Brass / Teal / Clay
   ===================================================================== */

:root {
  /* ---- Brand tokens (swap for exact logo colors once final logo lands) ---- */
  --ink: #211d18;
  --ink-70: rgba(33, 29, 24, 0.7);
  --ink-45: rgba(33, 29, 24, 0.45);
  --stone: #efeae0;
  --stone-dark: #e2dacb;
  --cream: #fbf9f4;
  --brass: #a9793a;
  --brass-light: #c49c63;
  --brass-dim: rgba(169, 121, 58, 0.14);
  --teal: #1e3a37;
  --teal-light: #2c534e;
  --clay: #9c4a2e;
  --line: rgba(33, 29, 24, 0.12);
  --line-soft: rgba(33, 29, 24, 0.08);
  --shadow-sm: 0 4px 18px rgba(33, 29, 24, 0.08);
  --shadow-md: 0 14px 40px rgba(33, 29, 24, 0.12);
  --shadow-lg: 0 24px 70px rgba(33, 29, 24, 0.18);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-eyebrow: "Poppins", "Inter", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container-pad: clamp(20px, 5vw, 80px);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
}
::selection {
  background: var(--brass);
  color: #fff;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
p {
  line-height: 1.75;
  color: var(--ink-70);
}

.italic-accent {
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow.on-dark {
  color: var(--brass-light);
}

.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section-pad-top {
  padding-top: clamp(60px, 9vw, 120px);
}
.container-xl {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.bg-stone {
  background: var(--stone);
}
.bg-ink {
  background: var(--ink);
  color: #fff;
}
.bg-ink p {
  color: rgba(255, 255, 255, 0.68);
}
.bg-teal {
  background: var(--teal);
  color: #fff;
}
.bg-teal p {
  color: rgba(255, 255, 255, 0.7);
}
.bg-cream {
  background: var(--cream);
}
.text-white h1,
.text-white h2,
.text-white h3 {
  color: #fff;
}

/* ---- Jali lattice signature motif ---- */
.jali-divider {
  height: 46px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='46' viewBox='0 0 64 46'%3E%3Cpath d='M32 2 L62 23 L32 44 L2 23 Z' fill='none' stroke='%23A9793A' stroke-opacity='0.35' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.8;
}
.jali-corner {
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 2 L58 30 L30 58 L2 30 Z' fill='none' stroke='%23C49C63' stroke-opacity='0.5' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='3' fill='none' stroke='%23C49C63' stroke-opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

/* ===================== BUTTONS ===================== */
.btn {
  font-family: var(--font-eyebrow);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 34px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
}
.btn-brass {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 10px 26px rgba(169, 121, 58, 0.32);
}
.btn-brass:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(33, 29, 24, 0.28);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-outline-dark {
  background: transparent;
  border-color: rgba(33, 29, 24, 0.28);
  color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}
.btn-link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-eyebrow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: 0.3s;
}
.btn-link-underline:hover {
  color: var(--brass);
  border-color: var(--brass);
  gap: 12px;
}
.btn-link-underline i {
  font-size: 0.75em;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  background: transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(33, 29, 24, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo img {
  height: 52px;
  width: auto;
  transition: 0.4s;
}
.site-header.scrolled .brand-logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-family: var(--font-eyebrow);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 10px 18px;
  position: relative;
}
.site-header:not(.scrolled) .main-nav a {
  color: #fff;
}
.site-header:not(.scrolled) .brand-logo img {
  filter: brightness(0) invert(1);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.main-nav a.active {
  color: var(--brass) !important;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-cta {
  display: inline-flex;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.site-header:not(.scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: 0.3s;
}
.site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}
.site-header.scrolled .menu-toggle {
  border-color: var(--line);
}

/* ===================== MOBILE SLIDE MENU ===================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.6);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: linear-gradient(165deg, var(--ink) 0%, #171310 100%);
  z-index: 1300;
  transform: translateX(-105%);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 30px 30px 40px;
  overflow-y: auto;
}
.mobile-menu-panel.active {
  transform: translateX(0);
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.mobile-menu-top img {
  height: 38px;
  filter: brightness(0) invert(1);
}
.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.9;
}
.mobile-nav-links a i {
  font-size: 0.85rem;
  color: var(--brass-light);
}
.mobile-menu-panel .btn-brass {
  width: 100%;
  justify-content: center;
  margin-bottom: 28px;
}
.mobile-menu-contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.mobile-menu-contact a {
  color: var(--brass-light);
}
.mobile-social {
  display: flex;
  gap: 12px;
}
.mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.mobile-social a:hover {
  background: var(--brass);
  border-color: var(--brass);
}
body.menu-open {
  overflow: hidden;
}

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.whatsapp-float {
  position: fixed;
  left: 15px;
  bottom: 10px;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-float .wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
  position: relative;
}
.whatsapp-float .wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.wa-tooltip {
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: 0.3s;
  white-space: nowrap;
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float {
    left: 14px;
    top: auto;
    bottom: 22px;
    transform: none;
  }
  .whatsapp-float .wa-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .wa-tooltip {
    display: none;
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 14, 0.55) 0%,
    rgba(20, 17, 14, 0.72) 55%,
    rgba(20, 17, 14, 0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 90px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 26px;
  /* max-width: 820px; */
}
.hero-content p.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  /* max-width: 560px; */
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero .jali-corner {
  top: 14%;
  right: 6%;
  opacity: 0.5;
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-family: var(--font-eyebrow);
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brass-light);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* Inner page hero (about/services/gallery/contact) */
.inner-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-bottom: 56px;
  padding-top: 150px;
}
.inner-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 17, 14, 0.35) 0%,
    rgba(20, 17, 14, 0.82) 100%
  );
}
.breadcrumb-custom {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-eyebrow);
  font-size: 0.82rem;
  margin-top: 16px;
}
.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb-custom a:hover {
  color: var(--brass-light);
}

/* ===================== STAT / COUNTER ===================== */
.stat-item {
  text-align: left;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--brass);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-70);
  margin-top: 8px;
  text-transform: uppercase;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.bg-ink .stat-num,
.bg-teal .stat-num {
  color: var(--brass-light);
}
.bg-ink .stat-label,
.bg-teal .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== CARDS: SERVICES ===================== */
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 44px 32px;
  height: 100%;
  border: 1px solid var(--line-soft);
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brass-dim);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  transition: 0.4s;
}
.service-card:hover .service-icon {
  background: var(--brass);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}
.service-card p {
  margin-bottom: 18px;
  font-size: 0.94rem;
}

/* ===================== PROJECT CARDS ===================== */
.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 14, 0) 30%,
    rgba(20, 17, 14, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  z-index: 2;
}
.project-cat {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 8px;
}
.project-card h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.project-loc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
.project-view {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border-bottom: 1px solid var(--brass-light);
  padding-bottom: 2px;
  width: fit-content;
}
.project-card:hover .project-view {
  opacity: 1;
  transform: translateY(0);
}
.project-tall {
  min-height: 520px;
}

/* ===================== WHY CHOOSE ===================== */
.why-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.why-item:last-child {
  border-bottom: none;
}
.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass);
  min-width: 52px;
}
.why-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.why-text p {
  font-size: 0.92rem;
  margin: 0;
}

/* ===================== PROCESS TIMELINE ===================== */
.process-track {
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-dot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brass);
  transition: 0.4s;
}
.process-step:hover .process-dot {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
  transform: scale(1.08);
}
.process-step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.86rem;
}

/* ===================== SHOWCASE MASONRY ===================== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.showcase-col {
  display: grid;
  gap: 24px;
}
.showcase-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.showcase-item:hover img {
  transform: scale(1.06);
}
.showcase-tall img {
  aspect-ratio: 4/5;
}
.showcase-wide img {
  aspect-ratio: 16/10;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px;
  height: 100%;
  border: 1px solid var(--line-soft);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--brass-dim);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-stars {
  color: var(--brass);
  font-size: 0.82rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p.quote-text {
  font-style: italic;
  color: var(--ink-70);
  margin-bottom: 24px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-person h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
}
.testi-person span {
  font-size: 0.78rem;
  color: var(--ink-45);
  font-family: var(--font-eyebrow);
}

/* ===================== CTA BAND ===================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal);
  color: #fff;
  padding: clamp(50px, 7vw, 90px);
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-band p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.72);
}
.cta-band .jali-corner {
  top: -40px;
  right: -40px;
  opacity: 0.35;
}
.cta-btn-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== FAQ / ACCORDION ===================== */
.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}
.accordion-button {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 26px 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}
.accordion-button:not(.collapsed) {
  color: var(--brass);
  background: transparent;
  box-shadow: none;
}
.accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  color: var(--brass);
  transition: 0.3s;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.accordion-body {
  padding: 0 0 28px;
  color: var(--ink-70);
}

/* ===================== CONTACT PREVIEW / FORM ===================== */
.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--line-soft);
  height: 100%;
}
.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--brass-dim);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.contact-info-card p {
  font-size: 0.88rem;
  margin: 0;
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.94rem;
  background: var(--cream);
  color: var(--ink);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 4px var(--brass-dim);
  background: #fff;
}
.form-label {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 8px;
}
.form-floating > label {
  color: var(--ink-45);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  padding: 0px 30px;
}
.footer-top {
  padding: 80px 0 50px;
}
.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 13px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: var(--brass-light);
  padding-left: 4px;
}
.footer-col .contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col .contact-line i {
  color: var(--brass-light);
  margin-top: 3px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.footer-social a:hover {
  background: var(--brass);
  border-color: var(--brass);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a:hover {
  color: var(--brass-light);
}

/* ===================== GALLERY PAGE ===================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-eyebrow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-70);
  transition: 0.3s;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}
.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay .gallery-cat {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 8px;
}
.gallery-overlay .expand-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
.gallery-item.hidden {
  display: none;
}

/* ===================== SERVICES DETAIL ROWS ===================== */
.service-detail-row {
  align-items: center;
}
.service-detail-row img {
  border-radius: var(--radius-lg);
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 6px;
  font-size: 0.92rem;
  color: var(--ink);
}
.feature-tag i {
  color: var(--brass);
  font-size: 0.8rem;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

/* ===================== ABOUT PAGE ===================== */
.philosophy-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px;
  height: 100%;
  border: 1px solid var(--line-soft);
  transition: 0.4s;
}
.philosophy-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}
.philosophy-card i {
  font-size: 1.6rem;
  color: var(--brass);
  margin-bottom: 18px;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .whatsapp-float .wa-btn::before {
    animation: none;
  }
}

/* ===================== MISC ===================== */
.section-divider-line {
  height: 1px;
  background: var(--line);
  width: 100%;
}
.badge-soft {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--brass-dim);
  color: var(--brass);
  font-family: var(--font-eyebrow);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rounded-xl {
  border-radius: var(--radius-lg) !important;
}
.rounded-lg-custom {
  border-radius: var(--radius-md) !important;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  filter: grayscale(0.15);
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* invalid form styling */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: var(--clay);
  background-image: none;
}
.was-validated .form-control:valid {
  border-color: #3f7a5c;
}
.form-note {
  font-size: 0.78rem;
  color: var(--ink-45);
  margin-top: 6px;
}
.toast-success {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 18px 26px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
.toast-success.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-success i {
  color: #5fbd8c;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .hero-content {
    padding-top: 0px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-tall img {
    aspect-ratio: 16/10;
  }
  .process-track::before {
    display: none;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .section {
    padding: 54px 0;
  }
  .cta-band {
    padding: 44px 22px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .contact-info-card {
    flex-direction: column;
  }
  .footer-top {
    padding: 56px 0 30px;
  }
  .hero {
    min-height: 70vh;
  }
}
@media (max-width: 420px) {
  h1 {
    font-size: 2.1rem;
  }
  .btn {
    padding: 13px 24px;
    font-size: 0.8rem;
  }
  .container-xl {
    padding-left: 16px;
    padding-right: 16px;
  }
}
