/* =============================================
   MELISSA GARNER LEE — Writer Portfolio
   Red · Purple · Black Edition
   ============================================= */

:root {
  /* Core palette */
  --black:        #0a0608;
  --black-soft:   #120d10;
  --black-mid:    #1c1319;
  --black-card:   #211720;

  --purple-deep:  #003a4a;
  --purple-mid:   #006b8b;
  --purple-light: #00c8e8;
  --purple-pale:  #7de8f5;
  --purple-ghost: rgba(0,107,139,0.12);

  --red-deep:     #7a1020;
  --red-mid:      #b01a2e;
  --red-bright:   #d42b42;
  --red-pale:     #f4c5cc;

  --white:        #ffffff;
  --off-white:    #f7f2f8;
  --muted:        #5abccc;
  --border:       rgba(0,200,232,0.2);

  /* Semantic aliases */
  --color-bg:           var(--black);
  --color-bg-alt:       var(--black-soft);
  --color-bg-card:      var(--black-card);
  --color-text:         var(--off-white);
  --color-text-muted:   var(--muted);
  --color-accent:       var(--red-bright);
  --color-accent-alt:   var(--purple-mid);
  --color-accent-light: var(--purple-light);
  --color-accent-pale:  var(--purple-ghost);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-width:  1140px;
  --nav-height: 72px;
  --radius:     4px;
  --shadow:     0 4px 28px rgba(0,0,0,0.4);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.55);
  --glow-red:   0 0 32px rgba(212,43,66,0.25);
  --glow-purp:  0 0 32px rgba(0,200,232,0.3);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── UTILITIES ───────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--purple-light);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .section-label { display: block; }
.section-header--center .section-intro { margin: 0 auto; }

/* Decorative rule */
.rule {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--red-bright), var(--purple-mid));
  margin-bottom: 1.25rem;
  border-radius: 1px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--red-bright);
  color: var(--white);
  border-color: var(--red-bright);
}
.btn--primary:hover {
  background: var(--red-mid);
  border-color: var(--red-mid);
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}

.btn--ghost {
  background: transparent;
  color: var(--purple-pale);
  border-color: rgba(155,89,182,0.45);
}
.btn--ghost:hover {
  background: var(--purple-ghost);
  border-color: var(--purple-light);
  box-shadow: var(--glow-purp);
}

.btn--outline {
  background: transparent;
  color: var(--purple-light);
  border-color: var(--purple-mid);
}
.btn--outline:hover {
  background: var(--purple-mid);
  color: var(--white);
  box-shadow: var(--glow-purp);
}

.btn--full { width: 100%; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10,6,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--red-bright); }

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--red-bright); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 35%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107,45,139,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176,26,46,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  padding: 5rem 2rem 5rem calc((100vw - var(--max-width)) / 2 + 2rem);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--red-bright);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple-light);
  display: block;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image side */
.hero__image-side {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo {
  width: 55%;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) brightness(0.85);
  display: block;
  border-radius: 2px;
}

/* Red + purple color overlay on the photo */
.hero__image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

/* Vertical text on the right edge */
.hero__image-side::after {
  content: 'WRITER · THERAPIST · STORYTELLER';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  z-index: 2;
}

/* All-edge fade so image dissolves into the dark background */
.hero__image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  var(--black) 0%, transparent 40%),
    linear-gradient(to left,   var(--black) 0%, transparent 25%),
    linear-gradient(to bottom, var(--black) 0%, transparent 25%),
    linear-gradient(to top,    var(--black) 0%, transparent 25%);
  z-index: 2;
  pointer-events: none;
}

/* Bottom fade */
.hero__bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 3;
  pointer-events: none;
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--black-soft);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Photo column */
.about__photo-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about__photo-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.about__photo {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  object-position: center 10%;
  filter: contrast(1.1) brightness(0.88);
}

/* Colored border / frame accent */
.about__photo-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--red-deep), var(--purple-mid), var(--red-bright));
  z-index: -1;
  border-radius: 3px;
}

/* Subtle color-wash overlay on about photo */
.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(59,26,74,0.55) 100%
  );
  pointer-events: none;
}

.about__photo-name {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.about__photo-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff0000;
  margin-top: 0.25rem;
}

.about__photo-frame--second {
  margin-top: 1.25rem;
}

.about__photo--second {
  object-position: center 20%;
}

.about__text-col p {
  color: var(--purple-pale);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about__credentials {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.credential { display: flex; flex-direction: column; gap: 0.25rem; }
.credential__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.credential__value {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── WRITING ─────────────────────────────────── */
.writing {
  padding: 8rem 0;
  background: var(--black);
}

.articles__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.article--featured {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red-bright);
  transition: box-shadow var(--transition);
}
.article--featured:hover { box-shadow: var(--shadow-lg), var(--glow-red); }

.article__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.article__pub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(212,43,66,0.12);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
}

.article__date { font-size: 0.8rem; color: var(--muted); }
.article__tag  { font-size: 0.75rem; color: var(--muted); font-style: italic; }

.article__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--white);
}

.article__excerpt {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.article__quote {
  background: rgba(107,45,139,0.1);
  border-left: 2px solid var(--purple-mid);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article__quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--purple-pale);
  line-height: 1.6;
}

.article__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red-bright);
  letter-spacing: 0.04em;
  transition: letter-spacing var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.article__link:hover { letter-spacing: 0.08em; color: var(--purple-light); }

.themes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.theme-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.theme-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple-mid);
  box-shadow: var(--glow-purp);
}

.theme-card__icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--purple-light);
}
.theme-card h4 {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.theme-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── NOVEL ───────────────────────────────────── */
.novel {
  padding: 8rem 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.novel::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,45,139,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.novel__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.novel__tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--purple-light);
  margin-bottom: 1.5rem;
}

.novel__text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.novel__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.novel__status-indicator {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}

/* Vintage photo */
.novel__photo {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: contrast(1.05) brightness(0.9);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg), 4px 4px 0 rgba(107,45,139,0.2);
}

/* Book cover */
.novel__visual { display: flex; justify-content: center; }
.novel__book {
  display: flex;
  filter: drop-shadow(-8px 16px 40px rgba(0,0,0,0.7))
          drop-shadow(0 0 30px rgba(107,45,139,0.25));
}
.novel__book-spine {
  width: 26px;
  background: linear-gradient(to right, #1a0820, var(--purple-deep));
  border-radius: 2px 0 0 2px;
}
.novel__book-cover {
  width: 210px;
  height: 290px;
  background: linear-gradient(145deg, var(--red-deep) 0%, var(--purple-deep) 50%, #0a0608 100%);
  border-radius: 0 3px 3px 0;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155,89,182,0.2);
}
/* Decorative lines on cover */
.novel__book-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red-bright), var(--purple-mid));
}
.novel__book-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.novel__book-author {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214,184,232,0.6);
}
.novel__book-decoration {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  opacity: 0.4;
}

/* ── QUOTE BREAK ─────────────────────────────── */
.quote-break {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
}
.quote-break::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 20rem;
  color: rgba(107,45,139,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
}

/* ── THERAPY NOTE ────────────────────────────── */
.therapy-note {
  padding: 5rem 0;
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.therapy-note__inner { max-width: 680px; }
.therapy-note p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--black-soft);
}
.contact__form { max-width: 680px; margin: 0 auto; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form__group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--black-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(155,143,163,0.4); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(107,45,139,0.15);
}
.form__group select option { background: var(--black-card); }
.form__group textarea { resize: vertical; }

.form__success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(34,197,94,0.1);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  color: var(--muted);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.footer__tagline { font-size: 0.78rem; }

.footer__links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--red-bright); }

.footer__copy {
  font-size: 0.72rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(155,143,163,0.5);
}

/* ── ANIMATIONS ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero__content { padding-left: 2rem; }
  .about__grid { grid-template-columns: 300px 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image-side { display: none; }
  .hero__content { padding: 6rem 2rem 5rem; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__subtitle { margin: 0 auto 2.5rem; }
  .hero__cta { justify-content: center; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__photo-wrap { position: static; max-width: 340px; margin: 0 auto; }
  .articles__grid { grid-template-columns: 1fr; }
  .themes__grid { grid-template-columns: 1fr 1fr; }
  .novel__grid { grid-template-columns: 1fr; gap: 3rem; }
  .novel__visual { order: -1; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .hero__title { font-size: 3rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 320px; }
  .themes__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 1rem; }
}
