:root {
  /* warm premium palette: bronze/champagne accent + deep navy + paper cream */
  --brand: #b8854a;           /* warm bronze — primary accent */
  --brand-2: #d4a866;         /* champagne — secondary */
  --brand-soft: rgba(184, 133, 74, 0.12);
  --brand-dark: #0c1c2c;      /* deep navy charcoal */
  --brand-darker: #050d16;    /* near-black */
  --bg: #f3ebde;              /* warm paper cream */
  --bg-soft: #ebe2d2;
  --surface: #ffffff;
  --ink: #0c1c2c;
  --ink-soft: #2a2f3a;
  --muted: #6f6c64;           /* warm gray */
  --line: rgba(12, 28, 44, 0.1);
  --line-strong: rgba(12, 28, 44, 0.18);
  --shadow-sm: 0 2px 10px rgba(12, 28, 44, 0.05);
  --shadow-md: 0 14px 36px rgba(12, 28, 44, 0.1);
  --shadow-lg: 0 28px 64px rgba(12, 28, 44, 0.16);
  --shadow-xl: 0 40px 90px rgba(12, 28, 44, 0.22);
  --shadow-brand: 0 12px 32px rgba(184, 133, 74, 0.32);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --display-sub: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* subtle paper grain across whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
}

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

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

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

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

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(184, 133, 74, 0.5);
}

/* ---------- reveal animations ---------- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left {
  transform: translateX(-32px);
}
.reveal-right {
  transform: translateX(32px);
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}
.reveal-stagger > .reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  .whatsapp-float,
  .collage-badge,
  .hero-scroll-dot,
  .hero-stat-rule {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--display-sub);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn-sm {
  padding: 9px 16px;
  font-size: 12.5px;
}
.btn-pill {
  border-radius: var(--radius-pill);
  padding: 12px 22px;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease);
}
.btn-shine:hover::after {
  left: 130%;
}

/* ---------- topbar ---------- */
.topbar {
  background: var(--brand-darker);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 51;
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-label {
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.topbar-item:hover {
  opacity: 1;
  color: var(--brand-2);
}
.topbar-item svg {
  width: 13px;
  height: 13px;
}

.social-row {
  display: flex;
  gap: 8px;
}
.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease),
    color 0.25s ease;
}
.social-icon:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.social-icon svg {
  width: 13px;
  height: 13px;
}
.social-icon-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.social-icon-sm:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}
.social-icon-sm svg {
  width: 12px;
  height: 12px;
}

/* ---------- nav ---------- */
.nav {
  background: rgba(243, 235, 222, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(243, 235, 222, 0.95);
  box-shadow: 0 6px 24px rgba(12, 28, 44, 0.08);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
  color: var(--ink);
}
.logo img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}
.logo-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
  min-width: 0;
}
.logo-copy strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: currentColor;
}
.logo-copy span {
  font-family: var(--display-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brand);
}
.logo-light {
  color: #fff;
}
.logo-light img {
  width: 70px;
  height: 70px;
}
.logo-light .logo-copy span {
  color: var(--brand-2);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  font-family: var(--display-sub);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--brand);
}
.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  width: 100%;
  left: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 130px 24px 180px;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 133, 74, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(12, 28, 44, 0.72) 0%, rgba(5, 13, 22, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: hero-in 1s var(--ease) both;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-family: var(--display-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin: 0;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brand-2);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 6.6vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 920px;
}
.hero-title em {
  font-style: normal;
  color: var(--brand-2);
  font-weight: 800;
}
.hero-title span {
  color: var(--brand-2);
  font-weight: 800;
}
.hero-sub {
  max-width: 580px;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.88;
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hero-cta .btn-primary {
  background: var(--brand);
}
.hero-cta .btn-primary:hover {
  background: var(--brand-2);
  color: var(--ink);
}
.hero-cta .btn {
  padding: 15px 26px;
  font-size: 14px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  flex-wrap: wrap;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--brand-2);
}
.stars svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 6px rgba(212, 168, 102, 0.5));
}
.hero-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--brand-2);
}

/* hero stat ticker (built-in) */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(5, 13, 22, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(184, 133, 74, 0.2);
  z-index: 2;
}
.hero-stat {
  padding: 22px 24px;
  color: #fff;
  position: relative;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-2);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.hero-stat-label {
  margin: 6px 0 0;
  font-family: var(--display-sub);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.hero-scroll:hover {
  color: var(--brand-2);
  transform: translate(-50%, 4px);
}
.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--brand-2);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ---------- shared section bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display-sub);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--brand);
  margin: 0;
  text-transform: uppercase;
}
.eyebrow.center {
  display: flex;
  justify-content: center;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(184, 133, 74, 0.18);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 16px 0 0;
  color: var(--ink);
}
.section-title.center {
  text-align: center;
}
.section-title span {
  color: var(--brand);
  font-weight: 800;
}
.section-lead {
  font-size: 15.5px;
  color: var(--muted);
  margin: 22px 0 0;
  line-height: 1.75;
  max-width: 580px;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.light {
  color: #fff;
}
.section-head.light .section-title {
  color: #fff;
}
.section-head.light .section-title span {
  color: var(--brand-2);
}
.section-head.light .eyebrow {
  color: var(--brand-2);
  opacity: 1;
}
.dot-row {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  align-items: center;
}
.dot-row span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(184, 133, 74, 0.35);
}
.dot-row span:nth-child(2) {
  background: var(--brand);
  width: 44px;
}

/* ---------- features ---------- */
.features {
  margin-top: -90px;
  position: relative;
  z-index: 3;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 133, 74, 0.3);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--brand-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease, transform 0.4s var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}
.feature-text {
  position: relative;
  flex: 1;
}
.feature-text h3 {
  margin: 4px 0 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.feature-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- stats strip ---------- */
.stats {
  padding: 100px 0 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 32px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.stats-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 4.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
}
.stat p {
  margin: 10px 0 0;
  font-family: var(--display-sub);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- about ---------- */
.about {
  padding: 130px 0;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 6%;
  right: -180px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(184, 133, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
}
.about-collage {
  position: relative;
  height: 460px;
}
.collage-top {
  position: absolute;
  top: 10px;
  left: 0;
  width: 170px;
  height: 158px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-soft) 0%, transparent 100%);
}
.collage-main {
  position: absolute;
  top: 36px;
  left: 22px;
  width: 300px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.6s var(--ease);
}
.collage-main:hover {
  transform: translateY(-6px);
}
.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.85);
}
.collage-main:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}
.collage-side {
  position: absolute;
  top: 160px;
  left: 250px;
  width: 180px;
  height: 280px;
  border-radius: var(--radius-lg);
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #d9d9d9;
  transition: transform 0.6s var(--ease);
}
.collage-side:hover {
  transform: translateY(-4px) rotate(1deg);
}
.collage-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-badge {
  position: absolute;
  top: 18px;
  left: 240px;
  background: var(--ink);
  color: var(--brand-2);
  border-radius: 20px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(184, 133, 74, 0.3);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--brand-2);
}
.badge-text {
  display: flex;
  flex-direction: column;
  font-family: var(--display-sub);
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-text strong {
  font-weight: 600;
  color: #fff;
}
.badge-text em {
  font-style: normal;
  opacity: 0.7;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-text .btn {
  align-self: flex-start;
}
.about-points {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.about-points::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.about-points hr {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 0;
}
.about-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.point-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.about-point:hover .point-icon {
  background: var(--brand);
  color: #fff;
}
.point-icon svg {
  width: 22px;
  height: 22px;
}
.about-point h4 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.about-point p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- services ---------- */
.services {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line-strong) 50%,
    transparent 100%
  );
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  border-color: rgba(184, 133, 74, 0.25);
}
.service-image {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 28, 44, 0.05) 30%, rgba(12, 28, 44, 0.55) 100%);
  transition: opacity 0.3s ease;
}
.service-card:hover .service-image::before {
  opacity: 0.7;
}
.service-icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-md);
}
.service-card:hover .service-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.service-icon svg {
  width: 20px;
  height: 20px;
}
.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: var(--display-sub);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.service-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 6px 12px 16px;
}
.service-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.service-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
.service-body .btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 16px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.service-body .btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* before/after slider */
.before-after {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  user-select: none;
  cursor: ew-resize;
  background: #222;
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-img.ba-after {
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.ba-handle::before {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}
.ba-label {
  position: absolute;
  top: 12px;
  font-family: var(--display-sub);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  z-index: 4;
}
.ba-label-before {
  left: 12px;
}
.ba-label-after {
  right: 12px;
  background: rgba(184, 133, 74, 0.85);
}

/* ---------- gallery ---------- */
.gallery {
  padding: 120px 0;
}
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: var(--radius-pill);
  font-family: var(--display-sub);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
}
.gallery-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.gallery-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gallery-item {
  height: 220px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-color: #d9d9d9;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    opacity 0.4s var(--ease), filter 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item.gallery-tall {
  height: 458px;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(12, 28, 44, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item::before {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px) scale(0.9);
  transition: all 0.35s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-item.is-hidden {
  opacity: 0.2;
  filter: grayscale(1);
  transform: scale(0.96);
  pointer-events: none;
}

/* ---------- trust marquee (insurance pills) ---------- */
.trust {
  padding: 72px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-family: var(--display-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 36px;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.marquee-track {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  padding-right: 18px;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-pill {
  flex-shrink: 0;
  height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.marquee-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.marquee-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--brand-2);
  transform: translateY(-2px);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- banner ---------- */
.banner {
  position: relative;
  padding: 120px 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(184, 133, 74, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(12, 28, 44, 0.92) 0%, rgba(5, 13, 22, 0.96) 100%);
}
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.banner-eyebrow {
  font-family: var(--display-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--brand-2);
  text-transform: uppercase;
  margin: 0;
}
.banner h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 48px);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.banner h2 span,
.banner h2 em {
  font-style: normal;
  color: var(--brand-2);
  font-weight: 800;
}
.banner p {
  margin: 0;
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
}
.banner .btn {
  background: var(--brand-2);
  color: var(--ink);
  font-size: 15px;
  padding: 16px 30px;
  font-weight: 600;
  font-family: var(--display-sub);
}
.banner .btn:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ---------- faq ---------- */
.faq {
  padding: 120px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 90px;
  align-items: center;
}
.faq-collage {
  position: relative;
  height: 460px;
}
.faq-collage .collage-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-soft) 0%, transparent 100%);
}
.faq-collage .collage-main {
  position: absolute;
  top: 0;
  left: 91px;
  width: 240px;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-collage .collage-side {
  position: absolute;
  top: 0;
  left: 350px;
  width: 80px;
  height: 460px;
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--brand) 0%, var(--ink) 100%);
  opacity: 0.85;
}
.faq-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(184, 133, 74, 0.14);
  background: var(--surface);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.faq-item[open] .q-icon {
  background: var(--brand);
  color: #fff;
}
.q-text {
  flex: 1;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.q-arrow {
  color: var(--muted);
  display: flex;
  transition: transform 0.35s var(--ease), color 0.25s;
}
.q-arrow svg {
  width: 18px;
  height: 18px;
}
.faq-item[open] .q-arrow {
  transform: rotate(180deg);
  color: var(--brand);
}
.faq-item p {
  margin: 16px 0 4px 48px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- testimonials ---------- */
.testimonials {
  padding: 130px 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(184, 133, 74, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(212, 168, 102, 0.1) 0%, transparent 45%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-darker) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.4s var(--ease), background 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 26px;
  font-size: 64px;
  line-height: 1;
  color: rgba(184, 133, 74, 0.4);
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 133, 74, 0.4);
}
.t-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-head h5 {
  margin: 0 0 2px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.t-head span {
  font-family: var(--display-sub);
  font-size: 11px;
  opacity: 0.55;
  letter-spacing: 0.08em;
}
.testimonial-card p {
  margin: 0 0 16px;
  font-size: 14.5px;
  opacity: 0.92;
  line-height: 1.75;
}
.testimonial-card a {
  color: var(--brand-2);
  font-family: var(--display-sub);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card a::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.testimonial-card a:hover {
  color: #fff;
}
.testimonial-card a:hover::after {
  transform: translateX(4px);
}

/* ---------- blog ---------- */
.blog {
  padding: 120px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 133, 74, 0.25);
}
.blog-image {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-image {
  transform: scale(1.04);
}
.blog-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: var(--display-sub);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.blog-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.2s;
}
.blog-card:hover .blog-body h3 {
  color: var(--brand);
}
.blog-meta {
  display: flex;
  gap: 20px;
  font-family: var(--display-sub);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-meta svg {
  width: 13px;
  height: 13px;
}
.blog-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
.blog-body .btn {
  align-self: flex-start;
  margin-top: 6px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 9px 16px;
}
.blog-body .btn:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- footer ---------- */
.footer {
  background: var(--brand-darker);
  color: #fff;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 133, 74, 0.2);
}
.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(184, 133, 74, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 70px;
  position: relative;
}
.footer-col h5 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-family: var(--display-sub);
  font-size: 13.5px;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s, padding-left 0.25s var(--ease);
}
.footer-col a:hover {
  opacity: 1;
  color: var(--brand-2);
  padding-left: 6px;
}
.footer-brand p {
  font-size: 14px;
  opacity: 0.75;
  margin: 18px 0 24px;
  line-height: 1.7;
}
.footer-brand .logo {
  margin-bottom: 2px;
  opacity: 1;
}
.footer-brand .logo:hover {
  padding-left: 0;
}
.footer-contact p {
  font-size: 13.5px;
  opacity: 0.78;
  line-height: 1.75;
  margin: 0 0 22px;
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.1);
}
.newsletter .btn {
  align-self: flex-start;
  background: var(--brand);
}
.newsletter .btn:hover {
  background: var(--brand-2);
  color: var(--ink);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  position: relative;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  margin: 0;
  font-family: var(--display-sub);
  font-size: 11.5px;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

/* ---------- scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand-2);
  border: 1px solid rgba(184, 133, 74, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.25s, color 0.25s;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--brand);
  color: #fff;
}
.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* ---------- whatsapp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.25s var(--ease);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- responsive ---------- */

/* tablet — keep 2-col grids for cards before fully collapsing */
@media (max-width: 1100px) {
  .nav-inner,
  .topbar-inner {
    padding: 0 20px;
  }
  .nav-menu {
    gap: 22px;
  }
  .about-grid {
    gap: 56px;
  }
  .faq-grid {
    gap: 56px;
  }
}

@media (max-width: 1080px) {
  .topbar-left {
    display: none;
  }
  .topbar-right {
    flex: 1;
    justify-content: space-between;
    gap: 10px;
  }
  .topbar-item span {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
  .nav-inner {
    height: 70px;
  }
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(243, 235, 222, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }

  /* tablet 2-col cards */
  .feature-grid,
  .services-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .gallery-col:nth-child(3) {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .stat:nth-child(odd):not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: -12px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-stat {
    padding: 18px 10px;
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  /* rebuild about collage as a clean two-image layout */
  .about-collage {
    height: auto;
    max-width: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
  }
  .about-collage .collage-top {
    display: none;
  }
  .about-collage .collage-main {
    position: static;
    width: 100%;
    height: clamp(280px, 48vw, 380px);
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .about-collage .collage-side {
    position: static;
    width: 100%;
    height: clamp(180px, 32vw, 240px);
    border: none;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }
  .about-collage .collage-badge {
    position: static;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    margin-top: 4px;
  }

  /* rebuild faq collage similarly (single image, hide decorative columns) */
  .faq-collage {
    height: auto;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
  }
  .faq-collage .collage-top,
  .faq-collage .collage-side {
    display: none;
  }
  .faq-collage .collage-main {
    position: static;
    width: 100%;
    height: clamp(280px, 48vw, 380px);
  }

  .hero {
    padding: 100px 24px 200px;
    min-height: 640px;
  }
  .hero-scroll {
    display: none;
  }
  .features {
    margin-top: -70px;
  }

  .hero-meta {
    gap: 14px;
  }
  .hero-divider {
    display: none;
  }

  /* tighten section spacing */
  .stats,
  .about,
  .services,
  .gallery,
  .faq,
  .testimonials,
  .blog {
    padding: 96px 0;
  }
  .section-head {
    margin-bottom: 48px;
  }
}

@media (max-width: 720px) {
  /* collapse cards to single column on phones */
  .feature-grid,
  .services-grid,
  .testimonial-grid,
  .blog-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .gallery-col:nth-child(3) {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 12px;
  }
  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-stat:nth-child(even) {
    border-right: none;
  }
  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 600px) {
  .topbar {
    display: none;
  }
  .container {
    padding: 0 18px;
  }
  .nav-inner {
    padding: 0 18px;
  }
  .logo {
    gap: 10px;
  }
  .logo img {
    width: 52px;
    height: 52px;
  }
  .logo-copy strong {
    font-size: 19px;
  }
  .logo-copy span {
    font-size: 9px;
    letter-spacing: 0.22em;
  }
  .nav-actions {
    display: none;
  }

  .hero {
    padding: 80px 20px 200px;
    min-height: 560px;
  }
  .hero-content {
    gap: 20px;
  }
  .hero-title {
    font-size: clamp(36px, 10.5vw, 52px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-cta .btn {
    padding: 13px 22px;
    font-size: 13.5px;
  }
  .hero-meta {
    padding-top: 22px;
    margin-top: 12px;
  }

  .stats,
  .about,
  .services,
  .gallery,
  .faq,
  .testimonials,
  .blog {
    padding: 72px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }

  /* mobile collage: stack image then badge below */
  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-width: 420px;
    gap: 14px;
  }
  .about-collage .collage-main {
    grid-column: 1;
    grid-row: 1;
    height: clamp(240px, 70vw, 340px);
  }
  .about-collage .collage-side {
    display: none;
  }
  .about-collage .collage-badge {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }
  .faq-collage {
    max-width: 420px;
  }
  .faq-collage .collage-main {
    height: clamp(240px, 70vw, 340px);
  }

  .banner {
    background-attachment: scroll;
    padding: 80px 20px;
  }
  .banner h2 {
    font-size: clamp(28px, 7.5vw, 38px);
  }
  .banner p {
    font-size: 15px;
  }
  .banner .btn {
    padding: 14px 22px;
    font-size: 14px;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 78px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .feature-card {
    padding: 22px;
    gap: 14px;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
  }
  .stats-grid {
    padding: 32px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }
  .blog-body {
    padding: 22px;
  }
  .faq-item {
    padding: 16px 18px;
  }
  .faq-item summary {
    gap: 12px;
  }
  .q-text {
    font-size: 14px;
  }
  .faq-item p {
    margin: 14px 0 4px 44px;
    font-size: 13.5px;
  }

  .footer {
    padding-top: 72px;
  }
  .footer-grid {
    gap: 36px;
    padding-bottom: 56px;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .gallery-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
  .gallery-item,
  .blog-image,
  .service-image,
  .before-after {
    height: 200px;
  }
  .gallery-item.gallery-tall {
    height: 360px;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 16px;
  }
  .nav-inner {
    padding: 0 16px;
    height: 64px;
  }
  .nav-menu {
    top: 64px;
  }
  .logo img {
    width: 46px;
    height: 46px;
  }
  .logo-copy strong {
    font-size: 17px;
  }
  .logo-copy span {
    font-size: 8.5px;
  }
  .hero {
    padding: 70px 16px 200px;
  }
  .hero-title {
    font-size: clamp(32px, 10vw, 44px);
  }
  .hero-cta {
    gap: 10px;
  }
  .hero-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .hero-stat-num {
    font-size: 24px;
  }
  .hero-stat-label {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }
  .section-title {
    font-size: clamp(28px, 8vw, 36px);
  }
}
