/* ================================================================
   FINESIP DESIGN SYSTEM v2 — Dark-Mode First
   ================================================================ */

/* === DESIGN TOKENS === */
:root {
  --color-primary: #1B305C;
  --color-primary-light: #2A4580;
  --color-primary-dark: #121F40;
  --color-primary-10: rgba(28,48,93,0.10);
  --color-primary-20: rgba(28,48,93,0.20);
  --color-accent-rose: #DA1B5C;
  --color-accent-rose-light: #E84D7D;
  --color-accent-rose-dark: #B5164D;
  --color-accent-wine: #8B3A52;
  --color-neutral-50: #F5F3EF;
  --color-neutral-100: #EAE6DF;
  --color-neutral-200: #D4CECC;
  --color-neutral-400: #8E8880;
  --color-neutral-600: #4A4540;
  --color-neutral-900: #1A1A2E;
  --color-surface: #FFFFFF;
  --color-surface-warm: #F5F3EF;
  --color-overlay: rgba(26,26,46,0.60);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --text-h1: clamp(2.5rem, 6vw, 4.5rem);
  --text-h2: clamp(2rem, 4.5vw, 2.75rem);
  --text-h3: clamp(1.5rem, 3vw, 2.25rem);
  --text-h4: 1.5rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-body-sm: 0.875rem;
  --text-caption: 0.75rem;
  --text-label: 0.6875rem;
  --text-quote: 1.75rem;

  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-6: 24px; --space-8: 32px;
  --space-12: 48px; --space-16: 64px; --space-24: 96px; --space-32: 128px;

  --radius-sm: 2px; --radius-md: 4px; --radius-lg: 8px;
  --radius-xl: 12px; --radius-pill: 100px;

  --shadow-subtle: 0 1px 3px rgba(28,48,93,0.08), 0 1px 2px rgba(28,48,93,0.04);
  --shadow-medium: 0 4px 12px rgba(28,48,93,0.10), 0 2px 4px rgba(28,48,93,0.06);
  --shadow-elevated: 0 16px 40px rgba(28,48,93,0.16), 0 4px 12px rgba(28,48,93,0.08);
  --shadow-rose: 0 4px 16px rgba(219,27,92,0.25);

  --duration-fast: 120ms; --duration-normal: 200ms;
  --duration-slow: 350ms; --duration-slower: 500ms;
  --ease-default: cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --max-content-width: 1200px;
  --grid-margin-lg: 80px; --grid-margin-md: 40px; --grid-margin-sm: 20px;

  /* --- New tokens --- */
  /* Gold removed — Rose is the sole accent (FineSip Brand v2.1) */
  --color-cream: #F8F1E7;
  --color-ink: #0D1529;

  --z-cursor: 9999;
  --z-nav-overlay: 500;
  --z-nav-trigger: 501;
  --z-page-transition: 600;

  --text-display: clamp(4rem, 12vw, 10rem);
  --text-display-sm: clamp(3rem, 8vw, 6rem);
  --text-huge: clamp(2.5rem, 6vw, 5rem);

  --perspective: 1200px;
  --tilt-max: 8deg;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ================================================================
   1. RESET
   ================================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  background: linear-gradient(160deg, #0D1529 0%, #1B305C 50%, #162347 100%);
  background-attachment: fixed;
  color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
}


/* ================================================================
   1b. FOCUS STATES
   ================================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent-rose);
  outline-offset: 3px;
}


/* ================================================================
   2. CONTAINER
   ================================================================ */
.container {
  width: min(calc(100% - 48px), var(--max-content-width));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container { width: min(calc(100% - 80px), var(--max-content-width)); }
}

@media (min-width: 1280px) {
  .container { width: min(calc(100% - 160px), var(--max-content-width)); }
}

.section-padding {
  padding: var(--space-24) 0;
}

@media (min-width: 768px) {
  .section-padding { padding: var(--space-32) 0; }
}


/* ================================================================
   3. BRAND MARK (top-left fixed)
   ================================================================ */
.brand-mark {
  position: fixed;
  top: 28px;
  left: 32px;
  z-index: var(--z-nav-trigger);
  text-decoration: none;
}

.brand-mark__logo {
  display: block;
  width: clamp(120px, 12vw, 160px);
  height: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}

.brand-mark:hover .brand-mark__logo {
  opacity: 0.85;
  transform: scale(1.03);
}


/* ================================================================
   4. NAV ORB (top-right fixed trigger)
   ================================================================ */
.nav-orb {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  z-index: var(--z-nav-trigger);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-luxury);
}

.nav-orb:hover {
  transform: scale(1.12);
}

.nav-orb__icon {
  width: 26px;
  height: 26px;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury);
}

.nav-orb:hover .nav-orb__icon {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(219,27,92,0.35));
}

.nav-orb__bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--color-accent-rose);
  opacity: 0;
  animation: bubbleFloat 3s ease-in-out infinite;
}

.nav-orb__bubble:nth-child(2) { width: 3px; height: 3px; top: 6px; right: 8px; animation-delay: 0s; }
.nav-orb__bubble:nth-child(3) { width: 2px; height: 2px; top: 3px; right: 14px; animation-delay: 1s; }
.nav-orb__bubble:nth-child(4) { width: 2.5px; height: 2.5px; top: 4px; right: 20px; animation-delay: 2s; }

.nav-orb:hover .nav-orb__bubble { opacity: 0.6; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-8px); opacity: 0; }
}


/* ================================================================
   5. NAV OVERLAY (split-screen: logo left, links right)
   ================================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-nav-overlay);
  clip-path: circle(0% at calc(100% - 54px) 46px);
  background: linear-gradient(160deg, #0D1529 0%, #1B305C 60%, #162347 100%);
  transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  overflow: hidden;
}

.nav-overlay.is-open {
  clip-path: circle(150% at calc(100% - 54px) 46px);
  pointer-events: auto;
}

.nav-overlay__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(219,27,92,0.06), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(27, 48, 92, 0.15), transparent 50%);
  pointer-events: none;
}

/* --- Left side: Brand logo (grows in) --- */
.nav-overlay__brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  z-index: 2;
}

.nav-overlay__brand-logo {
  display: block;
  width: clamp(200px, 28vw, 420px);
  height: auto;
  opacity: 0;
  transform: scale(0.3);
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.25));
  transform-origin: center center;
}

/* --- Vertical divider --- */
.nav-overlay__divider {
  position: absolute;
  left: 50%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(248,241,231,0.12), transparent);
  transform: scaleY(0);
  transform-origin: center;
  z-index: 2;
}

/* --- Right side: Navigation links --- */
.nav-overlay__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(32px, 5vw, 80px);
  z-index: 2;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vh, 28px);
}

.nav-overlay__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateX(80px);
  transition: color 0.3s ease, padding-left 0.3s var(--ease-luxury);
  padding-left: 0;
  position: relative;
}

.nav-overlay__link::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-rose);
  transition: transform 0.3s var(--ease-luxury);
}

.nav-overlay__link:hover {
  color: var(--color-accent-rose);
  padding-left: 8px;
}

.nav-overlay__link:hover::before {
  transform: translateY(-50%) scale(1);
}

.nav-overlay__link-number {
  font-family: var(--font-sans);
  font-size: var(--text-label, 0.6875rem);
  color: rgba(248, 241, 231, 0.25);
  letter-spacing: 0.1em;
  min-width: 20px;
}

.nav-overlay__link-text {
  display: inline-block;
}

.nav-overlay__lang {
  display: flex;
  gap: 16px;
  margin-top: clamp(24px, 4vh, 48px);
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: rotate(-90deg);
}

.nav-overlay__close span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-overlay__close span:first-child  { transform: rotate(45deg); }
.nav-overlay__close span:last-child   { transform: rotate(-45deg); }

.nav-overlay__close:hover span {
  background: var(--color-accent-rose);
}

.nav-overlay__close:hover span:first-child  { transform: rotate(45deg) scaleX(1.25); }
.nav-overlay__close:hover span:last-child   { transform: rotate(-45deg) scaleX(1.25); }


/* ================================================================
   6. LANGUAGE BUTTONS
   ================================================================ */
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
  color: #fff;
}


/* ================================================================
   7. PAGE TRANSITION LAYER
   ================================================================ */
.page-transition-layer {
  position: fixed;
  inset: 0;
  z-index: var(--z-page-transition);
  pointer-events: none;
  display: flex;
}

.page-transition-layer__curtain {
  flex: 1;
  background: var(--color-primary);
}

.page-transition-layer__curtain--left {
  transform: translateX(-100%);
}

.page-transition-layer__curtain--right {
  transform: translateX(100%);
}


/* ================================================================
   8. CURSOR SYSTEM
   ================================================================ */
@media (pointer: fine) {
  * { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent-rose);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-luxury),
              height 0.35s var(--ease-luxury),
              background 0.35s ease,
              opacity 0.35s ease;
}

/* On link hover: dot grows into a small filled circle */
.cursor-dot.is-link {
  width: 12px; height: 12px;
  background: var(--color-accent-rose);
}

/* On text hover: thin caret line */
.cursor-dot.is-text {
  width: 2px; height: 20px;
  border-radius: 1px;
  background: var(--color-accent-rose);
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(248,241,231,0.15);
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-luxury),
              height 0.4s var(--ease-luxury),
              border-color 0.35s ease,
              opacity 0.35s ease;
}

/* On link hover: ring fades out, dot takes over */
.cursor-ring.is-link {
  width: 32px; height: 32px;
  border-color: transparent;
  opacity: 0;
}

/* On text hover: ring hides */
.cursor-ring.is-text {
  opacity: 0;
}

.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, calc(-50% - 28px));
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-label.is-visible { opacity: 1; }

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring, .cursor-label { display: none; }
}


/* ================================================================
   9. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-body-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxury);
}

.btn > span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-luxury);
}

.btn:hover::before { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent-rose);
  color: #fff;
}

.btn-primary:hover { color: var(--color-accent-rose); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover { color: var(--color-ink); border-color: #fff; }

.btn-sm { padding: 10px 22px; font-size: var(--text-caption); }


/* ================================================================
   10. EYEBROW
   ================================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.55);
}


/* ================================================================
   11. SECTION DIVIDER
   ================================================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 241, 231, 0.12), transparent);
}

.section-divider__dot {
  width: 6px;
  height: 6px;
  background: rgba(248, 241, 231, 0.25);
  transform: rotate(45deg);
  opacity: 0.6;
  flex-shrink: 0;
}


/* ================================================================
   12. SCROLL PROGRESS (vertical line, right edge)
   ================================================================ */
.scroll-progress {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 30vh;
  background: rgba(255,255,255,0.08);
  z-index: 100;
  border-radius: 2px;
  overflow: hidden;
}

.scroll-progress__fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--color-accent-rose), rgba(27, 48, 92, 0.8));
  height: 0%;
  border-radius: 2px;
  transition: height 0.1s linear;
}

.scroll-progress__dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-rose);
  box-shadow: 0 0 12px rgba(219,27,92,0.5);
  bottom: 0%;
  transition: bottom 0.1s linear;
}


/* ================================================================
   13. FOOTER REVEAL (sits behind content)
   ================================================================ */
.footer-reveal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #1B305C 0%, #0D1529 100%);
  padding: clamp(24px, 4vh, 60px) 0;
  overflow-y: auto;
}

.footer-reveal__brand {
  text-align: center;
  margin-bottom: 20px;
}

.footer-reveal__brand-logo {
  display: inline-block;
  width: clamp(180px, 30vw, 320px);
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.2));
}

.footer-reveal__tagline {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.5);
  margin-bottom: clamp(20px, 4vh, 48px);
}

.footer-reveal__divider {
  width: 80px;
  height: 1px;
  background: rgba(248, 241, 231, 0.15);
  margin: 0 auto clamp(20px, 4vh, 48px);
}

.footer-reveal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--max-content-width);
  width: min(calc(100% - 48px), var(--max-content-width));
  margin-inline: auto;
}

.footer-reveal__col-title {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.45);
  margin-bottom: 16px;
}

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

.footer-reveal__links a {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-body-sm);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-reveal__links a:hover { color: #fff; }

.footer-reveal__newsletter {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-reveal__newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: var(--text-body-sm);
  outline: none;
}

.footer-reveal__newsletter input::placeholder { color: rgba(255,255,255,0.3); }

.footer-reveal__newsletter button {
  padding: 12px 20px;
  background: var(--color-accent-rose);
  border: none;
  color: #fff;
  font-size: var(--text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-reveal__newsletter button:hover { background: var(--color-accent-rose-dark); }

.footer-reveal__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-reveal__social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-reveal__social a:hover { color: #fff; }

.footer-reveal__social svg { width: 20px; height: 20px; }

.footer-reveal__bottom {
  max-width: var(--max-content-width);
  width: min(calc(100% - 48px), var(--max-content-width));
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-reveal__legal {
  color: rgba(255,255,255,0.25);
  font-size: var(--text-caption);
}

.footer-reveal__legal-links {
  display: flex;
  gap: 20px;
}

.footer-reveal__legal-links a {
  color: rgba(255,255,255,0.25);
  font-size: var(--text-caption);
  text-decoration: none;
}

.footer-reveal__legal-links a:hover { color: rgba(255,255,255,0.5); }


/* ================================================================
   14. REVEAL UTILITIES
   ================================================================ */
.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-stagger > * {
  opacity: 0;
  will-change: transform, opacity;
}


/* ================================================================
   15. MAIN CONTENT WRAPPER (sits above footer)
   ================================================================ */
.main-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0D1529 0%, #152040 40%, #1B305C 100%);
}

.footer-spacer {
  height: 100vh;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer-spacer {
    display: none;
  }
}


/* ================================================================
   16. TOAST
   ================================================================ */
.toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
}

.toast {
  padding: 16px 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: var(--text-body-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   17. GOLD LINE SHIMMER
   ================================================================ */
.gold-line, .accent-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 241, 231, 0.15), transparent);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}


/* ================================================================
   18. TEXT GRADIENT
   ================================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent-rose) 0%, var(--color-accent-rose-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold, .text-gradient-accent {
  background: linear-gradient(135deg, #fff 30%, rgba(248, 241, 231, 0.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ================================================================
   19. FORM STYLES (shared, restyled for dark)
   ================================================================ */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  font-size: var(--text-body);
  color: #fff;
  background: transparent;
  transition: border-color var(--duration-normal) var(--ease-default);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent-rose);
  outline: none;
  box-shadow: 0 0 0 3px rgba(219,27,92,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #D32F2F;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: var(--text-caption);
  color: #D32F2F;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-group--float {
  position: relative;
}

.form-group--float label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: var(--text-body);
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  transition: all 0.25s var(--ease-default);
  transform-origin: left top;
}

.form-group--float input:focus ~ label,
.form-group--float input:not(:placeholder-shown) ~ label,
.form-group--float textarea:focus ~ label,
.form-group--float textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 12px;
  font-size: var(--text-caption);
  color: var(--color-accent-rose);
  background: var(--color-primary-dark, #121F40);
  padding: 0 4px;
}


/* ================================================================
   20. WHATSAPP BUTTON
   ================================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 600;
  font-size: var(--text-body-sm);
  transition: background var(--duration-normal) var(--ease-default);
}

.btn-whatsapp:hover {
  background: #1EA952;
}


/* ================================================================
   21. PAGE HERO (interior pages, dark)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-16) var(--grid-margin-sm) var(--space-12);
  background: var(--color-ink);
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 400px;
    padding: var(--space-16) var(--grid-margin-md) var(--space-12);
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27, 48, 92, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(27, 48, 92, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.page-hero__eyebrow {
  color: rgba(248, 241, 231, 0.55);
  margin-bottom: var(--space-4);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-hero__sub {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ================================================================
   22. MOBILE RESPONSIVE OVERRIDES
   ================================================================ */
@media (max-width: 768px) {
  .brand-mark {
    top: 20px;
    left: 20px;
  }

  .nav-orb {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .nav-overlay {
    clip-path: circle(0% at calc(100% - 42px) 40px);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .nav-overlay.is-open {
    clip-path: circle(150% at calc(100% - 42px) 40px);
  }

  .nav-overlay__brand {
    padding: 60px 24px 0;
    justify-content: flex-start;
  }

  .nav-overlay__brand-logo {
    width: clamp(140px, 40vw, 200px);
  }

  .nav-overlay__divider {
    display: none;
  }

  .nav-overlay__right {
    padding: 0 24px;
  }

  .nav-overlay__link {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .scroll-progress {
    right: 12px;
    height: 20vh;
  }

  .footer-reveal {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 48px 0 32px;
  }

  .footer-reveal__brand {
    margin-bottom: 12px;
  }

  .footer-reveal__brand-logo {
    width: clamp(140px, 40vw, 220px);
  }

  .footer-reveal__tagline {
    margin-bottom: 20px;
  }

  .footer-reveal__divider {
    margin-bottom: 24px;
  }

  .footer-reveal__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-reveal__bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 32px;
  }
}
