/* ============================================================
   COSMIC LEAGUE — Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy-900: #060D1A;
  --navy-800: #0A1628;
  --navy-700: #0E1E35;
  --navy-600: #162847;
  --navy-500: #1E3558;

  --brand:      #3E4493;   /* exact logo indigo — on light bg */
  --brand-lt:   #6268D8;   /* UI blue — buttons, labels on dark bg */
  --brand-pale: #8890F0;   /* soft — subtle accents */
  --brand-dim:  rgba(62, 68, 147, 0.15);

  --white:     #FFFFFF;
  --off-white: #F7F5F0;
  --gray-100:  #EEECEA;
  --gray-300:  #C5C2BA;
  --gray-500:  #8A8780;
  --gray-700:  #4A4744;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* spacing scale */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;

  --max-w: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s var(--ease);
  --t-slow: 0.65s var(--ease);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s8);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--s6); }
}

/* ── Typography helpers ────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-lt);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}

.section-title em {
  font-style: italic;
  color: var(--brand-lt);
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-lt);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-pale);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(62, 68, 147, 0.4);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(6,13,26,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: var(--s6) 0;
  transition: background var(--t-slow), padding var(--t), border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 13, 26, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--s4) 0;
  border-bottom-color: rgba(62, 68, 147, 0.1);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.nav-mark {
  height: 36px;
  width: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-en {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
}
.logo-ar {
  font-size: 0.68rem;
  color: var(--brand-lt);
  letter-spacing: 0.04em;
  direction: rtl;
  text-align: right;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav-link {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: var(--t);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-lt);
  border: 1px solid rgba(62,68,147,0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: var(--t);
}
.nav-cta:hover {
  background: rgba(62,68,147,0.1);
  border-color: var(--brand-lt);
}

/* mobile nav */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--t);
  transform-origin: center;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(6,13,26,0.98);
  border-top: 1px solid rgba(62,68,147,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.nav-mobile-menu.open { max-height: 320px; }

.nav-mobile-link {
  display: block;
  padding: var(--s4) var(--s8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--t);
}
.nav-mobile-link:hover {
  color: var(--brand-lt);
  padding-left: calc(var(--s8) + 10px);
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-menu { display: flex; }
  .nav-container { padding: 0 var(--s6); }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 110% -10%, rgba(62,68,147,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at -10% 110%, rgba(30,53,88,0.7) 0%, transparent 55%),
    linear-gradient(150deg, #060D1A 0%, #0A1628 45%, #0E1E35 100%);
}

/* fine grain texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
}

/* thin gold accent line on right */
.hero::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(62,68,147,0.18) 30%, rgba(62,68,147,0.18) 70%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--s32) + 40px) var(--s8) var(--s24);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-lt);
  margin-bottom: var(--s6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--s8);
  max-width: 11ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--brand-pale);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  max-width: 480px;
  margin-bottom: var(--s12);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute;
  bottom: var(--s10);
  left: var(--s8);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--s4);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.scroll-line {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--brand-lt);
  animation: scrollAnim 2.2s ease infinite 1.5s;
}
@keyframes scrollAnim {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

@media (max-width: 768px) {
  .hero-content { padding: calc(var(--s24) + 40px) var(--s6) var(--s20); }
  .hero-scroll { left: var(--s6); }
  .hero::after { display: none; }
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  padding: var(--s32) 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s16);
  align-items: start;
}
.about-label-col { padding-top: var(--s3); }

.about-body-col .section-title { margin-bottom: var(--s8); }

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy-700);
  margin-bottom: var(--s6);
}

.about-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: var(--s5);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s8);
  padding-top: var(--s8);
  border-top: 1px solid rgba(62,68,147,0.18);
}
.value-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-700);
}
.value-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-lt);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s4); }
}

/* ── Video ─────────────────────────────────────────────────── */
.video-section {
  padding: var(--s32) 0 0;
  background: var(--navy-900);
  color: var(--white);
}

.video-wrapper { margin-top: var(--s12); }

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-700);
  border-top: 1px solid rgba(62,68,147,0.08);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(62,68,147,0.04) 0%, transparent 65%);
}

.video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
}

.play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(62,68,147,0.35);
  background: rgba(62,68,147,0.1);
  color: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.play-btn:hover {
  background: rgba(62,68,147,0.22);
  border-color: var(--brand-pale);
  transform: scale(1.06);
}
.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}
.video-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

/* ── Services ──────────────────────────────────────────────── */
.services {
  padding: var(--s32) 0;
  background: var(--off-white);
}

.services-header { max-width: 660px; margin-bottom: var(--s16); }
.services-intro {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--gray-700);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(62,68,147,0.14);
  border: 1px solid rgba(62,68,147,0.14);
  margin-bottom: var(--s10);
}

.service-card {
  background: var(--off-white);
  padding: var(--s10) var(--s10);
  transition: background var(--t);
}
.service-card:hover { background: var(--white); }

.service-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(62,68,147,0.18);
  line-height: 1;
  margin-bottom: var(--s4);
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: var(--s3);
  line-height: 1.3;
}
.service-body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.pricing-note {
  border: 1px solid rgba(62,68,147,0.2);
  background: var(--white);
}
.pricing-note-inner {
  padding: var(--s10) var(--s12);
}
.pricing-note h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-lt);
  margin-bottom: var(--s4);
}
.pricing-note p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--gray-700);
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: var(--s8) var(--s6); }
  .pricing-note-inner { padding: var(--s8) var(--s6); }
}

/* ── Audience ──────────────────────────────────────────────── */
.audience {
  position: relative;
  padding: var(--s32) 0;
}
.audience-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.audience-inner {
  position: relative;
  z-index: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s16);
}
.audience-card {
  border: 1px solid rgba(62,68,147,0.12);
  background: rgba(255,255,255,0.025);
  padding: var(--s8) var(--s7);
  transition: var(--t);
}
.audience-card:hover {
  border-color: rgba(62,68,147,0.3);
  background: rgba(255,255,255,0.05);
}
.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--s4);
  line-height: 1.4;
}
.audience-card p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
}
.audience-note {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(62,68,147,0.12);
  padding-top: var(--s8);
  max-width: 680px;
}

@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; gap: var(--s4); } }

/* ── Process ───────────────────────────────────────────────── */
.process {
  padding: var(--s32) 0;
  background: var(--off-white);
}

.process-intro {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: var(--s16);
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--s6);
  padding: var(--s10) 0;
  border-top: 1px solid rgba(62,68,147,0.14);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid rgba(62,68,147,0.14); }

.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(62,68,147,0.22);
  line-height: 1;
  padding-top: 2px;
}
.step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: var(--s3);
}
.step-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-700);
}

@media (max-width: 560px) {
  .process-step { grid-template-columns: 60px 1fr; gap: var(--s4); }
  .step-num { font-size: 1.8rem; }
}

/* ── Apply / Form ──────────────────────────────────────────── */
.apply {
  padding: var(--s32) 0;
  background: var(--navy-900);
}

.apply-header {
  max-width: 580px;
  margin: 0 auto var(--s16);
}
.apply-intro {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.42);
  text-align: center;
}

.form-wrapper {
  max-width: 620px;
  margin: 0 auto;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: var(--s7);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.form-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.req { color: var(--brand-lt); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--s4) var(--s5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  outline: none;
  resize: vertical;
  transition: border-color var(--t), background var(--t);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.18);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(62,68,147,0.5);
  background: rgba(255,255,255,0.07);
}
.form-field input.invalid,
.form-field textarea.invalid {
  border-color: rgba(220,100,80,0.5);
}

.field-error {
  font-size: 0.75rem;
  color: rgba(230,130,110,0.9);
  min-height: 1em;
}

.form-submit-row { margin-top: var(--s4); }

.form-notice {
  font-size: 0.73rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: var(--s4);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s16) var(--s8);
}
.success-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(62,68,147,0.12);
  border: 1px solid rgba(62,68,147,0.3);
  color: var(--brand-pale);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s6);
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--s4);
}
.form-success p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 440px;
  margin: 0 auto var(--s4);
}
.success-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.25) !important;
}

/* ── Policy ────────────────────────────────────────────────── */
.policy {
  padding: var(--s32) 0;
  background: var(--gray-100);
}
.policy-inner { max-width: 700px; }

.policy-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy-800);
  margin: var(--s4) 0 var(--s8);
}
.policy-body p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: var(--s5);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  padding: var(--s16) 0 var(--s8);
  border-top: 1px solid rgba(62,68,147,0.08);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: var(--s8);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: var(--s4);
}
.footer-tagline {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.25);
  max-width: 240px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s3);
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  transition: var(--t);
}
.footer-nav a:hover { color: var(--brand-pale); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.18); }
.footer-domain { letter-spacing: 0.08em; }

@media (max-width: 600px) {
  .footer-main { flex-direction: column; gap: var(--s8); }
  .footer-nav { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
