/* ============================================================
   DALPHA COMPANY SL LIMITED — GLOBAL STYLES
   Theme: Luxury Dark · Navy / Maroon / Gold
   ============================================================ */

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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core palette */
  --navy:           #0a1628;
  --navy-light:     #0f1f3d;
  --navy-mid:       #111e33;
  --navy-soft:      #162039;
  --navy-card:      #111e33;
  --maroon:         #8b1a2e;
  --maroon-light:   #b02240;
  --maroon-dark:    #5c1020;
  --gold:           #c9a84c;
  --gold-light:     #e4c97a;
  --gold-muted:     rgba(201, 168, 76, 0.18);
  --gold-glow:      rgba(201, 168, 76, 0.22);
  --maroon-glow:    rgba(122, 28, 46, 0.35);

  /* Text */
  --text-white:     #ffffff;
  --text-light:     #e2e8f0;
  --text-muted:     #94a3b8;
  --text-dim:       #64748b;

  /* Surfaces */
  --surface-1:      rgba(255, 255, 255, 0.03);
  --surface-2:      rgba(255, 255, 255, 0.055);
  --surface-3:      rgba(255, 255, 255, 0.08);

  /* Borders */
  --border:         rgba(201, 168, 76, 0.25);
  --border-dim:     rgba(255, 255, 255, 0.07);
  --border-subtle:  rgba(255, 255, 255, 0.07);
  --border-mid:     rgba(255, 255, 255, 0.13);
  --border-gold:    rgba(201, 168, 76, 0.32);
  --navy-border:    rgba(255, 255, 255, 0.07);

  /* Semantic */
  --muted:          rgba(255, 255, 255, 0.60);
  --light:          rgba(255, 255, 255, 0.90);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Outfit', 'DM Sans', sans-serif;

  /* Radii */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;

  /* Shadows */
  --shadow:         0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-sm:      0 4px 16px rgba(0, 0, 0, 0.18);
  --shadow-md:      0 12px 40px rgba(0, 0, 0, 0.28);
  --shadow-lg:      0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-gold:    0 12px 48px rgba(201, 168, 76, 0.18);
  --shadow-glow:    0 0 30px rgba(139, 26, 46, 0.35);

  /* Motion */
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:       180ms;
  --dur-base:       280ms;
  --dur-slow:       480ms;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--text-light);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

img, video, svg, canvas, iframe {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

::selection {
  background: var(--gold-muted);
  color: var(--gold-light);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.35);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-custom {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  position: relative;
}

@media (min-width: 640px) {
  .container-custom { padding-inline: 2rem; }
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container-custom { padding-inline: 2.5rem; }
}

.section-pad { padding: 4rem 1rem; }
.section-pad-sm { padding: 3rem 1rem; }

.section-py {
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .section-pad { padding: 6rem 1.5rem; }
  .section-pad-sm { padding: 4rem 1.5rem; }
  .section-py { padding-block: 7rem; }
}

@media (min-width: 1024px) {
  .section-pad { padding: 6rem 2rem; }
  .section-pad-sm { padding: 4.5rem 2rem; }
  .section-py { padding-block: 8rem; }
}

/* ============================================================
   FLEX & GRID UTILITIES
   ============================================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Standard 2/3/4 column grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================================
   SPACING
   ============================================================ */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-8 { padding-top: 2rem; }
.pb-24 { padding-bottom: 6rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

/* Text */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.1; }
.leading-snug { line-height: 1.3; }
.leading-relaxed { line-height: 1.75; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.08em; }
.tracking-widest { letter-spacing: 0.16em; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.w-px { width: 1px; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.w-2 { width: 0.5rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-24 { height: 6rem; }
.h-64 { height: 16rem; }
.w-64 { width: 16rem; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 64rem; }
.max-w-6xl { max-width: 1140px; }
.max-w-7xl { max-width: 1280px; }

/* Misc */
.overflow-hidden { overflow: hidden; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-100 { opacity: 1; }
.transition-all { transition: all var(--dur-base) var(--ease-out); }
.transition-opacity { transition: opacity var(--dur-base) var(--ease-out); }
.duration-300 { transition-duration: 300ms; }

/* Border radius */
.rounded-full { border-radius: 999px; }
.rounded-xl { border-radius: var(--radius-sm); }
.rounded-2xl { border-radius: var(--radius-md); }
.rounded-3xl { border-radius: var(--radius-lg); }
.rounded-tl-lg { border-top-left-radius: var(--radius-sm); }
.rounded-br-lg { border-bottom-right-radius: var(--radius-sm); }
.rounded-t-xl { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.border-t-2 { border-top: 2px solid; }
.border-b-2 { border-bottom: 2px solid; }
.border-l-2 { border-left: 2px solid; }
.border-r-2 { border-right: 2px solid; }

/* Misc */
.-bottom-5 { bottom: -1.25rem; }
.-right-5 { right: -1.25rem; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-body); }

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-white);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 99px;
}

.gold-line {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  border-radius: 2px;
  margin: 1.25rem 0;
}

.gold-divider {
  width: 56px;
  height: 2px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%);
  border-radius: 99px;
  border: none;
}

.gradient-text,
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--maroon-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: var(--gold); }

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.btn:active { transform: scale(0.97); }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}

.btn:hover::after { transform: translateX(100%); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-muted);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: var(--border-mid);
}
.btn-outline-white:hover {
  background: var(--surface-2);
  border-color: var(--border-gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-maroon,
.btn-red {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  box-shadow: 0 4px 20px rgba(122, 28, 46, 0.35);
}
.btn-maroon:hover,
.btn-red:hover {
  background: var(--maroon-light);
  border-color: var(--maroon-light);
  box-shadow: 0 8px 32px rgba(122, 28, 46, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface-1);
  color: rgba(255, 255, 255, 0.75);
  border-color: var(--border-subtle);
}
.btn-ghost:hover {
  background: var(--surface-3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { font-size: 0.8rem; padding: 0.55rem 1.25rem; }
.btn-lg { font-size: 1rem; padding: 0.95rem 2.25rem; }

@media (max-width: 480px) {
  .btn { width: 100%; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,168,76,0.08) inset;
}

.card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card:hover::before { opacity: 0.6; }

.card-accent-line {
  border-left: 3px solid var(--gold);
  padding-left: calc(1.5rem - 3px);
}

.card-gold-hover:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.14);
}

.sub-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition:
    transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.sub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

/* ============================================================
   ICON BOX
   ============================================================ */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--gold);
  flex-shrink: 0;
  transition:
    background var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-spring);
}

.card:hover .icon-box,
.sub-card:hover .icon-box {
  background: rgba(201, 168, 76, 0.26);
  transform: scale(1.08) rotate(-4deg);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid;
  line-height: 1;
}

.badge-gold {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
}

.badge-maroon,
.badge-red {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(166, 51, 71, 0.45);
  background: rgba(122, 28, 46, 0.25);
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.dot-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-blob-gold {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
}

.glow-blob-maroon {
  background: radial-gradient(circle, rgba(122, 28, 46, 0.22) 0%, transparent 70%);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 6rem 1rem 4rem;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 8rem 1.5rem 5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 10rem 1.5rem 5.5rem;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

@keyframes pulseDot {
  0%  { box-shadow: 0 0 0 0 rgba(139,26,46,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(139,26,46,0); }
  100%{ box-shadow: 0 0 0 0 rgba(139,26,46,0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float { animation: floatY 5s ease-in-out infinite; }

/* ============================================================
   REVEAL ON SCROLL (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.reveal[data-from="bottom"]  { transform: translateY(28px); }
.reveal[data-from="left"]    { transform: translateX(-28px); }
.reveal[data-from="right"]   { transform: translateX(28px); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE GRID HELPERS
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.input-field {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: rgba(255,255,255,0.9);
  background: var(--surface-1);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

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

.input-field:focus {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

/* ============================================================
   PRINT / REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body { background: #fff; color: #000; }
  .glow-blob, .navbar, .footer { display: none; }
}
