:root {
    /* Typography & Theme */
  --bg: #ffffff;
  --text: #2a2a2a;
  --muted: #7a7a7a;
  --lavender: #b38bd4;
  --lavender-10: #b38bd41a;
  --gold: #c8a96a;
  --gold-15: #c8a96a26;
  --border: #ececec;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --gold-gradient: linear-gradient(90deg, #c8a96a, #e4c989 30%, #b38b3d 60%, #e4c989);
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}
.brand-names {
  font-size: 22px;
  letter-spacing: 0.5px;
}
.brand-date {
  font-size: 13px;
  color: var(--muted);
}
.top-nav {
  display: flex;
  gap: 14px;
}
.nav-link {
  text-decoration: none;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-link:hover {
  background: var(--lavender-10);
  border-color: var(--lavender);
}

/* Landing */
.landing {
  padding: 48px 0 64px;
}
.landing.center {
  min-height: calc(100dvh - 140px);
  display: grid;
  place-items: center;
}
.landing.center.has-hero { padding-top: 0; }
.hero {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.hero img {
  width: 100%;
  height: clamp(220px, 36vw, 420px);
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
}
.hero-title { font-family: "Cormorant Garamond", serif; font-size: clamp(28px, 5vw, 56px); margin: 0; }
.hero-sub { margin: 4px 0 0 0; opacity: 0.9; }
.landing-hero {
  text-align: center;
  margin-bottom: 28px;
}
.headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 4vw, 42px);
  margin: 0 0 6px 0;
}
.subline {
  margin: 0;
  color: var(--muted);
}

/* Luxury Heading */
.lux-heading {
  font-family: "Luxurious Script", cursive;
  font-size: clamp(32px, 6.5vw, 110px);
  line-height: 1.2;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
  margin: 6px 0 0 0;
  font-weight: 400;
  padding: 0.1em 0.2em;
  background-size: 100% 100%;
}
.lux-date { display: flex; align-items: baseline; gap: 10px; justify-content: center; margin-top: 6px; }
.lux-date .big { font-family: "Cormorant Garamond", serif; font-size: clamp(28px, 6vw, 56px); color: var(--text); font-weight: 600; }
.lux-date .year { font-family: "Manrope", sans-serif; font-size: clamp(14px, 2.4vw, 18px); color: var(--muted); letter-spacing: 3px; }

/* Portrait ring row */
.portraits-row { position: relative; display: flex; align-items: center; justify-content: center; gap: 0; margin: 14px 0 50px; }
.portrait { position: relative; width: clamp(100px, 18vw, 160px); height: clamp(100px, 18vw, 160px); border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); border: 3px solid #fff; }
.portrait.left { transform: translateX(8%); z-index: 2; }
.portrait.right { transform: translateX(-8%); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.landing-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 860px) {
  .landing-actions {
    grid-template-columns: 1fr;
  }
}
.choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 600;
}
.choice-btn:hover {
  border-color: var(--lavender);
  background: var(--lavender-10);
}

.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.card-media { width: 100%; height: clamp(160px, 22vw, 220px); object-fit: cover; display: block; filter: saturate(102%); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media { transform: scale(1.03); }
.card-caption { padding: 12px 14px; display: flex; align-items: center; justify-content: center; }
.card-title { font-weight: 700; }
.card-link { position: absolute; inset: 0; }

/* Gallery */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin: 0;
}

/* Hero Video */
.hero-video {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.hero-video__player {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}
.hero-video__title {
  font-family: "Luxurious Script", cursive;
  font-size: clamp(28px, 5vw, 48px);
  text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 32px 0;
  font-weight: 400;
}

/* Category Grid 2x2 */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.category-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.category-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 1;
  transition: opacity 0.2s;
}
.category-card:hover .category-card__overlay {
  opacity: 0.8;
}
.category-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 0 20px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}
.back-btn:hover {
  border-color: var(--gold);
  background: var(--gold-15);
  text-decoration: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.tab-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.tab-btn[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold-15);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid var(--border);
  transition: opacity 0.3s ease;
}
.thumb.loading {
  opacity: 0.6;
}
.thumb.loaded {
  opacity: 1;
}
.thumb img, .thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.thumb-video {
  background: #000;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 1;
  transition: opacity 0.2s;
}
.thumb:hover .video-overlay {
  opacity: 0.8;
}
.play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid rgba(255,255,255,0.9);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox.open { display: flex; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
}
.lightbox__image, .lightbox__video {
  position: relative;
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 1;
}
.lightbox__video {
  background: #000;
}
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 0;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 22px;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 22px;
  cursor: pointer;
}
.lightbox__nav.prev { left: 18px; }
.lightbox__nav.next { right: 18px; }

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 36px;
  padding: 22px 0;
  color: var(--muted);
  text-align: center;
}


