/* ============ Design Tokens ============ */
:root {
  --color-bg: #FBF7F1;
  --color-bg-alt: #FDF2F8;
  --color-ink: #1C1917;
  --color-ink-soft: #44403C;
  --color-rose: #D8A7B4;
  --color-rose-deep: #9F5D6B;
  --color-gold: #C9A15A;
  --color-gold-deep: #A8823F;
  --color-muted: #F1EBE1;
  --color-border: #E7DFD3;
  --color-white: #FFFFFF;
  --color-yellow-deep: #af7602;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px -20px rgba(28, 25, 23, 0.18);
  --shadow-card: 0 10px 30px -12px rgba(28, 25, 23, 0.16);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  overflow-x: hidden;
  cursor: default;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
}

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

::selection {
  background: var(--color-rose);
  color: var(--color-white);
}

/* Grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow (desktop only) */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.10) 0%, rgba(216, 167, 180, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

@media (max-width: 900px),
(hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-white);
  box-shadow: 0 8px 24px -8px rgba(168, 130, 63, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(168, 130, 63, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-ink);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 1.9rem;
  font-size: 1rem;
}

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), height 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}

.navbar.scrolled {
  height: 72px;
  background: rgba(251, 247, 241, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--color-border), 0 12px 30px -20px rgba(28, 25, 23, 0.15);
}

.nav-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Updated Logo CSS */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-ink);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color 0.2s ease;
}

.nav-phone:hover {
  color: var(--color-gold-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  margin: 0 auto;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(251, 247, 241, 0.98);
  backdrop-filter: blur(16px);
  padding: 0 1.5rem;
  border-top: 0px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-top-width 0.4s var(--ease-out);
}

.mobile-menu.open {
  max-height: 480px;
  padding: 1rem 1.5rem 2rem;
  border-top-width: 1px;
}

.mobile-link {
  padding: 0.9rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

.mobile-cta {
  margin-top: 1.25rem;
  justify-content: center;
}

@media (max-width: 980px) {
  .nav-logo-img {
    max-height: 80px;
    /* Tablet view resize */
  }

  .nav-links,
  .nav-phone,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
    min-height: var(--nav-h);
  }

  .nav-inner {
    height: var(--nav-h);
  }

  .mobile-menu {
    display: flex;
    width: 100%;
    flex-basis: 100%;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .nav-logo-img {
    max-height: 60px;
    /* Mobile view resize */
  }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 4rem;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(216, 167, 180, 0.28), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(201, 161, 90, 0.16), transparent 55%),
    var(--color-bg);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: 8%;
  background: radial-gradient(circle, rgba(216, 167, 180, 0.55), transparent 70%);
}

.hero-blob-2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: 2%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.35), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  background: rgba(201, 161, 90, 0.12);
  border: 1px solid rgba(201, 161, 90, 0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-inner {
  display: inline-block;
}

.cycle-line {
  position: relative;
  height: 1.25em;
  font-size: clamp(1.7rem, 5.2vw, 4rem);
}

.cycle-word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(60px);
}

.cycle-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--color-gold-deep) 0%, var(--color-rose-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-ink-soft);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero-sub em {
  color: var(--color-ink);
  font-style: italic;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--color-bg);
  margin-left: -12px;
  background: linear-gradient(135deg, hsl(calc(340 + var(--i) * 20), 55%, 78%), hsl(calc(30 + var(--i) * 15), 60%, 72%));
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
}

.trust-text .stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.trust-text .stars span {
  margin-left: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-ink);
}

.trust-text p {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

/* ---- Hero visual ---- */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(201, 161, 90, 0.35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

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

.visual-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.visual-card-main {
  width: 340px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #FFFDF9 0%, var(--color-bg-alt) 55%, #F6E9E0 100%);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.brush-art {
  width: 65%;
  height: 65%;
}

/* Hero video card */
.visual-card-video {
  padding: 0;
  overflow: hidden;
  background: var(--color-ink);
}

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

.video-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(28, 25, 23, 0.35) 0%, transparent 42%),
    linear-gradient(140deg, rgba(201, 161, 90, 0.16) 0%, transparent 45%, rgba(216, 167, 180, 0.18) 100%);
}

.video-sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.video-sound-toggle:hover {
  transform: scale(1.06);
  background: var(--color-white);
}

.video-sound-toggle:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.video-sound-toggle .icon-unmuted {
  display: none;
}

.video-sound-toggle[aria-pressed="true"] .icon-muted {
  display: none;
}

.video-sound-toggle[aria-pressed="true"] .icon-unmuted {
  display: block;
}

.visual-shimmer {
  position: absolute;
  inset: -50%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-30%) translateY(-10%);
  }

  50% {
    transform: translateX(10%) translateY(10%);
  }
}

.visual-card-accent {
  right: -16px;
  top: 18px;
  width: 128px;
  padding: 1.1rem 1rem;
  text-align: left;
}

.visual-card-accent p {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 0.5rem;
}

.visual-card-badge {
  left: -30px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-card-badge strong {
  display: block;
  font-size: 0.88rem;
}

.visual-card-badge span {
  font-size: 0.72rem;
  color: var(--color-ink-soft);
}

.visual-card-clock {
  right: 10px;
  bottom: -14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-rose-deep);
}

.float-slow {
  animation: float 6s ease-in-out infinite;
}

.float-med {
  animation: float 5s ease-in-out infinite 0.4s;
}

.float-fast {
  animation: float 4s ease-in-out infinite 0.8s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  z-index: 1;
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero {
    justify-content: flex-start;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 460px;
    order: -1;
    margin-bottom: 1rem;
  }

  .orbit-ring {
    width: 380px;
    height: 380px;
  }

  .visual-card-main {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(var(--nav-h) + 1.5rem) 1.25rem 3.5rem;
  }

  .hero-visual {
    height: 380px;
  }

  .visual-card-main {
    width: 230px;
    height: 300px;
  }

  .visual-card-accent {
    width: 104px;
    padding: 0.85rem 0.8rem;
    right: -8px;
  }

  .visual-card-badge {
    left: -12px;
    bottom: 58px;
    padding: 0.7rem 0.85rem;
  }

  .visual-card-clock {
    right: -4px;
  }

  .orbit-ring {
    width: 300px;
    height: 300px;
  }

  .hero-cta-row {
    width: 100%;
  }

  .hero-cta-row .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ============ Marquee ============ */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--color-rose-deep);
  color: var(--color-bg);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  padding: 0 0.25rem;
}

.marquee-track i {
  color: var(--color-gold);
  font-style: normal;
  font-size: 0.9rem;
}

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

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

.section-stub {
  min-height: 10vh;
}

/* ============ Stats Bar ============ */
.stats-bar-wrap {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 0;
}

.stats-bar {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow-x: auto;
}

.stat-item {
  text-align: center;
  padding: 0 0.3rem;
  min-width: 0;
}

.stat-icon {
  width: clamp(32px, 6vw, 44px);
  height: clamp(32px, 6vw, 44px);
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-deep);
  background: linear-gradient(155deg, rgba(201, 161, 90, 0.14), rgba(216, 167, 180, 0.14));
}

.stat-icon svg {
  width: clamp(15px, 3vw, 22px);
  height: clamp(15px, 3vw, 22px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4.4vw, 2.3rem);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1;
  margin-bottom: 0.35rem;
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(0.6rem, 2vw, 0.82rem);
  font-weight: 500;
  color: var(--color-ink-soft);
  white-space: normal;
  line-height: 1.25;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--color-border);
  justify-self: center;
}

@media (max-width: 560px) {
  .stats-bar-wrap {
    padding: 2.25rem 0.75rem 0;
  }

  .stats-bar {
    padding: 1.5rem 0.4rem;
    column-gap: 0.15rem;
  }

  .stat-icon {
    margin-bottom: 0.4rem;
  }

  .stat-divider {
    height: 34px;
  }

  .stat-label {
    font-size: 0.58rem;
  }
}

/* ============ Signature Services ============ */
.services {
  padding: 7rem 2.5rem 6rem;
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.services-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services-header .eyebrow {
  margin-bottom: 1.25rem;
}

.services-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 1rem;
}

.title-italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--color-gold-deep), var(--color-rose-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-sub {
  font-size: 1.05rem;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

@media (hover: none) {
  .service-card {
    cursor: pointer;
  }
}

/* Media reveal: image sits behind the content, hidden until hover (desktop) or tap (touch) */
.service-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

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

.service-media-art {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--fc-1) 0%, var(--fc-2) 100%);
}

.service-media-art svg {
  width: 34%;
  height: 34%;
  color: rgba(255, 255, 255, 0.85);
}

.media-sparkle {
  position: absolute;
  top: 16px;
  left: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.55) 0%, transparent 55%);
}

.service-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--color-white);
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-media {
    opacity: 1;
  }

  .service-card:hover .service-content {
    opacity: 0;
    pointer-events: none;
  }
}

/* Mobile tap-flip: reveal the image but keep price + link tappable over it */
.service-card.is-flipped .service-media {
  opacity: 1;
}

.service-card.is-flipped .service-content {
  opacity: 1;
  pointer-events: auto;
  background: transparent;
}

.service-card.is-flipped .service-content>*:not(.service-footer) {
  opacity: 0;
  pointer-events: none;
}

.service-card.is-flipped .service-footer {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.service-card.is-flipped .service-price,
.service-card.is-flipped .service-link {
  color: var(--color-white);
}

.service-card-featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  min-height: 100%;
}

.service-card-featured .service-content {
  padding: 2.5rem;
  justify-content: flex-end;
  background:
    radial-gradient(560px 340px at 100% 0%, rgba(216, 167, 180, 0.3), transparent 60%),
    radial-gradient(420px 300px at 0% 100%, rgba(201, 161, 90, 0.22), transparent 55%),
    var(--color-bg);
}

.service-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  background: rgba(201, 161, 90, 0.14);
  border: 1px solid rgba(201, 161, 90, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: auto;
}

.service-card-featured h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 0.85rem;
}

.service-card-featured p {
  font-size: 1rem;
  max-width: 34ch;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-deep);
  background: linear-gradient(155deg, rgba(201, 161, 90, 0.16), rgba(216, 167, 180, 0.16));
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-ink-soft);
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.service-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-ink);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-deep);
}

.service-link svg {
  transition: transform 0.25s var(--ease-out);
}

.service-link:hover svg {
  transform: translateX(3px);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .service-card-featured {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .services {
    padding: 5rem 1.25rem 4.5rem;
  }

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

  .service-card-featured {
    grid-column: 1;
  }
}

/* ============ Why Choose Us ============ */
.why-choose {
  padding: 2rem 2.5rem 7rem;
}

.why-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.why-panel {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  border: 1px solid rgba(201, 161, 90, 0.35);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.why-panel::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.22), transparent 70%);
  pointer-events: none;
}

.why-content {
  padding: 3.5rem 3rem;
}

.eyebrow-dark {
  color: var(--color-gold);
  background: rgba(201, 161, 90, 0.14);
  border-color: rgba(201, 161, 90, 0.3);
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  color: var(--color-bg);
  line-height: 1.2;
  margin: 1.25rem 0 2.5rem;
}

.title-italic-light {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--color-gold), var(--color-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.75rem;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: rgba(201, 161, 90, 0.14);
  margin-bottom: 1rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-bg);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(251, 247, 241, 0.62);
}

.why-media {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(480px 380px at 85% 15%, rgba(216, 167, 180, 0.22), transparent 60%),
    radial-gradient(420px 340px at 10% 90%, rgba(201, 161, 90, 0.28), transparent 60%),
    linear-gradient(155deg, #14120F 0%, var(--color-ink) 55%, #201A15 100%);
  border-left: 1px solid rgba(201, 161, 90, 0.25);
}

.why-media-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.5) 40%, black 65%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.5) 40%, black 65%);
}

@media (max-width: 960px) {
  .why-media {
    border-left: none;
    border-top: 1px solid rgba(201, 161, 90, 0.25);
  }
}

@media (max-width: 960px) {
  .why-panel {
    grid-template-columns: 1fr;
  }

  .why-media {
    min-height: 260px;
    order: -1;
  }

  .why-content {
    padding: 3rem 1.75rem;
  }
}

@media (max-width: 560px) {
  .why-choose {
    padding: 1.5rem 1.25rem 5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .why-content {
    padding: 2.5rem 1.5rem;
  }
}

/* ============ Instagram Reels ============ */
.reels {
  padding: 6rem 2.5rem 7rem;
}

.reels-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* Decorative side illustrations filling the gutters beside the reel viewer */
.reels-decor {
  display: none;
  position: absolute;
  top: 50%;
  width: 380px;
  height: 460px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.reels-decor-left {
  left: -90px;
}

.reels-decor-right {
  right: -90px;
}

.decor-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 24px rgba(28, 25, 23, 0.06));
  animation: float 7s ease-in-out infinite;
}

.decor-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  animation: float 8s ease-in-out infinite;
}

.decor-glow-1 {
  width: 260px;
  height: 260px;
  top: -10%;
  left: 10%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.35), transparent 70%);
}

.decor-glow-2 {
  width: 200px;
  height: 200px;
  bottom: 0%;
  right: 0%;
  background: radial-gradient(circle, rgba(216, 167, 180, 0.32), transparent 70%);
  animation-delay: 1s;
  animation-duration: 9s;
}

.decor-glow-3 {
  width: 130px;
  height: 130px;
  top: 40%;
  left: -5%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.28), transparent 70%);
  animation-delay: 2s;
  animation-duration: 6.5s;
}

@media (min-width: 1180px) {
  .reels-decor {
    display: block;
  }
}

.reels-header {
  max-width: 620px;
  margin: 0 auto 3rem;
  text-align: center;
}

.reels-header .eyebrow {
  margin-bottom: 1.25rem;
}

.reels-viewer {
  position: relative;
  width: min(360px, 88vw);
  margin: 0 auto;
}

.reels-scroll {
  width: 100%;
  height: 620px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reels-scroll::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  width: 100%;
  height: 620px;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(155deg, var(--rc-1) 0%, var(--rc-2) 100%);
  cursor: pointer;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.reel-card:hover .reel-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.28);
}

.reel-overlay {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 70%);
  color: var(--color-white);
}

.reel-handle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.reel-caption {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.reel-stats {
  display: flex;
  gap: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.reel-stats span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.reels-dots {
  position: absolute;
  z-index: 5;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  background: rgba(28, 25, 23, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
}

.reels-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.reels-dots .dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.28);
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .reels {
    padding: 4.5rem 1.25rem 5rem;
  }

  .reels-scroll {
    height: 68vh;
    max-height: 560px;
  }

  .reel-card {
    height: 68vh;
    max-height: 560px;
  }

  .reels-dots {
    right: 8px;
    gap: 6px;
    padding: 8px 5px;
  }
}

/* ============ Clients Love & Stories (Reviews) ============ */
.reviews {
  padding: 6rem 0 7rem;
}

.reviews-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.reviews-header {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.reviews-header .eyebrow {
  margin-bottom: 1.25rem;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.rating-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-ink);
  line-height: 1;
}

.rating-summary-right {
  text-align: left;
}

.rating-summary-right .stars {
  color: var(--color-gold);
  margin-bottom: 0.3rem;
  display: flex;
  gap: 2px;
}

.rating-caption {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
}

.reviews-marquee {
  background: var(--color-yellow-deep);
  margin: 3rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.review-quote {
  color: rgba(201, 161, 90, 0.35);
  margin-bottom: 1rem;
}

.review-card .stars {
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-ink-soft);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-white);
  background: linear-gradient(135deg, hsl(calc(340 + var(--i) * 20), 55%, 62%), hsl(calc(30 + var(--i) * 15), 60%, 52%));
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-ink);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--color-ink-soft);
}

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

@media (max-width: 640px) {
  .reviews {
    padding: 4.5rem 0 4.5rem;
  }

  .reviews-inner {
    padding: 0 1.25rem;
  }

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

  .rating-summary {
    flex-direction: column;
    gap: 0.5rem;
  }

  .rating-summary-right {
    text-align: center;
  }
}

/* ============ Contact ============ */
.contact {
  padding: 6rem 2.5rem 6rem;
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.contact-panel {
  background: var(--color-ink);
  border: 1px solid rgba(201, 161, 90, 0.35);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.85fr;
}

.contact-col {
  padding: 3rem 2.25rem;
}

.contact-visit {
  border-right: 1px solid rgba(201, 161, 90, 0.2);
}

.contact-hours {
  border-left: 1px solid rgba(201, 161, 90, 0.2);
}

.contact-map {
  padding: 0;
  min-height: 320px;
}

.contact-map iframe {
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--color-bg);
  line-height: 1.25;
  margin: 1.1rem 0 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: rgba(201, 161, 90, 0.14);
}

.contact-list a {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-bg);
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--color-gold);
}

.contact-list span {
  display: block;
  font-size: 0.78rem;
  color: rgba(251, 247, 241, 0.55);
  margin-top: 0.15rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(251, 247, 241, 0.1);
  font-size: 0.88rem;
}

.hours-list span {
  color: rgba(251, 247, 241, 0.6);
}

.hours-list strong {
  color: var(--color-bg);
  font-weight: 600;
}

.hours-cta {
  background: linear-gradient(135deg, var(--color-gold-deep), var(--color-gold));
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.hours-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1.3;
}

.hours-cta-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.35rem 0 1.1rem;
}

.hours-cta .btn-gold {
  background: var(--color-ink);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-visit,
  .contact-hours {
    border: none;
    border-top: 1px solid rgba(201, 161, 90, 0.2);
  }

  .contact-map {
    min-height: 300px;
    order: -1;
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 4.5rem 1.25rem 4.5rem;
  }

  .contact-col {
    padding: 2.25rem 1.5rem;
  }
}

/* ============ Footer ============ */
.newsletter-bar {
  background: linear-gradient(120deg, var(--color-ink) 0%, #241D17 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  max-width: 1360px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  position: relative;
  top: -1px;
}

.newsletter-tag {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.newsletter-tag em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.6);
  margin-top: 0.2rem;
}

.newsletter-mid h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-bg);
}

.newsletter-mid p {
  font-size: 0.85rem;
  color: rgba(251, 247, 241, 0.6);
  margin-top: 0.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  width: 240px;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(251, 247, 241, 0.25);
  background: rgba(251, 247, 241, 0.06);
  color: var(--color-bg);
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(251, 247, 241, 0.45);
}

.newsletter-form input:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.newsletter-form button {
  white-space: nowrap;
}

.site-footer {
  background: var(--color-ink);
  padding: 0 2.5rem 0;
  margin-top: 5rem;
}

.footer-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(251, 247, 241, 0.55);
  margin: 1rem 0 1.25rem;
  max-width: 30ch;
}

.footer-brand .nav-logo-text {
  color: var(--color-bg);
}

.footer-brand .nav-logo-text em {
  color: rgba(251, 247, 241, 0.55);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  background: rgba(251, 247, 241, 0.08);
  border: 1px solid rgba(251, 247, 241, 0.14);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-ink);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.86rem;
  color: rgba(251, 247, 241, 0.62);
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 241, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(251, 247, 241, 0.45);
}

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

  .newsletter-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 0 1.25rem;
    margin-top: 3.5rem;
  }

  .newsletter-bar {
    padding: 1.75rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 3rem 0 2.5rem;
  }
}

/* ============ Gallery (fan carousel) ============ */
.gallery {
  padding: 7rem 2.5rem 6rem;
  overflow: hidden;
}

.gallery-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-header {
  max-width: 620px;
  margin: 0 auto 1rem;
  text-align: center;
}

.gallery-header .eyebrow {
  margin-bottom: 1.25rem;
}

.fan-layout {
  position: relative;
  height: 330px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 3rem auto 0;
}

.fan-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 176px;
  height: 268px;
  margin-left: -88px;
  cursor: pointer;
  will-change: transform;
}

.look-card {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, var(--fc-1) 0%, var(--fc-2) 100%);
  box-shadow: 0 16px 32px -14px rgba(28, 25, 23, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* Naye changes: Image ko card ke andar lock करने के लिए */
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  /* Naya change: Mac/Safari me round corners clipping fix karne ke liye */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* Bulletproof Webkit fix */
}

/* नयी क्लास इमेज के लिए */
.fan-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 18px;
  /* inherit ki jagah direct 18px */
}

/* Text के पीछे हल्की सी shadow ताकि text clear पढ़ने में आए */
.look-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 18px;
}

.look-sparkle {
  color: var(--color-gold);
  font-size: 1.05rem;
  margin-bottom: auto;
  /* Naye changes: Text ko image ke aage laane ke liye */
  position: relative;
  z-index: 2;
}

.look-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-white);
  line-height: 1.25;
  /* Naye changes: Text ko image ke aage laane ke liye */
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .fan-layout {
    height: 250px;
  }

  .fan-card {
    width: 132px;
    height: 204px;
    margin-left: -66px;
  }

  .look-card {
    padding: 0.85rem;
    border-radius: 14px;
  }

  .look-name {
    font-size: 0.92rem;
  }
}

@media (max-width: 479px) {
  .fan-layout {
    height: 205px;
  }

  .fan-card {
    width: 108px;
    height: 168px;
    margin-left: -54px;
  }
}

/* ============ Gallery Page (masonry) ============ */
.gallery-page-hero {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 2rem;
  text-align: center;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(216, 167, 180, 0.24), transparent 60%),
    radial-gradient(800px 450px at -10% 20%, rgba(201, 161, 90, 0.14), transparent 55%),
    var(--color-bg);
}

.gallery-page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.gallery-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  color: var(--color-ink);
  margin: 1.1rem 0 1rem;
}

.masonry-section {
  padding: 2rem 2.5rem 6rem;
}

.masonry-grid {
  column-count: 4;
  column-gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 20px;
  overflow: hidden;
}

.masonry-item .look-card {
  border-radius: 20px;
}

.masonry-item.h-short {
  height: 210px;
}

.masonry-item.h-med {
  height: 290px;
}

.masonry-item.h-tall {
  height: 380px;
}

.masonry-photo {
  width: 100%;
  height: 100%;
}

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

.quote-card {
  height: 100%;
  min-height: 210px;
  border-radius: 20px;
  background: var(--color-ink);
  border: 1px solid rgba(201, 161, 90, 0.35);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.quote-eyebrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(251, 247, 241, 0.75);
}

@media (max-width: 1080px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (max-width: 700px) {
  .masonry-grid {
    column-count: 2;
    column-gap: 0.85rem;
  }

  .masonry-item {
    margin-bottom: 0.85rem;
    border-radius: 16px;
  }

  .masonry-item .look-card {
    border-radius: 16px;
  }

  .masonry-item.h-short {
    height: 160px;
  }

  .masonry-item.h-med {
    height: 220px;
  }

  .masonry-item.h-tall {
    height: 280px;
  }

  .quote-card {
    padding: 1.35rem;
    min-height: 160px;
  }
}

@media (max-width: 420px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Generic scroll-in reveal (stats + services) */
[data-reveal-group]>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-reveal-group].in-view>* {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}