*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:  #FAFAF8;
  --cream:  #F2EFE9;
  --border: #E4E0DA;
  --muted:  #8A8A8A;
  --text:   #1A1A1A;
  --accent: #B8997A;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); background: var(--white); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  transition: var(--t);
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(12,12,12,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.25rem; font-weight: 400;
  color: #fff; letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); transition: color var(--t);
}
.nav-links a:hover { color: #fff; }

.nav-socials {
  display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.7);
}
.nav-socials a { display: flex; transition: color var(--t); }
.nav-socials a:hover { color: #fff; }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 20px; height: 1px; background: #fff; transition: var(--t); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ml {
  font-family: var(--ff-serif); font-size: 3rem; font-weight: 300;
  color: var(--text); transition: color var(--t);
}
.ml:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}

.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    transparent 28%,
    transparent 52%,
    rgba(10,10,10,0.7) 100%
  );
}

.hero-overlay {
  position: relative; z-index: 1;
  padding: 0 48px 52px;
}

.hero-name {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.0;
  color: #fff;
}
.hero-name em { font-style: italic; font-weight: 300; }

.hero-role {
  margin-top: 10px;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; right: 48px; z-index: 1;
  font-size: 1.1rem; color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── CURSOR ─── */
body { cursor: none; }
a, button, .lc, .fb { cursor: none; }
.cursor {
  position: fixed;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--t), height 0.25s var(--t), opacity 0.25s;
  will-change: transform;
}
.cursor.hovered { width: 40px; height: 40px; opacity: 0.25; }
.cursor.clicking { width: 6px; height: 6px; opacity: 1; }


/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lb-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: none;
  font-size: 2rem; color: rgba(255,255,255,0.5);
  cursor: none; line-height: 1;
  transition: color var(--t);
}
.lb-close:hover { color: #fff; }

.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  font-size: 2.5rem; color: rgba(255,255,255,0.35);
  cursor: none; padding: 20px;
  transition: color var(--t);
}
.lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-inner {
  display: flex; align-items: center; gap: 48px;
  max-width: 1000px; width: 90%; max-height: 90vh;
}

.lb-img-wrap {
  flex: 0 0 auto; max-height: 85vh;
  display: flex; align-items: center;
}
.lb-img {
  max-height: 85vh; max-width: 480px;
  width: auto; display: block;
  object-fit: contain;
}

.lb-info {
  flex: 1; color: #fff;
  display: flex; flex-direction: column; gap: 16px;
}
.lb-cat {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent);
}
.lb-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.1; color: #fff;
}
.lb-cta {
  display: inline-block; margin-top: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 1px;
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  transition: var(--t);
}
.lb-cta:hover { background: #fff; color: var(--text); border-color: #fff; }

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--cream);
}

.about-photo-col {
  position: relative; overflow: hidden;
}

.about-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}

.about-text-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
}

.about-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.05;
  color: var(--text); margin-bottom: 24px;
}
.about-title em { font-style: italic; }

.about-bio {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.75; color: var(--muted);
  max-width: 420px; margin-bottom: 40px;
}

.about-stats {
  display: flex; gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat {
  display: flex; flex-direction: column; gap: 4px;
}

.as-n {
  font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 400;
  color: var(--text); line-height: 1;
}

.as-l {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* ─── LOOKS ─── */
.looks { padding: 80px 40px; background: var(--white); }

.looks-top {
  display: flex; align-items: baseline;
  justify-content: space-between;
  max-width: 1200px; margin: 0 auto 40px;
  gap: 24px; flex-wrap: wrap;
}

.looks-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--text);
}
.looks-title em { font-style: italic; font-weight: 300; }

.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; }

.fb {
  padding: 7px 20px;
  background: none; border: 1px solid var(--border); border-radius: 1px;
  font-family: var(--ff-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: var(--t);
}
.fb:hover, .fb.active {
  background: var(--text); border-color: var(--text); color: #fff;
}

.looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px; margin: 0 auto;
}

.lc { display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.lc.hidden { display: none; }

.lc-img-wrap {
  position: relative; overflow: hidden;
}
.lc-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,10,0);
  transition: background var(--t);
}
.lc:hover .lc-img-wrap::after { background: rgba(10,10,10,0.22); }

.lc-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.lc:hover .lc-img { transform: scale(1.04); }
.lc-img--tall { aspect-ratio: 2/3; }

.lc-info { display: flex; flex-direction: column; gap: 3px; }

.lc-cat {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}

.lc-info h3 {
  font-family: var(--ff-serif);
  font-size: 1rem; font-weight: 400;
  color: var(--text); line-height: 1.3;
}

/* ─── SHOP ─── */
.shop {
  padding: 100px 40px;
  background: var(--text);
}

.shop-header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

.shop-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: #fff;
}
.shop-header h2 em { font-style: italic; font-weight: 300; }
.shop-header .eyebrow { color: var(--accent); }

.ltk-wrap {
  max-width: 1100px; margin: 0 auto;
}
.ltkwidget-version-two { width: 100%; }

/* ─── CONTACT ─── */
.contact {
  padding: 140px 40px;
  text-align: center;
  background: var(--text);
}

.contact .eyebrow { color: var(--accent); }

.contact h2 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: #fff; margin: 16px 0 40px;
}
.contact h2 em { font-style: italic; }

.btn-contact {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 1px;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  transition: var(--t);
}
.btn-contact:hover {
  background: #fff; color: var(--text);
  border-color: #fff;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 40px;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.2rem; font-weight: 400; color: #fff;
  line-height: 1.2;
}

.footer-services { display: flex; flex-direction: column; gap: 12px; }

.footer-services-title {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}

.footer-services ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-services ul a {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}
.footer-services ul a:hover { color: #fff; }

.footer-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 16px;
}

.footer-socials { display: flex; gap: 16px; }
.footer-socials a { display: flex; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-socials a:hover { color: #fff; }

.footer-copy {
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; min-height: auto; }
  .about-photo-col { height: 90vw; max-height: 600px; }
  .about-text-col { padding: 56px 40px; }

  .looks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links, .nav-socials { display: none; }
  .burger { display: flex; }

  .hero-overlay { padding: 0 24px 40px; }
  .hero-scroll-hint { right: 24px; }

  .about-text-col { padding: 48px 24px; }
  .about-stats { gap: 24px; }

  .looks { padding: 60px 20px; }
  .looks-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .looks-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .shop { padding: 80px 20px; }
  .contact { padding: 100px 24px; }

  .footer { padding: 36px 20px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 400px) {
  .looks-grid { grid-template-columns: 1fr; }
}

/* ─── LANDSCAPE MOBILE ─── */
@media (orientation: landscape) and (max-height: 600px) {
  .hero { height: 100svh; min-height: 420px; }
  .hero-name { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-role { font-size: 0.6rem; }
  .hero-scroll-hint { bottom: 16px; }
  .lc-img { aspect-ratio: 4/5; }
  .lc-img--tall { aspect-ratio: 3/4; }
}
