:root {
  --primary: #6b1f22;
  --primary-dark: #4a1416;
  --background: #f8f5f2;
  --light-gray: #d8d1d0;
  --text-dark: #1a1719;
  --gold-accent: #b78a35;
  --blue-accent: #2b7fa3;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(26, 23, 25, 0.16);
  --soft-shadow: 0 16px 40px rgba(107, 31, 34, 0.12);
  --radius: 28px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(183, 138, 53, 0.14), transparent 28%),
    radial-gradient(circle at 10% 25%, rgba(107, 31, 34, 0.12), transparent 32%),
    var(--background);
  color: var(--text-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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


.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(183, 138, 53, 0.28), transparent 34%),
    linear-gradient(135deg, var(--primary-dark), #120607 65%, var(--text-dark));
  color: var(--white);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.6s ease;
}

.loader.hide {
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
}

.loader-card {
  width: min(620px, 88vw);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
  animation: loaderZoom 1.1s ease both;
}

.loader-card img {
  width: min(460px, 78vw);
  height: auto;
  object-fit: contain;
}

.loader-card p {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}

.progress-wrap {
  width: min(320px, 80vw);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-accent), var(--white));
  animation: loading 1.4s ease forwards;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  width: min(calc(100% - 32px), 1180px);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(248, 245, 242, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 42px rgba(26, 23, 25, 0.12);
  transition: 0.35s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 54px rgba(74, 20, 22, 0.18);
}


.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: clamp(148px, 17vw, 218px);
  height: 54px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 3px 8px;
  box-shadow: 0 10px 28px rgba(107, 31, 34, 0.1);
}

.nav-brand-note {
  flex: 0 1 330px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-brand-note span {
  flex: 0 0 auto;
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, var(--gold-accent));
}

.nav-brand-note span:last-child {
  background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.nav-brand-note p {
  margin: 0;
  white-space: nowrap;
  color: var(--primary);
  opacity: 0.92;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.header-cta {
  flex: 0 0 auto;
}

.main-nav a {
  position: relative;
  color: rgba(26, 23, 25, 0.74);
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-accent);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 12px 32px rgba(107, 31, 34, 0.28);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(107, 31, 34, 0.34);
}

.btn.ghost {
  border: 1px solid rgba(107, 31, 34, 0.22);
  background: rgba(255, 255, 255, 0.68);
  color: var(--primary);
}

.btn.ghost.dark {
  background: rgba(107, 31, 34, 0.08);
}

.btn.outline {
  border: 1px solid rgba(183, 138, 53, 0.7);
  background: transparent;
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: 0.25s ease;
}

.visual-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.42;
}

.orb-one {
  right: 6%;
  top: 16%;
  width: 240px;
  height: 240px;
  background: rgba(107, 31, 34, 0.28);
}

.orb-two {
  right: 30%;
  bottom: 8%;
  width: 170px;
  height: 170px;
  background: rgba(183, 138, 53, 0.22);
}


.camera-model {
  --camera-x: 0px;
  --camera-y: 0px;
  --camera-scale: 1;
  --intro-x: -42vw;
  position: absolute;
  right: clamp(16px, 5vw, 110px);
  top: 50%;
  width: min(660px, 50vw);
  height: clamp(390px, 43vw, 560px);
  transform: translate3d(calc(var(--intro-x) + var(--camera-x)), calc(-50% + var(--camera-y)), 0) scale(var(--camera-scale));
  opacity: 0;
  filter: blur(8px) drop-shadow(0 34px 48px rgba(26, 23, 25, 0.22));
  transition:
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease,
    filter 0.9s ease;
  pointer-events: none;
  will-change: transform;
}

.camera-model.entered {
  --intro-x: 0px;
  opacity: 1;
  filter: blur(0) drop-shadow(0 34px 48px rgba(26, 23, 25, 0.24));
}

.model-halo {
  position: absolute;
  inset: 8% -4% 15%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 56% 42%, rgba(183, 138, 53, 0.22), transparent 45%),
    radial-gradient(circle at 50% 55%, rgba(107, 31, 34, 0.18), transparent 60%);
  filter: blur(22px);
  animation: glowDrift 5.5s ease-in-out infinite alternate;
}

.real-camera-viewer {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  animation: cameraFloat 5.4s ease-in-out infinite;
}

.real-camera-viewer::part(default-progress-bar) {
  height: 4px;
  border-radius: 999px;
  background-color: var(--gold-accent);
}

.model-loader,
.model-error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.model-loader span {
  width: 58px;
  height: 58px;
  border: 5px solid rgba(107, 31, 34, 0.14);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.model-error {
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(107, 31, 34, 0.9), rgba(74, 20, 22, 0.92));
}

.model-shadow {
  position: absolute;
  left: 19%;
  right: 17%;
  bottom: 17%;
  z-index: 1;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 23, 25, 0.2);
  filter: blur(18px);
  animation: shadowPulse 5.4s ease-in-out infinite;
}

.model-title,
.model-caption {
  position: absolute;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: max-content;
  max-width: 92%;
  text-align: center;
  pointer-events: none;
}

.model-title {
  bottom: 36px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.model-caption {
  bottom: 2px;
  color: rgba(26, 23, 25, 0.64);
  font-weight: 800;
}


.section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px max(24px, calc((100vw - var(--max-width)) / 2)) 80px;
}

.section::before {
  content: attr(data-watermark);
  position: absolute;
  left: 2vw;
  bottom: 8vh;
  z-index: -1;
  color: rgba(107, 31, 34, 0.04);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 1000;
  line-height: 1;
}

.hero {
  padding-top: 150px;
}

.content {
  width: min(620px, 100%);
}

.narrow {
  width: min(540px, 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-accent);
}

h1,
h2,
h3 {
  color: var(--text-dark);
  letter-spacing: -0.04em;
}

h1 {
  width: min(760px, 100%);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.2rem, 4.9vw, 5rem);
  line-height: 0.94;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin-top: 18px;
  color: rgba(26, 23, 25, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.75;
}

.hero p {
  width: min(580px, 100%);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.stats-row span {
  padding: 14px 18px;
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(26, 23, 25, 0.68);
  box-shadow: 0 14px 42px rgba(107, 31, 34, 0.08);
}

.stats-row strong {
  color: var(--primary);
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 40px;
}

.services-section,
.gallery-section,
.packages-section {
  display: block;
  padding-top: 130px;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.package-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(26, 23, 25, 0.08);
}

.service-card {
  min-height: 240px;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before,
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(183, 138, 53, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(107, 31, 34, 0.08);
  font-size: 1.8rem;
}

.service-card h3,
.service-card p,
.package-card h3,
.package-card p,
.package-card ul {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 138, 53, 0.55);
  box-shadow: 0 28px 70px rgba(107, 31, 34, 0.16);
}

.service-card:hover::before,
.package-card:hover::before {
  opacity: 1;
}

.why-section {
  background: linear-gradient(135deg, rgba(74, 20, 22, 0.95), rgba(26, 23, 25, 0.96));
  color: var(--white);
}

.why-section h2,
.why-section p {
  color: var(--white);
}

.why-section p {
  color: rgba(255, 255, 255, 0.74);
}
.why-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.why-wrap {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.why-section .content {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-accent);
  color: var(--primary-dark);
  font-weight: 1000;
}

.why-map {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.map-3d-card {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(201, 154, 58, 0.18));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(201, 154, 58, 0.22);
  transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}

.map-3d-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.22),
    transparent 35%,
    transparent 65%,
    rgba(201, 154, 58, 0.18)
  );
  pointer-events: none;
  z-index: 2;
}

.map-3d-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 3;
}

.map-3d-card img {
  width: 100%;
  display: block;
  border-radius: 26px;
  object-fit: cover;
  transform: translateZ(35px);
  filter: contrast(1.05) saturate(1.08);
}

.map-3d-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-12px);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.55),
    0 0 65px rgba(201, 154, 58, 0.32);
}

/* Mobile view */
@media (max-width: 900px) {
  .why-section {
    padding: 80px 0;
  }

  .why-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-map {
    justify-content: center;
  }

  .map-3d-card {
    width: min(100%, 560px);
    margin: 40px auto 0;
    border-radius: 26px;
    transform: perspective(900px) rotateY(0deg) rotateX(0deg);
  }

  .map-3d-card::after {
    border-radius: 20px;
  }

  .map-3d-card img {
    border-radius: 20px;
  }

  .map-3d-card:hover {
    transform: translateY(-8px);
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, transparent, rgba(26, 23, 25, 0.84)),
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.45), transparent 22%),
    linear-gradient(135deg, var(--primary), var(--primary-dark) 50%, var(--text-dark));
  box-shadow: var(--soft-shadow);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
}

.gallery-item span {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.gallery-item figcaption {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}
.packages-section {
  scroll-margin-top: 130px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Common Card */
.package-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(123, 27, 33, 0.08);
  box-shadow: 0 24px 65px rgba(31, 19, 20, 0.08);
  transition: 0.35s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card h3 {
  font-size: 1.55rem;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.package-card p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(26, 23, 25, 0.68);
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.package-card li {
  color: rgba(26, 23, 25, 0.72);
}

.package-card li::before {
  content: "•";
  margin-right: 12px;
  color: var(--gold-accent);
  font-weight: 900;
}

/* Middle Standard Card Old Maroon Colour */
.package-card.featured {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(123, 27, 33, 0.28);
  transform: translateY(-18px);
}

.package-card.featured:hover {
  transform: translateY(-28px);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured li {
  color: var(--white);
}

.package-card.featured li::before {
  color: var(--gold-accent);
}

.package-card.featured .btn.primary {
  background: var(--white);
  color: var(--primary);
}

/* Popular Badge */
.popular {
  position: absolute;
  right: 26px;
  top: 26px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c69532, #f1cf76);
  color: #5a1519;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Premium Golden Card */
.package-card.premium-gold {
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, #fff8dd 0%, #f7dc8d 35%, #d5a33e 68%, #9b6917 100%);
  border: 1px solid rgba(255, 221, 130, 0.95);
  color: #261707;
  box-shadow: 0 34px 90px rgba(139, 90, 18, 0.34);
  transform: translateY(-8px);
}

.package-card.premium-gold:hover {
  transform: translateY(-18px);
}

/* Golden Shine */
.package-card.premium-gold::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    transparent 38%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 62%
  );
  transform: rotate(18deg);
  animation: premiumShine 5s linear infinite;
  pointer-events: none;
}

@keyframes premiumShine {
  0% {
    transform: translateX(-45%) rotate(18deg);
  }

  100% {
    transform: translateX(45%) rotate(18deg);
  }
}

.package-card.premium-gold > * {
  position: relative;
  z-index: 2;
}

.package-card.premium-gold h3 {
  color: #241405;
  margin-top: 18px;
  margin-bottom: 16px;
}

.package-card.premium-gold p,
.package-card.premium-gold li {
  color: rgba(36, 20, 5, 0.78);
}

.package-card.premium-gold li::before {
  color: #7b1b21;
}

/* Premium Badge Fixed */
.premium-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b1b21, #4b1014);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(123, 27, 33, 0.25);
}

/* Stars Fixed */
.premium-stars {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(96, 54, 10, 0.18);
  backdrop-filter: blur(12px);
}

.premium-stars span {
  color: #7b1b21;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.premium-stars small {
  color: #3d240b;
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.package-card.premium-gold .btn.primary {
  background: linear-gradient(135deg, #7b1b21, #4f1116);
  color: #fff;
  box-shadow: 0 20px 42px rgba(123, 27, 33, 0.32);
}

/* Mobile */
@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .package-card.featured,
  .package-card.premium-gold {
    min-height: auto;
    transform: none;
  }

  .package-card:hover,
  .package-card.featured:hover,
  .package-card.premium-gold:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  .package-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .package-card h3 {
    font-size: 1.35rem;
  }

  .premium-stars {
    flex-wrap: wrap;
  }
}
.contact-section {
  justify-content: center;
  min-height: auto;
  padding-bottom: 110px;
}

.contact-card {
  width: min(980px, 100%);
  padding: clamp(30px, 6vw, 64px);
  background:
    radial-gradient(circle at 96% 0%, rgba(183, 138, 53, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.contact-list a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: 22px;
  background: rgba(248, 245, 242, 0.76);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 138, 53, 0.55);
}

.contact-list strong {
  color: var(--primary);
}

.contact-list span {
  overflow-wrap: anywhere;
  color: rgba(26, 23, 25, 0.72);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.74);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(107, 31, 34, 0.32);
  transform: translateY(90px);
  opacity: 0;
  transition: 0.28s ease;
}

.back-top.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes loading {
  to { width: 100%; }
}

@keyframes pulseLens {
  from { transform: translate(-50%, -50%) scale(0.92); }
  to { transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes loaderZoom {
  from { opacity: 0; transform: translateY(28px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cameraFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes glowDrift {
  from { opacity: 0.55; transform: scale(0.96); }
  to { opacity: 0.9; transform: scale(1.08); }
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.38; transform: scaleX(0.9); }
  50% { opacity: 0.22; transform: scaleX(1.08); }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .nav-brand-note {
    flex-basis: 300px;
    gap: 8px;
  }

  .nav-brand-note span {
    width: 22px;
  }

  .nav-brand-note p {
    font-size: 10.5px;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 1050px) {
  .nav-brand-note {
    flex: 1 1 auto;
    gap: 8px;
  }

  .nav-brand-note span {
    width: 24px;
  }

  .nav-brand-note p {
    font-size: 0;
    letter-spacing: 1px;
  }

  .nav-brand-note p::after {
    content: "Trusted since 2018";
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
  }

  .main-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-22px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 18px;
    border-radius: 16px;
  }

  .main-nav a:hover {
    background: rgba(107, 31, 34, 0.06);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }
  .camera-model {
    right: -58px;
    width: min(560px, 64vw);
    height: 420px;
    opacity: 0.58;
  }

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

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

  .contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 22px);
    top: 10px;
    margin-top: 10px;
  }

  .nav-brand-note {
    display: none;
  }

  .brand-logo {
    width: 136px;
    height: 48px;
    padding: 3px 6px;
  }

  .section {
    min-height: auto;
    padding: 118px 20px 64px;
  }

  .hero {
    min-height: 100vh;
    align-items: flex-end;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .split,
  .service-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .package-card.featured {
    transform: none;
  }
  .camera-model {
    right: -118px;
    top: 31%;
    width: 420px;
    height: 360px;
    --camera-scale: 0.78;
    opacity: 0.38;
  }

  .model-title,
  .model-caption {
    display: none;
  }

  .hero-actions,
  .contact-actions,
  .stats-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    display: grid;
    text-align: center;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .camera-model {
    --intro-x: 0px;
    opacity: 1;
    filter: none;
  }
}


/* Booking form + contact/social fixes */
.contact-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 3px;
}

.contact-actions .btn img,
.form-actions .btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-links a,
.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(26, 23, 25, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-links a:hover,
.footer-social a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 38px rgba(107, 31, 34, 0.18);
}

.social-links img,
.footer-social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-social {
  margin-top: 0;
}

.booking-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 10%, rgba(183, 138, 53, 0.16), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(107, 31, 34, 0.13), transparent 34%),
    var(--bg-soft);
}

.booking-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.75), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(43, 127, 163, 0.08), transparent 32%);
}

.booking-header {
  top: 14px;
}

.booking-main {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 84px) 0 90px;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  min-height: 420px;
  padding-top: 28px;
}

.booking-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.88;
  margin-top: 16px;
}

.booking-copy p {
  max-width: 670px;
  margin-top: 24px;
  font-size: 1.1rem;
  color: rgba(26, 23, 25, 0.72);
}

.booking-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.booking-trust-row span {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(107, 31, 34, 0.08);
}

.booking-logo-card {
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
}

.booking-logo-card img {
  border-radius: 24px;
  object-fit: contain;
}

.booking-card {
  margin-top: 40px;
  padding: clamp(22px, 5vw, 54px);
  border: 1px solid rgba(107, 31, 34, 0.1);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 26px;
}

.form-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(107, 31, 34, 0.1);
}

.form-section-title:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-section-title span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(107, 31, 34, 0.08);
  color: var(--primary);
  font-weight: 900;
}

.form-section-title h2 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 1;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.booking-form label,
.full-field {
  display: grid;
  gap: 9px;
  color: var(--primary-dark);
  font-weight: 900;
}

.booking-form small {
  color: var(--primary);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 31, 34, 0.16);
  border-radius: 20px;
  background: rgba(248, 245, 242, 0.92);
  padding: 16px 18px;
  color: var(--text-dark);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 5px rgba(183, 138, 53, 0.13);
  transform: translateY(-1px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-option {
  position: relative;
  min-height: 118px;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: 24px;
  background: rgba(248, 245, 242, 0.82);
  cursor: pointer;
  transition: 0.25s ease;
}

.category-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.category-option span {
  font-size: 1.9rem;
}

.category-option strong {
  color: var(--text-dark);
}

.category-option:has(input:checked) {
  transform: translateY(-4px);
  border-color: rgba(183, 138, 53, 0.78);
  background: linear-gradient(135deg, rgba(107, 31, 34, 0.08), rgba(183, 138, 53, 0.14));
  box-shadow: 0 16px 34px rgba(107, 31, 34, 0.13);
}

.price-card {
  padding: clamp(18px, 4vw, 30px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(107, 31, 34, 0.08), rgba(183, 138, 53, 0.13));
  border: 1px solid rgba(107, 31, 34, 0.1);
}

.price-topline,
.price-limits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-topline span,
.price-limits {
  color: rgba(26, 23, 25, 0.62);
  font-weight: 800;
}

.price-topline strong {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--primary);
}

#priceRange {
  accent-color: var(--primary);
  padding: 0;
  margin: 24px 0 10px;
}

.quick-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-prices button {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quick-prices button:hover {
  transform: translateY(-3px);
  background: var(--white);
}

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

.form-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(43, 127, 163, 0.08);
  color: rgba(26, 23, 25, 0.68);
  font-weight: 700;
}

.submit-booking {
  min-width: min(100%, 310px);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

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

  .booking-logo-card {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .booking-main {
    width: min(100% - 22px, 1180px);
    padding-top: 28px;
  }

  .booking-header {
    top: 10px;
  }

  .booking-copy h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .form-grid.two,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .form-section-title {
    align-items: start;
    flex-direction: column;
  }

  .booking-card {
    border-radius: 28px;
  }

  .social-links,
  .footer-social,
  .form-actions {
    justify-content: center;
  }
}

/* === Final bug-fix polish: packages, gallery auto-loader, booking mobile === */
.hc-row-one,
.hc-row-two,
.hc-gallery-row.hc-row-static {
  animation: none !important;
}

.hc-gallery-row {
  padding-inline: clamp(16px, 4vw, 46px);
  padding-bottom: 6px;
}

.hc-gallery-row:empty {
  display: none;
}

.gallery-empty-message {
  width: min(720px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 22px;
  border: 1px dashed rgba(212, 175, 55, 0.42);
  border-radius: 22px;
  color: var(--hc-white);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 800;
}

.package-card {
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.package-card h3 {
  padding-right: 112px;
}

.package-card ul {
  flex: 1;
}

.package-badge,
.popular,
.premium-badge {
  position: absolute !important;
  top: 26px !important;
  right: 26px !important;
  left: auto !important;
  z-index: 10 !important;
  display: inline-flex;
  width: fit-content;
  margin: 0 !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(74, 20, 22, 0.18);
}

.basic-badge {
  background: linear-gradient(135deg, #fff4bd, #d8a936);
  color: #5a1519;
}

.popular {
  background: linear-gradient(135deg, #f4d77a, #c69532);
  color: #5a1519;
}

.premium-badge {
  background: linear-gradient(135deg, #7b1b21, #4b1014) !important;
  color: #fff !important;
}

.package-book-btn,
.package-card .btn.primary {
  position: relative;
  z-index: 20;
  pointer-events: auto;
  width: fit-content;
  min-width: 190px;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 38px rgba(107, 31, 34, 0.22);
}

.package-card.featured .package-book-btn {
  background: var(--white);
  color: var(--primary);
}

.package-card.premium-gold .package-book-btn {
  background: linear-gradient(135deg, #7b1b21, #4f1116) !important;
  color: #fff !important;
}

.contact-list a,
.contact-actions a,
.header-cta,
.btn {
  touch-action: manipulation;
}

.booking-copy h1 {
  max-width: 880px;
}

.booking-form .submit-booking {
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1120px) {
  .site-header {
    width: min(calc(100% - 24px), 1180px);
  }

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .package-card.featured,
  .package-card.premium-gold {
    transform: none;
  }

  .package-card.featured:hover,
  .package-card.premium-gold:hover,
  .package-card:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    padding: 9px 10px;
    border-radius: 28px;
  }

  .brand-logo {
    width: 138px;
    height: 46px;
  }

  .header-cta {
    padding: 12px 15px;
    font-size: 0.84rem;
  }

  .gallery-section {
    padding: 74px 0 62px;
  }

  .hc-gallery-shell {
    padding-top: 0;
  }

  .hc-gallery-row {
    gap: 14px;
    padding-inline: 14px;
  }

  .hc-gallery-card {
    width: min(82vw, 330px);
    height: 215px;
  }

  .hc-gallery-row-wrap::before,
  .hc-gallery-row-wrap::after {
    width: 34px;
  }

  .package-card {
    min-height: auto;
    padding: 34px 24px 28px;
    border-radius: 26px;
  }

  .package-card h3 {
    padding-right: 0;
    margin-top: 48px;
  }

  .package-badge,
  .popular,
  .premium-badge {
    top: 22px !important;
    right: 22px !important;
    font-size: 0.68rem;
  }

  .package-book-btn,
  .package-card .btn.primary {
    width: 100%;
    min-width: 0;
  }

  .booking-main {
    width: min(100% - 20px, 1180px);
  }

  .booking-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
    line-height: 0.92;
  }

  .booking-copy p {
    font-size: 1rem;
  }

  .booking-trust-row span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .booking-logo-card {
    padding: 16px;
    border-radius: 24px;
  }

  .price-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 118px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .hc-gallery-card {
    width: 84vw;
    height: 188px;
  }

  .booking-trust-row span {
    flex-basis: 100%;
  }
}

/* Dynamic static gallery */
.gallery-section {
  display: block;
  min-height: auto;
  overflow: hidden;
  padding-top: 130px;
  background:
    radial-gradient(circle at 12% 12%, rgba(183, 138, 53, 0.13), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(107, 31, 34, 0.14), transparent 34%),
    var(--background);
}

.gallery-head {
  margin-inline: auto;
  text-align: center;
}

.gallery-head .eyebrow {
  justify-content: center;
}

.gallery-filters {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(980px, 100%);
  margin: 0 auto 34px;
}

.gallery-filter {
  border: 1px solid rgba(107, 31, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(26, 23, 25, 0.76);
  padding: 11px 16px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(107, 31, 34, 0.08);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(183, 138, 53, 0.62);
  outline: none;
}

.gallery-filter.is-active {
  border-color: rgba(107, 31, 34, 0.2);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(107, 31, 34, 0.22);
}

.gallery-status {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  padding: 16px 18px;
  border: 1px dashed rgba(183, 138, 53, 0.46);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(26, 23, 25, 0.68);
  text-align: center;
  font-weight: 800;
}

.gallery-status:empty {
  display: none;
}

.gallery-grid.dynamic-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 12px;
  gap: 18px;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  grid-row: span 24;
  min-height: 278px;
  overflow: hidden;
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: 24px;
  background: var(--text-dark);
  box-shadow: var(--soft-shadow);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-card:nth-child(5n + 2) {
  grid-row-end: span 30;
}

.gallery-card:nth-child(7n + 4) {
  grid-row-end: span 34;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(26, 23, 25, 0.82)),
    linear-gradient(135deg, rgba(183, 138, 53, 0.24), transparent 38%);
  opacity: 0.82;
  transition: opacity 0.35s ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.09);
  filter: saturate(1.12) contrast(1.05);
}

.gallery-card:hover::after,
.gallery-card:focus-within::after {
  opacity: 0.96;
}

.gallery-card button {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-card button:focus-visible {
  outline: 4px solid rgba(183, 138, 53, 0.78);
  outline-offset: -8px;
}

.gallery-card-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  color: var(--white);
  pointer-events: none;
}

.gallery-card-caption span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1b6, var(--gold-accent));
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(26, 23, 25, 0.28);
}

.gallery-card-caption strong {
  color: var(--white);
  font-size: 0.92rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.48);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 72px 24px 36px;
  background: rgba(10, 6, 7, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  width: auto;
  max-width: min(1080px, 94vw);
  max-height: 78vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.54);
}

.gallery-lightbox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 800;
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .gallery-grid.dynamic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gallery-section {
    padding: 98px 20px 64px;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .gallery-grid.dynamic-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card:nth-child(5n + 2),
  .gallery-card:nth-child(7n + 4) {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .gallery-lightbox {
    padding-inline: 14px;
  }

  .gallery-lightbox img {
    max-height: 72vh;
    border-radius: 14px;
  }
}

/* Premium auto-scrolling gallery */
.gallery-section {
  position: relative;
  display: block;
  min-height: auto;
  overflow: hidden;
  scroll-margin-top: 120px;
  padding: clamp(150px, 14vw, 190px) 0 clamp(78px, 10vw, 120px);
  background:
    radial-gradient(circle at 12% 14%, rgba(183, 138, 53, 0.2), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(107, 31, 34, 0.48), transparent 36%),
    linear-gradient(135deg, #090607 0%, var(--primary-dark) 44%, #140708 74%, #050304 100%);
  color: var(--white);
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(183, 138, 53, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 38%, black 0%, transparent 72%);
  opacity: 0.42;
}

.gallery-bg-glow {
  position: absolute;
  inset: auto -12vw -18vw auto;
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 50%;
  background: rgba(183, 138, 53, 0.22);
  filter: blur(84px);
  pointer-events: none;
}

.gallery-head {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
}

.gallery-head .eyebrow {
  justify-content: center;
  color: #f1cf76;
}

.gallery-head .eyebrow::before {
  background: #f1cf76;
}

.gallery-head h2 {
  color: #fff8ef;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: 0.92;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.4);
}

.gallery-head p {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 248, 239, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.gallery-filters {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto 38px;
}

.gallery-filter {
  min-height: 44px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.08);
  color: rgba(255, 248, 239, 0.82);
  padding: 0 18px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(241, 207, 118, 0.72);
  outline: none;
}

.gallery-filter.is-active {
  border-color: rgba(241, 207, 118, 0.86);
  background: linear-gradient(135deg, #fff1b6, var(--gold-accent));
  color: var(--primary-dark);
  box-shadow: 0 18px 44px rgba(183, 138, 53, 0.24);
}

.auto-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  width: 100%;
}

.auto-gallery[hidden] {
  display: none;
}

.gallery-row-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-row-shell::before,
.gallery-row-shell::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 4;
  width: min(12vw, 150px);
  height: 100%;
  pointer-events: none;
}

.gallery-row-shell::before {
  left: 0;
  background: linear-gradient(90deg, #090607, transparent);
}

.gallery-row-shell::after {
  right: 0;
  background: linear-gradient(270deg, #090607, transparent);
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 8px 0;
  will-change: transform;
}

.gallery-track-set {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  padding-right: 24px;
}

.gallery-track-one {
  animation: galleryScrollLeft 58s linear infinite;
}

.gallery-track-two {
  animation: galleryScrollRight 64s linear infinite;
}

.auto-gallery:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-card {
  position: relative;
  flex: 0 0 360px;
  width: 360px;
  height: 260px;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(241, 207, 118, 0.24);
  border-radius: 28px;
  background: #12080a;
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
  isolation: isolate;
  transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(241, 207, 118, 0.62);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(241, 207, 118, 0.14);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.07);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(135deg, rgba(183, 138, 53, 0.22), transparent 42%);
  opacity: 0.96;
  pointer-events: none;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: 22px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.38s ease, transform 0.38s ease;
  pointer-events: none;
}

.gallery-card:hover::before,
.gallery-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-card button {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-card button:focus-visible {
  outline: 4px solid rgba(241, 207, 118, 0.82);
  outline-offset: -10px;
}

.gallery-card-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 10px;
  color: var(--white);
  pointer-events: none;
}

.gallery-card-caption span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1b6, var(--gold-accent));
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(183, 138, 53, 0.24);
}

.gallery-card-caption strong {
  color: #fff8ef;
  font-size: 1.12rem;
  line-height: 1.15;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
}

.gallery-empty {
  position: relative;
  z-index: 2;
  display: none;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid rgba(241, 207, 118, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.2), transparent 34%),
    rgba(255, 248, 239, 0.08);
  color: var(--white);
  text-align: center;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.gallery-empty.is-visible {
  display: block;
}

.gallery-empty[hidden] {
  display: none !important;
}

.gallery-empty h3 {
  color: #fff8ef;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.gallery-empty p {
  margin-top: 12px;
  color: rgba(255, 248, 239, 0.74);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 78px 86px 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(183, 138, 53, 0.16), transparent 30%),
    rgba(8, 4, 5, 0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  width: auto;
  max-width: min(1080px, 86vw);
  max-height: 76vh;
  border: 1px solid rgba(241, 207, 118, 0.22);
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.62);
}

.gallery-lightbox-info {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.gallery-lightbox-info span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1b6, var(--gold-accent));
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-lightbox-info p {
  margin: 0;
  color: rgba(255, 248, 239, 0.88);
  font-weight: 900;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 239, 0.28);
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.1);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.gallery-lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  font-size: 2.8rem;
  line-height: 1;
}

.gallery-lightbox-prev {
  left: 24px;
}

.gallery-lightbox-next {
  right: 24px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  border-color: rgba(241, 207, 118, 0.72);
  background: rgba(255, 248, 239, 0.18);
  outline: none;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  transform: translateY(-2px);
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes galleryScrollLeft {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes galleryScrollRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .gallery-section {
    padding-top: 132px;
  }

  .gallery-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 2px 8px;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter {
    flex: 0 0 auto;
  }

  .gallery-track {
    padding: 8px 0;
  }

  .gallery-track-set {
    gap: 16px;
    padding-right: 16px;
  }

  .gallery-card {
    flex-basis: 280px;
    width: 280px;
    height: 210px;
    min-height: 210px;
    border-radius: 24px;
  }

  .gallery-card-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .gallery-track-one {
    animation-duration: 46s;
  }

  .gallery-track-two {
    animation-duration: 52s;
  }

  .gallery-lightbox {
    padding: 72px 18px 36px;
  }

  .gallery-lightbox img {
    max-width: 92vw;
    max-height: 68vh;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
    transform: none;
    font-size: 2.2rem;
  }

  .gallery-lightbox-prev {
    left: 22px;
  }

  .gallery-lightbox-next {
    right: 22px;
  }

  .gallery-lightbox-nav:hover,
  .gallery-lightbox-nav:focus-visible {
    transform: scale(1.05);
  }
}

@media (max-width: 520px) {
  .gallery-section {
    padding-top: 122px;
  }

  .gallery-head {
    width: min(100% - 28px, 820px);
  }

  .gallery-head h2 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
  }

  .gallery-card {
    flex-basis: 82vw;
    width: 82vw;
    height: 210px;
  }

  .gallery-card-caption strong {
    font-size: 1rem;
  }
}

/* Premium footer polish */
.site-footer.footer-section,
.footer-section,
.last-section {
  position: relative;
  z-index: 2;
  display: block;
  padding: 80px 8% 50px;
  background: #171314;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.site-footer.footer-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(183, 138, 53, 0.12);
  filter: blur(70px);
  pointer-events: none;
}

.footer-wrapper,
.last-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) minmax(160px, 0.45fr);
  align-items: center;
  gap: 42px;
}

.footer-image,
.himadri-image-wrap {
  width: 100%;
  max-width: 280px;
  justify-self: center;
}

.footer-profile {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-image img,
.himadri-image-wrap img,
.site-footer img[src*="himadri.png"] {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.footer-profile h3 {
  position: relative;
  margin: 10px 0 0;
  padding-bottom: 10px;
  color: #fff8ef;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.footer-profile h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  transform: translateX(-50%);
}

.footer-profile p {
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(183, 138, 53, 0.26);
  border-radius: 999px;
  background: rgba(107, 31, 34, 0.18);
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.footer-content,
.last-content {
  color: #fff;
  text-align: left;
}

.footer-content p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.footer-content p:first-child {
  margin-top: 0;
  color: #fff8ef;
  font-weight: 900;
}

.site-footer.footer-section .footer-social,
.footer-section .footer-social,
.last-section .footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer.footer-section .footer-social a,
.footer-section .footer-social a,
.last-section .footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #651b20;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-footer.footer-section .footer-social a:hover,
.footer-section .footer-social a:hover,
.last-section .footer-social a:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.site-footer.footer-section .footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-footer.footer-section,
  .footer-section,
  .last-section {
    padding: 60px 6% 40px;
  }

  .footer-wrapper,
  .last-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-image,
  .himadri-image-wrap {
    max-width: 220px;
    justify-self: center;
  }

  .footer-profile {
    max-width: 260px;
    margin: 0 auto;
  }

  .footer-image img,
  .himadri-image-wrap img,
  .site-footer img[src*="himadri.png"] {
    max-width: 220px;
    margin: 0 auto;
  }

  .footer-content,
  .last-content {
    text-align: center;
  }

  .site-footer.footer-section .footer-social,
  .footer-section .footer-social,
  .last-section .footer-social {
    justify-content: center;
  }
}

/* About section two-column card layout */
.about-section {
  position: relative;
  display: block;
  min-height: 100vh;
  padding: 140px 8% 100px;
  background:
    radial-gradient(circle at bottom right, rgba(201, 154, 58, 0.18), transparent 32%),
    linear-gradient(135deg, #f4eee8, #ebe1d9);
  overflow: hidden;
}

.about-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.about-content {
  max-width: 520px;
  z-index: 2;
}

.about-content h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
  color: #1f1b1b;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(31, 27, 27, 0.72);
  margin-bottom: 18px;
}

.about-card-wrap {
  width: min(100%, 620px);
  justify-self: end;
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 35px 90px rgba(60, 32, 32, 0.22),
    0 0 45px rgba(201, 154, 58, 0.18);
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-card-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 45%, rgba(201, 154, 58, 0.18));
  pointer-events: none;
  z-index: 2;
}

.about-card-img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-card-wrap:hover {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(-12px);
  box-shadow:
    0 45px 110px rgba(60, 32, 32, 0.3),
    0 0 70px rgba(201, 154, 58, 0.26);
}

@media (max-width: 900px) {
  .about-section {
    min-height: auto;
    padding: 110px 6% 80px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-card-wrap {
    justify-self: center;
    width: min(100%, 520px);
    transform: none;
  }

  /* Flatpickr + Date input custom styles for Booking page */
  .date-field { position: relative; }
  .date-input {
    border-radius: 22px;
    padding: 12px 44px 12px 16px;
    border: 1px solid rgba(26,23,25,0.08);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 8px 28px rgba(26,23,25,0.06);
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
    font-size: 1rem;
    color: var(--text-dark);
  }
  .date-input::placeholder { color: rgba(26,23,25,0.46); }
  .date-field::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237a1d24" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.98;
  }
  .date-input:focus { outline: none; box-shadow: 0 6px 30px rgba(201,154,58,0.18); border-color: rgba(201,154,58,0.6); }

  /* Flatpickr calendar styling matching Himadri theme */
  .flatpickr-calendar {
    border-radius: 24px !important;
    background: rgba(255,255,255,0.96) !important;
    box-shadow: 0 30px 80px rgba(80,25,30,0.25) !important;
    border: 1px solid rgba(201,154,58,0.35) !important;
    color: var(--text-dark) !important;
    z-index: 9999;
  }
  .flatpickr-months { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; }
  .flatpickr-month { font-weight: 800; color: #5d161b; font-size: 1rem; }
  .flatpickr-current-month { color: #5d161b; }
  .flatpickr-prev-month, .flatpickr-next-month { color: var(--primary); cursor: pointer; }
  .flatpickr-prev-month:hover, .flatpickr-next-month:hover { color: var(--primary-dark); }
  .flatpickr-weekdays { color: rgba(93,22,27,0.86); font-weight:700; }
  .flatpickr-day { border-radius: 10px; }
  .flatpickr-day:hover { background: rgba(201,154,58,0.22); color: var(--text-dark); }
  .flatpickr-day.today { border: 1px solid #c99a3a; }
  .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: #7a1d24 !important; border-color: #7a1d24 !important; color: #fff !important; }
  .flatpickr-months .flatpickr-month .flatpickr-prev-month, .flatpickr-months .flatpickr-month .flatpickr-next-month { margin: 0 8px; }
  .flatpickr-time { display: none; }

  /* Ensure calendar opens below input and is responsive */
  .flatpickr-calendar.inline { position: relative; }
  @media (max-width: 640px) {
    .flatpickr-calendar { width: 96% !important; left: 2% !important; right: 2% !important; }
  }

  .about-card-wrap:hover {
    transform: translateY(-8px);
  }
}

/* Premium booking form upgrade */
.booking-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(183, 138, 53, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(107, 31, 34, 0.14), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(183, 138, 53, 0.12), transparent 38%),
    linear-gradient(135deg, #fbf7f1, #eee5dc 58%, #f8f5f2);
}

.booking-bg {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.78), transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(183, 138, 53, 0.14), transparent 35%);
}

.booking-main {
  width: min(1220px, calc(100% - 36px));
  padding: clamp(44px, 6vw, 80px) 0 96px;
}

.booking-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  min-height: 390px;
  gap: clamp(28px, 5vw, 76px);
}

.booking-copy h1 {
  max-width: 880px;
  letter-spacing: -0.055em;
}

.booking-copy p {
  max-width: 690px;
  color: rgba(26, 23, 25, 0.7);
}

.booking-trust-row span {
  border: 1px solid rgba(107, 31, 34, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(107, 31, 34, 0.09);
}

.booking-logo-card {
  border: 1px solid rgba(107, 31, 34, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 90px rgba(74, 20, 22, 0.16);
}

.booking-card {
  margin-top: 34px;
  padding: clamp(24px, 5vw, 62px);
  border: 1px solid rgba(107, 31, 34, 0.1);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.18), transparent 32%),
    radial-gradient(circle at 0% 85%, rgba(107, 31, 34, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 34px 100px rgba(74, 20, 22, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.booking-form {
  gap: 30px;
}

.form-section-title,
.booking-step-head {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(107, 31, 34, 0.1);
}

.form-section-title:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-section-title > span {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid rgba(183, 138, 53, 0.3);
  background: linear-gradient(135deg, rgba(107, 31, 34, 0.1), rgba(183, 138, 53, 0.14));
  box-shadow: 0 12px 28px rgba(107, 31, 34, 0.08);
}

.form-section-title h2 {
  margin: 0;
  color: var(--text-dark);
}

.booking-step-head p {
  margin: 8px 0 0;
  color: rgba(26, 23, 25, 0.58);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 750;
}

.booking-form label,
.full-field {
  gap: 10px;
  color: var(--primary-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid rgba(107, 31, 34, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 245, 242, 0.94));
  padding: 17px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  border-color: rgba(183, 138, 53, 0.44);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-accent);
  box-shadow:
    0 0 0 5px rgba(183, 138, 53, 0.14),
    0 16px 34px rgba(107, 31, 34, 0.08);
  transform: translateY(-1px);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-option {
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 22px 16px;
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(74, 20, 22, 0.07);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.category-option:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 138, 53, 0.66);
  box-shadow:
    0 24px 56px rgba(107, 31, 34, 0.14),
    0 0 0 4px rgba(183, 138, 53, 0.08);
}

.category-option span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: rgba(107, 31, 34, 0.08);
  color: var(--primary);
  font-size: 1.85rem;
  line-height: 1;
}

.category-option strong {
  color: var(--text-dark);
  font-size: 0.96rem;
  line-height: 1.2;
}

.category-option:has(input:checked) {
  transform: translateY(-7px);
  border-color: rgba(241, 207, 118, 0.92);
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 207, 118, 0.2), transparent 38%),
    linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow:
    0 28px 66px rgba(107, 31, 34, 0.24),
    0 0 0 5px rgba(183, 138, 53, 0.12);
}

.category-option:has(input:checked) span {
  background: linear-gradient(135deg, #fff1b6, var(--gold-accent));
  color: var(--primary-dark);
}

.category-option:has(input:checked) strong {
  color: var(--white);
}

.package-field,
.guests-field,
.requirements-field {
  width: 100%;
}

.price-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(107, 31, 34, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(107, 31, 34, 0.08), rgba(183, 138, 53, 0.14));
  box-shadow:
    0 24px 70px rgba(107, 31, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.price-topline strong {
  color: var(--primary);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  transition: transform 0.24s ease, color 0.24s ease;
}

.price-topline strong.price-pop {
  animation: pricePulse 0.34s ease;
}

.price-helper {
  margin: 10px 0 8px;
  color: rgba(74, 20, 22, 0.66);
  font-size: 0.98rem;
  font-weight: 850;
}

#priceRange {
  width: 100%;
  height: 10px;
  margin: 26px 0 14px;
  border-radius: 999px;
  padding: 0;
  background: linear-gradient(to right, #7a1f24 0%, #7a1f24 var(--range-progress, 12%), rgba(201, 154, 58, 0.28) var(--range-progress, 12%), rgba(201, 154, 58, 0.28) 100%);
  accent-color: var(--primary);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

#priceRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border: 4px solid #fff8ef;
  border-radius: 50%;
  background: #c99a3a;
  box-shadow: 0 8px 22px rgba(122, 31, 36, 0.35);
  cursor: pointer;
}

#priceRange::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 4px solid #fff8ef;
  border-radius: 50%;
  background: #c99a3a;
  box-shadow: 0 8px 22px rgba(122, 31, 36, 0.35);
  cursor: pointer;
}

.quick-prices button {
  border: 1px solid rgba(107, 31, 34, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(74, 20, 22, 0.08);
}

.quick-prices button:hover:not(:disabled) {
  transform: translateY(-4px);
  border-color: rgba(183, 138, 53, 0.55);
  background: var(--white);
}

.quick-prices button.is-active {
  border-color: rgba(183, 138, 53, 0.78);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow:
    0 16px 34px rgba(107, 31, 34, 0.2),
    0 0 0 4px rgba(183, 138, 53, 0.12);
}

.quick-prices button:disabled,
.quick-prices button.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
  box-shadow: none;
}

.submit-booking {
  min-width: min(100%, 340px);
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  box-shadow:
    0 20px 46px rgba(107, 31, 34, 0.28),
    0 0 0 5px rgba(183, 138, 53, 0.1);
}

.submit-booking:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 62px rgba(107, 31, 34, 0.34),
    0 0 0 6px rgba(183, 138, 53, 0.14);
}

.submit-booking img {
  width: 24px;
  height: 24px;
  padding: 3px;
  border-radius: 50%;
  background: var(--white);
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(43, 127, 163, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(43, 127, 163, 0.08), rgba(255, 255, 255, 0.58));
  color: rgba(26, 23, 25, 0.68);
  font-weight: 750;
}

.form-note span {
  color: var(--primary);
  font-weight: 1000;
}

@keyframes pricePulse {
  0% { transform: scale(0.96); color: var(--primary-dark); }
  60% { transform: scale(1.04); color: var(--primary); }
  100% { transform: scale(1); color: var(--primary); }
}

@media (max-width: 1050px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .booking-main {
    width: min(100% - 22px, 1220px);
    padding-bottom: 72px;
  }

  .booking-card {
    padding: 26px 18px;
    border-radius: 30px;
  }

  .form-section-title,
  .booking-step-head {
    flex-direction: column;
    gap: 12px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-option {
    min-height: 126px;
    padding: 18px 10px;
    border-radius: 22px;
  }

  .price-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions {
    justify-content: stretch;
  }

  .submit-booking {
    width: 100%;
  }
}

/* Premium services section */
.services-section {
  position: relative;
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: 130px max(24px, calc((100vw - var(--max-width)) / 2)) 110px;
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 138, 53, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(107, 31, 34, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 242, 0.96), rgba(238, 229, 220, 0.92));
}

.services-bg-glow {
  position: absolute;
  right: -180px;
  top: 8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(183, 138, 53, 0.18);
  filter: blur(82px);
  pointer-events: none;
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.services-copy {
  position: sticky;
  top: 116px;
}

.services-copy h2 {
  max-width: 540px;
  font-size: clamp(2.5rem, 5.6vw, 5.4rem);
  line-height: 0.92;
}

.services-copy p {
  max-width: 560px;
  color: rgba(26, 23, 25, 0.7);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-pills span {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(107, 31, 34, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(107, 31, 34, 0.08);
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-section .service-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(107, 31, 34, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 100% 0%, rgba(183, 138, 53, 0.18), transparent 38%);
  box-shadow:
    0 20px 54px rgba(74, 20, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  transform: perspective(900px) translateZ(0);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.services-section .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 31, 34, 0.08), transparent 46%, rgba(183, 138, 53, 0.14));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

.services-section .service-card:hover {
  transform: perspective(900px) translateY(-10px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(183, 138, 53, 0.52);
  box-shadow:
    0 30px 74px rgba(107, 31, 34, 0.18),
    0 0 0 5px rgba(183, 138, 53, 0.08);
}

.services-section .service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(107, 31, 34, 0.12), rgba(183, 138, 53, 0.18));
  color: var(--primary);
  font-size: 1.75rem;
  box-shadow: 0 14px 30px rgba(107, 31, 34, 0.1);
}

.services-section .service-card small {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(183, 138, 53, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.services-section .service-card h3 {
  position: relative;
  z-index: 1;
  color: var(--text-dark);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.services-section .service-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: rgba(26, 23, 25, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
}

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

  .services-copy {
    position: relative;
    top: auto;
  }

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

@media (max-width: 640px) {
  .services-section {
    padding: 104px 20px 72px;
  }

  .services-actions,
  .services-actions .btn {
    width: 100%;
  }

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

  .services-section .service-card {
    min-height: auto;
    padding: 24px 22px;
  }
}

/* Balanced services redesign */
.services-section {
  position: relative;
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: 118px max(24px, calc((100vw - var(--max-width)) / 2)) 96px;
  background:
    radial-gradient(circle at 12% 10%, rgba(183, 138, 53, 0.14), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(107, 31, 34, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 242, 0.98), rgba(238, 229, 220, 0.9));
}

.services-bg-glow {
  position: absolute;
  right: -160px;
  top: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(183, 138, 53, 0.15);
  filter: blur(86px);
  pointer-events: none;
}

.services-head {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.services-head .eyebrow {
  justify-content: center;
}

.services-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.services-head p {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(26, 23, 25, 0.68);
}

.services-section .service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services-section .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(201, 154, 58, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 55px rgba(80, 40, 40, 0.12);
  backdrop-filter: blur(12px);
  transform: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-section .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 0%, rgba(183, 138, 53, 0.16), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.services-section .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 154, 58, 0.72);
  box-shadow: 0 28px 70px rgba(80, 40, 40, 0.18);
}

.services-section .service-card:hover::before {
  opacity: 1;
}

.services-section .service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(107, 31, 34, 0.08);
  color: var(--primary);
  font-size: 1.55rem;
  box-shadow: none;
}

.services-section .service-card small {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  max-width: calc(100% - 96px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 7px 10px;
  border: 1px solid rgba(201, 154, 58, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.services-section .service-card h3 {
  position: relative;
  z-index: 1;
  color: var(--text-dark);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services-section .service-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: rgba(26, 23, 25, 0.66);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .services-section {
    padding: 104px 22px 82px;
  }

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

@media (max-width: 620px) {
  .services-section {
    padding: 88px 20px 68px;
  }

  .services-head {
    margin-bottom: 32px;
  }

  .services-head h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .services-section .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-section .service-card {
    min-height: auto;
    padding: 24px;
  }
}
