/* ==========================================================================
   RAFFATH CREATIONS — Wallpaper Design Studio
   Tokens: matched to logo — Charcoal-Navy #232C34 / Amber #FE9915 / Red-Orange #FB5818 / White
   Type: Cormorant Garamond (display) · Cinzel (wordmark/eyebrow) · Jost (body)
   ========================================================================== */

:root {
  --ink: #171e25;
  --ink-2: #232c34;
  --navy: #2e3944;
  --navy-soft: #3b4753;
  --gold: #fb7a17;
  --gold-light: #fe9915;
  --gold-dark: #d94e0f;
  --cream: #ffffff;
  --cream-2: #f5f6f7;
  --charcoal: #1a222b;
  --muted: #6b7280;
  --muted-light: #cfd3d8;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", serif;
  --font-accent: "Cinzel", serif;
  --font-body: "Jost", sans-serif;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-gold: 0 18px 40px -12px rgba(251, 88, 24, 0.35);
  --shadow-dark: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.section-title.light {
  color: var(--cream);
}
.section-title.center {
  text-align: center;
  margin-inline: auto;
}
.gold-text {
  color: var(--gold);
  font-style: italic;
}
.section-text {
    color: var(--muted);
    font-size: 1.02rem;
    width: 100%;
    margin-top: 20px;
}
.section-text.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow.light {
  color: var(--gold-light);
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.section-head {
  max-width: 100%;
  margin-bottom: 3rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.light {
  color: var(--cream);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -14px rgba(251, 88, 24, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.btn.full {
  width: 100%;
}
.btn-lg {
  padding: 1.15rem 2.2rem;
  font-size: 1rem;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  width: 200px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px rgba(251, 88, 24, 0.35));
  animation: pulseLogo 2s ease-in-out infinite;
}
@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadBar 1.8s var(--ease) forwards;
}
@keyframes loadBar {
  to {
    width: 100%;
  }
}
.preloader-text {
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}
.preloader-text i {
  color: var(--gold);
  font-style: normal;
  margin: 0 0.3em;
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.cursor-glow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(251, 88, 24, 0.5);
  transition: transform 0.15s ease, opacity 0.3s ease;
}
@media (hover: none) {
  .cursor-dot,
  .cursor-glow {
    display: none;
  }
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(251, 88, 24, 0.2);
}
.announcement-track {
  display: inline-flex;
  gap: 3rem;
  padding: 0.6rem 0;
  animation: marqueeScroll 22s linear infinite;
}
.announcement-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.badge-glow {
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: #fff;
}
.header-inner {
  width: min(1240px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 2rem;
}
.brand img {
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 2.1rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #272f37;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: #ea4018;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.header-cta {
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.mobile-nav.open {
  max-height: 520px;
}
.mobile-link {
  padding: 1rem 6%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted-light);
  font-size: 0.95rem;
}
.mobile-cta {
  margin: 1rem 6% 1.4rem;
  text-align: center;
}

@media (max-width: 960px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: 2rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mesh-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.mesh-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -160px;
  left: -120px;
}
.mesh-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--navy-soft) 0%, transparent 70%);
  bottom: -160px;
  right: -80px;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 88, 24, 0.5), transparent 70%);
  filter: blur(10px);
  animation: orbFloat 9s ease-in-out infinite;
}
.orb-1 {
  width: 10px;
  height: 10px;
  top: 22%;
  left: 60%;
}
.orb-2 {
  width: 14px;
  height: 14px;
  top: 65%;
  left: 15%;
  animation-delay: 2s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 6rem;
}
.hero-left .eyebrow {
  color: var(--gold-light);
}
.hero-title {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
.reveal-line {
  display: block;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  color: var(--muted-light);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 2.1rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.hero-tagline span {
  color: var(--gold);
  margin: 0 0.5em;
}

.hero-right {
  position: relative;
  height: 520px;
}
.hero-3d {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.shape-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.shape-1 {
  width: 120px;
  height: 120px;
  top: 0;
  right: 10%;
  animation: floatSlow 7s ease-in-out infinite;
}
.shape-2 {
  width: 70px;
  height: 70px;
  bottom: 8%;
  left: 0;
  animation: floatSlow 8s ease-in-out infinite reverse;
}
.shape-ring {
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  width: 200px;
  height: 200px;
  top: 15%;
  left: 8%;
  animation: spin 30s linear infinite;
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Wall / wallpaper peel mockup — signature hero element */
.wall-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 250px;
  height: 310px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 10px var(--ink-2);
}
.wall-base {
  position: absolute;
  inset: 0;
  background: var(--cream-2);
}
.wall-paper {
  position: absolute;
  inset: 0;
}
.wall-paper svg {
  width: 100%;
  height: 100%;
}
.wall-peel {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 45%;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transform-origin: top right;
  animation: peelSway 6s ease-in-out infinite;
}
.wall-peel svg {
  width: 100%;
  height: 100%;
}
.peel-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, rgba(0, 0, 0, 0.35), transparent 55%);
}
@keyframes peelSway {
  0%,
  100% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(-4deg) translate(-4px, 4px);
  }
}
.wall-frame {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.swatch-fan {
  position: absolute;
  bottom: -6%;
  left: -8%;
  display: flex;
}
.swatch-chip {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 26px -8px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--ink-2);
  transition: transform 0.4s var(--ease);
}
.swatch-chip svg {
  width: 100%;
  height: 100%;
}
.sc-1 {
  transform: rotate(-14deg) translateX(0);
}
.sc-2 {
  transform: rotate(-4deg) translateX(-14px);
  z-index: 2;
}
.sc-3 {
  transform: rotate(6deg) translateX(-28px);
  z-index: 3;
}
.sc-4 {
  transform: rotate(16deg) translateX(-42px);
  z-index: 4;
}
.hero-3d:hover .sc-1 {
  transform: rotate(-22deg) translate(-6px, -6px);
}
.hero-3d:hover .sc-2 {
  transform: rotate(-8deg) translate(-18px, -10px);
}
.hero-3d:hover .sc-3 {
  transform: rotate(10deg) translate(-30px, -10px);
}
.hero-3d:hover .sc-4 {
  transform: rotate(24deg) translate(-42px, -6px);
}

.float-icon {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 88, 24, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  backdrop-filter: blur(6px);
  animation: floatSlow 6s ease-in-out infinite;
}
.icon-1 {
  top: 6%;
  right: 0;
}
.icon-2 {
  bottom: 14%;
  right: 6%;
  animation-delay: 1s;
}
.icon-3 {
  top: 44%;
  left: -4%;
  animation-delay: 2s;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted-light);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--gold);
  animation: scrollMove 1.8s ease-in-out infinite;
}
@keyframes scrollMove {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(140%);
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 2rem;
  }
  .hero-right {
    height: 400px;
    margin-top: 1rem;
  }
}

/* ---------- Trusted / marquee / counters ---------- */
.trusted-section {
  background: var(--ink-2);
  padding: 3.2rem 0 2.4rem;
}
.trusted-label {
  text-align: center;
  color: var(--muted-light);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-family: var(--font-accent);
}
.marquee-wrap {
  overflow: hidden;
  margin: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-track {
  display: inline-flex;
  gap: 4rem;
  padding: 1.2rem 0;
  animation: marqueeScroll 26s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--muted-light);
  opacity: 0.7;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 1.6rem;
}
.counter-item {
  text-align: center;
}
.counter-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  font-weight: 700;
}
.counter-item p {
  color: var(--muted-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
@media (max-width: 720px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- About ---------- */
.about-section {
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-glass-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 6px solid var(--white);
}
.about-img-mock {
  position: relative;
  aspect-ratio: 5/6;
}
.about-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(23, 30, 37, 0.85);
  backdrop-filter: blur(6px);
  color: var(--cream);
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  display: flex;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(251, 88, 24, 0.3);
}
.about-tag i {
  color: var(--gold);
  font-size: 1.2rem;
}
.about-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.about-tag span {
  font-size: 0.75rem;
  color: var(--muted-light);
}
.about-badge {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background: var(--gold);
  color: var(--ink);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.about-badge span {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}
.about-badge p {
  font-size: 0.65rem;
  text-align: center;
  letter-spacing: 0.03em;
}
.about-content .section-title {
  margin-bottom: 1rem;
}
.about-content .section-text {
  margin-bottom: 1.6rem;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.about-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.about-col h4 i {
  color: var(--gold);
}
.about-col p {
  color: var(--muted);
  font-size: 0.92rem;
}
.about-progress {
  margin-bottom: 2rem;
}
.progress-row {
  margin-bottom: 1rem;
}
.progress-row span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.progress-track {
  height: 6px;
  border-radius: 6px;
  background: var(--cream-2);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width 1.4s var(--ease);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-cols {
    grid-template-columns: 1fr;
  }
}

/* ---------- Services / Collections ---------- */
.services-section {
  padding: 7rem 0;
  background: var(--ink);
}
.services-section .section-text.center {
  color: var(--muted-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s ease,
    background 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 88, 24, 0.4);
  background: var(--navy);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.3rem;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.5);
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-icon.icon-plain {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--ink-2));
  color: var(--gold);
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(251, 88, 24, 0.4);
  color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-arrow {
  background: var(--gold);
  color: var(--ink);
  transform: translateX(4px);
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why / timeline ---------- */
.why-section {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
  margin-top: 1rem;
}
.timeline-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.timeline-progress {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 1.6s var(--ease);
}
.timeline-item {
  position: relative;
  text-align: center;
  padding-top: 0.5rem;
}
.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 1;
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.timeline-item p {
  color: var(--muted-light);
  font-size: 0.85rem;
}
@media (max-width: 900px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-line {
    display: none;
  }
}

/* ---------- Portfolio / Gallery ---------- */
/* .portfolio-section {
  padding: 7rem 0;
  background: var(--cream);
}
.portfolio-filters {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  border: 1px solid var(--cream-2);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-dark);
}
.portfolio-media {
  position: absolute;
  inset: 0;
}
.portfolio-media svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover .portfolio-media svg {
  transform: scale(1.08);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(23, 30, 37, 0.92) 10%,
    rgba(23, 30, 37, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay .tag {
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.portfolio-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.view-btn {
  color: var(--gold-light);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
} */

/* =========================================
PREMIUM GALLERY GRID
========================================= */
section#gallery {
    padding: 50px 0px;
} 
.portfolio-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 18px;
margin-top: 45px;
margin-bottom: 50px;
}

/* Gallery Item */
.portfolio-item {
position: relative;
overflow: hidden;
border-radius: 14px;
background: #222930 ;
min-height:200px;
cursor: pointer;
}

/* Create different heights for masonry-like appearance */
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(5) {
min-height:200px;
}

.portfolio-item:nth-child(3),
.portfolio-item:nth-child(7) {
min-height: 200px;
}

/* Image */
.portfolio-media {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}

.portfolio-media img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
transition: transform 0.7s ease;
}

/* Dark gradient */
.portfolio-media::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(0, 0, 0, 0.85),
rgba(0, 0, 0, 0.15) 60%,
rgba(0, 0, 0, 0)
);
z-index: 1;
}

/* Hover Image */
.portfolio-item:hover .portfolio-media img {
transform: scale(1.08);
}

/* Overlay */
.portfolio-overlay {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 25px;
z-index: 2;
transform: translateY(8px);
transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
transform: translateY(0);
}

/* Category */
.portfolio-overlay .tag {
display: inline-block;
padding: 6px 12px;
margin-bottom: 10px;
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 50px;
color: #fff;
font-size: 11px;
letter-spacing: 1.5px;
text-transform: uppercase;
backdrop-filter: blur(8px);
}

/* Title */
.portfolio-overlay h4 {
margin: 0 0 15px;
color: #fff;
font-size: 19px;
font-weight: 600;
}

/* View Button */
.view-btn {
display: inline-flex;
align-items: center;
gap: 8px;
color: #fff;
text-decoration: none;
font-size: 13px;
font-weight: 500;
opacity: 0;
transform: translateY(10px);
transition: all 0.35s ease;
}

.portfolio-item:hover .view-btn {
opacity: 1;
transform: translateY(0);
}

.view-btn i {
font-size: 11px;
transition: transform 0.3s ease;
}

.view-btn:hover i {
transform: translate(3px, -3px);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {

.portfolio-grid {
grid-template-columns: repeat(3, 1fr);
}

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 768px) {

.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
margin-top: 30px;
}

.portfolio-item,
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(7) {
min-height: 150px;
}

.portfolio-overlay {
padding: 18px;
}

.portfolio-overlay h4 {
font-size: 15px;
}

.portfolio-overlay .tag {
font-size: 9px;
padding: 5px 9px;
}

.view-btn {
font-size: 11px;
opacity: 1;
transform: none;
}

}

/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 480px) {

.portfolio-grid {
grid-template-columns: 1fr;
gap: 14px;
}

.portfolio-item,
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(7) {
min-height: 150px;
}

.portfolio-overlay h4 {
font-size: 18px;
}

}


/* ---------- Process ---------- */
.process-section {
  padding: 7rem 0;
  background: var(--ink-2);
}
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}
.process-flow-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(251, 88, 24, 0.4) 0 8px,
    transparent 8px 16px
  );
}
.process-step {
  position: relative;
  text-align: center;
  padding-top: 1.4rem;
}
.process-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.process-step p {
  color: var(--muted-light);
  font-size: 0.82rem;
}
@media (max-width: 900px) {
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-flow-line {
    display: none;
  }
}
@media (max-width: 520px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 7rem 0;
  background: var(--cream);
}
.testimonial-slider {
  max-width: 720px;
  margin-inline: auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}
.testimonial-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-dots span.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- Pricing ---------- */
.pricing-section {
  padding: 7rem 0;
  background: var(--ink);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-8px);
}
.pricing-card.popular {
  background: linear-gradient(165deg, var(--navy), var(--ink-2));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.pricing-desc {
  color: var(--muted-light);
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
  min-height: 2.6em;
}
.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.price span {
  font-size: 2.4rem;
}
.pricing-card ul {
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.pricing-card li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--muted-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-card li i {
  color: var(--gold);
  font-size: 0.8rem;
}
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 7rem 0;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.faq-intro .section-text {
  margin-bottom: 1.6rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.15);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  text-align: left;
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-answer {
  max-height: 220px;
}
.faq-answer p {
  padding: 0 1.6rem 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  background: var(--ink);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 88, 24, 0.18),
    transparent 65%
  );
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 600;
}
.cta-content p {
  color: var(--muted-light);
  margin-bottom: 2rem;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 7rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-text {
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-detail i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}
.contact-detail span {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.social-row a:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--ink);
}

.glass-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e0503a;
}
.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #e0503a;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-align: center;
  min-height: 1.2em;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-light);
}
.footer-top {
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
}
.footer-logo {
  height: 50px;
  /* filter: brightness(0) invert(1);
  opacity: 0.9; */
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.newsletter-form {
  display: flex;
  margin-bottom: 1.2rem;
  margin-top: 0.8rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  border-radius: 100px 0 0 100px;
  font-size: 0.85rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form button {
  background: var(--gold);
  color: var(--ink);
  width: 44px;
  border-radius: 0 100px 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted-light);
}
.map-embed i {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-tagline {
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-tagline span {
  color: var(--gold);
  margin: 0 0.4em;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
  z-index: 500;
  box-shadow: var(--shadow-gold);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Utility / animation classes used by JS ---------- */
.magnetic {
  will-change: transform;
}
[data-aos] {
  transition-property: transform, opacity;
}
.service-image img{
  border-radius: 10px;
  margin-bottom: 20px;
}
/*=========================
Gallery
=========================*/

.gallery-section{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Laptop */
@media(max-width:1200px){
    .gallery-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* Tablet */
@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Mobile */
@media(max-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .gallery-item img{
        height:180px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }
}

/* ==========================================================================
   COLLECTION SUB-PAGES
   ========================================================================== */

/* ---------- Page hero (breadcrumb banner) ---------- */
.page-hero {
  padding: 80px 0 70px;
  background: linear-gradient(160deg, var(--ink) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 122, 23, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(254, 153, 21, 0.14), transparent 45%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted-light);
  margin-bottom: 1.6rem;
}
.page-hero-crumb a {
  color: var(--muted-light);
  transition: color 0.25s var(--ease);
}
.page-hero-crumb a:hover {
  color: var(--gold-light);
}
.page-hero-crumb i {
  font-size: 0.65rem;
  opacity: 0.6;
}
.page-hero-crumb span {
  color: var(--gold-light);
}
.page-hero-title {
  margin-bottom: 0.9rem;
}
.page-hero-tagline {
  color: var(--muted-light);
  max-width: 60ch;
}

/* ---------- Collection gallery section ---------- */
.collection-gallery-section {
  padding-top: 5rem;
}
.rf-lightbox-grid .gallery-item {
  cursor: pointer;
}
.rf-lightbox-grid .gallery-item a {
  display: block;
}

/* ---------- CTA band under gallery ---------- */
.collection-cta {
  margin-top: 3.5rem;
  padding: 2.6rem 2.8rem;
  border-radius: var(--radius-lg);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.collection-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.collection-cta p {
  color: var(--muted-light);
  max-width: 46ch;
}

/* ---------- Other collections pill row ---------- */
.other-collections-section {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}
.other-collections-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.other-collection-pill {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  transition: 0.3s var(--ease);
  background: var(--ink-2);
}
.other-collection-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ---------- Lightbox ---------- */
.rf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 15, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
  padding: 2rem;
}
.rf-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.rf-lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}
.rf-lightbox-close,
.rf-lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: 0.25s var(--ease);
}
.rf-lightbox-close:hover,
.rf-lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.rf-lightbox-close {
  top: 28px;
  right: 28px;
}
.rf-lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.rf-lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.rf-lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .page-hero {
    padding: 150px 0 50px;
  }
  .collection-cta {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .rf-lightbox-prev,
  .rf-lightbox-next {
    width: 40px;
    height: 40px;
  }
  .rf-lightbox-close {
    top: 16px;
    right: 16px;
  }
}
p.text{
  color: #fff;
}

