/* ── Custom Font Setup ── */
@font-face {
    font-family: 'LanoLumiCustom';
    src: url('assets/font/HumaneBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
  --bg-color: #0D0D0D;
  --text-color: #F0EBE1;
  --accent-color: rgba(240, 235, 225, 0.6);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #0D0D0D;
  color: #F0EBE1;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: auto;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.custom-cursor-on body {
  cursor: none;
}

/* ── Focus states (keyboard accessibility) ── */
a:focus-visible, button:focus-visible, .gallery-item:focus-visible, .filter-btn:focus-visible {
  outline: 2px solid #C9A98A;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Blur-up image loading (LQIP) ── */
.img-frame {
  position: relative;
  overflow: hidden;
  background: #161616;
}

.img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px);
  transform: scale(1.12);
  transition: opacity .6s ease;
}

.img-full {
  position: relative;
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity .6s ease, transform .7s cubic-bezier(.77,0,.18,1);
}

.img-full.loaded {
  opacity: 1;
}

.frame-loaded .img-ph {
  opacity: 0;
}

/* ── Dynamic Mouse Spotlight & Grain ── */
#spotlight {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle 600px at var(--x, 50vw) var(--y, 50vh), rgba(255, 255, 255, 0.04), transparent 80%);
  transition: background 0.1s ease;
}

#grain {
  position: fixed;
  inset: 0;
  z-index: 850;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift .5s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, -3%); }
  50% { transform: translate(3%, 1%); }
  75% { transform: translate(-1%, 3%); }
  100% { transform: translate(0, 0); }
}

/* ── Custom Cursor ── */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #C9A98A;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,138,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s, height .4s, border-color .3s;
}

.cursor-hover #cursor {
  width: 44px;
  height: 44px;
  background: rgba(201,169,138,.15);
}

.cursor-hover #cursor-ring {
  width: 44px;
  height: 44px;
  border-color: rgba(201,169,138,.8);
}

.cursor-click #cursor {
  transform: translate(-50%,-50%) scale(.7);
}

html.custom-cursor-on .filter-btn,
html.custom-cursor-on .gallery-item,
html.custom-cursor-on #lb-close,
html.custom-cursor-on .lb-arrow,
html.custom-cursor-on #hamburger {
  cursor: none;
}

/* ── Coming Soon / Splash Page Container & Layout ── */
.container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}

.reveal-wrap {
  overflow: visible;
  margin-bottom: 1.5rem;
}

.reveal-text {
  display: block;
  transform: translateY(110%) scale(0.95);
  opacity: 0;
  filter: blur(12px);
  animation: revealFocus 1.4s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

img.reveal-text {
  max-height: 90px;
  max-width: 85vw;
  width: auto;
  margin-bottom: 0.5rem;
  animation-delay: 0.1s;
}

h2.reveal-text {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-color);
  animation-delay: 0.3s;
}

p.reveal-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: #9A9188;
  margin-top: 2rem;
  animation-delay: 0.5s;
  line-height: 1.8;
}

.email-link {
  display: inline-block;
  margin-top: 3rem;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
  padding-bottom: 4px;
}

.email-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(240,235,225,.15);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: #C9A98A;
  width: 0;
  animation: loadBar 1.6s .4s cubic-bezier(.77,0,.18,1) forwards;
}

.loader-wipe {
  position: absolute;
  inset: 0;
  background: #C9A98A;
  transform: scaleX(0);
  transform-origin: left;
  animation: wipeOut .6s 2.0s cubic-bezier(.77,0,.18,1) forwards;
}

.loader-img {
  max-width: 400px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: imgFadeUp .8s cubic-bezier(.77, 0, .18, 1) 0.2s forwards;
}

@keyframes loadBar { to { width: 100%; } }
@keyframes wipeOut { 50% { transform: scaleX(1); transform-origin: left; } 50.01% { transform-origin: right; } to { transform: scaleX(0); transform-origin: right; } }
@keyframes imgFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background .5s, padding .4s;
}

#nav.scrolled {
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201,169,138,.12);
}

.nav-logo {
  font-family: 'LanoLumiCustom', 'Playfair Display', serif;
  font-size: 2.0rem;
  letter-spacing: .04em;
  color: #F0EBE1;
  text-decoration: none;
  position: relative;
  z-index: 900;
}

.nav-logo-img {
  max-width: 200px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9A9188;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: #C9A98A;
  transition: right .3s ease;
}

/* ── Hamburger ── */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 900;
  position: relative;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #F0EBE1;
  transition: transform .4s cubic-bezier(.77,0,.18,1), opacity .3s;
}

#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ── */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  overflow: hidden;
}

#mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

#mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,138,.04), transparent);
  pointer-events: none;
}

.mob-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-style: italic;
  color: #9A9188;
  text-decoration: none;
  transition: color .3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.mob-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: #C9A98A;
  transition: right .4s ease;
}

#mobile-menu .mob-social {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

#mobile-menu .mob-social a {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9A9188;
  text-decoration: none;
  transition: color .3s;
}

.mob-eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,169,138,.5);
}

/* ── Magnetic button ── */
.mag-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F0EBE1;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border: 1px solid rgba(201,169,138,.4);
  position: relative;
  overflow: hidden;
  transition: color .3s, border-color .4s;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  justify-content: center;
  margin-top: 0.5rem;
}

.mag-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #C9A98A;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s cubic-bezier(.77,0,.18,1);
}

.mag-btn span {
  position: relative;
  z-index: 1;
}

.mag-btn .arrow {
  position: relative;
  z-index: 1;
  transition: transform .3s;
}

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background: url('assets/img/hero.jpg') center/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg.loaded { opacity: 1; }
@keyframes kenBurns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.08) translate(-1.5%,1%); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.95) 0%, rgba(13,13,13,.45) 50%, rgba(13,13,13,.2) 100%);
}

.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,.6) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 6rem;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C9A98A;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .9s .3s ease forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.04;
  color: #F0EBE1;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
}

.hero-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title em {
  font-style: italic;
  color: #C9A98A;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.7;
  color: #9A9188;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 1s .95s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}

.hero-link {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9A9188;
  text-decoration: none;
  transition: color .3s;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}

.scroll-hint span {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9A9188;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, #C9A98A, transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop { 0% { transform: scaleY(0) translateY(-100%); opacity: 1; } 70% { transform: scaleY(1) translateY(0); opacity: 1; } 100% { opacity: 0; } }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(240,235,225,.06);
  border-bottom: 1px solid rgba(240,235,225,.06);
  padding: .75rem 0;
  background: #111;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #9A9188;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C9A98A;
  flex-shrink: 0;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section base ── */
section { padding: 7rem 3rem; }
.section-label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: #C9A98A; margin-bottom: .75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; color: #F0EBE1; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@supports (animation-timeline:view()) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: scrollReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
}

@keyframes revealFocus {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ── Gallery ── */
#work { background: #0D0D0D; }
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.filter-bar {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9A9188;
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}

.filter-btn.active {
  color: #F0EBE1;
  border-color: #C9A98A;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(.98);
  transition: opacity .7s ease, transform .7s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@supports (animation-timeline:view()) {
  .gallery-item {
    opacity: 1;
    transform: none;
    animation: scrollReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
  }
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .4s;
}

.gallery-item:focus-visible .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-style: italic;
  color: #F0EBE1;
  transform: translateY(8px);
  transition: transform .4s;
}

/* ── Tilt cards ── */
.tilt-card {
  background: #1a1a1a;
  border: 1px solid rgba(240,235,225,.06);
  padding: 1.8rem;
  transition: border-color .3s;
}

/* ── About ── */
#about { background: #111; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap { position: relative; }
.about-img-wrap .img-frame { width: 100%; aspect-ratio: 3/4; }
.about-img-wrap .img-full { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(201,169,138,.3);
  pointer-events: none;
  transition: transform .4s;
}

.about-body {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #9A9188;
}

.about-body p + p { margin-top: 1.2rem; }

.about-stat-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(240,235,225,.08);
  padding-top: 2rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #F0EBE1;
  line-height: 1;
}

.stat-num-wrap { overflow: hidden; }
.stat-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9A9188;
  margin-top: .4rem;
}

/* ── Services ── */
#services { background: #0D0D0D; }
.services-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,235,225,.05);
}

.service-card {
  background: #0D0D0D;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,138,.07), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #C9A98A;
  display: block;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}

.service-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #F0EBE1; margin-bottom: .8rem; }
.service-desc { font-size: .88rem; font-weight: 300; line-height: 1.75; color: #9A9188; }
.service-price { margin-top: 1.5rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #C9A98A; }

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #C9A98A;
  width: 0;
  transition: width .5s cubic-bezier(.77,0,.18,1);
}

/* ── Contact ── */
#contact { background: #111; }
.contact-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-inner .section-title { margin: .5rem 0 1.5rem; }
.contact-inner p { font-size: .95rem; font-weight: 300; line-height: 1.75; color: #9A9188; margin-bottom: 2.5rem; }

.contact-email {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-style: italic;
  color: #C9A98A;
  text-decoration: none;
  position: relative;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: #C9A98A;
  transform: scaleX(1);
  transition: transform .35s;
}

/* ── Contact Form Styling ── */
.contact-form {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A98A;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: #161616;
  border: 1px solid rgba(240, 235, 225, 0.1);
  color: #F0EBE1;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-radius: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C9A98A;
  background: #1c1c1c;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A98A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
}

.form-group select option {
  background: #161616;
  color: #F0EBE1;
}

#capth {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  list-style: none;
}

.social-row a {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9A9188;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.social-row a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: #C9A98A;
  transition: right .3s;
}

/* ── Footer ── */
footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(240,235,225,.06);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  font-size: .72rem;
  letter-spacing: .1em;
  color: #9A9188;
}

/* ── Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(88vw,900px);
  max-height: 82vh;
}

#lb-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  transform: scale(.92) translateY(16px);
  transition: transform .5s cubic-bezier(.34,1.1,.64,1), opacity .4s ease;
  opacity: 0;
  user-select: none;
  -webkit-user-drag: none;
}

#lightbox.open #lb-img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

@supports (view-transition-name:none) {
  #lb-img { transition: none; opacity: 1; transform: none; }
}

::view-transition-group(lb-photo), ::view-transition-old(lb-photo), ::view-transition-new(lb-photo) {
  animation-duration: .45s;
  animation-timing-function: cubic-bezier(.77,0,.18,1);
}

::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .4s;
}

#lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 1rem;
  color: #9A9188;
  background: none;
  border: 1px solid rgba(240,235,225,.15);
  padding: .45rem .75rem;
  cursor: pointer;
  transition: color .25s, border-color .25s;
  z-index: 2;
  line-height: 1;
}

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,13,13,.7);
  border: 1px solid rgba(240,235,225,.2);
  color: #9A9188;
  font-size: 1.1rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  z-index: 1002;
  user-select: none;
}

.lb-arrow:active { opacity: .7; }
#lb-prev { left: 2rem; }
#lb-next { right: 2rem; }

#lb-footer {
  position: absolute;
  bottom: -3.8rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 .25rem;
}

.lb-info { display: flex; flex-direction: column; gap: .35rem; }
#lb-caption { font-family: 'Playfair Display', serif; font-size: .92rem; font-style: italic; color: #F0EBE1; }
#lb-meta { font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(154,145,136,.75); }
#lb-counter { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(154,145,136,.6); white-space: nowrap; }

.lb-slide-out-left { animation: lbOutLeft .3s ease forwards; }
.lb-slide-in-right { animation: lbInRight .35s cubic-bezier(.34,1.1,.64,1) forwards; }
.lb-slide-out-right { animation: lbOutRight .3s ease forwards; }
.lb-slide-in-left { animation: lbInLeft .35s cubic-bezier(.34,1.1,.64,1) forwards; }

@keyframes lbOutLeft { to { opacity: 0; transform: translateX(-60px) scale(.95); } }
@keyframes lbInRight { from { opacity: 0; transform: translateX(60px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes lbOutRight { to { opacity: 0; transform: translateX(60px) scale(.95); } }
@keyframes lbInLeft { from { opacity: 0; transform: translateX(-60px) scale(.95); } to { opacity: 1; transform: none; } }

/* ── Mobile ── */
@media(max-width: 768px) {
  body { cursor: auto!important; overflow-x: hidden; }
  .cursor-dot, .cursor-outline, #cursor, #cursor-ring, #spotlight { display: none!important; }
  #nav { padding: 1rem 1.2rem; }
  #nav.scrolled { padding: .85rem 1.2rem; }
  .nav-links { display: none; }
  #hamburger { display: flex; }
  section { padding: 4rem 1.2rem; }
  .hero-content { padding: 0 1.2rem 5rem; max-width: 100%; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-sub { max-width: 100%; font-size: .9rem; }
  .scroll-hint { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-accent { display: none; }
  .about-stat-row { gap: .8rem; }
  .tilt-card { padding: 1.2rem; }
  .gallery-grid { columns: 2; column-gap: .6rem; }
  .gallery-item { margin-bottom: .6rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: .5rem; text-align: center; padding: 1.5rem 1.2rem; }
  #lb-prev { left: .6rem; }
  #lb-next { right: .6rem; }
  .lb-arrow { width: 42px; height: 42px; font-size: 1rem; }
  #lb-img-wrap { max-width: 80vw; }
  #lb-footer { bottom: -3.4rem; flex-direction: column; align-items: flex-start; gap: .4rem; }
  .mag-btn { padding: .8rem 1.6rem; font-size: .72rem; }
}

@media(max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .about-stat-row { flex-direction: column; gap: .8rem; }
  .tilt-card { flex: unset!important; width: 100%; }
  #lb-img-wrap { max-width: 92vw; }
}

@media(prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s!important; transition-duration: 0s!important; }
  body { cursor: auto!important; }
  #cursor, #cursor-ring { display: none!important; }
}

/* ── Hover-only Effects ── */
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: #F0EBE1; }
  .nav-links a:hover::after { right: 0; }
  .mob-link:hover { color: #F0EBE1; }
  .mob-link:hover::after { right: 0; }
  #mobile-menu .mob-social a:hover { color: #C9A98A; }
  .mag-btn:hover { color: #0D0D0D; border-color: #C9A98A; }
  .mag-btn:hover::before { transform: scaleY(1); }
  .mag-btn:hover .arrow { transform: translateX(4px); }
  .hero-link:hover { color: #F0EBE1; }
  .marquee-track:hover { animation-play-state: paused; }
  .filter-btn:hover { color: #F0EBE1; border-color: #C9A98A; }
  .gallery-item:hover .img-full { transform: scale(1.07); }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
  .gallery-item:hover .gallery-item-title { transform: translateY(0); }
  .tilt-card:hover { border-color: rgba(201,169,138,.3); }
  .about-img-wrap:hover .img-full { transform: scale(1.04); }
  .about-img-wrap:hover .about-img-accent { transform: translate(6px, 6px); }
  .service-card:hover { background: #111; }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover .service-icon { transform: scale(1.2) rotate(-5deg); }
  .service-card:hover .service-line { width: 100%; }
  .contact-email:hover::after { transform: scaleX(0); }
  .contact-email:hover { color: #F0EBE1; }
  .social-row a:hover { color: #F0EBE1; }
  .social-row a:hover::after { right: 0; }
  #lb-close:hover { color: #F0EBE1; border-color: #C9A98A; }
  .lb-arrow:hover { background: rgba(201,169,138,.2); color: #F0EBE1; border-color: #C9A98A; }
}