/* ═══════════════════════════════════════════════════════════
   Shri Neelkanth Kitchenwares — Single Page Website Styles
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Monochrome palette. --navy is kept as the variable name for the dark tone. */
  --navy: #0c243c;        /* logo navy: dark tone everywhere */
  --navy-2: #143253;
  --navy-3: #081a2c;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #f5f5f5;
  --white: #ffffff;
  /* Logo gold (slightly lighter) — accents across the site: icons, tags, active states, CTAs */
  --gold: #bf6f3b;        /* logo copper: fills, icons, buttons */
  --gold-2: #d38a4a;      /* lighter copper: hovers, highlights on navy */
  --gold-soft: #f8ece2;   /* light copper tint for tags / chips */
  --gold-text: #9a5526;   /* dark copper: readable text on white */
  --soft: #f0f0f0;
  --steel: #9a9a9a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.16);
  --container: 1200px;
  --cutout-bg: radial-gradient(
    90% 90% at 50% 35%,
    #ffffff 0%,
    #f4f4f4 70%,
    #ebebeb 100%
  );
  --font-head: "Inter", system-ui, sans-serif;
  --font-display:
    "Montserrat", "Inter", system-ui, sans-serif; /* big headings, max 24px */
  --font-body: "Inter", system-ui, sans-serif;
}

/* ─── Reset & base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
section[id],
footer[id] {
  scroll-margin-top: 88px;
}

.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}
.section {
  padding: 64px 0;
}
.section-head {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  margin: 10px 0 10px;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.text-gold {
  color: var(--gold-2);
}

/* ─── Scroll reveal (kept early so component rules override it) ─── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1;
  border: 2px solid transparent;
  white-space: nowrap;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-2);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-2);
}
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover {
  background: #ededed;
}
.btn-sm {
  padding: 9px 15px;
  font-size: 0.8rem;
}

/* ─── Top bar ─── */
.topbar {
  background: var(--navy-3);
  color: #9a9a9a;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar svg {
  width: 14px;
  height: 14px;
  color: #8a8a8a;
}
.topbar .sep {
  margin: 0 8px;
  color: #555;
}
.topbar a:hover {
  color: #fff;
}
@media (max-width: 640px) {
  .topbar .right,
  .topbar .phone2 {
    display: none;
  }
}

@media (max-height: 640px) {
  .topbar {
    display: none;
  }
  .hero {
    --bars: 87px;
  }
}

/* ─── Header / nav ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 0; /* breathing room above/below the logo */
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.1;
}
.brand-logo {
  height: 66px;
  width: auto;
  display: block;
}
.brand-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1c1c1c;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 12px;
  font-weight: 500;
  font-size: 0.93rem;
  color: #5a5a5a;
  transition: color 0.2s;
}
.nav a:hover,
.nav a.active {
  color: var(--navy);
}
.nav a.active {
  font-weight: 600;
}
.nav-top {
  display: none;
}
.nav .nav-mobile-cta {
  display: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-backdrop {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 22px 24px;
    gap: 2px;
    z-index: 99;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }
  .nav.open {
    transform: none;
  }
  .nav a {
    font-size: 1.02rem;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-of-type {
    border-bottom: 0;
  }
  .nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav a.nav-brand {
    padding: 0;
    border: 0;
  }
  .nav-brand img {
    height: 56px;
    width: auto;
  }
  .nav-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--navy);
    flex-shrink: 0;
  }
  .nav-close svg {
    width: 18px;
    height: 18px;
  }
  .nav .nav-mobile-cta {
    display: inline-flex;
    margin-top: 18px;
    justify-content: center;
    border-bottom: 0;
  }
  .nav .nav-mobile-cta:hover {
    background: var(--gold-2);
    color: var(--navy);
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 101;
  }
  .hamburger.open {
    opacity: 0;
    pointer-events: none;
  }
  /* phone: let the logo use the space up to the menu button */
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .brand-logo {
    height: 56px;
    width: auto;
  }
  .nav-actions .btn {
    display: none;
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  padding: clamp(24px, 5vh, 64px) 0 0;
  display: flex;
  flex-direction: column;
  --bars: 123px; /* top bar + header */
  min-height: calc(100vh - var(--bars));
  min-height: calc(100svh - var(--bars));
  background:
    radial-gradient(
      900px 500px at 85% -10%,
      rgba(191, 111, 59, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(0, 0, 0, 0.035),
      transparent 60%
    ),
    #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 20%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-block: auto;
}
.hero h1 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  margin: 12px 0 12px;
  color: var(--navy);
}
.hero .text-gold {
  color: var(--gold);
}
.hero-content > p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.7vh, 1.06rem);
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: clamp(16px, 2.6vh, 28px) 0;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-badges svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: calc(58vh * 4 / 3);
  margin-left: auto;
}
/* hero photo */
.hero-img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.float-card .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.float-card .ic svg {
  width: 20px;
  height: 20px;
}
.float-card small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.float-card strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.float-1 {
  top: 26px;
  left: -28px;
}
.float-2 {
  bottom: 32px;
  right: -24px;
  animation-delay: -2.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stats {
  position: relative;
  margin-top: clamp(18px, 4vh, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #fff;
  border-radius: 20px 20px 0 0;
}
.stats div {
  padding: clamp(12px, 2.2vh, 24px) 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stats div:last-child {
  border-right: 0;
}
.stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vh, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}
.stats span {
  color: #b8b8b8;
  font-size: 0.86rem;
}

@media (max-width: 991px) {
  .hero {
    min-height: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    max-width: min(520px, 100%);
    margin: 0 auto;
  }
  .float-1 {
    left: 10px;
  }
  .float-2 {
    right: 10px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }
  .stats div:nth-child(2) {
    border-right: 0;
  }
  .stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 480px) {
  .float-card {
    padding: 10px 12px;
  }
  .float-card .ic {
    width: 36px;
    height: 36px;
  }
  .stats strong {
    font-size: 1.6rem;
  }
}

/* ─── Products ─── */
.products {
  background: #fff;
}
.filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--muted);
  transition: 0.2s;
}
.filter button:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.filter .count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.72rem;
}
.filter button.active .count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.product-group {
  margin-top: 40px;
}
.product-group.hide {
  display: none;
}
.group-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--navy);
}
.group-head h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.group-head p {
  color: var(--muted);
  font-size: 0.93rem;
  max-width: 760px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s,
    opacity 0.7s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pcard.open {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: none;
}
.pcard-img {
  position: relative;
  aspect-ratio: 1;
  margin: 12px 12px 0;
  border-radius: 10px;
  background: var(--cutout-bg);
  padding: 14px;
  cursor: zoom-in;
  overflow: hidden;
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s;
}
.pcard-img:hover img {
  transform: scale(1.05);
}
.pcard-img .zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
  opacity: 0;
  transition: 0.25s;
}
.pcard-img .zoom svg {
  width: 13px;
  height: 13px;
}
.pcard-img:hover .zoom {
  opacity: 1;
}
.pcard-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px 14px;
}
.badge {
  display: inline-block;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.pcard-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pcard-price {
  margin-top: 4px;
}
.pcard-price strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.pcard-price strong.on-request {
  font-size: 0.8rem;
  color: var(--muted);
}
.pcard-price small {
  color: var(--muted);
  font-size: 0.74rem;
  margin-left: 2px;
}
.pcard-moq {
  font-size: 0.72rem;
  color: var(--muted);
}
.pcard-toggle {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  transition: 0.25s;
}
.pcard-toggle svg {
  width: 11px;
  height: 11px;
  transition: transform 0.3s;
}
.pcard-toggle:hover {
  border-color: var(--navy);
}
.pcard.open .pcard-toggle {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.pcard.open .pcard-toggle svg {
  transform: rotate(45deg);
}

/* details expand inside the card */
.pcard-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pcard-body .specs {
  margin: 0 12px 12px;
}
.pcard-body .product-actions {
  padding: 0 12px 14px;
  flex-direction: column;
}
.pcard-body .product-actions .btn {
  width: 100%;
}

.specs {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.specs > div {
  display: grid;
  grid-template-columns: 44% 1fr;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.specs > div:last-child {
  border-bottom: 0;
}
.specs dt {
  padding: 7px 10px;
  background: var(--bg);
  color: var(--muted);
  font-weight: 500;
}
.specs dd {
  padding: 7px 10px;
  color: var(--ink);
  font-weight: 600;
}
.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pcard-info {
    padding: 10px 12px 12px;
  }
  .pcard-img {
    margin: 10px 10px 0;
  }
  /* narrow cards: label above value */
  .specs > div {
    grid-template-columns: 1fr;
  }
  .specs dt {
    padding: 6px 10px 1px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: transparent;
  }
  .specs dd {
    padding: 0 10px 7px;
  }
}
@media (max-width: 680px) {
  .group-head {
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.products-note {
  text-align: center;
  color: var(--muted);
  margin-top: 36px;
  font-size: 0.95rem;
}
.products-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Why choose us ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 48px;
  align-items: stretch;
}
.why-content .section-head {
  text-align: left;
  margin: 0 0 24px;
  max-width: none;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.why-list li:nth-child(even) {
  padding-left: 24px;
}
.why-list .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-list .ic svg {
  width: 21px;
  height: 21px;
}
.why-list h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.why-list p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.why-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy);
  min-height: 420px;
}
.why-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* dark overlay so the tag and stats stay readable over the photo */
.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.why-panel > *:not(.why-photo) {
  position: relative;
}
.why-tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.why-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.why-stats div {
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.why-stats strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.why-stats span {
  font-size: 0.72rem;
  color: #b8b8b8;
}
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-panel {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .why-list li {
    padding: 14px 0;
    gap: 10px;
  }
  .why-list li:nth-child(odd) {
    padding-right: 12px;
  }
  .why-list li:nth-child(even) {
    padding-left: 12px;
  }
  .why-list .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .why-list .ic svg {
    width: 18px;
    height: 18px;
  }
  .why-list h3 {
    font-size: 0.86rem;
  }
  .why-list p {
    font-size: 0.76rem;
  }
  .why-panel {
    padding: 18px;
  }
  .why-stats strong {
    font-size: 0.95rem;
  }
}

/* ─── Services ─── */
.services {
  background: #fbf4e6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.service {
  position: relative;
  padding: 20px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.service .num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ececec;
  transition: color 0.35s;
}
.service .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition:
    background 0.35s,
    color 0.35s;
}
.service .ic svg {
  width: 20px;
  height: 20px;
}
.service h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.35s;
}
.service p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 18px;
  transition: color 0.35s;
}
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  transition:
    gap 0.25s,
    color 0.35s;
}
.service-link svg {
  width: 14px;
  height: 14px;
}
/* first card is permanently highlighted; no hover effects */
.service.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.service.featured .num {
  color: #2a2a2a;
}
.service.featured .ic {
  background: var(--gold);
  color: #fff;
}
.service.featured h3,
.service.featured .service-link {
  color: #fff;
}
.service.featured p {
  color: #c9c9c9;
}
.service.featured .service-link svg {
  color: #fff;
}

.how-it-works {
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step-no {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.step div span {
  display: block;
  font-size: 0.8rem;
  color: #b8b8b8;
  line-height: 1.45;
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 991px) {
  .how-it-works {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .how-it-works .btn {
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    gap: 10px;
  }
  .service {
    padding: 16px 14px 16px;
    border-radius: 14px;
  }
  .service .num {
    top: 10px;
    right: 12px;
    font-size: 2rem;
  }
  .service .ic {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .service .ic svg {
    width: 19px;
    height: 19px;
  }
  .service h3 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }
  .service p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .service-link {
    font-size: 0.82rem;
  }
}

/* ─── CTA ─── */
.cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta::before {
  /* pattern + dark overlay (overlay is the top layer, pattern below it) */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.78) 0%,
      rgba(10, 10, 10, 0.45) 45%,
      rgba(10, 10, 10, 0.08) 100%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.14) 0 1px,
      transparent 1px 26px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(211, 138, 74, 0.22) 0 1px,
      transparent 1px 26px
    );
  background-size:
    100% 100%,
    auto,
    auto;
}
.cta::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(191, 111, 59, 0.22),
    transparent 65%
  );
  top: -220px;
  right: -140px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta h2 {
  margin: 8px 0 8px;
  max-width: 620px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.cta p {
  color: #b8b8b8;
  max-width: 560px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: stretch; /* image tile matches the content height */
}
.about-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: var(--bg);
}
.about-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%; /* keep the signboard in view */
}
/* soft shade at the bottom for the location chip */
.about-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}
.about-tag {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.about-loc {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}
.about-loc svg {
  width: 14px;
  height: 14px;
}
.about-content h2 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  margin: 10px 0 12px;
}
.about-content > p {
  color: var(--muted);
  margin-bottom: 22px;
}
.about-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.about-tiles li {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.about-tiles svg {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
}
.about-tiles strong {
  font-size: 0.9rem;
  color: var(--navy);
}
.about-tiles span {
  font-size: 0.76rem;
  color: var(--muted);
}

.reg-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  overflow: hidden;
}
.reg-strip > div {
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}
.reg-strip > div:last-child {
  border-right: 0;
}
.reg-strip dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.reg-strip dd {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.reg-strip dd small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .reg-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .reg-strip > div {
    border-bottom: 1px solid var(--line);
  }
  .reg-strip > div:nth-child(3n) {
    border-right: 0;
  }
  .reg-strip > div:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-tile {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
}
@media (max-width: 560px) {
  .about-tiles {
    gap: 8px;
  }
  .about-tiles li {
    grid-template-columns: 30px 1fr;
    column-gap: 8px;
    padding: 10px 10px;
  }
  .about-tiles svg {
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 8px;
  }
  .about-tiles strong {
    font-size: 0.82rem;
  }
  .about-tiles span {
    font-size: 0.7rem;
  }
  .reg-strip {
    grid-template-columns: 1fr 1fr;
  }
  .reg-strip > div {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  /* override the 3-column rules above: odd cells keep a divider, even cells don't */
  .reg-strip > div:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
  }
  .reg-strip > div:nth-child(2n) {
    border-right: 0;
  }
  .reg-strip > div:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .reg-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* ─── Gallery (viewer) ─── */
.gallery {
  background: var(--bg);
}
.viewer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.viewer-main {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 8;
}
.viewer-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4%;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.2));
  transition: opacity 0.3s ease;
}
.viewer-main img.fading {
  opacity: 0;
}
.viewer-main figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.viewer-main figcaption strong {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}
.viewer-main figcaption span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.viewer-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: 0.2s;
}
.viewer-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.viewer-btn svg {
  width: 18px;
  height: 18px;
}
.viewer-prev {
  left: 14px;
}
.viewer-next {
  right: 14px;
}
.viewer-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 600;
  transition: 0.2s;
}
.viewer-zoom svg {
  width: 14px;
  height: 14px;
}
.viewer-zoom:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.viewer-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 0;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform 0.4s;
}
.thumb:hover {
  transform: translateY(-3px);
}
.thumb:hover img {
  transform: scale(1.06);
}
.thumb.active {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(191, 111, 59, 0.25);
}
@media (max-width: 991px) {
  .viewer-main {
    aspect-ratio: 4 / 3;
  }
  .viewer-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media (max-width: 560px) {
  .viewer-main {
    aspect-ratio: 1;
  }
  .viewer-main figcaption {
    left: 10px;
    bottom: 10px;
  }
  .viewer-main figcaption strong {
    font-size: 0.76rem;
    padding: 6px 11px;
  }
  .viewer-zoom span {
    display: none;
  }
  .viewer-btn {
    width: 34px;
    height: 34px;
  }
  .viewer-thumbs {
    gap: 8px;
  }
}

/* ─── FAQs ─── */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faqs {
  padding-top: 48px;
}
.faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    opacity 0.7s,
    transform 0.7s;
}
.faq.open {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}
.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: 0.3s;
}
.faq-q .plus svg {
  width: 14px;
  height: 14px;
}
.faq.open .plus {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 22px 22px;
  color: var(--muted);
}
.faq-a a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy-3);
  color: #9a9a9a;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer .brand {
  color: #fff;
}
.footer .brand-logo {
  height: auto;
  width: min(220px, 100%);
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
}
.footer p {
  font-size: 0.93rem;
  margin: 18px 0;
}
.footer ul li {
  margin-bottom: 10px;
  font-size: 0.93rem;
}
.footer ul a {
  transition: 0.2s;
  display: inline-block;
}
.footer ul a:hover {
  color: #fff;
  transform: translateX(4px);
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-list svg {
  width: 18px;
  height: 18px;
  color: #8a8a8a;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list a:hover {
  transform: none;
  color: #fff;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  transition: 0.2s;
}
.socials a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.socials svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 0.85rem;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ─── Floating buttons ─── */
.fabs {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.fab:hover {
  transform: scale(1.08);
}
.fab svg {
  width: 26px;
  height: 26px;
}
.fab-wa {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 30px rgba(191, 111, 59, 0.45);
}
.fab-call {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.to-top {
  position: fixed;
  right: 28px;
  bottom: 160px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.to-top svg {
  width: 18px;
  height: 18px;
}

/* ─── Gallery lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0, 0, 0, 0.94);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.lb-btn:hover {
  background: #fff;
  color: #000;
}
.lb-btn svg {
  width: 22px;
  height: 22px;
}
.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-count {
  position: absolute;
  top: 28px;
  left: 24px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lb-btn {
    width: 40px;
    height: 40px;
  }
  .lb-prev {
    left: 10px;
  }
  .lb-next {
    right: 10px;
  }
}

/* ─── Small screens ─── */
@media (max-width: 768px) {
  .section {
    padding: 44px 0;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .cta {
    padding: 60px 0;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-card {
    animation: none;
  }
}
