:root {
  --ink: #121923;
  --muted: #65707c;
  --paper: #fffaf0;
  --soft: #f7f3ea;
  --gold: #c99018;
  --gold-2: #f3cd62;
  --line: rgba(18, 25, 35, 0.12);
  --shadow: 0 18px 50px rgba(18, 25, 35, 0.14);
  --radius: 8px;
}

/* Dark mode overrides */
[data-theme="dark"] {
  --ink: #e0e0e0;
  --muted: #a0a8b0;
  --paper: #1a1a1a;
  --soft: #2a2a2a;
  --gold: #e5b73b;
  --gold-2: #ffdd73;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

body.page-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #101820;
  color: #f8eed6;
  font-size: 14px;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand img {
  width: 62px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.dark-mode-toggle {
  margin-left: 12px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
  transition: color 0.3s;
}

.dark-mode-toggle:hover {
  color: var(--gold);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  color: #26313c;
}

.nav-links a:hover,
.nav-links a.active {
  color: #916407;
  background: #fff4d9;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid #b88210;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #15110a;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(201, 144, 24, 0.25);
}

.btn.secondary {
  background: #fff;
  box-shadow: none;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0f171f;
}

/* -------------------------------------------------
   HERO SECTION – full‑screen background slider
   ------------------------------------------------- */
.hs-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #0f171f;
}

.hs-hero .hs-slides {
  position: absolute;
  inset: 0;
}

.hs-hero .hs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-hero .hs-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hs-hero .hs-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hs-hero .hs-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
}

.hs-hero .hs-dot.is-active,
.hs-hero .hs-dot[aria-selected="true"] {
  background: var(--gold, #c99018);
}

/* hide any stray forms inside hero except the hero-form */
.hs-hero>form:not(.hero-form) {
  display: none;
}


.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 72px;
  max-width: 760px;
}

.hero-content>* {
  position: relative;
  z-index: 1;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -18px auto -18px -20px;
  width: min(760px, 100%);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(10, 16, 23, .78), rgba(10, 16, 23, .42));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.hero-content p,
.hero-content h1 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, .38);
}

.hero-home {
  min-height: 730px;
}

.hero-home::after {
  background:
    linear-gradient(90deg, rgba(8, 13, 18, .68) 0%, rgba(8, 13, 18, .52) 32%, rgba(8, 13, 18, .22) 100%),
    linear-gradient(180deg, rgba(8, 13, 18, .18) 0%, rgba(8, 13, 18, .38) 100%);
}

.hero-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: center;
  padding: 54px 0;
}

.hero-home-copy {
  max-width: 720px;
  padding: 0;
}

.hero-home-copy h1 {
  max-width: 630px;
  font-size: clamp(32px, 4.5vw, 58px);
}

.hero-home-copy .lead {
  max-width: 610px;
  font-size: clamp(15px, 1.45vw, 18px);
}

.hero-home-copy::before {
  inset: -18px -10px -18px -18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-form {
  max-width: 100%;
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 252, 245, .94));
  border: 1px solid rgba(201, 144, 24, .28);
  backdrop-filter: none;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(18, 25, 35, .10);
}

.hero-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 144, 24, .18);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.hero-form .form-eyebrow {
  margin: 0 0 8px;
  text-align: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .02em;
}

.hero-form .form-grid {
  grid-template-columns: 1fr;
  gap: 7px;
}

.hero-form label {
  color: #26313c;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  background: #fffdf8;
  border-color: #d9d2c5;
  color: #17202a;
  min-height: 38px;
  padding: 8px 10px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #7d8790;
}

.hero-form .btn {
  width: 100%;
  min-height: 40px;
  padding: 9px 13px;
}

.hero-form .btn:hover {
  filter: brightness(1.03);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, .9);
  max-width: 680px;
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: #101820;
  color: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, .74);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 25, 35, .06);
  backdrop-filter: saturate(180%) blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18, 25, 35, .12);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body .excerpt p {
  margin: 0;
}

.card-body .full-content {
  margin-top: 10px;
}

.btn.show-more {
  margin-top: 12px;
}

.card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.split img,
.split video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat {
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 16px;
  background: rgba(255, 255, 255, .08);
}

.stat strong {
  display: block;
  font-size: 30px;
  color: var(--gold-2);
}

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

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery img:nth-child(3n+1) {
  grid-column: span 2;
}

.feature-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(18, 25, 35, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(18, 25, 35, .12);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature-card-body {
  padding: 16px 16px 18px;
}

.feature-card-body p {
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-card .mini-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #915f00;
}

.feature-detail {
  scroll-margin-top: 110px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 25, 35, .06);
}

.feature-detail img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.feature-detail p {
  color: var(--muted);
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 13px;
  color: #26313c;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9d2c5;
  border-radius: var(--radius);
  min-height: 46px;
  padding: 12px 13px;
  font: inherit;
  background: #fffdf8;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.page-hero {
  padding: 88px 0 70px;
  background: linear-gradient(135deg, #111b24, #2b2618);
  color: #fff;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.contact-strip div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.site-footer {
  background: #0f171f;
  color: #fff;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, .72);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 32px;
  padding-top: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .feature-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img:nth-child(3n+1) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 52px;
  }

  .hero-home-grid {
    padding: 38px 0 32px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .form-grid,
  .stats,
  .gallery {
    grid-template-columns: 1fr;
  }

  .feature-gallery {
    grid-template-columns: 1fr;
  }

  .split img,
  .split video,
  .card img,
  .gallery img {
    height: 240px;
  }
}

/* Responsive polish update */
body {
  font-size: 15px;
}

.container {
  width: min(1080px, calc(100% - 40px));
}

.topbar {
  font-size: 13px;
}

.topbar .container {
  min-height: 34px;
}

.nav {
  min-height: 66px;
}

.brand img {
  width: 50px;
  height: 40px;
}

.brand strong {
  font-size: 15px;
}

.brand span {
  font-size: 10px;
  letter-spacing: .14em;
}

.nav-links a {
  padding: 8px 9px;
  font-size: 13px;
}

.btn {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  min-height: 500px;
}

.hero-content {
  padding: 70px 0 52px;
  max-width: 660px;
}

h1 {
  font-size: clamp(34px, 4.2vw, 56px);
}

h2 {
  font-size: clamp(25px, 3vw, 38px);
}

h3 {
  font-size: 19px;
}

.lead {
  font-size: clamp(15px, 1.5vw, 18px);
}

.eyebrow {
  font-size: 11px;
  margin-bottom: 9px;
}

.section {
  padding: 58px 0;
}

.section-head {
  margin-bottom: 24px;
}

.grid {
  gap: 18px;
}

.card img {
  height: 190px;
}

.card-body {
  padding: 18px;
}

.card p,
.section-head p,
p,
li {
  font-size: 15px;
}

.split {
  gap: 30px;
}

.split img,
.split video {
  height: 360px;
}

.stat strong {
  font-size: 24px;
}

.gallery img {
  height: 200px;
}

.page-hero {
  padding: 58px 0 48px;
}

.contact-strip div {
  padding: 14px;
}

.site-footer {
  padding: 42px 0 20px;
}

.footer-logo {
  width: 92px;
}

.form-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(201, 144, 24, .35);
  background: linear-gradient(180deg, #ffffff, #fffaf0);
  box-shadow: 0 18px 44px rgba(18, 25, 35, .12);
}

.form-wrap::before {
  content: "Book Consultation";
  display: block;
  margin: -2px 0 14px;
  color: #9a6b0b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-grid {
  gap: 12px;
}

label {
  font-size: 12px;
  gap: 6px;
}

input,
select,
textarea {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 14px;
}

textarea {
  min-height: 96px;
}

.blog-admin-link {
  margin-top: 22px;
}

.blog-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}

.post-meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-note {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .container {
    width: min(960px, calc(100% - 34px));
  }

  .nav {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 7px 7px;
  }

  .hero {
    min-height: 460px;
  }
}

@media (max-width: 980px) {
  .nav-links {
    top: 72px;
  }

  .section {
    padding: 48px 0;
  }

  .split img,
  .split video {
    height: 320px;
  }

  .card img,
  .gallery img {
    height: 220px;
  }

  .form-wrap {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 540px);
  }

  .topbar {
    font-size: 12px;
  }

  .nav {
    min-height: 62px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 44px;
    height: 36px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand span {
    font-size: 9px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-content {
    padding: 54px 0 40px;
  }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .lead {
    font-size: 15px;
  }

  .section {
    padding: 42px 0;
  }

  .page-hero {
    padding: 42px 0 36px;
  }

  .form-wrap {
    padding: 18px;
  }

  .contact-strip {
    gap: 10px;
  }

  .footer-grid {
    gap: 18px;
  }
}

/* Transparent PNG logo fit */
.brand img {
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .12));
}

.footer-logo {
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}

.page-hero img[src$="advika-logo.png"],
.admin-card img[src$="advika-logo.png"] {
  background: transparent;
  object-fit: contain;
}

/* Same clear image hero on all pages */
.page-image-hero {
  min-height: 430px;
  align-items: center;
  background: #fff;
  color: var(--ink);
}

.page-image-hero .hero-media {
  opacity: 1;
  filter: none;
  transform: none;
}

.page-image-hero .hero-media[src*="contact-new.png"] {
  object-fit: contain;
  background: #fff;
}

.page-image-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 48%, rgba(255, 255, 255, .18) 100%);
}

.page-image-hero .hero-content {
  padding: 70px 0 58px;
  max-width: 700px;
}

.page-image-hero .hero-content::before {
  inset: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-image-hero p:not(.eyebrow) {
  color: var(--ink);
  font-size: clamp(15px, 1.55vw, 18px);
  text-shadow: none;
}

.page-image-hero h1 {
  text-shadow: none;
}

.page-image-hero .eyebrow {
  color: #b9890c;
}

@media (max-width: 640px) {
  .page-image-hero {
    min-height: 390px;
  }

  .page-image-hero .hero-media {
    opacity: 1;
  }

  .page-image-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .80));
  }

  .page-image-hero .hero-content {
    padding: 48px 0 38px;
  }

  .hero-content::before,
  .page-image-hero .hero-content::before {
    display: none;
  }

  .hero-form .form-eyebrow {
    font-size: 16px;
  }
}

/* ============================================================
   SERVICES SECTION — paste at the bottom of assets/styles.css
   ============================================================ */

/* Section wrapper */
.services-section {
  background: #fff;
  padding: 72px 0;
}

/* Header row */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 0.5px solid #e5e5e5;
}

.services-head-left h2 {
  font-size: 34px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 480px;
  margin-top: 8px;
}

.services-head-desc {
  font-size: 14.5px;
  color: #777;
  line-height: 1.7;
  max-width: 300px;
  flex-shrink: 0;
}

/* 3-column grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Individual card */
.svc-card {
  background: #fff;
  border: 0.5px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.svc-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

/* Image wrap */
.svc-img-wrap {
  position: relative;
  width: 100%;
  height: 215px;
  overflow: hidden;
  background: #f2f2f2;
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.svc-card:hover .svc-img-wrap img {
  transform: scale(1.05);
}

/* Badge on image */
.svc-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

/* Text body */
.svc-body {
  padding: 22px 22px 0;
  flex: 1;
}

.svc-body h3 {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.svc-body p {
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
}

/* Footer row inside card */
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  margin-top: 14px;
  border-top: 0.5px solid #f0f0f0;
}

.svc-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.svc-stat span {
  font-size: 11px;
  color: #bbb;
}

/* Link button */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border: 0.5px solid #d0d0d0;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.15s ease;
}

.svc-link:hover {
  background: #f5f5f5;
}

/* Arrow icon inside link */
.svc-arrow {
  transition: transform 0.18s ease;
}

.svc-link:hover .svc-arrow {
  transform: translateX(3px);
}

/* Bottom strip */
.services-strip {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f8f8f8;
  border-radius: 14px;
  border: 0.5px solid #e8e8e8;
  padding: 20px 28px;
}

.services-strip p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.services-strip p strong {
  color: #111;
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-head-desc {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .services-section {
    padding: 48px 0;
  }

  .services-head-left h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================================
   gallery.css  —  save as  assets/gallery.css
   Linked only from completed-work.html
   ============================================================ */

/* ── Hero ── */
.gl-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.gl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
}

.gl-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  color: #fff;
}

.gl-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.gl-hero-content h1 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
  max-width: 680px;
}

.gl-hero-content .lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Stats bar ── */
.gl-stats-bar {
  background: #111;
  padding: 0;
}

.gl-stats-inner {
  display: flex;
  gap: 0;
}

.gl-stat {
  flex: 1;
  padding: 24px 28px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.1);
}

.gl-stat:last-child {
  border-right: none;
}

.gl-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}

.gl-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  display: block;
}

/* ── Gallery section ── */
.gl-section {
  padding: 64px 0 80px;
}

/* Filter tabs */
.gl-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gl-filter {
  background: #fff;
  border: 0.5px solid #ddd;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.gl-filter:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #111;
}

.gl-filter.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Masonry-style grid */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Individual gallery card */
.gl-card {
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gl-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.gl-card.hidden {
  display: none;
}

.gl-card.fade-in {
  animation: glFadeIn 0.35s ease forwards;
}

@keyframes glFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image wrapper */
.gl-card-img {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f2f2f2;
}

.gl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Hover overlay with zoom icon */
.gl-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.gl-card:hover .gl-card-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.gl-zoom-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gl-card:hover .gl-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

/* Card body */
.gl-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gl-cat-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2px;
}

.gl-card-body h3 {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.gl-card-body p {
  font-size: 12.5px;
  color: #999;
  line-height: 1.55;
  margin: 0;
}

/* No results */
.gl-no-results {
  text-align: center;
  color: #aaa;
  font-size: 15px;
  padding: 48px 0;
}

/* ── CTA Strip ── */
.gl-cta-strip {
  background: #f5f5f5;
  border-top: 0.5px solid #e8e8e8;
  border-bottom: 0.5px solid #e8e8e8;
  padding: 48px 0;
}

.gl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.gl-cta-inner h2 {
  font-size: 24px;
  font-weight: 500;
  color: #111;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.gl-cta-inner p {
  font-size: 14px;
  color: #666;
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

.gl-cta-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Lightbox ── */
.gl-lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 900;
}

.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gl-lightbox[hidden],
.gl-lb-backdrop[hidden] {
  display: none !important;
}

.gl-lb-stage {
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#gl-lb-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.gl-lb-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gl-lb-caption strong {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.gl-lb-caption span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Lightbox controls */
.gl-lb-close,
.gl-lb-prev,
.gl-lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 902;
}

.gl-lb-close:hover,
.gl-lb-prev:hover,
.gl-lb-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gl-lb-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.gl-lb-prev,
.gl-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.gl-lb-prev {
  left: 16px;
}

.gl-lb-next {
  right: 16px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .gl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .gl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gl-hero {
    height: 360px;
  }

  .gl-hero-content h1 {
    font-size: 26px;
  }

  .gl-stats-inner {
    flex-wrap: wrap;
  }

  .gl-stat {
    min-width: 50%;
    border-right: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  }

  .gl-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .gl-hero {
    height: 300px;
  }

  .gl-lb-prev {
    left: 4px;
  }

  .gl-lb-next {
    right: 4px;
  }
}

/* ===== Gallery Page Styles ===== */

.gl-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 20, 0.55), rgba(15, 15, 20, 0.78));
}

.gl-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
}

.gl-hero-content .eyebrow {
  color: #d8b25c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.gl-hero-content h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.gl-hero-content .lead {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 22px;
}

/* ── Stats bar ── */
.gl-stats-bar {
  background: #14141a;
  color: #fff;
  padding: 26px 0;
}

.gl-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.gl-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #d8b25c;
}

.gl-stat span {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── Filters ── */
.gl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gl-filter {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gl-filter:hover {
  border-color: #d8b25c;
  color: #b9893a;
}

.gl-filter.active {
  background: #14141a;
  border-color: #14141a;
  color: #fff;
}

/* ── Grid ── */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

  .gl-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Card ── */
.gl-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.gl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.gl-card.gl-hidden {
  display: none;
}

.gl-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.gl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gl-card:hover .gl-card-img img {
  transform: scale(1.07);
}

.gl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gl-card:hover .gl-card-overlay {
  opacity: 1;
}

.gl-zoom-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.gl-zoom-btn:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.gl-card-body {
  padding: 20px 22px 24px;
}

.gl-cat-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9893a;
  font-weight: 600;
  margin-bottom: 6px;
}

.gl-card-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #14141a;
}

.gl-card-body p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.gl-no-results {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 1.05rem;
}

/* ── CTA strip ── */
.gl-cta-strip {
  background: #14141a;
  color: #fff;
  padding: 50px 0;
}

.gl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gl-cta-inner h2 {
  margin: 0 0 6px;
}

.gl-cta-inner p {
  opacity: 0.8;
  margin: 0;
}

/* ── Lightbox ── */
.gl-lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.92);
  z-index: 998;
}

.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-lb-stage {
  max-width: 90vw;
  max-height: 86vh;
  position: relative;
  text-align: center;
}

.gl-lb-stage img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gl-lb-caption {
  color: #fff;
  margin-top: 14px;
}

.gl-lb-caption strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gl-lb-caption span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.gl-lb-close,
.gl-lb-prev,
.gl-lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.gl-lb-close:hover,
.gl-lb-prev:hover,
.gl-lb-next:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.gl-lb-close {
  top: 24px;
  right: 24px;
}

.gl-lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.gl-lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {

  .gl-lb-prev,
  .gl-lb-next {
    width: 38px;
    height: 38px;
  }

  .gl-lb-prev {
    left: 10px;
  }

  .gl-lb-next {
    right: 10px;
  }
}

/* ===== Gallery Page Styles ===== */

.gl-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #faf8f4;
  border-bottom: 1px solid #eee;
}

.gl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

.gl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95));
}

.gl-hero-content {
  position: relative;
  z-index: 1;
  color: #14141a;
  max-width: 680px;
  padding: 36px 0;
}

.gl-hero-content .eyebrow {
  color: #b9893a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.gl-hero-content h1 {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 10px;
  color: #14141a;
}

.gl-hero-content .lead {
  font-size: 0.95rem;
  color: #555;
  opacity: 1;
  margin-bottom: 18px;
}

/* ── Stats bar ── */
.gl-stats-bar {
  background: #fff;
  color: #14141a;
  padding: 26px 0;
  border-bottom: 1px solid #eee;
}

.gl-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.gl-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #b9893a;
}

.gl-stat span {
  font-size: 0.85rem;
  color: #666;
  opacity: 1;
}

/* ── Filters ── */
.gl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gl-filter {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gl-filter:hover {
  border-color: #d8b25c;
  color: #b9893a;
}

.gl-filter.active {
  background: #14141a;
  border-color: #14141a;
  color: #fff;
}

/* ── Grid ── */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

  .gl-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Card ── */
.gl-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.gl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.gl-card.gl-hidden {
  display: none;
}

.gl-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.gl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gl-card:hover .gl-card-img img {
  transform: scale(1.07);
}

.gl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gl-card:hover .gl-card-overlay {
  opacity: 1;
}

.gl-zoom-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.gl-zoom-btn:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.gl-card-body {
  padding: 20px 22px 24px;
}

.gl-cat-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9893a;
  font-weight: 600;
  margin-bottom: 6px;
}

.gl-card-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #14141a;
}

.gl-card-body p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.gl-no-results {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 1.05rem;
}

/* ── CTA strip ── */
.gl-cta-strip {
  background: #faf8f4;
  color: #14141a;
  padding: 50px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.gl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gl-cta-inner h2 {
  margin: 0 0 6px;
  color: #14141a;
}

.gl-cta-inner p {
  color: #555;
  opacity: 1;
  margin: 0;
}

/* ── Lightbox ── */
.gl-lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.92);
  z-index: 998;
}

.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-lb-stage {
  max-width: 90vw;
  max-height: 86vh;
  position: relative;
  text-align: center;
}

.gl-lb-stage img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gl-lb-caption {
  color: #fff;
  margin-top: 14px;
}

.gl-lb-caption strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gl-lb-caption span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.gl-lb-close,
.gl-lb-prev,
.gl-lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.gl-lb-close:hover,
.gl-lb-prev:hover,
.gl-lb-next:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.gl-lb-close {
  top: 24px;
  right: 24px;
}

.gl-lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.gl-lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {

  .gl-lb-prev,
  .gl-lb-next {
    width: 38px;
    height: 38px;
  }

  .gl-lb-prev {
    left: 10px;
  }

  .gl-lb-next {
    right: 10px;
  }
}

/* ===== Gallery Page Styles ===== */

.gl-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #faf8f4;
  border-bottom: 1px solid #eee;
}

.gl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.gl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.25) 70%, rgba(255, 255, 255, 0) 100%);
}

.gl-hero-content {
  position: relative;
  z-index: 1;
  color: #14141a;
  max-width: 680px;
  padding: 36px 0;
}

.gl-hero-content .eyebrow {
  color: #b9893a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.gl-hero-content h1 {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 10px;
  color: #14141a;
}

.gl-hero-content .lead {
  font-size: 0.95rem;
  color: #555;
  opacity: 1;
  margin-bottom: 18px;
}

/* ── Stats bar ── */
.gl-stats-bar {
  background: #fff;
  color: #14141a;
  padding: 26px 0;
  border-bottom: 1px solid #eee;
}

.gl-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.gl-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #b9893a;
}

.gl-stat span {
  font-size: 0.85rem;
  color: #666;
  opacity: 1;
}

/* ── Filters ── */
.gl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gl-filter {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gl-filter:hover {
  border-color: #d8b25c;
  color: #b9893a;
}

.gl-filter.active {
  background: #14141a;
  border-color: #14141a;
  color: #fff;
}

/* ── Grid ── */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

  .gl-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Card ── */
.gl-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.gl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.gl-card.gl-hidden {
  display: none;
}

.gl-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.gl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gl-card:hover .gl-card-img img {
  transform: scale(1.07);
}

.gl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gl-card:hover .gl-card-overlay {
  opacity: 1;
}

.gl-zoom-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.gl-zoom-btn:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.gl-card-body {
  padding: 20px 22px 24px;
}

.gl-cat-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9893a;
  font-weight: 600;
  margin-bottom: 6px;
}

.gl-card-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #14141a;
}

.gl-card-body p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.gl-no-results {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 1.05rem;
}

/* ── CTA strip ── */
.gl-cta-strip {
  background: #faf8f4;
  color: #14141a;
  padding: 50px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.gl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gl-cta-inner h2 {
  margin: 0 0 6px;
  color: #14141a;
}

.gl-cta-inner p {
  color: #555;
  opacity: 1;
  margin: 0;
}

/* ── Lightbox ── */
.gl-lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.92);
  z-index: 998;
}

.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-lb-stage {
  max-width: 90vw;
  max-height: 86vh;
  position: relative;
  text-align: center;
}

.gl-lb-stage img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gl-lb-caption {
  color: #fff;
  margin-top: 14px;
}

.gl-lb-caption strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gl-lb-caption span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.gl-lb-close,
.gl-lb-prev,
.gl-lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.gl-lb-close:hover,
.gl-lb-prev:hover,
.gl-lb-next:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.gl-lb-close {
  top: 24px;
  right: 24px;
}

.gl-lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.gl-lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {

  .gl-lb-prev,
  .gl-lb-next {
    width: 38px;
    height: 38px;
  }

  .gl-lb-prev {
    left: 10px;
  }

  .gl-lb-next {
    right: 10px;
  }
}

/* ============================================================
   ADVIKA CREATIONS — VERTICAL HERO SLIDER (Livspace style)
   Replace your existing assets/hero-slider.css with this file
   ============================================================ */

/* ---------- Container ---------- */
.hs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* full viewport height */
  min-height: 560px;
  overflow: hidden;
  /* clips slides outside the viewport */
}

/* ---------- Slide track ---------- */
.hs-slides {
  position: absolute;
  inset: 0;
  /* no flex / no row — each slide is absolute, stacked vertically */
}

/* ---------- Individual slides ---------- */
.hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* Start every slide BELOW the viewport */
  transform: translateY(100%);
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* The slide currently ON screen */
.hs-slide.is-active {
  transform: translateY(0);
}

/* The slide that just LEFT (slides UP and out) */
.hs-slide.is-leaving {
  transform: translateY(-100%);
}

/* ---------- Slide image ---------- */
.hs-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

/* ---------- Dark gradient scrim ---------- */
.hs-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.60) 0%,
      rgba(0, 0, 0, 0.30) 55%,
      rgba(0, 0, 0, 0.10) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ---------- Text / CTA content ---------- */
.hs-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  /* clear the fixed header */
  color: #fff;
  max-width: 660px;
}

.hs-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0 0 16px;
}

.hs-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hs-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  opacity: 0.9;
  max-width: 520px;
  line-height: 1.65;
  margin: 0 0 32px;
}

.hs-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Dot navigation ---------- */
.hs-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  /* vertical stack of dots — like Livspace */
  gap: 10px;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hs-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hs-content {
    padding-top: 100px;
    max-width: 100%;
  }

  .hs-dots {
    right: 14px;
  }

  .hs-scrim {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.25) 60%,
        rgba(0, 0, 0, 0.10) 100%);
  }
}

/* ============================================================
   ADVIKA CREATIONS — VERTICAL HERO SLIDER (Livspace style)
   assets/hero-slider.css
   ============================================================ */

/* ---------- Container ---------- */
.hs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: #0f171f;
}

/* ---------- Slide track ---------- */
.hs-slides {
  position: absolute;
  inset: 0;
}

/* ---------- Individual slides ---------- */
.hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Slide currently ON screen */
.hs-slide.is-active {
  transform: translateY(0);
}

/* Slide that just LEFT — exits upward */
.hs-slide.is-leaving {
  transform: translateY(-100%);
}

/* ---------- Slide image ---------- */
.hs-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

/* ---------- Dark gradient scrim ---------- */
.hs-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.32) 55%,
      rgba(0, 0, 0, 0.10) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ---------- Text / CTA content ---------- */
.hs-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  /* clear sticky header */
  color: #fff;
}

.hs-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
}

.hs-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 660px;
}

.hs-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  opacity: 0.9;
  max-width: 520px;
  line-height: 1.65;
  margin: 0 0 32px;
}

.hs-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Dot navigation (vertical, right side) ---------- */
.hs-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hs-dot.is-active,
.hs-dot[aria-selected="true"] {
  background: #fff;
  transform: scale(1.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hs-hero {
    height: 100svh;
    min-height: 480px;
  }

  .hs-content {
    padding-top: 100px;
  }

  .hs-dots {
    right: 14px;
  }

  .hs-scrim {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.28) 60%,
        rgba(0, 0, 0, 0.10) 100%);
  }

  .hs-content h1 {
    max-width: 100%;
  }
}

/* ==========================
   HERO IMAGE SLIDER
========================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, .65),
      rgba(0, 0, 0, .25));

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  color: #fff;
}

.overlay h1 {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: 15px;
  max-width: 700px;
}

.overlay p {
  font-size: 18px;
  max-width: 550px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, .9);
}

.overlay .btn {
  width: max-content;
}

/* Arrows */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  z-index: 10;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  transition: .3s;
}

.arrow:hover {
  background: #c99018;
  color: #fff;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* Dots */

.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: .3s;
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Responsive */

@media(max-width:768px) {

  .hero-slider {
    height: 500px;
  }

  .overlay {
    padding: 30px;
    text-align: center;
    align-items: center;
  }

  .overlay h1 {
    font-size: 34px;
  }

  .overlay p {
    font-size: 15px;
  }

  .arrow {
    width: 45px;
    height: 45px;
  }
}

@media(max-width:480px) {

  .hero-slider {
    height: 420px;
  }

  .overlay h1 {
    font-size: 28px;
  }

  .overlay p {
    font-size: 14px;
  }
}

/* =============================================
   ADVIKA CREATIONS — HERO SLIDER
   slider.css
   ============================================= */

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

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

/* ── Slider Wrapper ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #0f171f;
  user-select: none;
}

/* ── Track: all slides sit in a row ── */
.slides-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* ── Individual Slide ── */
.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

/* ── Slide Image ── */
.slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* ── Dark gradient overlay ── */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.38) 50%,
      rgba(0, 0, 0, 0.10) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 0 8%;
  color: #fff;
}

/* ── Eyebrow label ── */
.slide-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}

/* ── Heading ── */
.slide-title {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 680px;
  margin-bottom: 16px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

/* ── Description ── */
.slide-desc {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

/* ── CTA Button ── */
.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #c99018, #f3cd62);
  border: 1px solid #b88210;
  color: #15110a;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(201, 144, 24, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.slide-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

/* ── Navigation Arrows ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  line-height: 1;
}

.arrow:hover {
  background: #c99018;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev {
  left: 24px;
}

.arrow-next {
  right: 24px;
}

/* ── Dots ── */
.dots-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.38);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 900px) {
  .hero-slider {
    height: 500px;
  }

  .slide-overlay {
    padding: 0 6% 0 6%;
  }
}

/* Mobile landscape */
@media (max-width: 640px) {
  .hero-slider {
    height: 420px;
  }

  .slide-overlay {
    padding: 0 5% 48px 5%;
    justify-content: flex-end;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.4) 55%,
        rgba(0, 0, 0, 0.10) 100%);
  }

  .slide-eyebrow {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .slide-title {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 10px;
  }

  .slide-desc {
    font-size: 13px;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slide-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .arrow-prev {
    left: 12px;
  }

  .arrow-next {
    right: 12px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-slider {
    height: 380px;
  }
}