*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0c0c0c;
  --bg-elevated: #141414;
  --surface: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #9ca3af;
  --accent: #d4a574;
  --accent-dim: rgba(212, 165, 116, 0.15);
  --border: #262626;
  --error: #dc6b6b;
  --success: #6bdc8a;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideUpLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

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

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@keyframes scrollDotPulse {
  0%, 100% { opacity: 0.6; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(6px) scale(1.2); }
}

@keyframes labelLineIn {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes arrowSlide {
  from { transform: translateX(0); }
  to { transform: translateX(4px); }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Background */
.bg-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-dim), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 60%, rgba(212, 165, 116, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(212, 165, 116, 0.04), transparent 50%),
    var(--bg);
}

.bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 165, 116, 0.12), transparent 55%);
  pointer-events: none;
  animation: bgPulse 8s ease-in-out infinite;
}

.bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal .reveal-step,
  .btn,
  .nav-link,
  .cta-card,
  .form-card,
  .page-hero-content,
  .scroll-dot,
  .bg-wrap::before,
  .section-label::after,
  .steps li,
  .footer-text,
  .instagram-embed,
  .section-media,
  .section-media img,
  .image-cycle-track {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal.visible .steps li,
  .reveal.visible .footer-text {
    opacity: 1;
    transform: none;
  }
  .reveal.visible .section-media img {
    opacity: 1;
    transform: none;
  }
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart),
              transform 0.4s var(--ease-out-quart);
  transform: translateY(0);
}

.header.scrolled {
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

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

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.25s var(--ease-out-quart), transform 0.25s var(--ease-out-quart);
}

.logo:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease-out-quart);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link-active {
  color: var(--accent);
}

.nav-link-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav toggle (mobile hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  border-color: var(--accent);
  background: rgba(212, 165, 116, 0.08);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  margin: 0 auto;
  transition: transform 0.3s var(--ease-out-quart), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 56rem;
}

.hero-content {
  max-width: 38rem;
}

.hero-label {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(212, 165, 116, 0.2);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.hero-cta .btn {
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-quart),
              background 0.25s ease;
}

.hero-cta .btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25);
}

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

.btn-secondary:hover:not(:disabled) {
  background: var(--accent-dim);
  color: var(--accent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 769px) {
  .hero-content {
    text-align: left;
  }
  .hero-cta {
    justify-content: flex-start;
  }
}

.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.4);
  animation: scrollDotPulse 2.5s ease-in-out infinite;
}

/* Image cycle: shifting strip of multiple images */
.image-cycle-section {
  padding: 3rem 0;
  overflow: hidden;
}

.image-cycle-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.image-cycle-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: imageCycleShift 35s linear infinite;
}

.image-cycle-slide {
  flex: 0 0 min(280px, 75vw);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.image-cycle-slide img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

@keyframes imageCycleShift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reveal: smooth scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal.visible .reveal-step {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s var(--ease-out-expo) forwards;
}

.reveal.visible .reveal-step:nth-child(1) { animation-delay: 0.06s; }
.reveal.visible .reveal-step:nth-child(2) { animation-delay: 0.14s; }
.reveal.visible .reveal-step:nth-child(3) { animation-delay: 0.22s; }
.reveal.visible .reveal-step:nth-child(4) { animation-delay: 0.3s; }
.reveal.visible .reveal-step:nth-child(5) { animation-delay: 0.38s; }
.reveal.visible .reveal-step:nth-child(6) { animation-delay: 0.46s; }
.reveal.visible .reveal-step:nth-child(7) { animation-delay: 0.54s; }
.reveal.visible .reveal-step:nth-child(8) { animation-delay: 0.62s; }
.reveal.visible .reveal-step:nth-child(9) { animation-delay: 0.7s; }
.reveal.visible .reveal-step:nth-child(10) { animation-delay: 0.78s; }

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background: rgba(20, 20, 20, 0.5);
}

.section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-inner-centered {
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-inner-centered .section-label,
.section-inner-centered .section-title {
  text-align: center;
}

.section-inner-centered .section-text {
  text-align: center;
}

.section-inner-reverse .section-content {
  order: 2;
}

.section-inner-reverse .section-media {
  order: 1;
}

.section-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-media img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.reveal.visible .section-media img {
  animation: fadeInScale 0.7s var(--ease-out-expo) 0.2s both;
}

@media (max-width: 768px) {
  .section-inner,
  .section-inner-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-inner-reverse .section-content,
  .section-inner-reverse .section-media {
    order: unset;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  position: relative;
}

.reveal.visible .section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  animation: labelLineIn 0.6s var(--ease-out-expo) forwards;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-text.center {
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

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

.section-cta .section-title {
  margin-bottom: 0.5rem;
}

.instagram-embed {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.reveal.visible .instagram-embed {
  animation: fadeInScale 0.8s var(--ease-out-expo) 0.2s both;
}

.instagram-embed .instagram-media {
  max-width: 540px;
  min-width: 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.4s var(--ease-out-quart);
}

.instagram-embed .instagram-media:hover {
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.15);
}

/* Media placeholders (add your images: background-image on .media-about / .media-how) */
.section-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.media-placeholder {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
  border: 1px solid var(--border);
}

.media-about {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, var(--surface) 50%, var(--border) 100%);
}
/* Replace with your image: background: url('/images/hero-bg.jpg') center/cover; */

.media-how {
  background: linear-gradient(225deg, var(--surface) 0%, rgba(212, 165, 116, 0.06) 100%);
}

/* Steps list */
.steps {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.steps li {
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.reveal.visible .steps li {
  opacity: 1;
  transform: translateX(0);
}

.reveal.visible .steps li:nth-child(1) { transition-delay: 0.2s; }
.reveal.visible .steps li:nth-child(2) { transition-delay: 0.35s; }
.reveal.visible .steps li:nth-child(3) { transition-delay: 0.5s; }

.steps li:last-child {
  margin-bottom: 0;
}

/* CTA grid */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 44rem;
  margin: 0 auto;
  justify-items: center;
}

.cta-card {
  width: 100%;
  max-width: 22rem;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: left;
  transition: border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart),
              transform 0.35s var(--ease-out-expo);
}

.cta-card:hover {
  border-color: rgba(212, 165, 116, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px) scale(1.02);
}

.cta-grid-links {
  max-width: 36rem;
}

.cta-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}

.cta-card-link:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(212, 165, 116, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.cta-card-arrow {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 1rem;
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
}

.cta-card-link:hover .cta-card-arrow {
  transform: translateX(6px);
}

.cta-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-card-desc {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.required {
  color: var(--accent);
}

.field input {
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart);
}

.field input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-quart),
              background 0.25s ease, opacity 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  align-self: flex-start;
}

.btn:hover:not(:disabled) {
  background: #e0b080;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
}

.btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.25);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin: 0;
  font-size: 0.875rem;
  min-height: 1.4em;
}

.form-message:not(:empty) {
  animation: fadeIn 0.3s ease;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--error);
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal.visible .footer-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* ========== Page layouts (waitlist, get-a-call) ========== */
.page-main {
  padding-top: 4rem;
  min-height: 100vh;
}

.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero-content {
  max-width: 28rem;
  animation: fadeInUp 0.7s var(--ease-out-expo) 0.1s both;
}

.page-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-sub {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-form-section {
  padding: 2rem 0 5rem;
}

.container-narrow {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.form-card {
  padding: 2.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.form-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.form-card-desc {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-card-footer {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-card-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.form-card-footer a:hover {
  text-decoration: underline;
}

.form-lg .field { margin-bottom: 0.25rem; }
.form-lg .field input { padding: 0.75rem 1rem; }
.btn-block { width: 100%; align-self: stretch; }

/* Page hero: centered when no image */
.page-hero-content-centered {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Form card entrance on subpages */
.page-form-section .form-card {
  animation: fadeInScale 0.6s var(--ease-out-expo) 0.15s both;
}

/* ========== Mobile ========== */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Header: show hamburger, collapse nav */
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    min-height: 100vh;
    flex-direction: column;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background-color: #0c0c0c;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out-quart);
    z-index: 99;
    align-items: stretch;
    justify-content: flex-start;
  }

  .header.nav-open .nav {
    transform: translateX(0);
  }

  .header.nav-open {
    background: #0c0c0c;
    box-shadow: 0 1px 0 var(--border);
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }

  .header.nav-open .nav-backdrop {
    display: block;
  }

  .nav-link {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 5rem 1rem 3rem;
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 20rem;
    min-height: 48px;
    align-self: center;
  }

  .hero-scroll-hint {
    bottom: 1.5rem;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-inner-centered {
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  .section-text {
    font-size: 0.95rem;
  }

  .section-text.center {
    margin-bottom: 1.5rem;
  }

  /* Instagram embed: no min-width overflow */
  .instagram-embed {
    min-height: 280px;
    margin-top: 1.5rem;
    width: 100%;
    overflow: hidden;
  }

  .instagram-embed .instagram-media,
  .instagram-embed iframe {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* CTA grid: single column, full width */
  .cta-grid-links {
    max-width: 100%;
    gap: 1.25rem;
  }

  .cta-card {
    max-width: none;
    padding: 1.5rem 1.25rem;
    min-height: 44px;
  }

  .cta-card-arrow {
    padding-top: 0.75rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }

  /* Steps list */
  .steps {
    padding-left: 1.25rem;
    font-size: 0.95rem;
  }

  .steps li {
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .hero {
    padding: 4.5rem 0.75rem 2.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .form-card {
    padding: 1.5rem 1.25rem;
  }

  .page-hero {
    padding: 4rem 0 2rem;
  }

  .page-title {
    font-size: 1.6rem;
  }
}
