@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --black: #080706;
  --dark: #141210;
  --dark-2: #1E1B18;
  --ivory: #F5F0E8;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --gold: #C4A35A;
  --gold-light: #E0CC9A;
  --gold-muted: #8B7240;
  --text: #2C2420;
  --text-muted: #7A6E65;
  --text-light: #B8AFA6;
  --border: rgba(196,163,90,0.25);
  --border-light: rgba(196,163,90,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(8,7,6,0.88);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── HERO ── */
#hero {
  height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28vw;
  font-weight: 300;
  color: rgba(196,163,90,0.04);
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
}
.hero-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.3s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.25em;
  text-align: center;
  line-height: 1;
  animation: fadeUp 1s 0.5s both;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-top: 1rem;
  animation: fadeUp 1s 0.7s both;
}
.hero-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-top: 2.5rem;
  text-align: center;
  line-height: 2;
  animation: fadeUp 1s 0.9s both;
}
.hero-event-tag {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  text-align: right;
  animation: fadeUp 1s 1.1s both;
}
.hero-event-tag span {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.hero-event-tag strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1.3s both;
}
.hero-scroll span {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ── SECTIONS ── */
section { position: relative; }

.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-light { background: var(--cream); }
.section-ivory { background: var(--ivory); }

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

.section-eyebrow {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
}
.section-title.light { color: var(--ivory); }
.section-title.dark { color: var(--text); }

.gold-rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── BRAND OVERVIEW ── */
#overview {
  padding: 8rem 0;
  background: var(--dark);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.overview-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.overview-body p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-light);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.ceo-sig {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.ceo-sig span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.3rem;
}
.ceo-sig strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
}

/* ── HERITAGE ── */
#heritage {
  padding: 8rem 0;
  background: var(--black);
}
.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 6rem;
}
.stat-item {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.8;
}
.heritage-text {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}
.heritage-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.9;
  opacity: 0.85;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-top: 3rem;
  padding-right: 1rem;
}
.timeline-dot {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--gold);
  transform: rotate(45deg);
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
}
.timeline-event {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}

/* ── DESIGN HOUSE ── */
#design {
  padding: 8rem 0;
  background: var(--cream);
}
.design-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: end;
}
.design-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.design-stat {
  background: var(--cream);
  padding: 2.5rem;
}
.design-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
}
.design-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.7;
}
.process-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4rem;
  background: var(--ivory);
  border: 1px solid var(--border-light);
}
.process-step {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
  z-index: 1;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.process-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ── DNA / PILLARS ── */
#dna {
  padding: 8rem 0;
  background: var(--dark);
}
.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.dna-item {
  background: var(--dark);
  padding: 3rem 2.5rem;
  transition: background 0.4s;
}
.dna-item:hover { background: var(--dark-2); }
.dna-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}
.dna-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.dna-sub {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.dna-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
}

/* ── COLLECTIONS ── */
#collections {
  padding: 8rem 0;
  background: var(--ivory);
}
.collections-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}
.collections-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  opacity: 0.8;
  margin-top: 1.5rem;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.collection-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border: 1px solid transparent;
  transition: border-color 0.4s, background 0.3s;
}
.collection-card:hover {
  border-color: var(--border);
  background: var(--white);
}
.coll-icon {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.coll-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.coll-desc {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.8;
}
.featured-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.featured-card {
  background: var(--dark-2);
  padding: 3rem;
  border: 1px solid var(--border-light);
  transition: border-color 0.4s;
}
.featured-card:hover { border-color: var(--gold); }
.featured-tag {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.featured-sub {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
}

/* ── BRANDS ── */
#brands {
  padding: 8rem 0;
  background: var(--black);
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.brand-card {
  padding: 4rem 3.5rem;
  border: 1px solid var(--border-light);
  background: var(--dark);
  transition: border-color 0.4s;
}
.brand-card:hover { border-color: var(--gold); }
.brand-tag {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.brand-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
}
.brand-sub-collections {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand-coll-tag {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,163,90,0.08);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
}

/* ── VISION & GROWTH ── */
#vision {
  padding: 8rem 0;
  background: var(--cream);
}
.vision-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.vision-header p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 2;
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}
.growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-bottom: 5rem;
}
.growth-metric {
  background: var(--ivory);
  padding: 3rem;
  text-align: center;
}
.growth-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.growth-num sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.growth-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.8;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.channel-item {
  background: var(--cream);
  padding: 2.5rem 2rem;
}
.channel-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.channel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.channel-detail {
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── GLOBAL ── */
#global {
  padding: 8rem 0;
  background: var(--dark-2);
}
.global-header {
  max-width: 680px;
  margin-bottom: 5rem;
}
.global-header p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
  margin-top: 1.5rem;
}
.global-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.global-pillar {
  background: var(--dark);
  padding: 3rem 2rem;
  border: 1px solid var(--border-light);
  transition: border-color 0.4s;
}
.global-pillar:hover { border-color: var(--gold); }
.pillar-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.pillar-sub {
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── BOUTIQUE ── */
#boutique {
  padding: 8rem 0;
  background: var(--black);
}
.boutique-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.boutique-visual {
  background: var(--dark-2);
  border: 1px solid var(--border);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.boutique-diamond {
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  position: relative;
}
.boutique-diamond::after {
  content: '';
  position: absolute;
  inset: 0.6rem;
  border: 1px solid rgba(196,163,90,0.3);
}
.boutique-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2.5rem;
}
.boutique-info .section-title { margin-bottom: 2rem; }
.boutique-details { list-style: none; margin-top: 2rem; }
.boutique-details li {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.boutique-details li:first-child { border-top: 1px solid var(--border-light); }
.detail-key {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 4rem;
  opacity: 0.7;
  padding-top: 0.1rem;
}

/* ── CONTACT ── */
#contact {
  padding: 8rem 0;
  background: var(--dark);
}
.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.contact-header p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  cursor: pointer;
  background-color: transparent;
}
.form-group select option {
  background: var(--dark-2);
  color: var(--ivory);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.8; }
.form-submit-row {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-note {
  font-size: 0.6rem;
  color: var(--text-light);
  opacity: 0.5;
}
.btn-submit {
  background: transparent;
  border: 1px solid var(--gold);
  padding: 1rem 3.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-submit:hover { background: var(--gold); color: var(--black); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-status {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--gold-light);
  min-height: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.05em;
}
.form-status.error { color: #E07070; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--gold);
}
.footer-info {
  text-align: center;
}
.footer-info p {
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--text-light);
  opacity: 0.5;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.footer-social {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-social:hover { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  .overview-grid,
  .design-header,
  .boutique-inner,
  .brands-grid { grid-template-columns: 1fr; gap: 3rem; }
  .heritage-stats,
  .growth-metrics,
  .dna-grid,
  .global-pillars { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .featured-collections { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { display: none; }
  .timeline-dot { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; gap: 1rem; align-items: flex-start; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  #overview, #heritage, #design, #dna, #collections, #brands, #vision, #global, #boutique, #contact { padding: 5rem 0; }
  .hero-event-tag { display: none; }
  .design-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 2.5rem 2rem; }
}
@media (max-width: 500px) {
  .hero-title { letter-spacing: 0.15em; }
  .collections-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; }
  .process-step:not(:last-child)::after { display: none; }
}
