/* ============================================
   LUXY BRANDS
   ============================================ */

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

:root {
  --bg:      #F6F3EE;
  --white:   #FFFFFF;
  --ink:     #0E0D0B;
  --dark:    #111010;
  --char:    #3C3830;
  --mid:     #7A7268;
  --muted:   #A09890;
  --rule:    #DDD8D0;
  --sand:    #EAE5DC;
  --accent:  #B86858;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ============================================
   TYPE SYSTEM
   ============================================ */

h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
h2 em { font-style: italic; color: var(--accent); }

.light-h2 { color: var(--bg); }
.light-h2 em { color: rgba(246,243,238,0.55); font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1.25rem;
}
.eyebrow.light { color: rgba(246,243,238,0.35); }

/* ============================================
   BUTTONS
   ============================================ */

.btn-dark,
.btn-hero,
.btn-light,
.btn-cream-lg {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
}

.btn-dark {
  background: var(--ink);
  color: var(--bg);
  padding: .95rem 2.25rem;
}
.btn-dark:hover { background: var(--char); transform: translateY(-2px); }

.btn-hero {
  background: var(--bg);
  color: var(--ink);
  padding: 1rem 2.4rem;
}
.btn-hero:hover { background: var(--white); transform: translateY(-2px); }

.btn-light {
  background: transparent;
  color: rgba(246,243,238,0.7);
  border: 1px solid rgba(246,243,238,0.2);
  padding: .95rem 2.25rem;
}
.btn-light:hover {
  color: var(--bg);
  border-color: rgba(246,243,238,0.5);
  transform: translateY(-2px);
}

.btn-cream-lg {
  background: var(--bg);
  color: var(--ink);
  padding: 1.2rem 3rem;
  font-size: 0.82rem;
}
.btn-cream-lg:hover { background: var(--white); transform: translateY(-2px); }

/* ============================================
   NAV
   ============================================ */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  transition: all .4s var(--ease);
}

#nav.scrolled {
  background: rgba(246,243,238,0.97);
  backdrop-filter: blur(10px);
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--bg);
  transition: color .3s;
}
#nav.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.6);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--bg); }
.nav-links a:hover::after { width: 100%; }
#nav.scrolled .nav-links a { color: var(--mid); }
#nav.scrolled .nav-links a:hover { color: var(--ink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--bg);
  transition: background .3s;
}
#nav.scrolled .hamburger span { background: var(--ink); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 499;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 1.75rem; right: 2rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.mm-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--rule);
}
.mm-link {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color .3s, padding-left .3s;
}
.mm-link:hover { color: var(--accent); padding-left: 0.5rem; }
.mm-cta {
  margin-top: 2.5rem;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */

#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 10%;
  display: block;
}

.hero-media.failed {
  background: #1e1a16;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(14,13,11,0.96) 0%, rgba(14,13,11,0.7) 40%, rgba(14,13,11,0.1) 70%, rgba(14,13,11,0) 100%),
    linear-gradient(to top,    rgba(14,13,11,0.98) 0%, rgba(14,13,11,0.6) 25%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 860px;
}

.hero-sup {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.3);
  margin-bottom: 2rem;
  display: block;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8.5vw, 10rem);
  font-weight: 400;
  line-height: 0.96;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-scroll-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.3);
  transition: color .3s;
}
.hero-scroll-link:hover { color: rgba(246,243,238,0.6); }
.hsl-line {
  width: 32px;
  height: 1px;
  background: rgba(246,243,238,0.25);
  display: inline-block;
}

.hero-caption {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.2);
  writing-mode: vertical-rl;
}

/* ============================================
   TICKER
   ============================================ */

.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.28);
}
.ticker-track i {
  font-style: normal;
  color: var(--accent);
  opacity: 0.5;
  font-size: 0.4rem;
}

/* ============================================
   STATEMENT
   ============================================ */

.statement-section {
  background: var(--bg);
  padding: 8rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
}

.statement-text {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.statement-text em {
  font-style: italic;
  color: var(--accent);
}

.statement-sub {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================
   ABOUT
   ============================================ */

#about {
  background: var(--bg);
  padding: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 85vh;
}

.about-photo-col {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

.about-photo-wrap {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

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

.about-photo-wrap.no-photo {
  background: var(--sand);
}

.about-aside {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ink);
  padding: 2rem 2.5rem;
  text-align: left;
}
.aa-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.aa-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.35);
  margin-top: 0.4rem;
  line-height: 1.6;
}

.about-text-col {
  padding: 7rem 5.5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--rule);
}

.about-text-col h2 { margin-bottom: 2.5rem; }

.about-text-col p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.about-text-col .btn-dark { margin-top: 1.25rem; }

/* ============================================
   SERVICES
   ============================================ */

#services { padding: 0; }

.svc-bg {
  background: var(--dark);
}

.svc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem;
}

.svc-top {
  max-width: 560px;
  margin-bottom: 5rem;
}

.svc-list {
  border-top: 1px solid rgba(246,243,238,0.07);
}

.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 2.5rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(246,243,238,0.07);
  transition: border-color .3s;
  cursor: default;
}
.svc-item:hover { border-bottom-color: rgba(246,243,238,0.18); }

.svc-n {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(246,243,238,0.2);
  letter-spacing: 0.04em;
  padding-top: 0.5rem;
  transition: color .3s;
  display: block;
}
.svc-item:hover .svc-n { color: rgba(246,243,238,0.5); }

.svc-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: rgba(246,243,238,0.85);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  transition: color .3s;
}
.svc-item:hover .svc-title { color: var(--bg); }

.svc-desc {
  font-size: 0.9rem;
  color: rgba(246,243,238,0.35);
  line-height: 1.85;
  max-width: 560px;
  transition: color .3s;
}
.svc-item:hover .svc-desc { color: rgba(246,243,238,0.55); }

.svc-arrow {
  font-size: 1.2rem;
  color: rgba(246,243,238,0.15);
  padding-top: 0.6rem;
  transition: all .3s;
  text-align: right;
}
.svc-item:hover .svc-arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

.svc-footer {
  margin-top: 4rem;
}

/* ============================================
   FOUNDING
   ============================================ */

#founding {
  background: var(--bg);
  padding: 8rem 0;
  border-top: 1px solid var(--rule);
}

.founding-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.founding-header {
  margin-bottom: 5rem;
  max-width: 700px;
}

.founding-header h2 { margin-bottom: 1.5rem; }

.founding-lede {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 580px;
}

.founding-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Spots */
.founding-spots {
  border-top: 1px solid var(--rule);
}

.fspot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}

.fspot-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.fspot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

.fspot-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
}

.fspot-count {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Perks */
.founding-perks {
  padding-top: 0.5rem;
}

.fp-title {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.fp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.fp-list li {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.fp-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* ============================================
   BOOK
   ============================================ */

#book {
  background: var(--dark);
  padding: 10rem 3rem;
  text-align: center;
}

.book-inner {
  max-width: 760px;
  margin: 0 auto;
}

.book-h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--bg);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.book-h2 em {
  font-style: italic;
  color: rgba(246,243,238,0.5);
}

.book-sub {
  font-size: 1rem;
  color: rgba(246,243,238,0.4);
  line-height: 1.8;
  margin-bottom: 3.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.book-actions { margin-bottom: 2rem; }

.book-email {
  font-size: 0.8rem;
  color: rgba(246,243,238,0.25);
}
.book-email a {
  color: rgba(246,243,238,0.45);
  text-decoration: underline;
  text-decoration-color: rgba(246,243,238,0.15);
  transition: color .3s;
}
.book-email a:hover { color: var(--bg); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 3rem 4rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.ft-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: rgba(246,243,238,0.5);
  margin-bottom: 1rem;
}

.ft-tag {
  font-size: 0.85rem;
  color: rgba(246,243,238,0.25);
  line-height: 1.7;
}

.ft-links {
  display: flex;
  gap: 4.5rem;
}

.ftl-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ftl-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.2);
  margin-bottom: 0.4rem;
}

.ftl-col a {
  font-size: 0.85rem;
  color: rgba(246,243,238,0.38);
  transition: color .3s;
}
.ftl-col a:hover { color: var(--bg); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.66rem;
  color: rgba(246,243,238,0.14);
  letter-spacing: 0.06em;
}

/* ============================================
   REVEALS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.founding-spots .fspot:nth-child(1) .fspot-pulse { animation-delay: 0s; }
.founding-spots .fspot:nth-child(2) .fspot-pulse { animation-delay: 0.4s; }
.founding-spots .fspot:nth-child(3) .fspot-pulse { animation-delay: 0.8s; }
.founding-spots .fspot:nth-child(4) .fspot-pulse { animation-delay: 1.2s; }

/* Hero entrance */
.hero-sup    { opacity: 0; animation: up .7s var(--ease) .2s forwards; }
.hero-h1     { opacity: 0; animation: up 1s  var(--ease) .35s forwards; }
.hero-cta-row{ opacity: 0; animation: up .7s var(--ease) .7s forwards; }
.hero-caption{ opacity: 0; animation: fadeIn 1s var(--ease) 1.2s forwards; }
.hero-media  { opacity: 0; animation: fadeIn 1.4s var(--ease) 0s forwards; }

@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

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

@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr 1fr; }
  .about-text-col { padding: 5rem 3.5rem; }
  .founding-body { grid-template-columns: 1fr; gap: 4rem; }
  .ft-links { gap: 3rem; }
}

@media (max-width: 860px) {
  .about-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-photo-col { min-height: 70vw; }
  .about-text-col {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 4.5rem 2rem;
  }
  .svc-item { grid-template-columns: 60px 1fr; }
  .svc-arrow { display: none; }
  .hero-h1 { font-size: clamp(3.2rem, 10vw, 6rem); }
  .hero-content { padding: 0 2rem 4rem; }
}

@media (max-width: 768px) {
  #nav { padding: 1.25rem 1.5rem; }
  #nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .statement-section { padding: 5rem 1.5rem; }

  .svc-container { padding: 5rem 1.5rem; }
  .svc-item { grid-template-columns: 1fr; gap: 1rem; padding: 2.5rem 0; }
  .svc-num-col { display: none; }

  .founding-container { padding: 0 1.5rem; }
  #founding { padding: 5rem 0; }

  #book { padding: 6rem 1.5rem; }
  .book-h2 { font-size: clamp(3rem, 14vw, 5rem); }

  .footer-top { padding: 3.5rem 1.5rem 3rem; }
  .ft-links { flex-direction: column; gap: 2rem; }

  .about-text-col p { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .btn-cream-lg { width: 100%; text-align: center; }
  .founding-body { gap: 3rem; }
}
