/* ===================================================================
   DECORAX INTERIOR — Premium Interior Design Studio
   Main Stylesheet
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --white: #ffffff;
  --cream: #f7f3ec;
  --beige: #ede4d3;
  --beige-deep: #d9c9ad;
  --warm-grey: #9b9183;
  --warm-grey-light: #c7bfb2;
  --charcoal: #2b2926;
  --matte-black: #141311;
  --gold: #b9975b;
  --gold-light: #cdb37e;
  --gold-dark: #9a7b40;

  --text: #2b2926;
  --text-muted: #6f675c;
  --bg: #ffffff;
  --bg-alt: #f7f3ec;

  --font-display: "Playfair Display", Georgia, serif;
  --font-serif: "Lora", Georgia, serif;
  --font-sans: "Poppins", "Montserrat", system-ui, sans-serif;
  --font-alt: "Montserrat", system-ui, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow-sm: 0 6px 20px rgba(20, 19, 17, 0.06);
  --shadow-md: 0 18px 50px rgba(20, 19, 17, 0.12);
  --shadow-lg: 0 30px 80px rgba(20, 19, 17, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 92px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.2em; color: var(--text-muted); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-charcoal h1,.bg-charcoal h2,.bg-charcoal h3 { color: var(--white); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Typography utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 20px;
}
.section-head { max-width: 660px; margin-bottom: 60px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.12rem; font-family: var(--font-serif); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  cursor: pointer;
}
.btn i { transition: transform .4s var(--ease); }
.btn:hover i { transform: translateX(5px); }

.btn-gold { background: var(--gold); color: #fff; padding: 10px 20px !important;}
.btn-gold:hover { background: var(--gold-dark); box-shadow: var(--shadow-md); padding: 10px 20px !important; color: white !important;}
.btn-gold:active { background: var(--gold); color: #fff; padding: 10px 20px !important;}


.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--matte-black); }

.btn-outline { background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* ===================================================================
   HEADER / NAVIGATION
   =================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .45s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand img {
  display: block;
  height: 58px;
  width: auto;
  transition: height .4s var(--ease);
}
.brand .logo-on-light { display: none; }
.brand .logo-on-dark { display: block; }
/* When header is scrolled (white background), show the full-color logo */
.site-header.scrolled .brand .logo-on-dark { display: none; }
.site-header.scrolled .brand .logo-on-light { display: block; }
.site-header.scrolled .brand img { height: 48px; }


.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
  font-family: var(--font-alt);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-light);
  transition: width .35s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover,
.nav-menu a.active { color: #fff; }

.nav-cta { margin-left: 8px; }

/* Scrolled state */
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
  backdrop-filter: blur(8px);
}
.site-header.scrolled .brand { color: var(--charcoal); }
.site-header.scrolled .brand small { color: var(--warm-grey); }
.site-header.scrolled .nav-menu a { color: var(--charcoal); }
.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.active { color: var(--gold-dark); }
.site-header.scrolled .menu-toggle span { background: var(--charcoal); }

/* Solid header (inner pages without hero) */
.site-header.solid {
  position: relative;
  background: var(--charcoal);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  z-index: 1100;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: all .35s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO SLIDER
   =================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.3s var(--ease);
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,19,17,.72) 0%, rgba(20,19,17,.45) 45%, rgba(20,19,17,.25) 100%);
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 7s ease forwards;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
.hero-content .container { max-width: var(--container); }
.hero-text { max-width: 720px; }
.hero-text .eyebrow { color: var(--gold-light); }
.hero-text .eyebrow::before { background: var(--gold-light); }
.hero-text h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-text p {
  color: rgba(255,255,255,.88);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-arrows {
  position: absolute;
  right: 40px; bottom: 44px;
  z-index: 4;
  display: flex; gap: 12px;
}
.hero-arrows button {
  width: 54px; height: 54px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 50%;
  transition: all .35s var(--ease);
  backdrop-filter: blur(4px);
}
.hero-arrows button:hover { background: var(--gold); border-color: var(--gold); }

.hero-dots {
  position: absolute;
  left: 50%; bottom: 44px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: 12px;
}
.hero-dots button {
  width: 36px; height: 3px;
  border: 0;
  background: rgba(255,255,255,.4);
  transition: background .35s var(--ease);
}
.hero-dots button.active { background: var(--gold-light); }

/* ===================================================================
   PAGE HEADER (inner pages)
   =================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 100px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,17,.78), rgba(20,19,17,.6));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 14px;
}
.page-hero .eyebrow { color: var(--gold-light); justify-content: center; }
.page-hero .eyebrow::before,
.page-hero .eyebrow::after { background: var(--gold-light); }
.breadcrumb {
  display: flex; justify-content: center; gap: 10px;
  font-family: var(--font-alt); font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ===================================================================
   INTRO / ABOUT BLOCK
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.img-badge {
  position: absolute;
  bottom: -30px; right: -20px;
  background: var(--gold);
  color: #fff;
  padding: 26px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}
.img-badge span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

.feature-list { display: grid; gap: 18px; margin: 28px 0; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-family: var(--font-serif);
  color: var(--text);
}
.feature-list i { color: var(--gold); margin-top: 5px; }

/* ===================================================================
   SERVICE CARDS
   =================================================================== */
.service-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .5s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.service-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.08); }
.service-icon {
  position: absolute;
  left: 22px; bottom: -26px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
}
.service-body { padding: 42px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-body p { font-size: .96rem; }
.service-link {
  margin-top: auto;
  font-family: var(--font-alt);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex; gap: 8px; align-items: center;
}
.service-link i { transition: transform .35s var(--ease); }
.service-link:hover i { transform: translateX(5px); }

/* Compact services grid (services page) */
.svc-benefits { margin: 0 0 22px; display: grid; gap: 8px; }
.svc-benefits li { font-size: .9rem; display: flex; gap: 10px; color: var(--text-muted); }
.svc-benefits i { color: var(--gold); margin-top: 4px; }

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-card {
  text-align: center;
  padding: 44px 28px;
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  transition: all .5s var(--ease);
}
.why-card:hover { background: var(--charcoal); transform: translateY(-6px); }
.why-card:hover h3, .why-card:hover p, .why-card:hover .why-icon { color: var(--cream); }
.why-card:hover .why-icon { background: var(--gold); }
.why-icon {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 50%;
  font-size: 1.7rem;
  transition: all .5s var(--ease);
}
.why-card h3 { font-size: 1.25rem; }

/* ===================================================================
   DESIGN PROCESS
   =================================================================== */
.process-step { position: relative; padding: 36px 24px; text-align: center; }
.process-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--beige-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.25rem; }
.process-step .step-icon { color: var(--gold); font-size: 1.6rem; margin-bottom: 14px; }

/* ===================================================================
   STATS COUNTER
   =================================================================== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--gold-light);
  line-height: 1;
}
.stat .label {
  font-family: var(--font-alt);
  font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-top: 10px;
}

/* ===================================================================
   PROJECTS / PORTFOLIO
   =================================================================== */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.project-card:hover img { transform: scale(1.07); }
.project-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, transparent 35%, rgba(20,19,17,.85));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay span {
  font-family: var(--font-alt);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
}
.project-overlay h3 { color: #fff; font-size: 1.4rem; margin: 0; transform: translateY(10px); transition: transform .5s var(--ease); }
.project-card:hover .project-overlay h3 { transform: translateY(0); }

/* ===================================================================
   GALLERY / MASONRY
   =================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 50px; }
.filter-btn {
  font-family: var(--font-alt);
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--beige-deep);
  border-radius: 40px;
  color: var(--text-muted);
  transition: all .35s var(--ease);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.masonry { columns: 3; column-gap: 22px; }
.masonry-item { break-inside: avoid; margin-bottom: 22px; position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.masonry-item img { width: 100%; transition: transform .8s var(--ease); }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-cap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: rgba(20,19,17,.62);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.masonry-item:hover .masonry-cap { opacity: 1; }
.masonry-cap span { color: var(--gold-light); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.masonry-cap h4 { color: #fff; margin: 8px 0 14px; }
.masonry-cap i { color: #fff; font-size: 1.4rem; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; display: grid; place-items: center; }
.is-hidden { display: none !important; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(10,9,8,.94);
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background .3s var(--ease);
}
.lightbox-close { top: 28px; right: 28px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }

/* ===================================================================
   BEFORE / AFTER
   =================================================================== */
.ba-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  user-select: none;
}
.ba-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { width: 50%; overflow: hidden; border-right: 3px solid var(--gold); }
.ba-after img { width: 920px; max-width: none; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 44px; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
}
.ba-handle::before {
  content: "\f337"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  width: 44px; height: 44px;
  background: var(--gold); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.ba-tag {
  position: absolute; bottom: 16px;
  font-family: var(--font-alt); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: rgba(20,19,17,.6); padding: 6px 14px; border-radius: 30px;
}
.ba-tag.before { right: 16px; }
.ba-tag.after { left: 16px; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-slider { position: relative; max-width: 860px; margin: 0 auto; }
.testi-slide { display: none; text-align: center; }
.testi-slide.active { display: block; animation: fadeIn .8s var(--ease); }
.testi-stars { color: var(--gold); margin-bottom: 22px; letter-spacing: 3px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 30px;
}
.bg-charcoal .testi-quote { color: var(--cream); }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testi-author img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-author strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.testi-author span { font-size: 13px; color: var(--gold-light); letter-spacing: .08em; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testi-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: var(--warm-grey-light); transition: all .3s var(--ease); }
.testi-dots button.active { background: var(--gold); transform: scale(1.25); }

/* Testimonial cards grid (testimonials page) */
.testi-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
}
.testi-card .testi-stars { margin-bottom: 16px; }
.testi-card p { font-family: var(--font-serif); font-style: italic; color: var(--text); }
.testi-card .testi-author { justify-content: flex-start; margin-top: 24px; }
.testi-card .testi-author strong { color: var(--charcoal); }
.testi-card .testi-author span { color: var(--gold-dark); }

/* ===================================================================
   CLIENT LOGOS
   =================================================================== */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px 56px; }
.logos div {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--warm-grey);
  opacity: .7;
  transition: all .35s var(--ease);
}
.logos div:hover { opacity: 1; color: var(--gold-dark); }

/* ===================================================================
   INSTAGRAM
   =================================================================== */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.insta-item:hover img { transform: scale(1.12); }
.insta-item::after {
  content: "\f16d"; font-family: "Font Awesome 6 Brands";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #fff; font-size: 1.4rem;
  background: rgba(185,151,91,.7);
  opacity: 0; transition: opacity .4s var(--ease);
}
.insta-item:hover::after { opacity: 1; }

/* ===================================================================
   BLOG
   =================================================================== */
.blog-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .5s var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.07); }
.blog-body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-family: var(--font-alt); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; display: flex; gap: 16px; }
.blog-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.blog-body p { font-size: .95rem; }

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--beige-deep); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
}
.faq-q i { color: var(--gold); transition: transform .4s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding-bottom: 26px; margin: 0; }

/* ===================================================================
   CTA STRIP
   =================================================================== */
.cta-strip {
  position: relative;
  text-align: center;
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 120px 0;
}
.cta-strip::after { content: ""; position: absolute; inset: 0; background: rgba(20,19,17,.8); }
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; font-family: var(--font-serif); font-size: 1.1rem; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.info-card { display: flex; gap: 18px; margin-bottom: 28px; }
.info-card .ic {
  flex-shrink: 0;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--cream); color: var(--gold-dark);
  border-radius: 50%; font-size: 1.2rem;
}
.info-card h4 { margin-bottom: 4px; font-size: 1.1rem; }
.info-card p { margin: 0; font-size: .96rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-alt);
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185,151,91,.15);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 13px; color: var(--text-muted); }
.form-msg { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; display: none; font-size: .95rem; }
.form-msg.success { display: block; background: #e8f3ea; color: #2f6b3c; border: 1px solid #b9dcc0; }
.form-msg.error { display: block; background: #fbeaea; color: #9a2f2f; border: 1px solid #e6bcbc; }

.map-embed { width: 100%; height: 420px; border: 0; border-radius: var(--radius); filter: grayscale(.3) contrast(1.05); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--matte-black); color: rgba(255,255,255,.7); padding: 90px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 60px; }
.footer-grid h4 { color: #fff; font-size: 1.15rem; margin-bottom: 22px; font-family: var(--font-display); }
.footer-brand .brand { color: #fff; margin-bottom: 18px; display: inline-block; }
.footer-brand p { font-size: .95rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .95rem; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .95rem; }
.footer-contact i { color: var(--gold); margin-top: 5px; }
.footer-news input {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: #fff;
}
.footer-news input::placeholder { color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ===================================================================
   FLOATING BUTTONS / SCROLL TOP
   =================================================================== */
.float-btns { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease);
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25d366; }
.float-call { background: var(--gold); }

.scroll-top {
  position: fixed; right: 24px; bottom: 100px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--charcoal); color: #fff;
  border: 0; border-radius: 50%;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all .4s var(--ease);
  z-index: 900;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

/* ===================================================================
   TEAM / TIMELINE / VALUES (about page)
   =================================================================== */
.team-card { text-align: center; }
.team-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; margin-bottom: 20px; }
.team-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .team-media img { transform: scale(1.07); }
.team-social {
  position: absolute; left: 0; right: 0; bottom: -60px;
  display: flex; justify-content: center; gap: 10px; padding: 16px;
  background: linear-gradient(transparent, rgba(20,19,17,.85));
  transition: bottom .45s var(--ease);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a { width: 38px; height: 38px; display: grid; place-items: center; background: rgba(255,255,255,.15); border-radius: 50%; color: #fff; transition: background .3s var(--ease); }
.team-social a:hover { background: var(--gold); }
.team-card h3 { margin-bottom: 4px; font-size: 1.3rem; }
.team-card .role { color: var(--gold-dark); font-family: var(--font-alt); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

.timeline { max-width: 820px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--beige-deep); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item::before { content: ""; position: absolute; left: -40px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); }
.timeline-item .year { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); margin-bottom: 6px; }
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 6px; }

.value-card { text-align: center; padding: 36px 24px; }
.value-card .v-icon { font-size: 2rem; color: var(--gold); margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; }

.award-item { display: flex; gap: 16px; align-items: center; padding: 22px; background: #fff; border: 1px solid var(--beige); border-radius: var(--radius); }
.award-item i { font-size: 1.8rem; color: var(--gold); }
.award-item h4 { margin: 0 0 2px; font-size: 1.05rem; }
.award-item span { font-size: .85rem; color: var(--text-muted); }

/* Quote / founder */
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.5;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 0 0 24px;
}
.founder-sign { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-dark); }

/* ---------- Brand logos (footer) ---------- */
.brand-footer { display: inline-flex; line-height: 0; }
.brand-footer img { display: block; height: 52px; width: auto; }

/* ---------- Page loading screen ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.page-loader img {
  width: 260px;
  max-width: 62vw;
  height: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
body.loading { overflow: hidden; }
@keyframes loaderPulse {
  0%, 100% { transform: scale(.95); opacity: .65; }
  50%      { transform: scale(1);   opacity: 1; }
}
@media (max-width: 600px) {
  .brand img { height: 46px; }
  .site-header.scrolled .brand img { height: 40px; }
}
