:root {
  --ink: #231a1f;
  --muted: #74656a;
  --cream: #fff8ec;
  --paper: #fffdf8;
  --rose: #c94b63;
  --saffron: #eca72c;
  --mehndi: #176b55;
  /* --maroon: #7b2434; */
  --maroon: #9B0506;
  --gold: #c79a45;
  --line: rgba(35, 26, 31, 0.14);
  --shadow: 0 22px 70px rgba(76, 38, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 154, 69, 0.22), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(123, 36, 52, 0.22), transparent 32%),
    radial-gradient(circle at 50% 92%, rgba(23, 107, 85, 0.14), transparent 34%),
    linear-gradient(145deg, #fff8ec, #fffdf8 52%, #f8efe2);
  transition: opacity 0.75s ease, visibility 0.75s ease, transform 0.75s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
}

.loader-orbit {
  position: absolute;
  width: min(78vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 154, 69, 0.28);
  border-radius: 50%;
  animation: loaderOrbitSpin 14s linear infinite;
}

.loader-orbit::before,
.loader-orbit::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(123, 36, 52, 0.2);
  border-radius: 50%;
}

.loader-orbit::after {
  inset: 72px;
  border-style: solid;
  border-color: rgba(23, 107, 85, 0.14);
  animation: loaderOrbitSpin 9s linear infinite reverse;
}

.loader-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(199, 154, 69, 0.7);
}

.loader-orbit span:nth-child(1) { left: 50%; top: -7px; }
.loader-orbit span:nth-child(2) { right: 18%; bottom: 7%; background: var(--maroon); }
.loader-orbit span:nth-child(3) { left: 8%; bottom: 22%; background: var(--mehndi); }

.loader-brand-card {
  position: relative;
  z-index: 1;
  width: min(82vw, 380px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 6vw, 46px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 34px 95px rgba(36, 22, 27, 0.16), inset 0 0 0 1px rgba(199, 154, 69, 0.12);
  backdrop-filter: blur(22px);
  animation: loaderCardIn 0.9s ease both;
}

.loader-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(123, 36, 52, 0.16);
  animation: loaderPulse 2.2s ease-in-out infinite;
}

.loader-wordmark {
  width: min(260px, 70vw);
  height: auto;
  mix-blend-mode: multiply;
}

.loader-line {
  width: min(240px, 64vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 22, 27, 0.1);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--maroon), var(--gold), transparent);
  transform: translateX(-100%);
  animation: loaderLine 1.65s ease-in-out infinite;
}

.loader-brand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

@keyframes loaderCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loaderPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}

@keyframes loaderLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (pointer: fine) {
  body,
  a,
  button,
  input,
  select,
  textarea {
    cursor: none;
  }

  .custom-cursor,
  .custom-cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .custom-cursor {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(123, 36, 52, 0.5);
    border-radius: 50%;
    background: rgba(255, 248, 236, 0.24);
    backdrop-filter: blur(6px);
    mix-blend-mode: multiply;
  }

  .custom-cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--maroon);
    border-radius: 50%;
  }

  body.cursor-ready .custom-cursor,
  body.cursor-ready .custom-cursor-dot {
    opacity: 1;
  }

  body.cursor-hover .custom-cursor {
    width: 58px;
    height: 58px;
    border-color: rgba(199, 154, 69, 0.82);
    background: rgba(199, 154, 69, 0.2);
  }

  body.cursor-view .custom-cursor {
    width: 76px;
    height: 76px;
    border-color: rgba(255, 255, 255, 0.74);
    background: rgba(123, 36, 52, 0.22);
    mix-blend-mode: normal;
  }
}

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

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

.launch-offer {
  position: sticky;
  inset: 0 0 auto;
  z-index: 35;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, #7b2434, #c79a45, #7b2434);
  box-shadow: 0 10px 28px rgba(123, 36, 52, 0.2);
}

.launch-offer-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 22s linear infinite;
}

.launch-offer span {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 30;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 248, 236, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  /* background: #fff;
  border: 1px solid rgba(123, 36, 52, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(123, 36, 52, 0.12); */
}

.brand-mark img {
  width: 96%;
  height: 96%;
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(118px, 13vw, 178px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 0.28s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-links a:hover {
  color: var(--maroon);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--maroon);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--maroon);
  box-shadow: 0 14px 34px rgba(123, 36, 52, 0.2);
}

.btn-ghost {
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.5);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--maroon);
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(123, 36, 52, 0.34);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.hero {
  height: calc(100svh - 112px);
  min-height: 620px;
  max-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 0 clamp(28px, 5vw, 78px) 18px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 74% 48%, rgba(199, 154, 69, 0.15), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(123, 36, 52, 0.07), transparent 30%);
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 78px);
  top: 19%;
  width: min(38vw, 620px);
  height: 46%;
  background:
    radial-gradient(ellipse at 32% 42%, rgba(255, 255, 255, 0.5), transparent 64%),
    radial-gradient(circle at 18% 10%, rgba(199, 154, 69, 0.12), transparent 38%);
  border: 0;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--maroon);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.96;
}

h2 {
  max-width: 820px;
  font-size: 56px;
  line-height: 1.02;
}

.hero-text,
.section-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-text {
  max-width: 560px;
  margin-top: 20px;
  font-size: clamp(17px, 1.45vw, 20px);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.trust-row span {
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(123, 36, 52, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 46%, rgba(199, 154, 69, 0.2), transparent 35%),
    radial-gradient(circle at 50% 58%, rgba(123, 36, 52, 0.12), transparent 50%);
  transform: translateX(-2%);
}

.hero-visual img {
  width: auto;
  max-width: 100%;
  height: min(100%, 760px);
  max-height: calc(100svh - 136px);
  object-fit: contain;
  border-radius: 30px;
  object-position: center;
  filter: drop-shadow(0 34px 54px rgba(76, 38, 45, 0.2));
}

.floating-card {
  position: absolute;
  width: min(230px, 42vw);
  padding: 18px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(35, 26, 31, 0.18);
  backdrop-filter: blur(16px);
  display: none;
}

.floating-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--maroon);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-card strong {
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-weight: 400;
}

.card-one {
  left: -22px;
  bottom: 42px;
}

.card-two {
  top: 54px;
  right: -18px;
}

.marquee {
  overflow: hidden;
  padding: 16px 0;
  color: #fff;
  background: var(--maroon);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.section {
  padding: 94px clamp(20px, 5vw, 64px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

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

.collection-card,
.price-card,
.step,
.showcase-card,
.success-message {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(76, 38, 45, 0.08);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: var(--collection-image) center / cover no-repeat;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(18, 9, 14, 0.05) 0%, rgba(18, 9, 14, 0.42) 48%, rgba(0, 0, 0, 0.82) 100%);
  transition: opacity 0.35s ease;
}

.collection-card > * {
  position: relative;
  z-index: 2;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(76, 38, 45, 0.2);
  filter: saturate(1.08);
}

.collection-tag,
.package-label {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.collection-card h3,
.price-card h3,
.step h3 {
  margin: 0 0 10px;
  font-family: "Marcellus", serif;
  font-size: 30px;
  font-weight: 400;
}

.collection-card p,
.price-card p,
.step p {
  margin: 0;
  line-height: 1.6;
}

.collection-link {
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
}

.occasion-rail {
  margin-top: 22px;
  overflow: hidden;
  border-block: 1px solid rgba(123, 36, 52, 0.12);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.occasion-rail-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 18px 0;
  animation: occasionRail 28s linear infinite;
}

.occasion-rail:hover .occasion-rail-track {
  animation-play-state: paused;
}

.occasion-rail a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(123, 36, 52, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(76, 38, 45, 0.08);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.occasion-rail a:hover {
  color: var(--maroon);
  border-color: rgba(123, 36, 52, 0.28);
  transform: translateY(-2px);
}

@keyframes occasionRail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 26px;
}

.step span {
  color: var(--gold);
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 64px) 94px;
}

.showcase-card {
  padding: 24px;
}

.showcase-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.showcase-card strong {
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-weight: 400;
}

.services-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 154, 69, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.32);
}

.services-section .section-copy {
  max-width: 430px;
  margin: 0;
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #7b2434, #231a1f);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 58px rgba(76, 38, 45, 0.14);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 69, 0.38);
  box-shadow: 0 28px 76px rgba(76, 38, 45, 0.2);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 24% 18%, rgba(255, 225, 142, 0.3), transparent 28%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Marcellus", serif;
  font-size: 34px;
  font-weight: 400;
}

.service-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-meta strong,
.service-meta small {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-video {
  background: linear-gradient(135deg, #176b55, #231a1f);
}

.service-website {
  background: linear-gradient(135deg, #8a5a19, #7b2434);
}

.experience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(199, 154, 69, 0.18), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(123, 36, 52, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 248, 236, 0.18));
}

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

.experience-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 20px 64px rgba(76, 38, 45, 0.1);
  text-decoration: none;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 69, 0.36);
  box-shadow: 0 28px 84px rgba(76, 38, 45, 0.16);
}

.experience-media {
  position: relative;
  overflow: hidden;
  background: #f4e6d9;
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(33, 19, 24, 0.4));
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.experience-body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.experience-body small {
  width: fit-content;
  padding: 8px 12px;
  color: var(--maroon);
  background: rgba(123, 36, 52, 0.08);
  border: 1px solid rgba(123, 36, 52, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-body strong {
  font-family: "Marcellus", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.experience-body span {
  color: var(--muted);
  line-height: 1.6;
}

.experience-body em {
  width: fit-content;
  margin-top: 8px;
  color: var(--maroon);
  border-bottom: 1px solid rgba(123, 36, 52, 0.32);
  font-style: normal;
  font-weight: 900;
}

.work-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(199, 154, 69, 0.18), transparent 30%),
    radial-gradient(circle at 94% 18%, rgba(123, 36, 52, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 236, 0.18));
}

.work-section::before {
  content: "Curated Work";
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  top: 24px;
  color: rgba(123, 36, 52, 0.055);
  font-family: "Playfair Display", "Marcellus", serif;
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.work-section .section-heading {
  position: relative;
  z-index: 1;
  align-items: end;
}

.work-section .section-copy {
  max-width: 420px;
  margin: 0;
  font-size: 17px;
}

.work-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.work-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  grid-column: span 4;
  background: #160d11;
  border: 1px solid rgba(123, 36, 52, 0.14);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(76, 38, 45, 0.12);
  cursor: zoom-in;
  aspect-ratio: 4 / 5.35;
  min-height: 390px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.work-item:nth-child(1),
.work-item:nth-child(6n) {
  grid-column: span 5;
  aspect-ratio: 4 / 4.75;
}

.work-item:nth-child(2),
.work-item:nth-child(7n) {
  grid-column: span 3;
  aspect-ratio: 4 / 6.25;
}

.work-item:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 69, 0.42);
  box-shadow: 0 30px 84px rgba(76, 38, 45, 0.18);
}

.work-type {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 8px 11px;
  color: #fff;
  background: rgba(35, 26, 31, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
}

.work-index {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.work-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(17, 11, 14, 0.82)),
    radial-gradient(circle at center, rgba(199, 154, 69, 0.12), rgba(17, 11, 14, 0.24));
  opacity: 0.88;
  transition: opacity 0.35s ease;
}

.work-item::after {
  content: "Open";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(17, 11, 14, 0.22);
  font-family: "Marcellus", serif;
  font-size: 16px;
  transform: scale(0.82);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.work-info {
  position: absolute;
  left: 18px;
  right: 92px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 6px;
  color: #fff;
  text-align: left;
  transform: translateY(8px);
  transition: transform 0.32s ease;
}

.work-info strong {
  display: block;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.work-info small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  transition: transform 0.55s ease;
}

.work-item:hover img {
  transform: scale(1.06);
}

.work-item:hover::before {
  opacity: 0.96;
}

.work-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.work-item:hover .work-info {
  transform: translateY(0);
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 86px;
  background: rgba(17, 11, 14, 0.54);
  backdrop-filter: blur(26px) saturate(1.15);
}

.work-lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  display: grid;
  gap: 14px;
  width: min(94vw, 980px);
  max-height: 92vh;
  margin: 0;
}

.lightbox-frame img,
.lightbox-frame video {
  width: 100%;
  max-height: calc(92vh - 54px);
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-frame video,
.lightbox-frame .lightbox-link {
  display: none;
}

.lightbox-frame.show-video img {
  display: none;
}

.lightbox-frame.show-video video {
  display: block;
}

.lightbox-frame.show-website img,
.lightbox-frame.show-website video {
  display: none;
}

.lightbox-frame.show-website .lightbox-link {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  color: #fff;
  background: var(--maroon);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 900;
}

.lightbox-frame figcaption {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 22px;
  right: 24px;
}

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

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

body.lightbox-open {
  overflow: hidden;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 0.7s ease, opacity 0.3s ease;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(199, 154, 69, 0.46);
  box-shadow: 0 28px 76px rgba(76, 38, 45, 0.16);
}

.price-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.price-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 225, 142, 0.28), transparent 34%),
    linear-gradient(145deg, #8b263e, var(--maroon));
  transform: translateY(-14px);
}

.price-card.featured:hover {
  transform: translateY(-24px);
  box-shadow: 0 34px 86px rgba(123, 36, 52, 0.28);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.offer-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 14px;
}

.starting-price-label {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card.featured .starting-price-label {
  color: rgba(255, 241, 191, 0.9);
}

.offer-price span {
  color: var(--maroon);
  font-family: "Playfair Display", "Marcellus", serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 700;
  line-height: 0.9;
}

.offer-price del {
  color: rgba(116, 101, 106, 0.72);
  font-size: 15px;
  font-weight: 900;
}

.price-card.featured .offer-price span {
  color: #fff;
}

.price-card.featured .offer-price del {
  color: rgba(255, 255, 255, 0.68);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px 10px 44px;
  color: var(--muted);
  background: rgba(123, 36, 52, 0.045);
  border: 1px solid rgba(123, 36, 52, 0.08);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(199, 154, 69, 0.24);
}

.price-card li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.price-card.featured li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.price-card.featured li::before {
  background: linear-gradient(135deg, #fff1bf, var(--gold));
  box-shadow: 0 8px 20px rgba(255, 225, 142, 0.28);
}

.price-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.price-link-secondary {
  color: var(--maroon);
  background: rgba(123, 36, 52, 0.06);
}

.price-card.featured .price-link-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.price-card a:hover {
  background: var(--maroon);
  color: #fff;
  transform: translateY(-2px);
}

.price-card.featured a:hover {
  background: #fff;
  color: var(--maroon);
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(199, 154, 69, 0.2), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(123, 36, 52, 0.13), transparent 34%),
    #fff3df;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 44px clamp(20px, 5vw, 64px) auto auto;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(199, 154, 69, 0.35);
  border-radius: 50%;
  opacity: 0.55;
}

.testimonial-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-section .section-copy {
  max-width: 430px;
  margin: 0;
  font-size: 17px;
}

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

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(76, 38, 45, 0.11);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 22px;
  color: rgba(199, 154, 69, 0.2);
  font-family: "Marcellus", serif;
  font-size: 112px;
  line-height: 1;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--maroon));
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 69, 0.42);
  box-shadow: 0 28px 76px rgba(76, 38, 45, 0.16);
}

.testimonial-card:nth-child(2),
.testimonial-card:nth-child(5) {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 225, 142, 0.18), transparent 36%),
    linear-gradient(145deg, #8b263e, var(--maroon));
  color: #fff;
}

.testimonial-card:nth-child(2)::before,
.testimonial-card:nth-child(5)::before {
  color: rgba(255, 255, 255, 0.16);
}

.stars {
  width: fit-content;
  padding: 7px 10px;
  color: var(--gold);
  background: rgba(199, 154, 69, 0.11);
  border: 1px solid rgba(199, 154, 69, 0.16);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.testimonial-card:nth-child(2) .stars,
.testimonial-card:nth-child(5) .stars {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffe7a6;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: 25px;
  line-height: 1.28;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.testimonial-author::before {
  content: attr(data-initial);
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    var(--maroon);
  border: 2px solid rgba(199, 154, 69, 0.32);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(76, 38, 45, 0.12);
  font-family: "Marcellus", serif;
  font-size: 20px;
  line-height: 1;
}

.testimonial-card:nth-child(2) .testimonial-author::before,
.testimonial-card:nth-child(5) .testimonial-author::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    var(--gold);
  border-color: rgba(255, 255, 255, 0.28);
}

.testimonial-author strong {
  font-size: 15px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-card:nth-child(2) .testimonial-author span,
.testimonial-card:nth-child(5) .testimonial-author span {
  color: rgba(255, 255, 255, 0.68);
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 154, 69, 0.15), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(123, 36, 52, 0.1), transparent 30%);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(123, 36, 52, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(76, 38, 45, 0.07);
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--maroon);
  border-radius: 50%;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--gold);
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 720px;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  scroll-margin-top: 136px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
}

.success-message {
  margin-top: 24px;
  padding: 18px;
  color: var(--mehndi);
  font-weight: 800;
}

.error-message {
  margin-top: 24px;
  padding: 18px;
  color: #8b263e;
  background: rgba(139, 38, 62, 0.08);
  border: 1px solid rgba(139, 38, 62, 0.14);
  border-radius: 18px;
  font-weight: 800;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.category-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  margin: clamp(18px, 3vw, 30px) clamp(16px, 4vw, 58px) 0;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 154, 69, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 236, 0.84));
  border: 1px solid rgba(123, 36, 52, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(76, 38, 45, 0.08);
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(123, 36, 52, 0.05), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(123, 36, 52, 0.08), transparent 34%);
  pointer-events: none;
}

.category-hero > * {
  position: relative;
}

.category-hero h1 {
  max-width: 620px;
  margin: 0 0 10px;
  font-family: "Marcellus", serif;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  text-shadow: none;
}

.category-hero p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.category-hero .eyebrow {
  margin-bottom: 10px;
  color: var(--maroon);
  font-size: 11px;
}

.category-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(123, 36, 52, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.category-breadcrumb a {
  color: var(--maroon);
  text-decoration: none;
}

.category-intro-actions {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.category-format-pills {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.category-format-pills a {
  min-height: 66px;
  display: grid;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(123, 36, 52, 0.12);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(76, 38, 45, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.category-format-pills a span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.category-format-pills a:hover {
  background: #fff;
  border-color: rgba(123, 36, 52, 0.26);
  transform: translateY(-2px);
}

.category-hero-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.4), transparent 30%),
    linear-gradient(135deg, #7b2434, #c79a45);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(76, 38, 45, 0.2);
}

.category-hero-panel span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-weight: 900;
}

.category-hero-panel strong {
  font-family: "Marcellus", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.category-hero-panel p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.category-hero.birthday .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.45), transparent 31%), linear-gradient(135deg, #7c254f, #f0a56c);
}

.category-hero.baby .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.46), transparent 31%), linear-gradient(135deg, #2f6675, #e5b7a0);
}

.category-hero.festive .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.38), transparent 31%), linear-gradient(135deg, #8f1d35, #c7771f 55%, #194f45);
}

.category-hero.engagement .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 31%), linear-gradient(135deg, #7e2139, #b75b6a 55%, #d5a84f);
}

.category-hero.annaprashan .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 31%), linear-gradient(135deg, #8a3f16, #d58b2c 55%, #6f7f42);
}

.category-hero.farewell .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 31%), linear-gradient(135deg, #26385f, #76517e 58%, #b46b72);
}

.category-hero.anniversary .category-hero-panel {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 31%), linear-gradient(135deg, #4d1734, #9e3158 56%, #c79a45);
}

.category-jump {
  padding-top: 20px;
  padding-bottom: 4px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pills a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.category-pills a:hover,
.category-pills a.active {
  color: #fff;
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-2px);
}

.category-services {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.category-service-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 20px;
  align-items: stretch;
  padding: clamp(16px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(76, 38, 45, 0.07);
}

.category-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-service-copy h2 {
  margin: 0 0 10px;
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
}

.category-service-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.category-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-service-actions a,
.category-empty-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #fff;
  background: var(--maroon);
  border: 1px solid var(--maroon);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.category-service-actions a + a {
  color: var(--maroon);
  background: transparent;
}

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

.category-preview-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(76, 38, 45, 0.07);
}

.category-preview-media {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: #f7eee3;
}

.category-preview-media img,
.category-preview-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.category-preview-card:hover .category-preview-media img,
.category-preview-card:hover .category-preview-media video {
  transform: scale(1.06);
}

.category-preview-media a {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(123, 36, 52, 0.9);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.category-preview-card h3 {
  margin: 13px 14px 5px;
  font-family: "Marcellus", serif;
  font-size: 19px;
  font-weight: 400;
}

.category-preview-card p {
  margin: 0 14px 15px;
  color: var(--muted);
  font-size: 13px;
}

.category-empty-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 236, 0.62));
  border: 1px dashed rgba(123, 36, 52, 0.24);
  border-radius: 22px;
}

.category-empty-card h3 {
  margin: 0 0 10px;
  font-family: "Marcellus", serif;
  font-size: 30px;
  font-weight: 400;
}

.category-empty-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(20px, 5vw, 64px) 28px;
  --footer-x: 50%;
  --footer-y: 42%;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 154, 69, 0.22), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(123, 36, 52, 0.48), transparent 34%),
    linear-gradient(160deg, #211318, #0f0b0d 62%, #1d1519);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 18px clamp(20px, 5vw, 64px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.footer-big-brand {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.105);
  font-family: "Playfair Display", "Marcellus", Georgia, serif;
  font-size: clamp(72px, 17vw, 245px);
  font-weight: 700;
  line-height: 0.84;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  user-select: none;
  transition: color 0.35s ease;
}

.footer-big-brand::after {
  content: "DilSeInvite";
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    radial-gradient(circle 170px at var(--footer-x) var(--footer-y), rgba(239, 207, 139, 0.95), rgba(199, 154, 69, 0.42) 38%, transparent 72%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.site-footer:hover .footer-big-brand::after {
  opacity: 1;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 1.45fr) minmax(170px, 0.72fr) minmax(210px, 0.83fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-intro strong {
  display: block;
  max-width: 560px;
  color: #fff;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(24px, 2.45vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.footer-logo {
  display: block;
  width: min(138px, 36vw);
  height: auto;
  margin-bottom: 18px;
  padding: 6px;
  /* background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22); */
}

.footer-intro p {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(199, 154, 69, 0.18);
  border-color: rgba(199, 154, 69, 0.42);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  margin-top: 54px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a,
.footer-contact a {
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.powered-by a {
  color: #fff;
  text-decoration: none;
  transition: color 0.24s ease;
}

.powered-by a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(18, 140, 74, 0.34);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: inherit;
  animation: whatsappPulse 1.8s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 52px rgba(18, 140, 74, 0.42);
}

@keyframes whatsappPulse {
  to {
    opacity: 0;
    transform: scale(1.28);
  }
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 69, 0.22), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(123, 36, 52, 0.16), transparent 34%),
    var(--cream);
}

.thank-you-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thank-you-card {
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(76, 38, 45, 0.16);
  backdrop-filter: blur(18px);
}

.thank-you-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.thank-you-brand span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(123, 36, 52, 0.14);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(123, 36, 52, 0.14);
}

.thank-you-brand span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thank-you-brand > img {
  width: min(220px, 58vw);
  height: auto;
  mix-blend-mode: multiply;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 74px);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.redirect-timer {
  width: fit-content;
  margin: 28px auto;
  padding: 12px 18px;
  color: var(--maroon);
  background: rgba(123, 36, 52, 0.08);
  border: 1px solid rgba(123, 36, 52, 0.14);
  border-radius: 999px;
  font-weight: 900;
}

.redirect-timer strong {
  color: var(--gold);
}

.sample-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 34px);
  align-items: end;
  margin: clamp(18px, 3vw, 30px) clamp(16px, 4vw, 58px) 0;
  padding: clamp(18px, 2.6vw, 28px);
  background:
    radial-gradient(circle at 92% 8%, rgba(199, 154, 69, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 236, 0.84));
  border: 1px solid rgba(123, 36, 52, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(76, 38, 45, 0.07);
}

.sample-hero h1 {
  max-width: 560px;
  margin-bottom: 8px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
}

.sample-hero p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.sample-hero .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
}

.sample-service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 8px;
  margin-top: 0;
  padding: 5px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(123, 36, 52, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(76, 38, 45, 0.06);
}

.sample-service-tabs a {
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--muted);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.sample-service-tabs a:hover,
.sample-service-tabs a.is-active {
  color: #fff;
  background: var(--maroon);
  box-shadow: 0 12px 26px rgba(176, 0, 0, 0.18);
  transform: translateY(-1px);
}

.sample-browser {
  padding-top: 20px;
}

.sample-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(76, 38, 45, 0.06);
}

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

.sample-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(76, 38, 45, 0.1);
}

.sample-video-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sample-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(76, 38, 45, 0.15);
}

.sample-video-card:focus-visible {
  outline: 3px solid rgba(176, 0, 0, 0.28);
  outline-offset: 4px;
}

.sample-media {
  position: relative;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #fff;
}

.sample-media img,
.sample-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-video-card .sample-media::after {
  content: "▶ Play Video";
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #b00000 0%, #742434 100%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(71, 20, 30, 0.38);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sample-video-card .sample-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(30, 12, 16, 0.22), rgba(30, 12, 16, 0.04) 48%, transparent 72%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.sample-video-card:hover .sample-media::after,
.sample-video-card:focus-visible .sample-media::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sample-video-card:hover .sample-media::before,
.sample-video-card:focus-visible .sample-media::before {
  opacity: 1;
}

.sample-media a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  background: rgba(123, 36, 52, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.sample-card-body {
  padding: 18px 20px 20px;
}

.sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.sample-tags span {
  padding: 6px 9px;
  color: var(--maroon);
  background: rgba(123, 36, 52, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.sample-card h2 {
  margin: 0 0 10px;
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.16;
}

.sample-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.sample-empty {
  padding: 28px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-section,
  .section-heading,
  .category-hero,
  .category-service-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .collection-grid,
  .pricing-grid,
  .experience-grid,
  .service-grid,
  .sample-grid,
  .showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .work-item,
  .work-item:nth-child(1),
  .work-item:nth-child(2),
  .work-item:nth-child(6n),
  .work-item:nth-child(7n) {
    grid-column: auto;
    aspect-ratio: 4 / 5.4;
  }

  .sample-filters {
    grid-template-columns: 1fr 1fr;
  }

  .sample-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sample-hero h1 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-top: 22px;
  }

  .hero::before {
    top: 10%;
    width: min(82vw, 620px);
    height: 32%;
    opacity: 0.36;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 0;
    height: auto;
    padding-block: 4px;
    transform: none;
  }

  .hero-visual img {
    width: min(100%, 560px);
    height: auto;
    max-height: 520px;
  }

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

  .category-hero {
    grid-template-columns: 1fr;
    align-items: start;
    margin-inline: 18px;
    padding: 22px;
  }

  .category-intro-actions {
    justify-items: start;
    width: 100%;
  }

  .category-format-pills {
    width: 100%;
    justify-content: flex-start;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

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

@media (max-width: 760px) {
  .rath-yatra-section {
    margin-top: 0;
  }

  .rath-yatra-section img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-header .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    z-index: 40;
    display: grid;
    gap: 0;
    padding: 10px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 236, 0.72)),
      radial-gradient(circle at 12% 0%, rgba(199, 154, 69, 0.22), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(76, 38, 45, 0.2);
    backdrop-filter: blur(22px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 16px;
    color: var(--ink);
    border-radius: 15px;
    opacity: 0;
    transform: translateY(-8px);
    transition: background 0.24s ease, color 0.24s ease, opacity 0.28s ease, transform 0.28s ease;
  }

  .site-header .nav-links a::after {
    display: none;
  }

  .site-header .nav-links a::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 12px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.72;
  }

  .site-header .nav-links a:hover {
    color: var(--maroon);
    background: rgba(123, 36, 52, 0.08);
  }

  .site-header.menu-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.menu-open .nav-links a:nth-child(1) {
    transition-delay: 0.03s;
  }

  .site-header.menu-open .nav-links a:nth-child(2) {
    transition-delay: 0.07s;
  }

  .site-header.menu-open .nav-links a:nth-child(3) {
    transition-delay: 0.11s;
  }

  .site-header.menu-open .nav-links a:nth-child(4) {
    transition-delay: 0.15s;
  }

  .site-header.menu-open .nav-links a:nth-child(5) {
    transition-delay: 0.19s;
  }

  .hero {
    height: auto;
    min-height: auto;
    gap: 22px;
    padding-top: 8px;
    padding-bottom: 24px;
  }

  .hero::before {
    display: none;
  }

  .hero-visual img {
    width: min(100%, 500px);
    height: auto;
    max-height: min(54svh, 500px);
    margin-inline: auto;
  }

  .hero-actions,
  .price-actions,
  .category-service-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .btn,
  .price-card a,
  .category-service-actions a {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    font-size: clamp(12px, 3.45vw, 14px);
  }

  .collection-grid,
  .pricing-grid,
  .experience-grid,
  .work-grid,
  .service-grid,
  .sample-grid,
  .showcase,
  .category-preview-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 420px;
  }

  .category-hero {
    min-height: auto;
    margin: 14px;
    padding: 18px;
  }

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

  .category-hero p {
    font-size: 15px;
  }

  .category-format-pills {
    grid-template-columns: 1fr;
  }

  .category-format-pills a {
    min-height: 52px;
    border-radius: 14px;
  }

  .category-hero-panel {
    min-height: 260px;
  }

  .category-service-row {
    border-radius: 22px;
  }

  .category-preview-media {
    height: 260px;
  }

  .work-item,
  .work-item:nth-child(1),
  .work-item:nth-child(2),
  .work-item:nth-child(6n),
  .work-item:nth-child(7n) {
    min-height: 420px;
  }

  .work-info {
    right: 82px;
  }

  .sample-filters {
    grid-template-columns: 1fr;
  }

  .sample-service-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 16px;
  }

  .sample-service-tabs a {
    min-width: 0;
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }

  .sample-hero {
    margin: 14px;
    padding: 18px;
  }

  .work-item {
    aspect-ratio: 4 / 5.8;
    min-height: 460px;
  }

  .work-lightbox {
    padding: 68px 16px 24px;
  }

  .lightbox-frame {
    width: 100%;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .lightbox-prev {
    left: 12px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-next {
    right: 12px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .price-card.featured {
    transform: none;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .site-footer {
    display: grid;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-contact {
    margin-top: 0;
  }

  .footer-big-brand {
    font-size: clamp(48px, 18vw, 92px);
    white-space: nowrap;
    word-break: normal;
  }

  .footer-bottom {
    display: grid;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .section-copy {
    font-size: 17px;
  }

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

  .testimonial-card {
    min-height: 230px;
  }

  .testimonial-card p {
    font-size: 22px;
  }
}

.wedding-website-samples {
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 69, 0.16), transparent 24%),
    radial-gradient(circle at 92% 4%, rgba(176, 0, 0, 0.1), transparent 24%),
    linear-gradient(135deg, #fff5e8 0%, #fffdf8 48%, #fae4dc 100%);
}

.wedding-website-samples .sample-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.52fr) auto;
  align-items: center;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(55, 26, 31, 0.76), rgba(55, 26, 31, 0.32)),
    url("/assets/images/website/wedding/sample1/8.png") center / cover;
  border-color: rgba(199, 154, 69, 0.25);
  box-shadow: 0 26px 80px rgba(76, 38, 45, 0.16);
}

.wedding-website-samples .sample-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(246, 217, 143, 0.44);
  border-radius: 18px;
}

.wedding-website-samples .sample-hero h1,
.wedding-website-samples .sample-hero p,
.wedding-website-samples .sample-hero .eyebrow,
.wedding-hero-notes,
.wedding-hero-preview,
.wedding-website-samples .sample-service-tabs {
  position: relative;
  z-index: 1;
}

.wedding-website-samples .sample-hero h1 {
  max-width: 680px;
  color: #fffaf2;
  font-size: clamp(38px, 5.5vw, 74px);
  line-height: 0.96;
}

.wedding-website-samples .sample-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(15px, 1.4vw, 18px);
}

.wedding-website-samples .sample-hero .eyebrow {
  color: #f6d98f;
}

.wedding-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.wedding-hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.wedding-hero-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(82px, 1fr));
  align-items: end;
  gap: 10px;
}

.wedding-hero-preview img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border: 5px solid rgba(255, 250, 242, 0.9);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(35, 16, 20, 0.34);
}

.wedding-hero-preview img:nth-child(2) {
  transform: translateY(-18px);
}

.wedding-website-samples .sample-service-tabs {
  background: rgba(255, 250, 242, 0.9);
}

.wedding-website-samples .sample-browser {
  padding-top: 28px;
}

.wedding-website-samples .sample-filters {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(255, 243, 232, 0.88));
  border-color: rgba(123, 36, 52, 0.1);
}

.wedding-website-samples .sample-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sample-wedding-site-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(260px, 0.58fr);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 241, 226, 0.86));
  border-color: rgba(123, 36, 52, 0.1);
}

.sample-wedding-site-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(199, 154, 69, 0.38);
  border-radius: 18px;
}

.sample-wedding-site-card .sample-media {
  aspect-ratio: auto;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 16%, rgba(199, 154, 69, 0.18), transparent 28%),
    linear-gradient(135deg, #fff7eb, #f8ddd8);
}

.sample-wedding-preview-stack {
  position: relative;
  width: min(100%, 390px);
  height: 360px;
}

.sample-wedding-preview-stack img {
  position: absolute;
  top: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  border: 5px solid rgba(255, 250, 242, 0.95);
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(76, 38, 45, 0.18);
}

.sample-wedding-preview-stack img:nth-child(1) {
  left: 0;
  transform: rotate(-6deg) translateY(22px);
}

.sample-wedding-preview-stack img:nth-child(2) {
  left: 50%;
  z-index: 2;
  width: 48%;
  transform: translateX(-50%);
}

.sample-wedding-preview-stack img:nth-child(3) {
  right: 0;
  transform: rotate(6deg) translateY(28px);
}

.sample-wedding-site-card .sample-media a {
  top: auto;
  bottom: 28px;
  z-index: 5;
  color: #fff;
  background: linear-gradient(135deg, #b00000, #742434);
  box-shadow: 0 18px 42px rgba(116, 36, 52, 0.26);
  transform: translateX(-50%);
}

.sample-wedding-site-card .sample-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.sample-wedding-site-card .sample-tags span {
  color: #8c182d;
  background: rgba(176, 0, 0, 0.08);
}

.sample-wedding-site-card h2 {
  color: #341d22;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.sample-wedding-site-card p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .wedding-website-samples .sample-hero,
  .sample-wedding-site-card {
    grid-template-columns: 1fr;
  }

  .wedding-hero-preview {
    max-width: 430px;
  }
}

@media (max-width: 640px) {
  .wedding-website-samples .sample-hero {
    margin: 14px;
    padding: 22px;
  }

  .wedding-website-samples .sample-grid {
    grid-template-columns: 1fr;
  }

  .wedding-hero-preview {
    grid-template-columns: repeat(3, minmax(62px, 1fr));
  }

  .sample-wedding-site-card .sample-media {
    min-height: 360px;
    padding: 22px;
  }

  .sample-wedding-preview-stack {
    height: 310px;
  }
}
