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

:root {
  --bg:          #0c0c0d;
  --bg-surface:  #111112;
  --bg-card:     #161617;
  --text:        #e8e4dc;
  --text-muted:  #6e6b64;
  --text-dim:    #2e2d2b;
  --accent:      #c9a96e;
  --border:      rgba(232,228,220,0.07);
  --border-mid:  rgba(232,228,220,0.13);
  --border-gold: rgba(201,169,110,0.28);
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.45;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(12,12,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-links a {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 18px;
  border-left: 1px solid var(--border);
  transition: color 0.25s, background 0.25s;
}

.nav-links a:last-child { border-right: 1px solid var(--border); }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.nav-links a.active { color: var(--accent); }

/* PAGE SPACING */
.page-body { padding-top: var(--nav-h); }

/* PAGE HERO */
.page-hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-hero-title em { font-style: italic; color: rgba(232,228,220,0.45); }

.page-hero-sub {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
}

/* WORK GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.work-item {
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
}

.work-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: 0.45;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.work-item:hover .work-thumb { opacity: 1; transform: scale(1.04); }

.work-info {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
}

.work-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.25s;
  line-height: 1.3;
}

.work-item:hover .work-title { color: var(--accent); }

.work-meta {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* PARADISE GRID */
.paradise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.paradise-item {
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
}

.paradise-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  position: relative;
  overflow: hidden;
}

.paradise-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.45;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.paradise-item:hover .paradise-thumb img { opacity: 1; transform: scale(1.04); }

/* FEATURED GRID */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 2px;
}

.featured-grid .paradise-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}

.play-btn::after {
  content: '';
  border-left: 13px solid var(--accent);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.paradise-item:hover .play-btn,
.work-item:hover .play-btn { opacity: 1; }

/* SECTION HEADERS */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 56px 48px 40px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
}

.section-title em { font-style: italic; color: rgba(232,228,220,0.4); }

.section-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.section-link:hover { color: var(--accent); }

/* PARADISE SECTION */
.paradise-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-bottom: 2px;
  padding-top: 0;
  margin-top: 0;
}

.paradise-section-header {
  padding: 80px 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--border);
  gap: 40px;
}

.paradise-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.paradise-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text);
}

.paradise-title em { font-style: italic; color: rgba(232,228,220,0.45); }

.paradise-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 320px;
  text-align: right;
}

/* HOME HERO */
.home-hero {
  position: relative;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 64px 48px;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #18160f 0%, #0c0c0d 50%, #0f0e0c 100%);
}

.home-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  pointer-events: none;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,13,0.95) 0%, rgba(12,12,13,0.15) 60%, transparent 100%);
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.home-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--text);
}

.home-hero-name em { font-style: italic; color: rgba(232,228,220,0.5); }

.home-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 44px;
  width: 100%;
}

.home-hero-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.home-hero-nav a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
  white-space: nowrap;
}

.home-hero-nav a:hover { color: var(--text); }

.home-hero-nav a span {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* CONTACT */
.contact-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 48px;
}

.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: 0.96;
  color: var(--text);
  margin-bottom: 56px;
}

.contact-headline em { font-style: italic; color: rgba(232,228,220,0.4); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.contact-email-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.contact-email-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 3px;
  transition: border-color 0.3s;
  margin-bottom: 40px;
  line-height: 1.2;
}

.contact-email-link:hover { border-color: var(--accent); }

.contact-socials { list-style: none; }
.contact-socials li { border-bottom: 1px solid var(--border); }
.contact-socials li:first-child { border-top: 1px solid var(--border); }

.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-socials a:hover { color: var(--text); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 11px; color: var(--text-dim); letter-spacing: 0.06em; }
.footer-mark { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--text-dim); letter-spacing: 0.1em; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-1 { animation: fadeUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.anim-2 { animation: fadeUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.anim-3 { animation: fadeUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.42s both; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .work-grid, .paradise-grid, .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid .paradise-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 800px) {
  nav { padding: 0 20px; }
  .nav-links a { padding: 8px 10px; font-size: 10px; }
  .home-hero { padding: 0 24px 24px; }
  .work-grid, .paradise-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid .paradise-item:first-child { grid-column: span 2; grid-row: span 1; }
  .section-header, .paradise-section-header { padding: 40px 20px 28px; flex-direction: column; gap: 12px; }
  footer { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrap { padding: 60px 20px; }
}

@media (max-width: 540px) {
  .nav-links { display: none; }
  .work-grid, .paradise-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
