/* ==========================================
   MAISON CIEL — Brand Stylesheet
   ========================================== */

/* --- Variables --- */
:root {
  --bubblegum: #FF69B4;
  --bubblegum-mid: #FF8CC8;
  --bubblegum-light: #FFB6C1;
  --chrome: #C0C0C0;
  --chrome-light: #E8E8E8;
  --chrome-silver: #D4D4D4;
  --black: #000000;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --text-light: #555555;
  --border: #E8E8E8;
}

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

/* --- Base --- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bubblegum);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

em { font-style: italic; }

::selection { background: var(--black); color: var(--white); }

/* --- Navigation --- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 105, 180, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--chrome-silver);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.nav-rule {
  flex: 1;
  height: 1px;
  background: var(--chrome-silver);
}
.nav-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black-soft);
}

/* --- Hero --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
  overflow: hidden;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 80px;
  position: relative;
  z-index: 2;
}
.hero-overline {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black-soft);
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 32px;
  line-height: 1.1;
}
.hero-headline em {
  color: var(--chrome);
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black-soft);
  max-width: 380px;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Ticker --- */
.hero-ticker {
  background: var(--black);
  color: var(--bubblegum-light);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
}
.hero-ticker span {
  display: inline-block;
  animation: ticker 30s linear infinite;
  padding-right: 2em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Manifesto --- */
.manifesto {
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  gap: 40px;
  align-items: start;
  padding: 100px 60px;
  position: relative;
  background: var(--black);
  color: var(--white);
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome-silver), transparent);
}
.manifesto-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--bubblegum);
  opacity: 0.8;
  line-height: 1;
  padding-top: 8px;
}
.manifesto-heading {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 36px;
  max-width: 600px;
}
.manifesto-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.accent-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--bubblegum), transparent);
}
.accent-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bubblegum);
}

/* --- Gatherings --- */
.gatherings {
  padding: 100px 60px;
  background: var(--bubblegum);
}
.gatherings-header {
  margin-bottom: 64px;
}
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black-soft);
  margin-bottom: 20px;
}
.gatherings-title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--black);
  max-width: 500px;
}
.gatherings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.gathering-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  border: 1px solid var(--chrome-silver);
}
.gathering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--black);
  transition: height 0.4s ease;
}
.gathering-card:hover::before { height: 100%; }
.gathering-card:hover { background: var(--white); }
.gathering-card--tall {
  grid-row: span 2;
}
.gathering-card--wide {
  grid-column: span 2;
}
.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--bubblegum);
  margin-bottom: 20px;
}
.card-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}
.card-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* --- Membership --- */
.membership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.membership-visual {
  background: var(--chrome-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mem-badge {
  border: 1.5px solid var(--chrome);
  padding: 24px 32px;
  z-index: 2;
  position: relative;
}
.badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.membership-content {
  padding: 80px 60px;
  background: var(--bubblegum);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.membership-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 28px;
}
.membership-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--black-soft);
  margin-bottom: 40px;
  max-width: 460px;
}
.membership-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--chrome-silver);
  padding-top: 32px;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black-soft);
}
.detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 400;
}
.membership-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--chrome-silver);
}
.membership-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.membership-link:hover { color: var(--chrome); }

/* --- Philosophy --- */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 80px;
  padding: 100px 60px;
  background: var(--black);
  align-items: center;
}
.philosophy-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 36px;
}
.philosophy-quote {
  border-left: 2px solid var(--bubblegum);
  padding-left: 28px;
  margin-bottom: 32px;
}
.philosophy-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--bubblegum-light);
}
.philosophy-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
}
.philosophy-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.aside-rule {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--chrome-silver));
}
.aside-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--chrome);
  text-align: right;
  line-height: 1.6;
}

/* --- Closing --- */
.closing {
  padding: 120px 60px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  position: relative;
  z-index: 2;
}
.closing-headline {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin: 0 auto 60px;
}
.closing-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255, 105, 180, 0.12);
  letter-spacing: 0.12em;
  line-height: 1;
}

/* --- Footer --- */
.site-footer {
  padding: 40px 60px;
  background: var(--bubblegum);
  border-top: 1px solid var(--chrome-silver);
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}
.footer-rule {
  flex: 1;
  height: 1px;
  background: var(--chrome-silver);
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy, .footer-location {
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.08em;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .site-nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 24px 40px; }
  .hero-image { min-height: 340px; }
  .hero-image img { min-height: 340px; }
  .hero-ticker { font-size: 0.6rem; }
  .manifesto { grid-template-columns: 60px 1fr; padding: 60px 24px; gap: 20px; }
  .manifesto-accent { display: none; }
  .gatherings { padding: 60px 24px; }
  .gatherings-grid { grid-template-columns: 1fr; }
  .gathering-card--tall, .gathering-card--wide { grid-row: auto; grid-column: auto; }
  .membership { grid-template-columns: 1fr; }
  .membership-visual { min-height: 320px; }
  .membership-content { padding: 60px 24px; }
  .philosophy { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .philosophy-aside { display: none; }
  .closing { padding: 80px 24px; }
  .closing-monogram { font-size: 4rem; }
  .site-footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .closing-headline { font-size: 2.2rem; }
  .nav-tagline { display: none; }
}