/* ===== aureia.app — Coming Soon ===== */
/* Design: Warm editorial photography, Font: Instrument Serif + DM Sans, Palette: Warm cream #FAF8F5 + Amber #C8873E, Signature: Cinematic image gallery grid with golden hour warmth */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; }

:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EDE6;
  --surface: #FFFFFF;
  --border: #E8E2D9;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);

  --text: #1A1714;
  --text-secondary: #7A7168;
  --text-tertiary: #A89E93;
  --text-light: #F5F0EB;
  --text-light-secondary: #B8AFA5;

  --accent: #C8873E;
  --accent-hover: color-mix(in srgb, var(--accent), black 12%);
  --accent-subtle: rgba(200, 135, 62, 0.08);
  --accent-text: #FFFFFF;

  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --max-width: 1200px;

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1rem + 1.5vw, 2rem);
  --text-2xl: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  --text-display: clamp(2.5rem, 1.5rem + 4.5vw, 4.5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* --- Grain overlay --- */
.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  filter: url(#grain);
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 9999;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.container--narrow {
  max-width: 780px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text) !important;
  letter-spacing: -0.015em;
  line-height: 1;
}

.logo mark {
  background: none;
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch {
  display: flex;
  gap: 0.125rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem;
}

.lang-switch a {
  display: block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border-radius: 999px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switch a:hover { color: var(--text-secondary); }

.lang-switch a.active {
  background: var(--text);
  color: var(--bg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: var(--text-sm);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: #2A2520;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-text);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--accent-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(200, 135, 62, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--accent {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(200, 135, 62, 0.12);
}

.badge--light {
  background: rgba(255,255,255,0.1);
  color: var(--text-light-secondary);
  border: 1px solid rgba(255,255,255,0.1);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========================= */
/* --- HERO SECTION ---      */
/* ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1A1714;
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.12) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 23, 20, 0.82) 0%,
    rgba(26, 23, 20, 0.5) 45%,
    rgba(200, 135, 62, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 8rem 0 5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lead {
  font-size: var(--text-lg);
  color: var(--text-light-secondary);
  max-width: 500px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.hero .site-header .logo { color: var(--text-light) !important; }

/* Waitlist forms (contact_form plugin) */
.hero-form,
.cta-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin-bottom: 1rem;
}

.hero-form .form-field,
.cta-form .form-field {
  flex: 1;
  margin: 0;
}

.hero-form .form-field label,
.cta-form .form-field label {
  display: none;
}

.hero-form input[type="email"],
.hero-form input[type="text"] {
  width: 100%;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  font-family: var(--font);
  font-size: var(--text-sm);
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s;
}

.hero-form input::placeholder { color: var(--text-light-secondary); }
.hero-form input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.cta-form input[type="email"],
.cta-form input[type="text"] {
  width: 100%;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color 0.25s;
}

.cta-form input::placeholder { color: var(--text-tertiary); }
.cta-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 135, 62, 0.08);
}

.hero-form button[type="submit"],
.cta-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: var(--text-sm);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--accent);
  color: var(--accent-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-form button[type="submit"]:hover,
.cta-form button[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(200, 135, 62, 0.2);
}

/* Honeypot field must stay hidden */
.hero-form .form-field[style*="display:none"],
.hero-form .form-field[style*="display: none"],
.cta-form .form-field[style*="display:none"],
.cta-form .form-field[style*="display: none"] {
  display: none !important;
}

/* Success/error message styling */
.hero-form .form-message,
.cta-form .form-message {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  text-align: center;
  margin-top: 0.5rem;
}

.hero-form .form-message {
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
}

.cta-form .form-message {
  background: var(--accent-subtle);
  color: var(--accent);
}

.hero-hint {
  font-size: var(--text-xs);
  color: var(--text-light-secondary);
  opacity: 0.7;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-secondary);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-light-secondary), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ========================= */
/* --- SECTION BASICS ---    */
/* ========================= */
.section {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  position: relative;
}

.section--warm {
  background: var(--bg-warm);
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-desc {
  font-size: var(--text-base);
  max-width: 500px;
  line-height: 1.65;
  font-weight: 300;
}

.section-desc { color: var(--text-secondary); }

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- Divider --- */
.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ========================= */
/* --- GALLERY SHOWCASE ---  */
/* ========================= */
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.05);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(26,23,20,0.7) 0%, transparent 100%);
  color: var(--text-light);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= */
/* --- FEATURE GRID ---      */
/* ========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--accent-subtle);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  font-weight: 300;
}

.feature-card p { color: var(--text-secondary); }

/* ========================= */
/* --- SPLIT CONTENT ---     */
/* ========================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.93) contrast(1.08);
}

.split-text .section-title {
  font-size: var(--text-xl);
}

.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.split-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* ========================= */
/* --- PRICING ---           */
/* ========================= */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -0.6rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.pricing-period {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-period { color: var(--text-secondary); }

.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.pricing-price small {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 300;
}

.pricing-price small { color: var(--text-secondary); }

.pricing-note {
  font-size: var(--text-xs);
  margin-bottom: 1.5rem;
}

.pricing-note { color: var(--text-tertiary); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  font-weight: 300;
}

.pricing-features li { color: var(--text-secondary); }

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15rem;
}

/* ========================= */
/* --- CTA SECTION ---       */
/* ========================= */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .section-desc {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.cta-section .cta-form {
  margin: 0 auto;
}

.cta-hint {
  font-size: var(--text-xs);
  margin-top: 0.75rem;
}

.cta-hint { color: var(--text-tertiary); }

/* Decorative glow */
.cta-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 135, 62, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ========================= */
/* --- USP STRIP ---         */
/* ========================= */
.usp-strip {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 400;
}

.usp-item { color: var(--text-secondary); }

.usp-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ========================= */
/* --- FOOTER ---            */
/* ========================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  background: var(--bg);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-text {
  color: var(--text-tertiary);
  font-size: var(--text-xs);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-secondary); }

/* Legal content */
.legal-content {
  max-width: 720px;
  line-height: 1.8;
  color: var(--text);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin: 3rem 0 1.5rem;
  letter-spacing: -0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}
.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.legal-content strong { color: var(--text); }
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content em {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* Photo credits */
.photo-credits {
  color: var(--text-tertiary);
  font-size: 0.65rem;
  text-align: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.photo-credits a { color: var(--text-tertiary); }
.photo-credits a:hover { color: var(--text-secondary); }

/* ========================= */
/* --- ANIMATIONS ---        */
/* ========================= */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  --i: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 100ms);
}

.visible .stagger-item,
.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= */
/* --- RESPONSIVE ---        */
/* ========================= */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-showcase { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse { direction: ltr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 380px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 7rem 0 4rem; }
  .hero-form,
  .cta-form { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-showcase { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .usp-strip { flex-direction: column; align-items: center; gap: 0.75rem; }
  .site-footer .container { flex-direction: column; text-align: center; }
  .scroll-indicator { display: none; }
}
