/* =========================================================
   Balu Decorators — stylesheet
   Palette: maroon + gold, drawn from the brand monogram
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Cormorant:ital,wght@0,300;0,400;0,500;1,300&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --maroon-deep: #2b0808;
  --maroon: #3d0c0c;
  --maroon-light: #5a1414;
  --maroon-mid: #4a1010;
  --gold-bright: #f4e2a8;
  --gold: #d9b25c;
  --gold-deep: #a9782f;
  --cream: #f3e6c9;
  --ink: #1b0606;
  --line: rgba(217, 178, 92, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 2px;
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--maroon-deep);
  color: var(--cream);
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}

@media (min-width:1300px) {
  .container {
    padding: 0 24px;
  }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--gold-bright);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 {
  font-style: italic;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: 0.01em;
}

h2 {
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 500;
  font-style: normal;
  color: var(--gold-bright);
}

p {
  margin: 0 0 1em;
}

.lede {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 640px;
}

.muted {
  opacity: 0.75;
  font-size: 1.5rem
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 26px;
}

.divider.center {
  justify-content: center;
}

.divider .line {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider svg {
  width: 13px;
  height: 13px;
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .2s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-1px);
}

.btn.solid {
  background: var(--gold);
  color: var(--maroon-deep);
}

.btn.solid:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn.ghost {
  border-color: rgba(243, 230, 201, 0.4);
  color: var(--cream);
}

.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: transparent;
}

.btn svg {
  width: 14px;
  height: 14px;
}

/* ---------- Ring / emblem elements ---------- */
.ring-badge {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.ring-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.ring-badge span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  /* Must stay above the mobile menu panel/overlay (and the floating
     WhatsApp/back-to-top buttons) so the menu button itself is always
     visible and tappable — including to close the menu again. */
  z-index: 200;
  background: rgba(43, 8, 8, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

.brand-text small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  padding: 20px 0;
  background: rgba(43, 8, 8, 0.55);
  border-bottom: 1px solid var(--line);
}

@supports not (gap:1px) {
  .nav-links li+li {
    margin-left: 46px;
  }

  /* fallback for older engines without flex gap support */
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.82;
  position: relative;
  padding: 6px 0;
  transition: opacity .25s ease, color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-call {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-call svg {
  width: 14px;
  height: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  background: var(--gold-bright);
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}

@media (max-width:980px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 340px;
    background: #d9b25c;
    border-left: 1px solid var(--gold-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .4s ease;
    /* Above the dimmed overlay and the floating WhatsApp/back-to-top
       buttons, but below .site-header (200) so the toggle button stays
       reachable to close the menu. */
    z-index: 180;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.35);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  /* Gold panel needs dark text/dividers for contrast — override the
     light cream/gold colours used for the dark desktop nav bar. */
  .nav-links a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(43, 8, 8, 0.3);
    color: var(--maroon-deep);
    opacity: 1;
  }

  .nav-links a::after {
    background: var(--maroon-deep);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--maroon-deep);
    opacity: 1;
    font-weight: 600;
  }

  .nav-call {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 210;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 170;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Keep the floating WhatsApp/back-to-top buttons from sitting on top
     of (or peeking out from behind) the open mobile menu. */
  body.nav-open .wa-float,
  body.nav-open .to-top {
    display: none;
  }
}

/* On phones the fixed 100px logo + brand text + "Let's Talk" button + menu
   icon don't all fit on one row — the button was getting squeezed off or
   wrapping. Stack the header into two rows instead: the logo sits centred
   on its own row on top, and the CTA button + menu icon share the row
   below it — so the logo stays visible and the button always fits. */
@media (max-width:640px) {
  .nav-row {
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 12px 0;
  }

  .brand {
    order: 1;
    flex: 1 0 100%;
    justify-content: center;
    gap: 10px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand-text {
    font-size: 1.3rem;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    display: none;
  }

  .nav-cta {
    order: 2;
    flex: 1 1 auto;
    gap: 10px;
  }

  .nav-cta .btn.solid {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    order: 3;
  }
}

@media (max-width:400px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .nav-cta .btn.solid {
    padding: 9px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* ---------- Hero ---------- */
/*=========================================
HERO
=========================================*/

.hero {

  position: relative;

  background: linear-gradient(rgba(22, 10, 10, .88),
      rgba(22, 10, 10, .88)),
    url("../images/hero-bg.jpg") center/cover;

  padding: 120px 0;

  overflow: hidden;

}

.hero-wrapper {

  display: grid;

  grid-template-columns: 320px 1fr 320px;

  align-items: center;

  /* gap: 60px; */

}

.hero-content {

  text-align: center;

  max-width: 700px;

  margin: auto;

}

.hero-content h1 {

  margin: 20px 0;

}

.hero-content .lede {

  font-size: 1.2rem;

  margin: 25px auto 40px;

  max-width: 620px;

}

.hero-actions {

  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;

}

.hero-image {

  display: flex;

  justify-content: center;

}

.hero-image img {

  width: 100%;

  max-width: 320px;

  border-radius: 20px;

  object-fit: cover;

  transition: .4s;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .35);

}

.hero-image img:hover {

  transform: translateY(-8px);

}

.hero-left {

  justify-content: flex-start;

}

.hero-right {

  justify-content: flex-end;

}

/* Tablet */

@media(max-width:992px) {

  .hero-wrapper {

    grid-template-columns: 1fr;

    text-align: center;

  }

  .hero-left,

  .hero-right {

    justify-content: center;

  }

  .hero-image img {

    max-width: 260px;

  }

  .hero-content {

    order: -1;

  }

}

/* Mobile */

@media(max-width:768px) {

  .hero {

    padding: 90px 0;

  }

  .hero-image {

    display: none;

  }

  .hero-content h1 {

    font-size: 2.4rem;

  }

  .hero-content .lede {

    font-size: 1rem;

  }

}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  position: relative;
  padding: 200px 0 90px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 8, 8, 0.55), var(--maroon-deep) 92%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 14px;
}

.breadcrumb a {
  color: var(--cream);
  opacity: 0.7;
}

.breadcrumb a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

/* ---------- Sections ---------- */
section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin: 0 0 50px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alt-bg {
  background: var(--maroon);
}

.deep-bg {
  background: var(--maroon-deep);
}

/* ---------- About preview / split ---------- */
/*==========================================
  SPLIT SECTION
==========================================*/

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.split-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform .5s ease;
}

.split:hover .split-media img {
  transform: scale(1.04);
}

/* Decorative Ring */

.split-media .ring-decor {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 95px;
  height: 95px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: .5;
}

/* Text */

.split>div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split h2 {
  margin: 10px 0 18px;
}

.split .lede {
  margin-bottom: 30px;
  line-height: 1.8;
}

.split .btn {
  width: fit-content;
}

/*==========================================
 Responsive
==========================================*/

@media (max-width:992px) {

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media img {
    height: 420px;
  }
}

@media (max-width:768px) {

  .split-media img {
    height: 300px;
  }

  .split {
    gap: 30px;
    margin-bottom: 70px;
  }

  .split h2 {
    font-size: 2rem;
  }

  .split .lede {
    margin-bottom: 22px;
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
  margin-top: 60px;
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.7rem;
  color: var(--gold-bright);
}

.stat .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 6px;
}

@media (max-width:760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
}

.service-card {
  position: relative;
  background: var(--maroon-deep);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 8, 8, 0) 30%, rgba(20, 4, 4, 0.92) 100%);
  z-index: 1;
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: 26px 22px;
  width: 100%;
}

.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.85;
}

.service-card h3 {
  margin: 8px 0 6px;
}

.service-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.process-step {
  padding: 34px 26px;
  border: 1px solid var(--line);
  position: relative;
}

.process-step .step-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.85;
}

.process-step h3 {
  margin-top: 10px;
}

@media (max-width:980px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .process {
    grid-template-columns: 1fr;
  }
}

/* ---------- Gallery ---------- */
.view-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.view-tab {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  letter-spacing: 0.03em;
  padding: 10px 6px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--cream);
  opacity: 0.55;
  cursor: pointer;
  transition: all .25s ease;
}

.view-tab:hover {
  opacity: 0.85;
}

.view-tab.active {
  opacity: 1;
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.portfolio-view {
  display: none;
}

.portfolio-view.active {
  display: block;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  color: var(--cream);
  opacity: 0.8;
  background: transparent;
  transition: all .25s ease;
}

.filter-btn:hover {
  opacity: 1;
  border-color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
  opacity: 1;
}

/* Pinterest-style masonry: CSS columns let each photo keep its natural
   aspect ratio and stack into a waterfall of varying-height cards instead
   of a uniform cropped grid. */
.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.42);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .55s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 4, 4, 0.78);
  backdrop-filter: blur(2px);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover .tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.hide {
  display: none;
}

@media (max-width:980px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width:640px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 12px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 3, 3, 0.94);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6vh 4vw;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border: 1px solid var(--line);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 20px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  background: transparent;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.testimonial {
  border: 1px solid var(--line);
  padding: 34px 30px;
}

.testimonial .stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial p {
  font-style: italic;
  opacity: 0.92;
  font-size: 1.35rem
}

.testimonial-who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.testimonial-who .name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

.testimonial-who .role {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

@media (max-width:900px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(43, 8, 8, 0.4), rgba(43, 8, 8, 0.85)), url('../images/hero-bg.jpg') center/cover;
}

.cta-band h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.info-list {
  margin-top: 30px;
}

.info-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.info-item .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.info-item .icon svg {
  width: 17px;
  height: 17px;
}

.info-item h4 {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-item p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.35rem
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: 'Cormorant', serif;
  font-size: 1.10rem;
  padding: 10px 2px;
  outline: none;
  transition: border-color .25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field select option {
  background: var(--maroon-deep);
  color: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width:600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  opacity: 0.55;
  margin-top: 10px;
}

.form-success {
  display: none;
  border: 1px solid var(--gold);
  padding: 16px 18px;
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.form-success.show {
  display: block;
}

.map-wrap {
  border: 1px solid var(--line);
  filter: grayscale(0.3) sepia(0.25) saturate(1.4);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.footer-brand p {
  opacity: 0.75;
  font-size: 1.125rem;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  opacity: 0.78;
  font-size: 1.125rem;
  transition: opacity .2s ease, color .2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-bright);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: border-color .25s ease, color .25s ease;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

.footer-bottom .credit-link {
  opacity: 1;
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .25s ease;
}

.footer-bottom .credit-link:hover {
  color: var(--gold);
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  opacity: 0.78;
  transition: all 0.3s ease;
}

.footer-col ul li a i {
  font-size: 16px;
  color: var(--gold);
  min-width: 16px;
}

.footer-col ul li a:hover {
  color: var(--gold-bright);
  opacity: 1;
  transform: translateX(5px);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 150;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  background: rgba(43, 8, 8, 0.7);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---------- Misc pages ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
}

@media (max-width:900px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width:900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.faq-q .plus {
  font-size: 20px;
  color: var(--gold);
  transition: transform .3s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding-top: 14px;
  opacity: 0.85;
}

/*=========================================
TOP BAR
=========================================*/

.top-bar {

  background: var(--gold-deep);

  color: #fff;

  border-bottom: 1px solid rgba(255, 255, 255, .08);

  font-size: 1rem;
  font-weight: 700;

}

.topbar-wrapper {

  display: flex;

  justify-content: space-between;

  align-items: center;

  /* padding:10px 0; */

  flex-wrap: wrap;

  gap: 15px;

}

.topbar-left,

.topbar-right {

  display: flex;

  align-items: center;

  gap: 18px;

}

.topbar-left a,

.topbar-right span {

  color: black;

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: .3s;

}

.topbar-left a:hover {

  color: var(--gold);

}

.divider {

  width: 1px;

  height: 18px;

  background: rgba(255, 255, 255, .2);

}

.social-icons {

  display: flex;

  gap: 10px;

}

.social-icons a {

  width: 34px;

  height: 34px;

  border: 1px solid rgba(255, 255, 255, .15);

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  color: black;

  transition: .3s;

}

.social-icons a:hover {

  background: var(--gold);

  color: #111;

  border-color: var(--gold);

}

@media(max-width:768px) {

  .top-bar {

    display: none;

  }

}