/* ==========================================================================
   JAQBELLE — Coming Soon
   A dark, minimalist black & white editorial aesthetic — lace textures and
   imagery drawn from the world's most exclusive addresses.
   ========================================================================== */

:root {
  --color-bg: #060606;
  --color-bg-soft: #0f0f0f;
  --color-panel: #111111;
  --color-line: rgba(255,255,255,0.14);
  --color-line-soft: rgba(255,255,255,0.08);
  --color-white: #ffffff;
  --color-off-white: #e9e9e7;
  --color-mute: rgba(233,233,231,0.6);
  --color-mute-soft: rgba(233,233,231,0.38);
  --color-accent: #ffffff;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;

  --max-width: 1400px;
  --header-height: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* All photography rendered in black & white for a consistent, exclusive editorial mood */
img.bw,
.hero-media img,
.lookbook-item img,
.capsule-media img,
.capsule-visual img,
.waitlist-media img,
.location-item img {
  filter: grayscale(100%) contrast(1.08) brightness(0.94);
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
  color: var(--color-white);
}

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-mute);
  margin: 0 0 1em;
  font-weight: 500;
}

/* subtle grain overlay for texture */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   LACE MOTIF — subtle recurring texture divider
   ========================================================================== */

.lace-divider {
  height: 64px;
  background-image: url("images/lace-texture-1.jpg");
  background-size: 300px;
  background-repeat: repeat;
  filter: grayscale(100%) invert(1) contrast(1.4);
  opacity: 0.14;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--color-white);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-off-white);
}

.header-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.3s;
}
.header-nav a:hover { opacity: 0.6; }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.6rem 1.2rem !important;
}
.nav-cta:hover {
  border-color: var(--color-white);
  opacity: 1 !important;
  background: var(--color-white);
  color: var(--color-bg) !important;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--color-bg);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5vw 8vh;
  color: var(--color-white);
  text-align: left;
}

/* Minimal hero variant — visuals-first home page */
.hero-content-minimal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-off-white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.6em 1.1em;
}
.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  letter-spacing: 0.08em;
  color: var(--color-white);
  line-height: 0.95;
  margin: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 56px;
  overflow: hidden;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  60% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

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

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid currentColor;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
  background: transparent;
}

.btn-outline-light {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-solid {
  color: var(--color-bg);
  background: var(--color-white);
  border-color: var(--color-white);
  width: 100%;
}
.btn-solid:hover {
  background: transparent;
  color: var(--color-white);
}
.btn-solid:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.text-link {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 3px;
  color: var(--color-white);
  transition: opacity 0.3s;
}
.text-link:hover { opacity: 0.55; }

.text-link-light {
  color: var(--color-white);
  border-bottom-color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   LOOKBOOK
   ========================================================================== */

.lookbook {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6vw 5vw;
  background: var(--color-bg);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line-soft);
}

.lookbook-item {
  margin: 0;
  overflow: hidden;
  background: var(--color-bg-soft);
  aspect-ratio: 3 / 4;
}
.lookbook-item.tall {
  aspect-ratio: 3 / 5;
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.lookbook-item:hover img {
  transform: scale(1.05);
  filter: grayscale(60%) contrast(1.1) brightness(1);
}

/* ==========================================================================
   EXCLUSIVE LOCATIONS STRIP — villas, estates, private addresses
   ========================================================================== */

.locations {
  background: var(--color-bg);
  padding: 0 0 6vw;
}

.locations-heading {
  text-align: center;
  padding: 6vw 6vw 3rem;
  max-width: 640px;
  margin: 0 auto;
}
.locations-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.locations-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line-soft);
}

.location-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-soft);
}
.location-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.location-item:hover img {
  transform: scale(1.06);
}
.location-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

/* ==========================================================================
   CAPSULE
   ========================================================================== */

.capsule {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--color-panel);
}

.capsule-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.capsule-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.capsule-caption {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.capsule-number {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}
.capsule-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

/* Pure-visual full-bleed capsule variant for the home page */
.capsule-visual {
  position: relative;
  display: block;
  min-height: 85vh;
  overflow: hidden;
  background: var(--color-bg);
}
.capsule-visual img {
  width: 100%;
  height: 100%;
  min-height: 85vh;
  object-fit: cover;
}
.capsule-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.75) 100%);
}
.capsule-visual .capsule-caption {
  left: auto;
  right: 2.5rem;
  bottom: 2.5rem;
  align-items: flex-end;
  gap: 0.7rem;
  z-index: 2;
}

/* ==========================================================================
   WAITLIST
   ========================================================================== */

.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.waitlist-media {
  overflow: hidden;
  position: relative;
}
.waitlist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.waitlist-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.waitlist-panel {
  background: var(--color-bg);
  color: var(--color-off-white);
  padding: 7vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-line-soft);
}
.waitlist-panel h2 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 0.8em;
}

.waitlist-form {
  max-width: 440px;
}

.form-row {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
  color: var(--color-mute);
}

.form-row input[type="text"],
.form-row input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.6rem 0.1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus {
  border-color: var(--color-white);
}
.form-row input::placeholder {
  color: var(--color-mute-soft);
}

.form-row-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.form-row-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--color-white);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-row-checkbox label {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.82rem;
  color: var(--color-mute);
  margin-bottom: 0;
}

.form-message {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--color-mute);
}
.form-message.success { color: #cfcfcf; }
.form-message.error { color: #ffffff; }

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

.site-footer {
  background: var(--color-bg-soft);
  padding: 5vw 5vw 2rem;
  border-top: 1px solid var(--color-line-soft);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-line-soft);
}

.footer-logo {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand .text-link {
  color: var(--color-mute);
  border-bottom-color: var(--color-line);
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mute);
  margin-bottom: 1em;
}

.footer-contact a {
  font-size: 0.95rem;
  color: var(--color-off-white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.footer-contact a:hover { border-color: currentColor; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-off-white);
}
.social-links a { transition: opacity 0.3s; }
.social-links a:hover { opacity: 0.55; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.6rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--color-mute-soft);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   ABOUT PAGE — text-only editorial layout
   ========================================================================== */

.about-page {
  background: var(--color-bg);
}

.about-main {
  padding-top: var(--header-height);
}

.about-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 8vw 6vw 10vw;
}

.about-hero {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--color-line-soft);
}
.about-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 0.4em;
}
.about-lede {
  font-size: 1.1rem;
  color: var(--color-mute);
  max-width: 540px;
}

.about-section {
  margin-bottom: 3.6rem;
}
.about-section:last-child {
  margin-bottom: 0;
}
.about-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.6em;
}
.about-section p {
  font-size: 1rem;
  color: var(--color-mute);
  max-width: 620px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.about-list li {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-left: 1.4em;
  position: relative;
  color: var(--color-mute);
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.about-cta {
  background: var(--color-panel);
  padding: 2.4rem;
  margin-left: -2.4rem;
  margin-right: -2.4rem;
}
.about-cta .text-link {
  color: var(--color-white);
}

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

@media (max-width: 960px) {
  .header-nav { gap: 1.4rem; font-size: 0.72rem; }
  .header-nav a:not(.nav-cta) { display: none; }

  .capsule,
  .waitlist {
    grid-template-columns: 1fr;
  }
  .capsule-media, .waitlist-media {
    min-height: 380px;
  }
  .waitlist-panel {
    padding: 12vw 7vw;
    border-left: none;
    border-top: 1px solid var(--color-line-soft);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-article {
    padding: 10vw 7vw 16vw;
  }
  .about-cta {
    margin-left: -7vw;
    margin-right: -7vw;
    padding: 2rem 7vw;
  }
}

@media (max-width: 560px) {
  .hero-content { padding: 0 6vw 10vh; }
}
