/* ══ RESET & TOKENS ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080808;
  --ink:      #111111;
  --charcoal: #1c1c1c;
  --graphite: #2e2e2e;
  --mid:      #5a5a5a;
  --silver:   #9a9a9a;
  --pale:     #d4d4d4;
  --white:    #f5f3f0;
  --accent:   #c8c8c8;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Outfit', sans-serif;

  --ease:   cubic-bezier(.4,0,.2,1);
  --trans:  0.28s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* GRAIN */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--graphite); border-radius: 2px; }

/* ══ REVEAL ANIMATION ══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease) var(--d, 0s),
              transform 0.7s var(--ease) var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ TYPOGRAPHY UTILS ══ */
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 48px;
}
.section-title.center { text-align: center; }
.section-title.left   { text-align: left; }
.section-title em     { font-style: italic; color: var(--silver); }

/* ══ BUTTONS ══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: background var(--trans), color var(--trans), gap var(--trans);
}
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--trans); }
.btn-primary:hover { background: var(--accent); gap: 14px; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary.large { padding: 18px 36px; font-size: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(245,243,240,0.25);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: border-color var(--trans), background var(--trans);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ══ NAV ══════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  padding: 22px 48px;
  transition: background var(--trans), padding var(--trans), border-bottom var(--trans);
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--graphite);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--silver);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }

.nav-book {
  margin-left: 40px;
  padding: 10px 22px;
  border: 1px solid var(--graphite);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  transition: border-color var(--trans), background var(--trans);
}
.nav-book:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform var(--trans), opacity var(--trans);
}
.burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu ul a { font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--white); transition: color var(--trans); }
.mobile-menu ul a:hover { color: var(--silver); }
.mobile-book {
  padding: 14px 36px;
  border: 1px solid var(--graphite);
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white);
  transition: border-color var(--trans);
}
.mobile-book:hover { border-color: var(--white); }

/* ══ HERO ══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: contrast(1.05);
  transform: scaleX(1.5) translateX(220px);
  background: var(--black);
}

.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.10) 40%,
    rgba(8,8,8,0.72) 80%,
    rgba(8,8,8,0.95) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 700px;
  animation: heroFade 1.2s var(--ease) 0.3s both;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--pale); }

.hero-sub { font-size: 15px; color: var(--silver); margin-bottom: 36px; font-weight: 300; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--silver));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;} 50%{opacity:1;} }
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); writing-mode: vertical-lr; }

.hero-stats {
  position: absolute;
  right: 48px;
  transform: translateY(100%);
  display: flex;
  flex-direction: row;
  gap: 18px;
  animation: heroFade 1.2s var(--ease) 0.6s both;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat-n { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--white); }
.stat-l { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); }
.stat-div { width: 1px; height: 28px; background: var(--graphite); }

/* ══ MARQUEE ══ */
.marquee-wrap {
  background: var(--charcoal);
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--silver);
  font-weight: 300;
  flex-shrink: 0;
}
.marquee-track .dot { font-style: normal; }

/* ══ SECTIONS ══ */
.section { padding: 120px 48px; }

/* ══ GALLERY ══════════════════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}

.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%) contrast(1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-item.video-hover img,
.gallery-item.video-hover .gallery-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease), filter 0.4s var(--ease);
}

.gallery-item.video-hover .gallery-video {
  opacity: 0;
  pointer-events: none;
}

.gallery-item.video-hover:hover img {
  opacity: 0;
}

.gallery-item.video-hover:hover .gallery-video {
  opacity: 1;
  transform: scale(1.07);
  filter: grayscale(0%) ;
}
.gallery-caption span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pale);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.96);
  z-index: 800;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; animation: heroFade 0.25s ease; }

.lb-img {
  max-width: 80vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  border-radius: 2px;
}

.lb-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  font-size: 22px; color: var(--silver);
  cursor: pointer; transition: color var(--trans);
}
.lb-close:hover { color: var(--white); }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--graphite);
  border-radius: 2px;
  width: 46px; height: 46px;
  font-size: 24px; color: var(--silver);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--trans), color var(--trans);
}
.lb-nav:hover { border-color: var(--white); color: var(--white); }
.lb-nav.prev { left: 24px; }
.lb-nav.next { right: 24px; }

/* ══ ABOUT ══════════════════════════════════════════════════════════════════════ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--ink);
}

.about-img-col { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.1);
}
.about-tag {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}

.about-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--silver);
  margin-bottom: 18px;
  font-weight: 300;
}

.about-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
  margin-top: 8px;
}
.about-pills span {
  padding: 6px 14px;
  border: 1px solid var(--graphite);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
}

/* ══ SERVICES ══════════════════════════════════════════════════════════════════ */
.services-section { background: var(--black); }

.services-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--graphite);
  margin-bottom: 60px;
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--graphite);
  transition: background var(--trans);
  cursor: default;
}
.service-item:hover { background: rgba(255,255,255,0.02); }

.si-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--mid);
  font-style: italic;
}
.si-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 4px;
}
.si-desc {
  font-size: 13px;
  color: var(--silver);
  font-weight: 300;
}
.si-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--silver);
  white-space: nowrap;
}

.services-cta { text-align: center; }

/* ══ TESTIMONIALS ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 48px;
  background: var(--charcoal);
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.testimonial {
  padding: 36px;
  border: 1px solid var(--graphite);
  border-radius: 2px;
  background: rgba(8,8,8,0.5);
}

.t-stars { color: var(--pale); font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.t-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--pale);
  margin-bottom: 20px;
}
.t-name { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }

/* ══ CONTACT ══════════════════════════════════════════════════════════════════ */
.contact-section {
  padding: 140px 48px;
  background: var(--ink);
  text-align: center;
}

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

.contact-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 22px;
}
.contact-title em { font-style: italic; color: var(--silver); }

.contact-sub {
  font-size: 15px;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--mid);
  flex-wrap: wrap;
}
.contact-info a { color: var(--silver); transition: color var(--trans); }
.contact-info a:hover { color: var(--white); }

/* ══ FOOTER ══════════════════════════════════════════════════════════════════ */
.footer {
  padding: 36px 48px;
  border-top: 1px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--white);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; letter-spacing: 1px; color: var(--mid); transition: color var(--trans); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 11px; color: var(--mid); }

/* ══ RESPONSIVE ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .about-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 36px; }
  .about-tag { display: none; }
  .testimonials-track { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .burger { display: flex; }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }

  .hero { padding: 0 24px 64px; }
  .hero-img { display: none; }
  .hero-bg { background: var(--black); }
  .hero-veil { background: var(--black); }
  .hero-scroll { right: 24px; bottom: 64px; }
  .hero-title { font-size: clamp(48px, 14vw, 80px); }

  .section { padding: 80px 24px; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }

  .services-section { padding: 80px 24px; }
  .service-item { grid-template-columns: 40px 1fr auto; gap: 14px; }
  .si-name { font-size: 18px; }

  .testimonials-section { padding: 80px 24px; }
  .contact-section { padding: 100px 24px; }
  .footer { padding: 28px 24px; flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .contact-info { flex-direction: column; gap: 6px; }
  .contact-info span:nth-child(even) { display: none; }
}