:root {
  --ink: #231a1f;
  --muted: #74656a;
  --cream: #fff8ec;
  --paper: #fffdf8;
  --rose: #c94b63;
  --saffron: #eca72c;
  --mehndi: #176b55;
  --maroon: #7b2434;
  --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;
}

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

@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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  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: 40px;
  height: 40px;
  color: #fff;
  background: var(--maroon);
  border-radius: 50%;
  font-family: "Marcellus", serif;
}

.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;
  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 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: 118px clamp(20px, 5vw, 64px) 70px;
  overflow: hidden;
}

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

.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 {
  font-size: 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-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.trust-row span {
  padding: 10px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.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);
}

.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(--mehndi);
}

.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;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

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

.reception {
  background: radial-gradient(circle at 24% 20%, #eac7d1, transparent 32%), linear-gradient(135deg, #5b1830, #1f1a36);
}

.haldi {
  background: radial-gradient(circle at 70% 18%, #ffe38a, transparent 35%), linear-gradient(135deg, #e7a924, #ae5719);
}

.mehndi {
  background: radial-gradient(circle at 24% 18%, #7cc6a5, transparent 34%), linear-gradient(135deg, #155844, #14322f);
}

.wedding {
  background: radial-gradient(circle at 70% 18%, #f1b0a3, transparent 35%), linear-gradient(135deg, #83233a, #c07b34);
}

.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;
}

.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;
}

.work-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 248, 236, 0));
}

.work-section .section-heading {
  align-items: end;
}

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

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  align-items: start;
}

.work-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 46px rgba(76, 38, 45, 0.1);
  cursor: zoom-in;
  aspect-ratio: 4 / 5.8;
  min-height: 430px;
}

.work-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(123, 36, 52, 0.12), rgba(17, 11, 14, 0.48));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-item::after {
  content: "View";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  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: 20px;
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.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.045);
}

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

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

.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 {
  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 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);
}

.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-card a {
  display: inline-flex;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.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);
}

.contact-section {
  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;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #1d1519;
}

.site-footer strong {
  color: #fff;
}

.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-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);
}

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

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

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

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

@media (max-width: 760px) {
  .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: fixed;
    top: 77px;
    left: 16px;
    right: 16px;
    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 {
    padding-top: 108px;
  }

  .collection-grid,
  .pricing-grid,
  .work-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

  .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;
  }

  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;
  }
}
