/* ================================================================
   CIEL PRIVÉ — desktop.css
   All component styles (desktop-first) + tablet overrides (≥769px)
================================================================ */


/* ── Navigation ── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 60px;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.65;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              letter-spacing 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { opacity: 1; letter-spacing: 4px; }

@media (max-width: 1024px) {
  nav { padding: 28px 40px; }
}


/* ── Hero ── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  position: absolute;
  inset: 0;
  background: url('../assets/hero.jpg') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.12);
  transform-origin: center center;
  will-change: transform;
  animation: heroZoomOut 18s ease-out forwards;
}

@keyframes heroZoomOut {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.25;
  z-index: 2;
  will-change: opacity;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 32px;
  width: 100%;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 7.5vw, 118px);
  font-weight: 300;
  letter-spacing: clamp(3px, 1.2vw, 14px);
  text-transform: uppercase;
  line-height: 1.06;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  opacity: 0;
}

.title-line {
  display: block;
  overflow: visible;
  white-space: nowrap;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #f0ece4;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 2px;
  color: #f0ece4;
  margin-top: 24px;
  opacity: 0;
}

/* Pause hero CSS animations while preloader is active — JS unpauses them */
.hero-title,
.hero-tagline { animation-play-state: paused; }


/* ── Who We Are ── */

.section-who {
  width: 100vw;
  background: #f0ece4;
  padding: 160px 8vw;
}

.who-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.who-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: #6b6560;
  margin-bottom: 48px;
  display: block;
}

.who-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  color: #0a0a0a;
  margin-bottom: 48px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.who-headline em { font-style: italic; }

.who-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.9;
  color: #4a4642;
  margin-bottom: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.who-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 64px;
}

.who-stat-divider {
  width: 1px;
  height: 40px;
  background: #c8c4bc;
}

.who-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.who-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: #0a0a0a;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

#infinity-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
}

#infinity-path { stroke: #0a0a0a; }

.who-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #6b6560;
  margin-top: 8px;
}


/* ── Coordinates Marquee ── */

.marquee-section {
  background: var(--black);
  padding: 24px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(248, 248, 246, 0.4);
  flex-shrink: 0;
  padding-right: 60px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── Services ── */

.services-stack-section {
  width: 100vw;
  position: relative;
  background-color: #0a0a0a;
}

/* Header only visible on mobile — hidden on desktop via media query below */
.services-section-header {
  padding: 60px 24px 20px;
  text-align: left;
}

.services-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  color: #6b6560;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 4px;
}

.services-main-heading {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
}

@media (min-width: 769px) {
  .services-section-header { display: none; }
}

/* Desktop: cards stack in the same grid cell, GSAP animates them in */
.services-trigger-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}

.service-stack-card {
  grid-area: 1 / 1 / 2 / 2;
  width: 80vw;
  max-width: 1200px;
  min-height: 65vh;
  height: auto;
  background-color: #faf9f7;
  border: 1px solid rgba(10, 10, 10, 0.05);
  border-radius: 2px;
  padding: 30px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  will-change: transform;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-interior-content {
  width: 100%;
  min-height: calc(65vh - 60px);
  height: auto;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-1 { z-index: 10; }
.card-2 { z-index: 20; }
.card-3 { z-index: 30; }

.card-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-num {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #0a0a0a;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-eyebrow-tag {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  color: #8a8580;
  letter-spacing: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-body-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.service-display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 300;
  font-style: normal;
  color: #0a0a0a;
  letter-spacing: 0.01em;
  display: block;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.service-descriptor-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.8;
  color: #4a4642;
  max-width: 620px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}

.action-toggle-text {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #0a0a0a;
  opacity: 0.45;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-stack-card:hover .action-toggle-text { opacity: 0.75; }

.action-glyph {
  font-size: 20px;
  color: #0a0a0a;
  opacity: 0.45;
  display: inline-block;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-stack-card:hover .action-glyph { opacity: 1; }

/* Expanded details — GSAP controls max-height/opacity via inline styles */
.service-expanded-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.details-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.details-data-row h4 {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #0a0a0a;
  margin: 0 0 8px;
  font-weight: 400;
}

.details-data-row p {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(15px + 0.2vw);
  line-height: 1.7;
  color: #4a4642;
  margin: 0;
  max-width: 560px;
}

/* Tablet: horizontal swipe carousel (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-stack-section {
    overflow: hidden;
    padding: 0;
  }

  .services-trigger-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw;
    height: auto;
    min-height: unset;
    padding: 20px 24px 60px;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
    position: static;
    transform: none;
  }

  .services-trigger-wrapper::-webkit-scrollbar { display: none; }

  .service-stack-card {
    flex-shrink: 0;
    width: 75vw;
    height: auto;
    min-height: 54vh;
    max-height: unset;
    scroll-snap-align: center;
    position: static;
    transform: none;
    grid-area: unset;
    padding: 16px;
    z-index: unset;
  }

  .card-1, .card-2, .card-3 { z-index: unset; }

  .card-interior-content {
    min-height: 0;
    height: 100%;
    padding: 30px 24px;
    border: 1px solid rgba(10, 10, 10, 0.07);
  }

  .action-glyph { transition: transform 0.4s ease; }

  .service-stack-card.is-expanded .action-glyph { transform: rotate(180deg); }
}


/* ── Service Modal ── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-panel {
  background: #0c0c0c;
  border: 1px solid rgba(248, 248, 246, 0.07);
  width: min(600px, 88vw);
  max-height: 80vh;
  overflow-y: auto;
  padding: 64px;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.open .modal-panel { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  padding: 4px 8px;
}

.modal-close:hover { opacity: 1; }

.modal-number {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.28;
  margin-bottom: 18px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.12;
  margin-bottom: 28px;
}

.modal-lead {
  font-size: 12px;
  line-height: 2.1;
  opacity: 0.62;
  margin-bottom: 36px;
}

.modal-points {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid rgba(248, 248, 246, 0.06);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-points li {
  font-size: 11px;
  letter-spacing: 0.4px;
  line-height: 1.9;
  opacity: 0.48;
  padding-left: 22px;
  position: relative;
}

.modal-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.38;
}


/* ── Global Reach ── */

.reach {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.reach-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.world-svg {
  width: 100%;
  height: 100%;
}

.fpath { will-change: stroke-dashoffset; }
.cdot  { opacity: 0; }

.reach-content {
  position: relative;
  z-index: 3;
  padding: 120px 80px 80px;
  max-width: 620px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(10, 10, 10, 0.6)  55%,
    transparent            100%
  );
  width: 100%;
}

.reach-label {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(248, 248, 246, 0.38);
  margin-bottom: 20px;
  opacity: 0;
}

.reach-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 56px);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.reach-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.reach-line .line-inner { display: block; }

.reach-text {
  font-size: 17px;
  line-height: 2.1;
  color: rgba(248, 248, 246, 0.58);
  max-width: 460px;
  opacity: 0;
}

@media (max-width: 1024px) {
  .reach-content { padding: 100px 56px 64px; }
}


/* ── Contact ── */

.contact {
  background: var(--white);
  color: var(--black);
  padding: 160px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 24px;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.contact-sub {
  font-size: 16px;
  line-height: 2.1;
  opacity: 0.56;
  margin-bottom: 60px;
  max-width: 420px;
}

.contact-whatsapp {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.45;
  margin-bottom: 48px;
}

.contact-whatsapp a {
  border-bottom: 1px solid currentColor;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.contact-whatsapp a:hover { opacity: 0.65; }

.contact-form { display: flex; flex-direction: column; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.form-field {
  position: relative;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(18px);
}

.form-field.full { grid-column: 1 / -1; }

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.18);
  padding: 22px 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--black);
  outline: none;
  transition: border-color 0.35s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field textarea {
  height: 110px;
  resize: none;
  line-height: 1.9;
}

.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--black); }

.form-field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.38;
  pointer-events: none;
  transition: top 0.25s ease, font-size 0.25s ease, opacity 0.25s ease;
}

.form-field input:not(:placeholder-shown) ~ label,
.form-field input:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label {
  top: 0;
  font-size: 7px;
  opacity: 0.55;
}

.submit-btn {
  align-self: flex-start;
  margin-top: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 18px 52px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: padding 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(18px);
}

.submit-btn:hover { padding: 18px 72px; }
.submit-btn:disabled { cursor: default; }
.submit-btn:disabled:hover { padding: 18px 52px; }

.form-error {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 10, 0.45);
  margin-top: 14px;
  min-height: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-error.visible { opacity: 1; }

/* intl-tel-input overrides — !important needed to beat library inline styles */
.phone-field label {
  top: 0;
  font-size: 7px;
  opacity: 0.55;
}

.phone-field .iti {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(10, 10, 10, 0.18);
  transition: border-color 0.35s ease;
}

.phone-field .iti:focus-within { border-bottom-color: var(--black); }

.phone-field .iti input[type="tel"] {
  border-bottom: none !important;
  padding-top: 22px;
}

.iti__selected-flag {
  background: transparent !important;
  border-right: none;
  padding: 20px 10px 10px 0;
  height: auto;
  outline: none;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus { background: transparent !important; }

.iti__arrow { border-top-color: rgba(10, 10, 10, 0.3); margin-left: 5px; }
.iti__arrow--up { border-top: none; border-bottom-color: rgba(10, 10, 10, 0.3); }

.iti__country-list {
  background: #fff;
  border: none;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--black);
  z-index: 2000;
  max-height: 220px;
}

.iti__country:hover,
.iti__country.iti__highlight { background: rgba(10, 10, 10, 0.04); }

.iti__country-name { color: rgba(10, 10, 10, 0.75); }
.iti__dial-code    { color: rgba(10, 10, 10, 0.32); }
.iti__divider      { border-bottom-color: rgba(10, 10, 10, 0.06); }

.iti__search-input {
  border: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  outline: none;
  padding: 10px 12px;
  width: 100%;
  border-radius: 0;
  color: var(--black);
  background: transparent;
}

.field-error {
  display: block;
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
  margin-top: 6px;
  min-height: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.form-field.has-error .field-error { opacity: 1; }
.form-field.has-error .iti         { border-bottom-color: rgba(10, 10, 10, 0.55); }

/* Success modal */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  background: #F5F2EC;
  padding: 72px 80px;
  position: relative;
  text-align: center;
  width: min(480px, calc(100vw - 48px));
  transform: scale(0.96);
  transition: transform 0.4s ease;
}

.success-overlay.is-open .success-modal { transform: scale(1); }

.success-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  color: rgba(10, 10, 10, 0.35);
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s ease;
}

.success-close:hover { color: rgba(10, 10, 10, 0.7); }

.success-brand {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
  margin-bottom: 22px;
}

.success-rule {
  width: 40px;
  height: 1px;
  background: rgba(10, 10, 10, 0.18);
  margin: 0 auto 28px;
}

.success-thank {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.success-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(10, 10, 10, 0.55);
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .contact { padding: 120px 48px; }
}


/* ── Footer ── */

footer {
  background: var(--black);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  border-top: 1px solid rgba(248, 248, 246, 0.06);
  color: rgba(255, 255, 255, 0.90);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col--center {
  text-align: center;
  align-items: center;
}

.footer-col--right {
  text-align: right;
  align-items: flex-end;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 1.5px;
  opacity: 0.45;
}

footer span,
footer a {
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1.9;
}

.footer-copy { font-size: 8px; opacity: 0.45; }

footer a:hover { opacity: 0.75; transition: opacity 0.3s ease; }

.footer-disclaimer {
  background: var(--black);
  padding: 0 60px 40px;
  font-size: 8px;
  letter-spacing: 0.5px;
  line-height: 2.1;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  footer             { padding: 56px 40px; }
  .footer-disclaimer { padding: 0 40px 36px; }
}


/* ── Preloader ── */

#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  clip-path: inset(0% 0% 0% 0%);
  will-change: clip-path;
  overflow: hidden;
}

#preloader-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#preloader-text-wrap { overflow: hidden; }

#preloader-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: 0.4em;
  color: #0a0a0a;
  margin: 0;
  text-align: center;
}

#preloader-tagline .char {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

#preloader-scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 0.3em;
  color: #0a0a0a;
}

.preloader-scroll-text  { opacity: 0.5; }
.preloader-scroll-line  { width: 1px; height: 36px; background: #0a0a0a; opacity: 0.3; }
.preloader-scroll-arrow { font-size: 14px; opacity: 0.3; }


/* ── Hero scroll cue ── */

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroScrollFade 1s ease forwards 3s;
}

.hero-scroll-text {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(248, 248, 246, 0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(248, 248, 246, 0.25);
  animation: heroScrollLine 2.8s ease-in-out infinite 3s;
  transform-origin: top;
}

@keyframes heroScrollFade {
  to { opacity: 1; }
}

@keyframes heroScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
