/* ============================================================
   Tawazon Lighting — custom styles
   Dark luxury theme · rose-gold light accents
   Lamp lighting effect + 3D tilt/parallax
   ============================================================ */

:root {
  --rose: #d9a48c;
  --amber: #f0cbb4;
  --copper: #b5715e;
  --glow: #ffd9c0;
}

html {
  scroll-padding-top: 5rem;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #08090d;
}

::-webkit-scrollbar-thumb {
  background: #2a2630;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose);
}

.grad-text {
  background: linear-gradient(100deg, var(--amber), var(--rose) 45%, var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Progress bar ---------- */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--copper), var(--rose), var(--glow));
}

/* ============================================================
   PRELOADER / intro (icosium-style)
   ============================================================ */
html.is-loading {
  overflow: hidden;
  height: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #08090d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, opacity;
  transition: transform 1s cubic-bezier(.76, 0, .24, 1), opacity .7s ease;
}

.preloader.done {
  transform: translateY(-101%);
  opacity: 0;
  pointer-events: none;
}

.preloader::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  max-width: 90vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 140, .16), transparent 65%);
  filter: blur(50px);
  animation: plGlow 4s ease-in-out infinite;
}

@keyframes plGlow {

  0%,
  100% {
    opacity: .8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.preloader-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .6;
  background-image:
    linear-gradient(rgba(217, 164, 140, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 164, 140, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 25%, transparent 78%);
}

.preloader-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.preloader-logo {
  width: min(320px, 62vw);
  height: auto;
  display: block;
  opacity: 0;
  animation: plLogoIn 1.2s .15s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes plLogoIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(.95);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* metallic sheen sweep over the logo */
.preloader-logo-box::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, .55) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: plSheen 2.6s 1s ease-in-out infinite;
}

@keyframes plSheen {
  0% {
    transform: translateX(-130%);
  }

  60%,
  100% {
    transform: translateX(130%);
  }
}

.preloader-mark {
  width: min(104px, 26vw);
}

.preloader-name {
  margin-top: 26px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .26em;
  padding-left: .26em;
  color: #fff;
  opacity: 0;
  animation: plTagIn 1s .8s ease forwards;
}

.preloader-tag {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  opacity: 0;
  animation: plTagIn 1s 1s ease forwards;
}

@keyframes plTagIn {
  to {
    opacity: 1;
  }
}

.preloader-progress {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.preloader-bar {
  width: 150px;
  max-width: 40vw;
  height: 1px;
  background: rgba(255, 255, 255, .14);
  position: relative;
  overflow: hidden;
}

.preloader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(217, 164, 140, .4), var(--glow));
  transition: width .25s ease;
}

.preloader-pct {
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  color: rgba(255, 255, 255, .75);
}

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

  .preloader::before,
  .preloader-logo-box::after {
    animation: none;
  }
}

/* ---------- Navbar ---------- */
#navbar.scrolled {
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  position: relative;
  transition: color .25s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1.5px;
  width: 0;
  background: linear-gradient(90deg, var(--rose), var(--glow));
  transition: width .3s;
}

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

.nav-link.active {
  color: #fff;
}

.mobile-link {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

/* ============================================================
   LAMP EFFECT (inspired by Aceternity lamp)
   ============================================================ */
.lamp-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #08090d;
  isolation: isolate;
}

.lamp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

/* the two converging light beams */
.lamp-beam {
  position: absolute;
  top: 0;
  height: 28rem;
  background-image: conic-gradient(var(--from, transparent), var(--rose), transparent var(--to, 50%));
  width: 30rem;
  opacity: .55;
}

.lamp-left {
  right: 50%;
  --from: 70deg;
  --to: 70%;
  background-image: conic-gradient(from 70deg at center top, var(--rose), transparent 70%);
  -webkit-mask-image: linear-gradient(to left, white, transparent 90%);
  mask-image: linear-gradient(to left, white, transparent 90%);
  animation: beamGrow 1.2s ease forwards;
}

.lamp-right {
  left: 50%;
  background-image: conic-gradient(from 290deg at center top, transparent 30%, var(--rose));
  -webkit-mask-image: linear-gradient(to right, white, transparent 90%);
  mask-image: linear-gradient(to right, white, transparent 90%);
  animation: beamGrow 1.2s ease forwards;
}

@keyframes beamGrow {
  from {
    width: 8rem;
    opacity: 0;
  }

  to {
    width: 30rem;
    opacity: .55;
  }
}

/* soft blurred halo where beams meet */
.lamp-blur {
  position: absolute;
  top: 6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 140, .35), transparent 60%);
  filter: blur(60px);
  animation: haloPulse 6s ease-in-out infinite;
}

.lamp-glow {
  position: absolute;
  top: 0;
  width: 16rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center top, var(--glow), transparent 70%);
  filter: blur(30px);
  opacity: .8;
}

/* the bright horizontal lamp line */
.lamp-line {
  position: absolute;
  top: 0;
  width: 30rem;
  max-width: 80vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  animation: lineGrow 1.2s ease forwards;
}

.lamp-line-glow {
  position: absolute;
  top: -2px;
  width: 18rem;
  max-width: 60vw;
  height: 6px;
  border-radius: 999px;
  background: var(--glow);
  filter: blur(8px);
  opacity: .9;
}

@keyframes lineGrow {
  from {
    width: 8rem;
    opacity: 0;
  }

  to {
    width: 30rem;
    opacity: 1;
  }
}

@keyframes haloPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .9;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* WebGL 3D pendant-light canvas */
.hero-3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* chandelier photo, behind text, parallax — kept near the top so it
   fades fully before the bottom (no visible seam / hard line) */
/* full-screen background photo */
.hero-chandelier {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../img/photos/chandelier.jpg') center center / cover no-repeat;
  will-change: transform;
}

/* ---------- Hero before/after comparison slider ---------- */
.hero-compare {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  --pos: 50%;
  touch-action: pan-y;
  /* allow vertical page scroll over the hero */
}

.hc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.hc-after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.hc-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  z-index: 6;
  transform: translateX(-1px);
  background: linear-gradient(180deg, var(--glow), var(--rose));
  box-shadow: 0 0 18px rgba(255, 217, 192, .6);
  pointer-events: none;
}

.hc-handle {
  position: absolute;
  top: 64.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(100deg, var(--rose), var(--amber));
  box-shadow: 0 6px 22px rgba(0, 0, 0, .55), 0 0 0 5px rgba(255, 255, 255, .08);
  pointer-events: auto;
  /* only the handle is draggable */
  cursor: ew-resize;
  touch-action: none;
  z-index: 7;
}

.hc-label {
  position: absolute;
  bottom: 16%;
  z-index: 3;
  pointer-events: none;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 9, 13, .4);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hc-label-l {
  left: 6%;
}

.hc-label-r {
  right: 6%;
}

/* legibility overlay — lighter than before so the comparison stays visible */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% 42%, transparent 34%, rgba(8, 9, 13, .4) 100%),
    linear-gradient(180deg, rgba(8, 9, 13, .4) 0%, rgba(8, 9, 13, .28) 42%, rgba(8, 9, 13, .95) 100%);
}

/* warm ambient wash — lifts the overall darkness of the hero */
.lamp-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(58% 46% at 50% 42%, rgba(255, 217, 192, .13), transparent 72%);
}

/* smooth fade into the next section — hides any photo seam at the bottom */
.lamp-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #08090d 88%);
}

.lamp-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: 4.5rem;
  max-width: 56rem;
  pointer-events: none;
  /* let drags pass through to the compare slider */
}

.lamp-content a,
.lamp-content button {
  pointer-events: auto;
}

/* keep links/buttons clickable */
.hero-title {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-shadow: 0 0 50px rgba(217, 164, 140, .25);
}

/* ---------- Sub-page hero header ---------- */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../img/photos/chandelier.jpg') center 26% / cover no-repeat;
  opacity: .16;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.page-hero-glow {
  position: absolute;
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 360px;
  max-width: 92vw;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(217, 164, 140, .22), transparent 70%);
  filter: blur(34px);
}

.page-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: #fff;
}

.crumb {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .45);
  margin-top: 1rem;
}

.crumb a {
  color: rgba(255, 255, 255, .6);
}

.crumb a:hover {
  color: var(--amber);
}

/* ---------- CTA band (sub-pages) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  text-align: center;
}

/* ---------- Hero: modern layers ---------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.6rem;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  font-size: .76rem;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(217, 164, 140, .3);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 217, 192, .28) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: badgeShine 5s ease-in-out infinite;
}

@keyframes badgeShine {

  0%,
  55% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 10px var(--glow);
  animation: dotPulse 2s ease-in-out infinite;
  flex: none;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.65);
  }
}

.grad-shimmer {
  background-size: 220% auto;
  animation: shimmer 7s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 220% center;
  }
}

.hero-sub {
  margin: 1.75rem auto 0;
  max-width: 37rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.hero-cta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-chips {
  margin: 3rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1rem 1.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.hero-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-chip-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 600;
}

.hero-chip-l {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .48);
  margin-top: .4rem;
}

.hero-chip-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
}

/* animated aurora glow */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-aurora::before,
.hero-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: .45;
}

.hero-aurora::before {
  width: 44vw;
  height: 44vw;
  left: -8vw;
  top: 4vw;
  background: radial-gradient(circle, rgba(217, 164, 140, .55), transparent 65%);
  animation: aur1 18s ease-in-out infinite;
}

.hero-aurora::after {
  width: 40vw;
  height: 40vw;
  right: -6vw;
  top: -2vw;
  background: radial-gradient(circle, rgba(181, 113, 94, .5), transparent 65%);
  animation: aur2 22s ease-in-out infinite;
}

@keyframes aur1 {

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

  50% {
    transform: translate(6vw, 4vw);
  }
}

@keyframes aur2 {

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

  50% {
    transform: translate(-5vw, 5vw);
  }
}

/* floating light motes (populated by main.js) */
.hero-motes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.mote {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: .85;
  }

  85% {
    opacity: .5;
  }

  100% {
    transform: translateY(-92vh) translateX(var(--drift, 0)) scale(.3);
    opacity: 0;
  }
}

/* modern scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  z-index: 6;
}

.hero-scroll-txt {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .4);
}

.scroll-cue {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--amber);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(100deg, var(--rose), var(--amber));
  color: #2a160e;
  font-weight: 600;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(217, 164, 140, .3);
  transition: transform .25s, box-shadow .25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 164, 140, .5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  transition: border-color .25s, background .25s;
}

.btn-ghost:hover {
  border-color: var(--rose);
  background: rgba(217, 164, 140, .08);
}

/* ---------- Stats ---------- */
.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .4);
  margin-top: .4rem;
}

/* ---------- Section helpers ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: #fff;
  margin-top: .6rem;
}

/* ============================================================
   3D TILT
   ============================================================ */
.tilt-wrap {
  perspective: 1000px;
}

.tilt-3d {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease, border-color .3s;
  will-change: transform;
}

.tilt-pop {
  transform: translateZ(40px);
}

/* ---------- About section (modern) ---------- */
.about-bg-glow {
  position: absolute;
  left: -8%;
  top: 12%;
  width: 520px;
  height: 520px;
  max-width: 60vw;
  z-index: 0;
  background: radial-gradient(circle, rgba(217, 164, 140, .13), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(150deg, rgba(217, 164, 140, .55), rgba(255, 255, 255, .04) 42%, rgba(181, 113, 94, .45));
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
}

.about-frame img {
  width: 100%;
  border-radius: 18px;
  display: block;
  filter: grayscale(12%) contrast(1.05) brightness(.97);
}

.about-frame-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--amber);
  opacity: .7;
  z-index: 2;
}

.about-frame-corner.tl {
  top: 18px;
  left: 18px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 8px;
}

.about-frame-corner.br {
  bottom: 18px;
  right: 18px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 8px;
}

.about-badge {
  position: absolute;
  top: -22px;
  right: -16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 110px;
  text-align: center;
  background: rgba(14, 16, 22, .82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 164, 140, .3);
  border-radius: 18px;
  padding: 15px 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
}

.about-badge-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-l {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
  line-height: 1.3;
}

.about-quote {
  position: absolute;
  bottom: -28px;
  left: -22px;
  right: 26%;
  z-index: 4;
  background: rgba(14, 16, 22, .85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .55);
}

.about-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.3;
}

.about-quote-by {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--rose);
  margin-top: .55rem;
  display: inline-block;
}

.about-quote-mark {
  position: absolute;
  top: -18px;
  left: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  color: var(--rose);
  opacity: .45;
  line-height: 1;
}

.about-features {
  display: grid;
  gap: 10px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: border-color .3s, background .3s, transform .3s;
}

.about-feat:hover {
  border-color: rgba(217, 164, 140, .4);
  background: rgba(255, 255, 255, .05);
  transform: translateX(5px);
}

.about-feat-ico {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(217, 164, 140, .12);
  border: 1px solid rgba(217, 164, 140, .25);
  color: var(--amber);
  font-size: 1.05rem;
}

.about-feat h4 {
  color: #fff;
  font-weight: 600;
  font-size: .98rem;
}

.about-feat p {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  margin-top: 2px;
  line-height: 1.5;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255, 255, 255, .72);
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 12px var(--rose);
  flex: none;
}

/* ---------- Services ---------- */
.service-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  overflow: hidden;
}

/* frosted glass panel that the moving blob glows through */
.service-card::before {
  content: '';
  position: absolute;
  inset: 5px;
  z-index: 1;
  border-radius: 13px;
  background: rgba(14, 16, 22, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .06);
}

/* animated brand-colored blob bouncing behind the glass */
.service-card::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--glow), var(--rose) 45%, var(--copper) 90%);
  filter: blur(34px);
  opacity: .42;
  transform: translate(-50%, -50%);
  animation: blobBounce 7s infinite ease-in-out;
  pointer-events: none;
}

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

.tilt-wrap:hover .service-card {
  border-color: rgba(217, 164, 140, .5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

.tilt-wrap:hover .service-card::after {
  opacity: .7;
}

@keyframes blobBounce {

  0%,
  100% {
    top: 24%;
    left: 20%;
  }

  25% {
    top: 22%;
    left: 80%;
  }

  50% {
    top: 80%;
    left: 78%;
  }

  75% {
    top: 82%;
    left: 22%;
  }
}

.service-ico {
  font-size: 1.8rem;
  color: var(--amber);
  display: inline-block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(240, 203, 180, .5));
}

.service-h {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: .5rem;
}

.service-p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ---------- Process ---------- */
.process-card {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, .02);
  transition: border-color .3s, transform .3s;
  position: relative;
}

.process-card:hover {
  border-color: rgba(217, 164, 140, .45);
  transform: translateY(-4px);
}

.process-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--rose), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-h {
  font-size: 1.15rem;
  color: #fff;
  margin: .4rem 0 .5rem;
  font-weight: 600;
}

.process-p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ---------- Projects ---------- */
.proj {
  border-radius: 18px;
  overflow: hidden;
  display: block;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.proj img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.7);
}

.proj::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 9, 13, .9) 100%);
}

.tilt-wrap:hover .proj img {
  transform: scale(1.08);
  filter: brightness(.85);
}

.proj-feature {
  min-height: 300px;
}

.proj-body {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.6rem;
  transform: translateZ(30px);
}

.proj-tag {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}

.proj-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #fff;
  margin-top: .3rem;
}

/* ---------- Selected work split (left copy · right honeycomb) ---------- */
.eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--rose);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.6rem;
}

.work-tags span {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 7px 14px;
  border-radius: 999px;
  transition: border-color .25s, color .25s;
}

.work-tags span:hover {
  border-color: rgba(217, 164, 140, .45);
  color: var(--amber);
}

.hex-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hex-wrap-glow {
  position: absolute;
  width: 115%;
  height: 115%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217, 164, 140, .15), transparent 62%);
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Hexagon honeycomb gallery (home projects preview) ---------- */
.hex-grid {
  position: relative;
  z-index: 1;
  --l: clamp(58px, 11vw, 104px);
  /* hex cell height (sized to fit the right column) */
  --hl: calc(.5 * var(--l));
  --ri: calc(.866 * var(--l));
  /* half-width ≈ .5*√3*l */
  --n-cols: 6;
  --n-rows: 3;
  display: grid;
  grid-template: repeat(var(--n-rows), var(--l)) / repeat(var(--n-cols), var(--ri));
  grid-gap: var(--hl) 0;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .5));
}

/* every honeycomb-offset row starts one column in */
.hex-grid .hex-cell:nth-of-type(5n + 1) {
  grid-column-start: 2;
}

.hex-cell {
  display: block;
  overflow: hidden;
  grid-column-end: span 2;
  margin: calc(-1 * var(--hl)) 0;
  transform: scale(.95);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: transform .4s;
}

.hex-cell:hover {
  transform: scale(1);
}

.hex-cell img {
  --on: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1 + .16 * var(--on)));
  filter: brightness(calc(.62 * (1 + var(--on)))) saturate(calc(.85 + .25 * var(--on)));
  transition: .7s;
}

.hex-cell:hover img {
  --on: 1;
}

/* ---------- 3D Showcase ---------- */
.showcase {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  max-width: 90vw;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 164, 140, .12), transparent 65%);
  filter: blur(40px);
}

.showcase-head {
  position: relative;
  z-index: 2;
}

.orbit-3d {
  display: block;
  width: 100%;
  height: 560px;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .orbit-3d {
    height: 420px;
  }
}

/* ---------- Clients marquee ---------- */
.marquee {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  padding: 18px 0;
  animation: scrollX 48s linear infinite;
}

.marquee-track.reverse {
  animation-duration: 56s;
  animation-direction: reverse;
}

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

.logo {
  height: 76px;
  width: 168px;
  object-fit: contain;
  flex: none;
  padding: 16px 24px;
  background: linear-gradient(180deg, #ffffff, #eceae6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .8);
  filter: grayscale(60%);
  opacity: .82;
  transition: opacity .35s, transform .35s, box-shadow .35s, filter .35s;
}

.logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(217, 164, 140, .3);
}

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

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

/* ---------- Contact ---------- */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 164, 140, .14), transparent 70%);
  filter: blur(30px);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .2s;
}

.contact-row:hover {
  transform: translateX(4px);
}

.contact-k {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .4);
}

.contact-ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(217, 164, 140, .1);
  border: 1px solid rgba(217, 164, 140, .25);
  color: var(--amber);
  font-size: 1.1rem;
}

.contact-form {
  background: rgba(14, 16, 22, .6);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 2rem;
}

.field {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: #fff;
  font-size: .92rem;
  transition: border-color .25s, background .25s;
}

.field::placeholder {
  color: rgba(255, 255, 255, .35);
}

.field:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(255, 255, 255, .06);
}

/* ---------- Footer ---------- */
.footer-h {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-size: .95rem;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  transition: all .25s;
}

.social:hover {
  border-color: var(--rose);
  color: var(--amber);
  background: rgba(217, 164, 140, .08);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lamp-blur,
  .scroll-cue span,
  .marquee-track,
  .hero-aurora::before,
  .hero-aurora::after,
  .hero-badge::after,
  .hero-badge-dot,
  .grad-shimmer,
  .mote,
  .service-card::after {
    animation: none !important;
  }

  .tilt-3d {
    transition: none;
  }
}

@media (max-width: 640px) {
  .hero-chips {
    gap: .7rem;
    padding: .75rem .85rem;
    flex-wrap: nowrap;
    max-width: calc(100vw - 2rem);
  }

  .hero-chip {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-chip-n {
    font-size: 1.25rem;
  }

  .hero-chip-l {
    font-size: .56rem;
    letter-spacing: .08em;
    white-space: nowrap;
  }

  .hero-chip-div {
    height: 30px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.4rem 1.1rem;
  }

  .service-h {
    font-size: 1.2rem;
  }

  .service-ico {
    font-size: 1.45rem;
    margin-bottom: .6rem;
  }

  .process-card {
    padding: 1.3rem 1.1rem;
  }

  .process-num {
    font-size: 2rem;
  }

  .process-h {
    font-size: 1.05rem;
  }

  .about-photo-card {
    position: static;
    margin-top: 1rem;
    left: 0;
    right: 0;
  }

  .lamp-content {
    margin-top: 6rem;
  }

  /* before/after slider — mobile */
  .hc-handle {
    width: 40px;
    height: 40px;
  }

  .hc-handle svg {
    width: 18px;
    height: 18px;
  }

  .hc-label {
    bottom: 12%;
    font-size: .52rem;
    letter-spacing: .2em;
    padding: 4px 9px;
  }

  /* about section — mobile */
  .about-badge {
    top: -14px;
    right: -6px;
    width: 88px;
    padding: 11px 9px;
  }

  .about-badge-n {
    font-size: 1.85rem;
  }

  .about-quote {
    position: static;
    left: auto;
    right: auto;
    margin-top: 1.4rem;
  }

  .about-quote-mark {
    top: -16px;
  }
}