/* ==========================================================================
   Homz Space Interiors — Custom theme on top of Bootstrap 5
   Palette: ivory / espresso / brass
   ========================================================================== */

:root {
  --ink: #17130f;
  --ink-2: #2a231c;
  --muted: #6f6459;
  --line: #e6ded3;
  --ivory: #fbf8f4;
  --ivory-2: #f4eee6;
  --brass: #c8a24a;
  --brass-dark: #a9863a;
  --brass-soft: rgba(200, 162, 74, 0.14);
  --white: #ffffff;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px rgba(23, 19, 15, 0.06);
  --shadow-md: 0 18px 44px rgba(23, 19, 15, 0.10);
  --shadow-lg: 0 30px 70px rgba(23, 19, 15, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 78px;
}

/* --------------------------------------------------------------- Base --- */

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--ivory);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-title {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p { color: var(--muted); }

a { color: var(--brass-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brass); }

img { max-width: 100%; height: auto; }

::selection { background: var(--brass); color: #fff; }

.section { padding: clamp(64px, 8vw, 118px) 0; }
.section-tight { padding: clamp(48px, 5vw, 76px) 0; }
.bg-ivory { background: var(--ivory-2); }
.bg-ink { background: var(--ink); }
.text-brass { color: var(--brass) !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ivory-2); }
::-webkit-scrollbar-thumb { background: #cdbfa9; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brass); }

/* --------------------------------------------------------- Typography --- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}

.lead-muted { font-size: 1.06rem; color: var(--muted); max-width: 62ch; }
.mx-auto.lead-muted { margin-inline: auto; }

/* ------------------------------------------------------------ Buttons --- */

.btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  padding: .82rem 1.9rem;
  letter-spacing: .01em;
  transition: all .3s var(--ease);
  border-width: 1.5px;
}

.btn-brand {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
  box-shadow: 0 10px 26px rgba(200, 162, 74, .32);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(200, 162, 74, .40);
}

.btn-outline-ink {
  border-color: rgba(23, 19, 15, .22);
  color: var(--ink);
  background: transparent;
}
.btn-outline-ink:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-light-2 {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}
.btn-outline-light-2:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}

.btn-lg-brand { padding: 1rem 2.3rem; font-size: 1rem; }

/* Text link with arrow */
.link-arrow {
  font-weight: 600;
  font-size: .93rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.link-arrow i { transition: transform .3s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }

/* ------------------------------------------------------------- Navbar --- */

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar a { color: rgba(255, 255, 255, .8); }
.topbar a:hover { color: var(--brass); }
.topbar .sep { color: rgba(255, 255, 255, .25); }

.navbar-dm {
  --bs-navbar-padding-y: 0;
  min-height: var(--nav-h);
  background: var(--ink);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), min-height .35s var(--ease);
}
.navbar-dm .navbar-brand { display: flex; align-items: center; gap: .7rem; padding: 0; }

/* Logo — light artwork on the dark bar, darkened artwork once the bar goes solid */
.brand-logo { display: block; height:auto; width: auto; }
.navbar-dm .brand-logo--dark { display: none; }
.navbar-dm.is-solid .brand-logo--light { display: none; }
.navbar-dm.is-solid .brand-logo--dark { display: block; }

.navbar-dm .brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brass);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(200, 162, 74, .35);
}
.navbar-dm .brand-text {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  transition: color .3s var(--ease);
}
.navbar-dm .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.navbar-dm .nav-link {
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
  font-size: .95rem;
  padding: .6rem 0 !important;
  margin: 0 1rem;
  position: relative;
  transition: color .25s var(--ease);
}
.navbar-dm .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: .28rem;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width .3s var(--ease);
}
.navbar-dm .nav-link:hover::after,
.navbar-dm .nav-link.active::after { width: 100%; }
.navbar-dm .nav-link.active { color: #fff; }

.navbar-dm .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  padding: .4rem .6rem;
  color: #fff;
}
.navbar-dm .navbar-toggler:focus { box-shadow: none; }

/* Scrolled / inner-page solid state */
.navbar-dm.is-solid {
  background: rgba(251, 248, 244, .94);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 30px rgba(23, 19, 15, .08);
}
.navbar-dm.is-solid .brand-text { color: var(--ink); }
.navbar-dm.is-solid .nav-link { color: var(--ink-2); }
.navbar-dm.is-solid .nav-link:hover,
.navbar-dm.is-solid .nav-link.active { color: var(--ink); }
.navbar-dm.is-solid .navbar-toggler { border-color: rgba(23, 19, 15, .2); color: var(--ink); }
.navbar-dm.is-solid .navbar-toggler-icon { filter: invert(1) grayscale(1) brightness(.3); }

@media (max-width: 991.98px) {
  .navbar-dm .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    margin-top: .8rem;
    padding: 1rem 1.25rem 1.35rem;
    box-shadow: var(--shadow-md);
  }
  .navbar-dm .nav-link { color: var(--ink-2); margin: 0; padding: .65rem 0 !important; border-bottom: 1px solid var(--line); }
  .navbar-dm .nav-link::after { display: none; }
  .navbar-dm .nav-link.active { color: var(--brass-dark); }
  .navbar-dm .navbar-collapse .btn { width: 100%; margin-top: 1rem; }
  /* Wide wordmark — shrink it so it clears the toggler on narrow phones */
  .brand-logo { height: 34px; }
}
@media (max-width: 359.98px) {
  .brand-logo { height: 28px; }
}

/* --------------------------------------------------------------- Hero --- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 9vw, 110px);
  background: linear-gradient(115deg, #17130f 0%, #2a231c 52%, #3a2f24 100%);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .38;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,.72) 0%, rgba(23,19,15,.55) 45%, rgba(23,19,15,.86) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; max-width: 56ch; }
.hero .eyebrow { color: var(--brass); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.4rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: #fff;
  line-height: 1;
}
.hero-stats .lbl {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: .4rem;
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, .6);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-cue span.line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Inner page banner */
.page-hero {
  position: relative;
  padding: clamp(70px, 8vw, 104px) 0 clamp(58px, 6vw, 80px);
  background: linear-gradient(115deg, #17130f 0%, #2a231c 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .3;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,.78), rgba(23,19,15,.9));
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero .breadcrumb { justify-content: center; margin: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.66); font-size: .88rem; }
.page-hero .breadcrumb-item a:hover { color: var(--brass); }
.page-hero .breadcrumb-item.active { color: var(--brass); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ------------------------------------------------------------- Cards ---- */

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.75rem;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--brass-soft);
  color: var(--brass-dark);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.feature-card:hover .ico { background: var(--brass); color: #fff; transform: rotate(-6deg) scale(1.06); }
.feature-card h3 { font-size: 1.16rem; margin-bottom: .55rem; }
.feature-card p { font-size: .94rem; margin: 0; }

/* Service card with image */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-2);
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card__img img { transform: scale(1.09); }
.service-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(251, 248, 244, .93);
  color: var(--ink);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.service-card__body { padding: 1.6rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.service-card__body p { font-size: .93rem; flex: 1; }

/* --------------------------------------------------------- Work steps --- */

.process { position: relative; }
.process-line {
  position: absolute;
  top: 46px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--brass) 0 8px, transparent 8px 16px);
  opacity: .55;
}
@media (max-width: 991.98px) { .process-line { display: none; } }

.step { text-align: center; position: relative; z-index: 2; }
.step__num {
  width: 92px; height: 92px;
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brass-dark);
  font-size: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  position: relative;
}
.step__num::after {
  content: attr(data-step);
  position: absolute;
  top: -4px; right: -4px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  display: grid; place-items: center;
  transition: background .4s var(--ease);
}
.step:hover .step__num { background: var(--brass); color: #fff; border-color: var(--brass); transform: translateY(-6px); }
.step:hover .step__num::after { background: var(--brass-dark); }
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; margin: 0; }

/* ------------------------------------------------------------- About ---- */

.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-media .img-2 {
  position: absolute;
  right: -6%; bottom: -12%;
  width: 52%;
  border: 8px solid var(--ivory);
  border-radius: var(--radius-lg);
}
@media (max-width: 767.98px) { .about-media .img-2 { display: none; } }
/* Tablet: the about column is full-width here, so a -6% overhang runs past the
   viewport edge and the overlay gets clipped. Pull it back inside. */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-media .img-2 { right: -2%; }
}

.badge-exp {
  position: absolute;
  top: 24px; left: -18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.35rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-exp .n { font-family: var(--font-display); font-size: 1.9rem; color: var(--brass); line-height: 1; }
.badge-exp .t { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); }

.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .7rem;
  color: var(--ink-2);
  font-size: .97rem;
}
.tick-list li i {
  position: absolute; left: 0; top: .38rem;
  color: var(--brass);
  font-size: 1.05rem;
}

/* ------------------------------------------------------ Capabilities ---- */

.pill-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem 1.15rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .3s var(--ease);
}
.pill i { color: var(--brass); font-size: .9rem; }
.pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-3px); }
.pill:hover i { color: var(--brass); }

/* ---------------------------------------------------------- Counters ---- */

.counter-strip {
  background: linear-gradient(115deg, #17130f 0%, #2a231c 100%);
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,.20), transparent 68%);
  top: -220px; right: -140px;
}
.counter { text-align: center; position: relative; z-index: 2; }
.counter .n {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: .1rem;
}
.counter .n span.suffix { color: var(--brass); }
.counter .t {
  margin-top: .7rem;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

/* -------------------------------------------------------- Portfolio ----- */

.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  border-radius: 999px;
  padding: .55rem 1.35rem;
  font-size: .88rem;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--brass); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.gal-item { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.gal-item.is-hidden { display: none; }

.gal-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory-2);
}
.gal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gal-card:hover img { transform: scale(1.1); }
.gal-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0) 35%, rgba(23,19,15,.88) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.gal-card:hover .gal-card__overlay { opacity: 1; }
.gal-card__overlay h3 { color: #fff; font-size: 1.12rem; margin: 0; transform: translateY(12px); transition: transform .45s var(--ease); }
.gal-card__overlay p { color: var(--brass); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 .3rem; transform: translateY(12px); transition: transform .45s .05s var(--ease); }
.gal-card:hover .gal-card__overlay h3,
.gal-card:hover .gal-card__overlay p { transform: translateY(0); }
.gal-card__zoom {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; transform: scale(.7);
  transition: all .4s var(--ease);
}
.gal-card:hover .gal-card__zoom { opacity: 1; transform: scale(1); }

/* ------------------------------------------------------ Testimonials ---- */

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  height: 100%;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card .qmark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brass);
  opacity: .22;
  position: absolute;
  top: 12px; right: 22px;
}
.stars { color: var(--brass); font-size: .95rem; letter-spacing: .12em; margin-bottom: .9rem; }
.quote-card p { color: var(--ink-2); font-size: .97rem; }
.quote-author { display: flex; align-items: center; gap: .85rem; margin-top: 1.4rem; }
.quote-author .avt {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brass-soft);
  color: var(--brass-dark);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.quote-author .nm { font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.3; }
.quote-author .rl { font-size: .8rem; color: var(--muted); }

/* ------------------------------------------------------------ Brands ---- */

.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  flex: 0 0 auto;
  padding: 0 2.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #b3a795;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.marquee__item:hover { color: var(--ink); }

/* --------------------------------------------------------------- CTA ---- */

.cta-band {
  background: linear-gradient(115deg, #17130f 0%, #34291e 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,.26), transparent 70%);
  right: -120px; bottom: -180px;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }

/* ------------------------------------------------------------- Forms ---- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.form-label { font-size: .84rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .95rem;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brass-soft);
}
.form-control::placeholder { color: #a89c8d; }

.contact-tile {
  display: flex;
  gap: 1.1rem;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  height: 100%;
}
.contact-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-tile .ico {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brass-soft);
  color: var(--brass-dark);
  display: grid; place-items: center;
  font-size: 1.25rem;
}
.contact-tile h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-tile p, .contact-tile a { font-size: .93rem; margin: 0; color: var(--muted); }
.contact-tile a:hover { color: var(--brass-dark); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.35) contrast(1.05); }

/* --------------------------------------------------------- Accordion ---- */

.accordion-dm .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  background: var(--white);
}
.accordion-dm .accordion-button {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  padding: 1.15rem 1.35rem;
  box-shadow: none !important;
}
.accordion-dm .accordion-button:not(.collapsed) { color: var(--brass-dark); background: var(--ivory-2); }
.accordion-dm .accordion-button::after {
  background-image: none;
  content: "\F4FE";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  color: var(--brass-dark);
  transform: none;
  transition: transform .3s var(--ease);
  width: auto; height: auto;
}
.accordion-dm .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.accordion-dm .accordion-body { padding: 0 1.35rem 1.35rem; color: var(--muted); font-size: .96rem; }

/* ------------------------------------------------------------ Footer ---- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .66);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer p, .footer li { font-size: .93rem; color: rgba(255, 255, 255, .62); }
.footer a { color: rgba(255, 255, 255, .62); }
.footer a:hover { color: var(--brass); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .6rem; }
.footer .brand-mark { width: 44px; height: 44px; }
.footer .brand-text { color: #fff; }

.social-row { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--brass); color: #fff; transform: translateY(-4px); }

.footer-bottom {
  margin-top: 3.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .86rem;
}

/* -------------------------------------------------------- Float bar ----- */

.float-actions {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 1040;
  display: flex; flex-direction: column; gap: .65rem;
}
.float-actions a, .float-actions button {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.3rem;
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.float-actions a:hover, .float-actions button:hover { transform: scale(1.1); color: #fff; }
.fa-whatsapp-btn { background: #25d366; }
.fa-call-btn { background: var(--brass); }
.fa-top-btn { background: var(--ink); opacity: 0; pointer-events: none; }
.fa-top-btn.show { opacity: 1; pointer-events: auto; }

@media (max-width: 575.98px) {
  .float-actions a, .float-actions button { width: 46px; height: 46px; font-size: 1.15rem; }
}
/* Very narrow phones: full-size buttons sit on top of body copy and the contact
   details. Shrink them, keeping the tap target above 40px. */
@media (max-width: 400px) {
  .float-actions { right: 10px; bottom: 10px; gap: .5rem; }
  .float-actions a, .float-actions button { width: 42px; height: 42px; font-size: 1.02rem; }
}

/* ---------------------------------------------------- Reveal on scroll -- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="zoom"]  { transform: scale(.93); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- Utilities ---- */

.rounded-xl { border-radius: var(--radius-lg) !important; }
.shadow-soft { box-shadow: var(--shadow-md) !important; }
.divider-dot { color: var(--brass); }
.text-white-70 { color: rgba(255, 255, 255, .7) !important; }
.object-cover { object-fit: cover; width: 100%; height: 100%; }
.ratio-portrait { aspect-ratio: 3 / 4; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: #fff;
  padding: .7rem 1.2rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* =========================================================================
   INTRO ANIMATION — 5s brand splash, then the home banner is revealed.
   The hide is driven by CSS animation so the overlay still clears if JS
   never runs; main.js only handles the scroll lock and the skip button.
   ========================================================================= */

.intro {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 42%, #2a231c 0%, #17130f 62%);
  overflow: hidden;
  animation: introOut .75s var(--ease) 4.25s forwards;
}
.intro__glow {
  position: absolute;
  width: min(760px, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,.22) 0%, rgba(200,162,74,0) 68%);
  animation: introGlow 4.2s var(--ease) forwards;
}
.intro__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
}

.intro__mark {
  width: 82px; height: 82px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: var(--brass);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: .02em;
  box-shadow: 0 18px 44px rgba(200, 162, 74, .38);
  opacity: 0;
  transform: scale(.55) rotate(-12deg);
  animation: introMark .9s var(--ease) .15s forwards;
}

.intro__name {
  display: flex;
  gap: .38em;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 7.4vw, 3.9rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.015em;
  overflow: hidden;
}
.intro__name .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  animation: introWord .95s var(--ease) forwards;
}
.intro__name .w1 { animation-delay: .7s; }
.intro__name .w2 { animation-delay: .88s; color: var(--brass); font-style: italic; }

.intro__sub {
  margin-top: .4rem;
  font-family: var(--font-body);
  font-size: clamp(.72rem, 2.6vw, .94rem);
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  opacity: 0;
  letter-spacing: .2em;
  animation: introSub 1.1s var(--ease) 1.25s forwards;
}

.intro__logo {
  /* width: min(470px, 78vw); */
  height: auto;
  opacity: 0;
  transform: translateY(20px) scale(.94);
  animation: introLogo 1.1s var(--ease) .2s forwards;
}

.intro__rule {
  width: 0;
  height: 1px;
  margin: 1.9rem 0 1.15rem;
  background: linear-gradient(to right, transparent, var(--brass), transparent);
  animation: introRule 1s var(--ease) 1.7s forwards;
}

.intro__tag {
  font-size: clamp(.78rem, 2.4vw, .95rem);
  color: rgba(255, 255, 255, .58);
  opacity: 0;
  animation: introSub 1s var(--ease) 2.05s forwards;
}

.intro__bar {
  display: block;
  width: min(240px, 62vw);
  height: 2px;
  margin-top: 2.4rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.intro__bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brass);
  animation: introBar 3.6s var(--ease) .6s forwards;
}

.intro__skip {
  position: absolute;
  right: clamp(1rem, 4vw, 2.4rem);
  bottom: clamp(1rem, 4vw, 2.2rem);
  z-index: 3;
  background: none;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: .5rem 1.15rem;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  animation: introSub .6s var(--ease) 1.4s forwards;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.intro__skip:hover { border-color: var(--brass); color: var(--brass); }

/* JS-driven skip — collapses the splash immediately */
.intro.is-done { animation: none; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s var(--ease), visibility 0s linear .45s; }

/* Page does not scroll while the splash is up */
body.intro-lock { overflow: hidden; }

@keyframes introMark { to { opacity: 1; transform: scale(1) rotate(0deg); } }
@keyframes introLogo { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introWord { to { opacity: 1; transform: translateY(0); } }
@keyframes introSub  { to { opacity: 1; } }
@keyframes introRule { to { width: min(320px, 76vw); } }
@keyframes introBar  { to { width: 100%; } }
@keyframes introGlow { from { opacity: 0; transform: scale(.75); } to { opacity: 1; transform: scale(1); } }
@keyframes introOut  {
  to { opacity: 0; visibility: hidden; transform: scale(1.06); pointer-events: none; }
}

/* =========================================================================
   HOME BANNER ENQUIRY FORM
   ========================================================================= */

.hero-form { position: relative; padding: clamp(1.5rem, 2.4vw, 2.1rem); }
/* `.hero p` paints body copy white for the dark banner — undo that inside the
   white form card, or its helper text disappears. */
.hero .hero-form p { color: var(--muted); font-size: .92rem; max-width: none; }
.hero-form__badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--brass-soft);
  color: var(--brass-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .38rem .9rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.hero-form h2 { color: var(--ink); }
.hero .hero-form .hero-form__note { line-height: 1.6; }
.hero-form .form-label { margin-bottom: .3rem; }
.hero-form .form-control, .hero-form .form-select { padding: .68rem .9rem; }
.hero .hero-form .hero-form__foot {
  margin-top: .85rem;
  font-size: .84rem;
  text-align: center;
}
.hero-form__foot a { color: var(--brass-dark); font-weight: 600; }

/* The banner is taller with a form in it — let it grow rather than clip */
@media (min-width: 992px) {
  .hero { min-height: auto; padding-top: clamp(56px, 6vw, 82px); padding-bottom: clamp(56px, 6vw, 82px); }
}

@media (prefers-reduced-motion: reduce) {
  /* No 5s hold for anyone who asked for less motion — show the page at once */
  .intro { animation: introOut .001ms linear forwards; }
  .intro__mark, .intro__logo, .intro__name .w, .intro__sub, .intro__tag, .intro__skip { opacity: 1; transform: none; }
}
