/*
Theme Name: Noelle Carina
Theme URI: https://noellecarina.com
Author: Logic Web Media
Author URI: https://logicwebmedia.com
Description: Custom WordPress theme for Noelle Carina — Self Love Icon, Long Island, NY.
Version: 1.0.0
License: Private
Text Domain: noelle-carina
Tags: photography, custom, dark, luxury
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: #0d0b0a;
  --bg-warm: #1a1410;
  --cream: #f5ede0;
  --cream-dim: #d4c8b5;
  --gold: #c9985a;
  --gold-bright: #e0b274;
  --rose: #b8675a;
  --line: rgba(245, 237, 224, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
picture { display: block; width: 100%; height: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

.cursor { display: none !important; }

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.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: overlay;
  will-change: auto;
}

/* ============================================================
   TICKER
   ============================================================ */
.top-ticker {
  background: var(--gold);
  color: var(--bg);
  padding: 8px 0;
  overflow: hidden;
  max-width: 100vw;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 50;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
  will-change: transform;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(13, 11, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}
.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.current-menu-item::after { width: 100%; }
.nav-cta {
  background: var(--cream);
  color: var(--bg);
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}
.nav-cta:hover { background: var(--gold); }

/* ============================================================
   MEGA DROPDOWN
   ============================================================ */
.nav-links li { position: relative; }
/* hover bridge */
.nav-links li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  width: calc(100% + 40px);
  height: 16px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10,8,7,0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(201,152,90,0.18);
  border-top: 2px solid var(--gold);
  padding: 36px 32px 28px;
  min-width: 760px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1),
              visibility 0.4s cubic-bezier(0.4,0,0.2,1),
              transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 200;
  box-shadow: 0 50px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,152,90,0.05);
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* label above grid */
.nav-dropdown-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,152,90,0.5);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
/* card grid */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nav-dropdown-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,152,90,0.08);
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s;
}
.nav-dropdown-card::after { display: none; }
.nav-dropdown-card:hover {
  border-color: rgba(201,152,90,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-dropdown-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.nav-dropdown-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.65) contrast(1.1) saturate(1.1);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s;
  display: block;
}
.nav-dropdown-card:hover .nav-dropdown-img img {
  transform: scale(1.08);
  filter: brightness(0.8) contrast(1.05);
}
.nav-dropdown-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10,8,7,0.75) 100%);
  pointer-events: none;
}
.nav-dropdown-body {
  padding: 18px 20px 22px;
}
.nav-dropdown-tag {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  opacity: 0.8;
}
.nav-dropdown-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.nav-dropdown-desc {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(212,200,181,0.65);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
.nav-dropdown-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: gap 0.3s, color 0.3s;
}
.nav-dropdown-card:hover .nav-dropdown-arrow {
  gap: 12px;
  color: var(--cream);
}
/* footer strip */
.nav-dropdown-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,237,224,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-dropdown-footer span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212,200,181,0.3);
  font-weight: 500;
}
.nav-dropdown-footer a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(201,152,90,0.3);
  padding-bottom: 2px;
}
.nav-dropdown-footer a::after { display: none; }
.nav-dropdown-footer a:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ============================================================
   MOBILE HAMBURGER + OVERLAY MENU
   ============================================================ */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 200;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 8px;
  width: 28px; height: 1.5px;
  background: var(--cream);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; width: 20px; }
.hamburger span:nth-child(3) { top: 28px; }
body.menu-open .hamburger span:nth-child(1) { top: 22px; transform: rotate(45deg); width: 28px; }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; transform: translateX(20px); }
body.menu-open .hamburger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 150;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu::before, .mobile-menu::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}
.mobile-menu::before { background: var(--gold); transition-delay: 0s; }
.mobile-menu::after  { background: var(--bg-warm); transition-delay: 0.1s; }
.mobile-menu .menu-bg {
  position: absolute; inset: 0;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.2s;
}
body.menu-open .mobile-menu { pointer-events: auto; visibility: visible; }
body.menu-open .mobile-menu::before { transform: translateY(0); }
body.menu-open .mobile-menu::after  { transform: translateY(0); }
body.menu-open .mobile-menu .menu-bg { transform: translateY(0); }

.mobile-menu-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  padding: 100px 30px 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
  transition-delay: 0s;
}
body.menu-open .mobile-menu-inner { opacity: 1; transition-delay: 0.7s; }

.menu-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px; font-weight: 500;
  opacity: 0; transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
body.menu-open .menu-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

.mobile-menu-links { list-style: none; margin: 0; padding: 0; flex: 1; }
.mobile-menu-links li {
  overflow: hidden; margin-bottom: 6px;
  border-bottom: 1px solid var(--line); padding-bottom: 6px;
}
.mobile-menu-links a {
  display: flex; align-items: baseline; justify-content: space-between;
  text-decoration: none;
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(48px, 11vw, 80px);
  line-height: 1; letter-spacing: -2px;
  color: var(--cream); padding: 16px 0;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), color 0.3s;
}
.mobile-menu-links a .num {
  font-family: 'Pinyon Script', cursive; font-size: 0.32em;
  color: var(--gold); letter-spacing: 0; font-weight: 400;
  transform: translateY(-0.5em);
}
.mobile-menu-links a:hover,
.mobile-menu-links a.current { color: var(--gold); }
body.menu-open .mobile-menu-links li:nth-child(1) a { transform: translateY(0); transition-delay: 0.75s; }
body.menu-open .mobile-menu-links li:nth-child(2) a { transform: translateY(0); transition-delay: 0.82s; }
body.menu-open .mobile-menu-links li:nth-child(3) a { transform: translateY(0); transition-delay: 0.89s; }
body.menu-open .mobile-menu-links li:nth-child(4) a { transform: translateY(0); transition-delay: 0.96s; }
body.menu-open .mobile-menu-links li:nth-child(5) a { transform: translateY(0); transition-delay: 1.03s; }
body.menu-open .mobile-menu-links li:nth-child(6) a { transform: translateY(0); transition-delay: 1.10s; }

.mobile-menu-foot {
  margin-top: 40px; padding-top: 30px;
  border-top: 1px solid var(--line);
  opacity: 0; transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
body.menu-open .mobile-menu-foot { opacity: 1; transform: translateY(0); transition-delay: 1.15s; }
.mobile-menu-foot .menu-cta {
  display: block; background: var(--gold); color: var(--bg);
  padding: 22px; text-align: center; text-decoration: none;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 30px; transition: background 0.3s;
}
.mobile-menu-foot .menu-cta:hover { background: var(--cream); }
.mobile-menu-foot .socials { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; }
.mobile-menu-foot .socials a {
  color: var(--cream-dim); text-decoration: none;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; transition: color 0.3s;
}
.mobile-menu-foot .socials a:hover { color: var(--gold); }
.mobile-menu-foot .meta {
  text-align: center; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cream-dim); line-height: 1.8;
}
.mobile-menu-foot .meta a {
  color: var(--gold); text-decoration: none;
  font-style: italic; font-family: 'Fraunces', serif;
  font-weight: 300; font-size: 14px; letter-spacing: 0; text-transform: none;
}
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 100px);
  padding: 60px 50px 100px;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-video-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-warm);
  grid-row: span 2;
}
.hero-video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(13,11,10,0.55) 100%),
    radial-gradient(ellipse at center, transparent 60%, rgba(13,11,10,0.4) 100%);
  z-index: 2; pointer-events: none;
}
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,11,10,0.7) 100%);
  pointer-events: none;
}
/* Hero background video */
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.08) saturate(1.05);
  z-index: 0;
}
.video-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--cream); color: var(--bg);
  padding: 8px 16px; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; z-index: 3;
}
.video-caption {
  position: absolute; bottom: 50px; left: 30px; right: 30px;
  color: var(--cream); font-family: 'Fraunces', serif;
  font-style: italic; font-size: 18px; font-weight: 300; z-index: 3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-text { align-self: end; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px; font-weight: 500;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.95; letter-spacing: -2px; margin-bottom: 36px;
}
.hero-headline .script {
  font-family: 'Pinyon Script', cursive; color: var(--gold);
  font-weight: 400; font-size: 1.05em; letter-spacing: 0;
  display: inline-block; transform: translateY(8px);
}
.hero-headline em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: 16px; line-height: 1.7; color: var(--cream-dim);
  margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--bg);
  padding: 20px 40px; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 600; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 12px;
  min-height: 44px; touch-action: manipulation;
}
.btn-primary:hover { background: var(--cream); }
.btn-primary::after { content: '→'; font-size: 16px; }
.btn-text {
  color: var(--cream); text-decoration: none; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
}
.hero-stats {
  grid-column: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; padding-top: 40px; border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: 56px; line-height: 1; color: var(--gold); letter-spacing: -2px;
}
.stat-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 10px; font-weight: 500;
}

/* ============================================================
   BIG STATEMENT
   ============================================================ */
.big-statement { padding: 160px 50px; background: var(--bg); overflow: hidden; position: relative; }
.big-statement-inner { max-width: 1500px; margin: 0 auto; }
.big-statement h2 {
  font-family: 'Fraunces', serif; font-weight: 200;
  font-size: clamp(54px, 9vw, 160px); line-height: 0.92; letter-spacing: -4px;
}
.big-statement h2 .accent {
  font-family: 'Pinyon Script', cursive; color: var(--gold);
  font-weight: 400; letter-spacing: 0; font-size: 0.85em;
  display: inline-block; transform: translateY(10px);
}
.big-statement h2 .strike { position: relative; color: var(--cream-dim); opacity: 0.5; }
.big-statement h2 .strike::after {
  content: ''; position: absolute; top: 52%; left: -2%;
  width: 104%; height: 4px; background: var(--rose); transform: rotate(-2deg);
}
.big-statement-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 80px; align-items: start;
}
.big-statement-meta .label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.big-statement-meta p { font-size: 17px; line-height: 1.8; color: var(--cream-dim); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  padding: 50px 0; background: var(--bg); overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee-inner {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 50s linear infinite;
  width: max-content; align-items: center;
  will-change: transform;
}
.marquee-inner span {
  font-family: 'Fraunces', serif; font-style: italic;
  font-weight: 300; font-size: 52px; color: var(--cream); letter-spacing: -0.5px;
}
.marquee-inner .glyph {
  color: var(--gold);
  font-style: normal;
  font-family: serif;
  font-size: 12px;
  opacity: 0.65;
  letter-spacing: 0;
  transform: scale(0.75);
  display: inline-block;
}

/* ============================================================
   EDITORIAL GRID — site-wide gallery
   ============================================================ */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1500px;
  margin: 0 auto;
}

/* All gallery items: uniform squares */
.masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  aspect-ratio: 1 / 1;
  height: auto !important;
  grid-column: span 1;
}

.masonry-item.masonry-landscape {
  grid-column: span 1;
  aspect-ratio: 1 / 1;
  height: auto !important;
}

.masonry-item picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  inset: 0;
}

.masonry-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
}
.masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.06);
}
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13,11,10,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 1px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.nc-lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nc-lightbox.open { pointer-events: all; opacity: 1; visibility: visible; }
.nc-lb-backdrop { position: absolute; inset: 0; background: rgba(8, 6, 5, 0.97); cursor: pointer; }
.nc-lb-stage {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; max-width: 92vw; max-height: 92vh;
}
.nc-lb-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; max-height: 84vh; }
.nc-lb-img-wrap img {
  max-width: 88vw; max-height: 84vh; width: auto; height: auto;
  display: block; object-fit: contain;
  filter: brightness(0.97) contrast(1.02);
  box-shadow: 0 40px 120px rgba(0,0,0,0.9), 0 0 0 1px rgba(201,152,90,0.08);
}
.nc-lb-caption {
  margin-top: 20px; font-family: 'Fraunces', serif; font-style: italic;
  font-weight: 300; font-size: 16px; color: var(--gold); letter-spacing: 2px; text-align: center;
}
.nc-lb-counter {
  margin-top: 8px; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(245,237,224,0.3); text-align: center;
}
.nc-lb-close {
  position: fixed; top: 32px; right: 36px;
  width: 48px; height: 48px; background: none;
  border: 1px solid rgba(201,152,90,0.3); border-radius: 50%;
  cursor: pointer; z-index: 3; display: none;
  align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.nc-lightbox.open .nc-lb-close { display: flex; }
.nc-lb-close:hover { border-color: var(--gold); background: rgba(201,152,90,0.1); }
.nc-lb-close span { position: absolute; width: 20px; height: 1.5px; background: var(--cream); border-radius: 2px; }
.nc-lb-close span:nth-child(1) { transform: rotate(45deg); }
.nc-lb-close span:nth-child(2) { transform: rotate(-45deg); }
.nc-lb-prev, .nc-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(8,6,5,0.6); border: 1px solid rgba(201,152,90,0.25);
  color: var(--cream); font-size: 18px; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; z-index: 10001;
  display: none; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.nc-lightbox.open .nc-lb-prev,
.nc-lightbox.open .nc-lb-next { display: flex; }
.nc-lb-prev { left: 12px; }
.nc-lb-next { right: 12px; }
.nc-lb-prev:hover, .nc-lb-next:hover { border-color: var(--gold); background: rgba(201,152,90,0.15); color: var(--gold); }

/* ============================================================
   COLLAGE SECTION
   ============================================================ */
.collage { padding: 120px 50px 80px; background: var(--bg-warm); position: relative; }
.collage-header { max-width: 800px; margin-bottom: 80px; }
.collage-header .label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.collage-header h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(40px, 5.5vw, 80px); line-height: 1; letter-spacing: -2px; }
.collage-header h2 em { font-style: italic; color: var(--gold); }

/* ============================================================
   MEET NOELLE
   ============================================================ */
.meet {
  padding: 160px 50px; background: var(--bg);
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 100px; align-items: center; max-width: 1500px; margin: 0 auto;
}
.meet-img-wrap { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.meet-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95); }
.meet-img-wrap::after { display: none; }
.meet-text .label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
.meet-text h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -1px; margin-bottom: 32px; }
.meet-text h2 .script { font-family: 'Pinyon Script', cursive; color: var(--gold); font-weight: 400; font-size: 1.15em; }
.meet-text p { font-size: 17px; line-height: 1.8; color: var(--cream-dim); margin-bottom: 22px; }
.signature { margin-top: 36px; font-family: 'Pinyon Script', cursive; font-size: 48px; color: var(--gold); line-height: 1; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.experiences { padding: 160px 50px; background: var(--bg-warm); }
.exp-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.exp-header .label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.exp-header h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(40px, 5.5vw, 80px); line-height: 1; letter-spacing: -2px; }
.exp-header h2 em { font-style: italic; color: var(--gold); }
.exp-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; max-width: 1500px; margin: 0 auto; }
.exp-grid-hero { gap: 24px; }

/* Experience Hero Cards */
.exp-hero {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  padding: 50px 40px; text-decoration: none; color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line); background: var(--bg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
}
.exp-hero::before { display: none !important; }
.exp-hero .exp-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.5) contrast(1.05);
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s;
  will-change: transform;
}
.exp-hero .exp-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,11,10,0.55) 0%, rgba(13,11,10,0.4) 40%, rgba(13,11,10,0.92) 100%),
              radial-gradient(ellipse at 50% 100%, rgba(201,152,90,0.15), transparent 70%);
  transition: background 0.5s;
}
.exp-hero .exp-num,
.exp-hero .exp-body { position: relative; z-index: 2; }
.exp-hero:hover { transform: translateY(-6px); border-color: var(--gold); }
.exp-hero:hover .exp-bg-img { transform: scale(1.08); filter: brightness(0.6) contrast(1.05); }
.exp-hero .exp-num { color: var(--gold); font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 14px; letter-spacing: 2px; }
.exp-hero h3 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(36px, 4vw, 56px); line-height: 1; margin-bottom: 18px; letter-spacing: -1px; color: var(--cream); }
.exp-hero h3 em { font-style: italic; color: var(--gold); }
.exp-hero .price { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 22px; font-weight: 500; }
.exp-hero p { font-size: 15px; line-height: 1.7; color: var(--cream-dim); margin-bottom: 28px; max-width: 95%; }
.exp-hero .arrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 6px;
  align-self: flex-start; transition: gap 0.3s, color 0.3s;
}
.exp-hero:hover .arrow { gap: 18px; color: var(--cream); border-bottom-color: var(--cream); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: 200px 50px; background: var(--bg);
  text-align: center; position: relative;
}
.manifesto::before, .manifesto::after {
  content: '"'; position: absolute;
  font-family: 'Fraunces', serif; font-size: 400px;
  color: var(--gold); opacity: 0.06; line-height: 0.6; font-weight: 300;
}
.manifesto::before { top: 60px; left: 60px; }
.manifesto::after { bottom: -40px; right: 60px; transform: rotate(180deg); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.manifesto blockquote {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.2; letter-spacing: -1px; margin-bottom: 50px;
}
.manifesto blockquote em { font-style: italic; color: var(--gold); }
.manifesto blockquote .script { font-family: 'Pinyon Script', cursive; color: var(--gold); font-weight: 400; font-size: 1.1em; }
.manifesto cite { font-style: normal; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--cream-dim); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 160px 50px; background: var(--bg-warm); }
.test-header { max-width: 1500px; margin: 0 auto 60px; display: flex; justify-content: space-between; align-items: end; }
.test-header h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(36px, 4.5vw, 60px); line-height: 1; letter-spacing: -1px; }
.test-header h2 em { font-style: italic; color: var(--gold); }
.test-header .label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.test-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.test-card { padding: 48px 40px; border: 1px solid var(--line); background: var(--bg); position: relative; }
.test-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 24px; }
.test-card blockquote { font-family: 'Fraunces', serif; font-weight: 300; font-style: italic; font-size: 17px; line-height: 1.55; color: var(--cream); margin-bottom: 32px; }
.test-card .author { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.test-card .source { font-size: 11px; color: var(--cream-dim); margin-top: 6px; font-style: italic; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 200px 50px; background: var(--bg); position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,152,90,0.15), transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(184,103,90,0.1), transparent 50%);
}
.cta-inner { max-width: 1100px; margin: 0 auto; position: relative; text-align: center; }
.final-cta .label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; font-weight: 500; }
.final-cta h2 { font-family: 'Fraunces', serif; font-weight: 200; font-size: clamp(56px, 8vw, 130px); line-height: 0.9; letter-spacing: -3px; margin-bottom: 50px; }
.final-cta h2 em { font-style: italic; color: var(--gold); }
.final-cta h2 .script { font-family: 'Pinyon Script', cursive; color: var(--gold); font-weight: 400; font-size: 1.1em; display: block; margin-top: 10px; }
.final-cta p { font-size: 17px; line-height: 1.8; color: var(--cream-dim); max-width: 600px; margin: 0 auto 50px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 80px 50px 40px; background: var(--bg-warm); border-top: 1px solid var(--line); contain: layout; }
.foot-grid {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 60px;
}
.foot-brand .logo-img { height: 90px; margin-bottom: 24px; display: block; }
.foot-brand p { font-size: 14px; color: var(--cream-dim); max-width: 320px; line-height: 1.7; }
.foot-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 600; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 14px; }
.foot-col a { color: var(--cream-dim); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  max-width: 1500px; margin: 0 auto; padding-top: 30px;
  border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  font-size: 11px; color: var(--cream-dim); letter-spacing: 2px; text-transform: uppercase;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 120px 50px 100px; background: var(--bg);
  text-align: center; position: relative; border-bottom: 1px solid var(--line);
}
.page-hero .label { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; font-weight: 500; }
.page-hero h1 { font-family: 'Fraunces', serif; font-weight: 200; font-size: clamp(54px, 9vw, 140px); line-height: 0.92; letter-spacing: -3px; max-width: 1300px; margin: 0 auto; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero h1 .script { font-family: 'Pinyon Script', cursive; color: var(--gold); font-weight: 400; font-size: 1.05em; letter-spacing: 0; }
.page-hero p.lede { font-size: 18px; line-height: 1.7; color: var(--cream-dim); max-width: 700px; margin: 40px auto 0; }
.breadcrumb { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream-dim); }
.breadcrumb a { color: var(--cream-dim); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 140px 50px; background: var(--bg); max-width: 900px; margin: 0 auto; }
.about-story p { font-family: 'Fraunces', serif; font-weight: 300; font-size: 22px; line-height: 1.6; color: var(--cream); margin-bottom: 32px; }
.about-story p:first-of-type::first-letter { font-family: 'Fraunces', serif; font-weight: 300; font-size: 100px; line-height: 0.8; float: left; color: var(--gold); margin: 6px 16px 0 0; font-style: italic; }
.about-story p em { font-style: italic; color: var(--gold); }
.about-story .pull-quote {
  font-family: 'Fraunces', serif; font-weight: 300; font-style: italic;
  font-size: 36px; line-height: 1.3; color: var(--gold); text-align: center;
  margin: 60px 0; padding: 60px 40px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.about-feature { padding: 100px 50px; background: var(--bg-warm); text-align: center; }
.about-feature .label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.about-feature h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin-bottom: 30px; }
.about-feature h2 em { font-style: italic; color: var(--gold); }
.feature-link {
  display: inline-flex; align-items: center; gap: 12px; color: var(--cream);
  text-decoration: none; font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  padding: 18px 40px; border: 1px solid var(--gold); transition: all 0.3s; margin-top: 20px;
}
.feature-link:hover { background: var(--gold); color: var(--bg); }

/* ============================================================
   EXPERIENCE DETAIL (self-love / brand pages)
   ============================================================ */
.exp-detail { padding: 120px 50px; background: var(--bg); max-width: 1500px; margin: 0 auto; }
.exp-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 140px; }
.exp-detail-row.reverse { direction: rtl; }
.exp-detail-row.reverse > * { direction: ltr; }
.exp-detail-img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.exp-detail-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); }
.exp-detail-img .number { display: none; }
.exp-detail-row.reverse .exp-detail-img .number { display: none; }
.exp-detail-text .label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.exp-detail-text h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -2px; margin-bottom: 24px; }
.exp-detail-text h2 em { font-style: italic; color: var(--gold); }
.exp-detail-text .price { font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; color: var(--gold-bright); margin-bottom: 32px; }
.exp-detail-text p { font-size: 17px; line-height: 1.8; color: var(--cream-dim); margin-bottom: 28px; }
.exp-detail-text ul { list-style: none; margin-bottom: 36px; }
.exp-detail-text li { font-size: 15px; color: var(--cream); padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 16px; }
.exp-detail-text li::before { content: '✦'; color: var(--gold); font-size: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  padding: 100px 50px 140px; background: var(--bg);
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.contact-info .label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.contact-info h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -1px; margin-bottom: 32px; }
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info p { font-size: 16px; line-height: 1.8; color: var(--cream-dim); margin-bottom: 28px; }
.contact-detail { border-top: 1px solid var(--line); padding: 24px 0; }
.contact-detail .head { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.contact-detail a, .contact-detail span { font-family: 'Fraunces', serif; font-weight: 300; font-style: italic; font-size: 22px; color: var(--cream); text-decoration: none; transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; align-items: center; }
.csoc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--cream-dim);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(245,237,224,0.15);
  transition: color 0.3s, border-color 0.3s;
}
.csoc-btn svg { flex-shrink: 0; opacity: 0.8; transition: opacity 0.3s; }
.csoc-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.csoc-btn:hover svg { opacity: 1; }
.contact-form-wrap { border: 1px solid var(--line); padding: 48px 40px; background: var(--bg-warm); }
.contact-form-wrap .form-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.contact-form-wrap .form-headline { font-family: 'Fraunces', serif; font-weight: 300; font-size: 28px; line-height: 1.2; margin-bottom: 30px; color: var(--cream); }
.contact-form-wrap .form-headline em { font-style: italic; color: var(--gold); }
.form-fallback { text-align: center; padding: 40px 20px; }
.form-fallback p { font-size: 15px; color: var(--cream-dim); margin-bottom: 24px; line-height: 1.7; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 860px; margin: 0 auto; margin-top: 60px;
}
.events-feature { padding: 80px 50px; background: var(--bg-warm); }

/* ============================================================
   BLOG — ARCHIVE + SINGLE
   ============================================================ */
.blog-wrap { padding: 100px 50px; background: var(--bg); max-width: 1400px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { background: var(--bg-warm); border: 1px solid var(--line); overflow: hidden; text-decoration: none; color: var(--cream); display: block; transition: border-color 0.3s; }
.blog-card:hover { border-color: var(--gold); }
.blog-card-img { aspect-ratio: 1/1; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88); transition: transform 0.7s ease, filter 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); filter: brightness(1); }
.blog-card-body { padding: 32px 28px 36px; }
.blog-card-cat {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.blog-card h2, .blog-card h3 { font-family: 'Fraunces', serif; font-weight: 300; font-size: 26px; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.blog-card p { font-size: 14px; line-height: 1.7; color: var(--cream-dim); margin-bottom: 24px; }
.blog-card-meta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-dim); }
.blog-card-read { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-top: 12px; display: inline-block; border-bottom: 1px solid var(--gold); }

/* Pagination */
.blog-pagination { display: flex; gap: 16px; justify-content: center; margin-top: 80px; }
.blog-pagination a, .blog-pagination span {
  width: 44px; height: 44px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim); text-decoration: none; font-size: 12px; transition: all 0.3s;
}
.blog-pagination a:hover, .blog-pagination .current { border-color: var(--gold); color: var(--gold); }

/* Blog single */
.single-wrap { padding: 100px 50px 140px; background: var(--bg); max-width: 900px; margin: 0 auto; }
.single-header { margin-bottom: 60px; }
.single-cat { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.single-title { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(40px, 6vw, 80px); line-height: 1; letter-spacing: -2px; margin-bottom: 24px; }
.single-meta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 40px; }
.single-featured {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 75vh;
  overflow: hidden;
  margin-bottom: 80px;
}
.single-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.9) contrast(1.04);
}
.single-featured::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}
.single-featured img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.single-content { font-family: 'Fraunces', serif; font-weight: 300; font-size: 20px; line-height: 1.7; color: var(--cream); }
.single-content p { margin-bottom: 28px; }
.single-content h2, .single-content h3 { font-family: 'Fraunces', serif; font-weight: 300; color: var(--cream); margin: 48px 0 20px; line-height: 1.1; }
.single-content h2 { font-size: 36px; letter-spacing: -1px; }
.single-content h3 { font-size: 28px; }
.single-content a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; }
.single-content blockquote {
  font-style: italic; font-size: 28px; line-height: 1.4; color: var(--gold);
  border-left: 2px solid var(--gold); padding: 20px 0 20px 40px; margin: 48px 0;
}
.single-content img { max-width: 100%; height: auto; margin: 40px 0; }
.single-content ul, .single-content ol { padding-left: 28px; margin-bottom: 28px; }
.single-content li { font-size: 18px; line-height: 1.7; margin-bottom: 10px; color: var(--cream-dim); }

/* Category archive sidebar */
.blog-sidebar { padding: 80px 50px; background: var(--bg-warm); }
.blog-cat-list { list-style: none; }
.blog-cat-list li { border-bottom: 1px solid var(--line); }
.blog-cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; color: var(--cream-dim); text-decoration: none;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; transition: color 0.3s;
}
.blog-cat-list a:hover { color: var(--gold); }
.blog-cat-count { color: var(--gold); font-size: 11px; }

/* ============================================================
   LABEL UTILITY
   ============================================================ */
.label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .logo-img { height: 56px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: flex; }
  nav a.nav-cta { display: none !important; }

  .hero { grid-template-columns: 1fr; padding: 30px 20px 60px; gap: 40px; min-height: auto; }
  .hero-video-wrap { aspect-ratio: 3/4; }
  .hero-stats { grid-column: 1; }
  .stat-num { font-size: 40px; }
  .big-statement, .collage, .testimonials, .manifesto, .final-cta, .experiences { padding: 60px 20px; }
  .meet { grid-template-columns: 1fr; gap: 60px; padding: 80px 20px; }
  .meet-img-wrap::after { font-size: 80px; }
  .exp-grid, .exp-grid-hero { grid-template-columns: 1fr !important; gap: 16px; }
  .exp-hero { aspect-ratio: 3/4; padding: 36px 28px; }
  .exp-hero h3 { font-size: 36px; }
  .test-grid { grid-template-columns: 1fr; }
  .test-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .marquee-inner span { font-size: 36px; }
  .marquee-inner .glyph { font-size: 50px; }
  .big-statement-meta { grid-template-columns: 1fr; gap: 30px; }
  .big-statement h2 { font-size: 56px; letter-spacing: -2px; }
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 48px; letter-spacing: -1px; }
  .about-story { padding: 60px 20px; }
  .about-story p { font-size: 18px; }
  .about-story .pull-quote { font-size: 24px; padding: 40px 20px; }
  .exp-detail { padding: 60px 20px; }
  .collage { padding: 60px 0 40px; }
  .masonry-grid { gap: 4px; grid-template-columns: repeat(2, 1fr); }
  .masonry-item { aspect-ratio: 1/1; height: auto; }
  .masonry-item.masonry-landscape { grid-column: span 1; aspect-ratio: 1/1; height: auto; }
  .exp-detail-row, .exp-detail-row.reverse { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; direction: ltr; }
  .exp-detail-img .number { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 50px; padding: 60px 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  .portfolio-section { padding: 60px 20px; }
  .work-categories { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-wrap { padding: 60px 20px; }
  .single-wrap { padding: 60px 20px; }
  .single-title { font-size: 40px; }
  .single-content { font-size: 18px; }

.noelle-feature-img img { height: 65vw; }
}
@media (max-width: 580px) {
  .work-categories { grid-template-columns: 1fr; padding: 0 0 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .mobile-menu-inner { padding: 90px 24px 30px; }
  .mobile-menu-links a { font-size: 44px; padding: 12px 0; }
  .masonry-grid { grid-template-columns: 1fr; gap: 4px; }
  .masonry-item, .masonry-item.masonry-landscape { grid-column: span 1; aspect-ratio: 1/1; height: auto; }
  .page-hero h1 { font-size: 40px; letter-spacing: -1px; }
  .hero-headline { font-size: 44px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .stat-num { font-size: 32px; }
}
@media (min-width: 901px) {
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   NOELLE FEATURE IMAGE (The Icon page)
   ============================================================ */
.noelle-feature-img {
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.noelle-feature-img picture,
.noelle-feature-img img {
  width: 100%;
  height: 92vh;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: brightness(0.9) contrast(1.04);
}
.noelle-feature-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}
.photo-credit {
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(245,237,224,0.4);
  margin: 8px 16px 0 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* ============================================================
   SOCIAL SHARE BAR (single posts)
   ============================================================ */
.social-share {
  margin: 60px 0 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-share-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.social-share-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.share-btn {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--cream-dim);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(245,237,224,0.15);
  transition: color 0.3s, border-color 0.3s;
  touch-action: manipulation;
}
.share-btn:hover        { color: var(--cream); border-bottom-color: var(--cream); }
.share-fb:hover         { color: #6b9fff; border-bottom-color: #6b9fff; }
.share-pin:hover        { color: #ff7070; border-bottom-color: #ff7070; }
.share-x:hover          { color: var(--cream); border-bottom-color: var(--cream); }
.share-ig:hover         { color: var(--gold); border-bottom-color: var(--gold); }

@media (max-width: 600px) {
  .social-share { gap: 20px; }
  .social-share-links { gap: 20px; }
}
