/* michellewargo.com — redesigned to match MichelleWargoMedia style */

:root {
  --cream:        #FAF7F2;
  --warm-white:   #FFFCF8;
  --magenta:      #C4145A;
  --magenta-light:#E0357A;
  --magenta-pale: #FAE8EF;
  --royal:        #1A52A8;
  --navy:         #0F1E3A;
  --gold:         #C9921A;
  --gold-light:   #E8B240;
  --sand:         #EDE5D8;
  --ink:          #0F1218;
  --ink-soft:     #2D3340;
  --muted:        #7A7E8A;
  --sage:         #5A8A6A;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --radius:       2px;
  --max-w:        1160px;
  --transition:   0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: var(--magenta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--magenta-light); }
ul { list-style: none; }

/* ---------- Custom Cursor ---------- */
#cursor {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--magenta);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: multiply;
}
#cursor.grow { width: 48px; height: 48px; opacity: .4; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3.5rem;
}

/* ---------- Section Shared ---------- */
.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--magenta);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--magenta); }
.section-intro {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--magenta);
  color: white;
  padding: .85rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background var(--transition), transform .2s;
  display: inline-block;
  cursor: none;
}
.btn-primary:hover { background: var(--magenta-light); color: white; transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,252,248,.25);
  color: var(--warm-white);
  padding: .85rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .86rem;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
  cursor: none;
}
.btn-ghost:hover { border-color: rgba(255,252,248,.6); background: rgba(255,252,248,.06); color: var(--warm-white); }
.btn-outline-dark {
  border: 1.5px solid var(--sand);
  color: var(--ink-soft);
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  display: inline-block;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: none;
}
.btn-outline-dark:hover { background: var(--magenta); border-color: var(--magenta); color: white; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3.5rem;
  background: #0F1E3A;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,20,90,0.1);
  transition: padding .3s, box-shadow .3s;
}
nav.scrolled { padding: .7rem 3.5rem; box-shadow: 0 2px 24px rgba(15,18,24,.08); }
.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: .01em;
}
.nav-logo span { color: var(--magenta-light); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
  cursor: none;
}
.nav-links a:hover { color: #ffffff; }
.nav-cta {
  background: var(--magenta) !important;
  color: white !important;
  padding: .5rem 1.3rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--navy) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--warm-white);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding-top: 68px;
  overflow: hidden;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1A1A2E 0%, #16213E 40%, #0F3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-monogram-ring {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(196,20,90,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-monogram-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(232,178,64,.25);
}
.hero-monogram-letter {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255,252,248,.9);
  line-height: 1;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(15,30,58,.5) 100%),
              linear-gradient(to top, rgba(15,30,58,.3) 0%, transparent 45%);
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  z-index: 3;
  background: var(--magenta);
  color: white;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,20,90,.18) 0%, transparent 70%);
}
.hero-content::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,82,168,.25) 0%, transparent 70%);
}
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold-light);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-headline em { font-style: italic; color: var(--magenta-light); }
.hero-sub {
  font-size: .98rem;
  line-height: 1.78;
  font-weight: 300;
  color: rgba(255,252,248,.7);
  max-width: 380px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,252,248,.08);
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,252,248,.08);
}
.hero-stat {
  padding: 1.25rem 1.5rem;
  background: rgba(255,252,248,.03);
  transition: background .2s;
}
.hero-stat:hover { background: rgba(255,252,248,.07); }
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { font-size: .7rem; color: rgba(255,252,248,.5); font-weight: 500; line-height: 1.4; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
  background: var(--magenta);
  padding: .85rem 0;
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  flex-shrink: 0;
}
.marquee-item {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item::after { content: '✦'; color: rgba(255,255,255,.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--warm-white);
  padding: 7rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-outer {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1A1A2E 0%, #16213E 50%, var(--magenta) 150%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(15,30,58,.25) 0%, transparent 40%);
}
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-monogram {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,252,248,.15);
  position: relative;
  z-index: 2;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  z-index: 3;
  background: var(--magenta);
  color: white;
  padding: 1.5rem;
  border-radius: 3px;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 8px 32px rgba(196,20,90,.3);
}
.accent-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.accent-text {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .85;
}
.about-bio {
  font-size: .96rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.pillars { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: 3px;
  border-left: 3px solid var(--royal);
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateX(5px); box-shadow: 0 4px 20px rgba(15,18,24,.08); }
.pillar:nth-child(2) { border-left-color: var(--magenta); }
.pillar:nth-child(3) { border-left-color: var(--gold); }
.pillar-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.pillar-title { font-weight: 700; font-size: .88rem; color: var(--ink); margin-bottom: .2rem; }
.pillar-desc { font-size: .81rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   RESULTS STRIP
   ============================================================ */
.results-strip { background: var(--navy); padding: 4rem 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,252,248,.08);
  border: 1px solid rgba(255,252,248,.08);
}
.result-block {
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(255,252,248,.02);
  transition: background .2s;
}
.result-block:hover { background: rgba(255,252,248,.06); }
.result-big {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .4rem;
}
.result-desc { font-size: .72rem; color: rgba(255,252,248,.5); line-height: 1.5; font-weight: 500; }

/* ============================================================
   WORK SECTIONS (Film, TV, Voice)
   ============================================================ */
.work-section { padding: 7rem 0; }
.work-section:nth-of-type(odd)  { background: var(--cream); }
.work-section:nth-of-type(even) { background: var(--warm-white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: white;
  border: 1px solid var(--sand);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.card:hover { box-shadow: 0 12px 40px rgba(15,18,24,.1); transform: translateY(-5px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 1.9rem; margin-bottom: 1.2rem; display: block; }
.card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.card-body { font-size: .84rem; line-height: 1.7; color: var(--muted); }
.card-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--magenta);
  background: var(--magenta-pale);
  padding: .3rem .8rem;
  border-radius: var(--radius);
}

/* Featured card — dark */
.card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.card-featured::before { background: var(--gold-light); transform: scaleX(1); }
.card-featured .card-title { color: white; }
.card-featured .card-body  { color: rgba(255,252,248,.72); }
.card-featured .card-tag   { color: var(--gold-light); background: rgba(232,178,64,.15); }
.card-featured-icon { font-size: 2.8rem; line-height: 1; padding-top: .2rem; flex-shrink: 0; }

/* Segments list (radio) */
.segments-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.segment-item {
  background: white;
  border-radius: 3px;
  border: 1px solid var(--sand);
  border-left: 3px solid var(--magenta);
  padding: 1.2rem 1.4rem;
  font-size: .88rem;
  color: var(--muted);
  transition: transform .2s, box-shadow .2s;
}
.segment-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(15,18,24,.07); }
.segment-item strong { display: block; color: var(--ink); font-size: .93rem; margin-bottom: .25rem; }

/* ============================================================
   WARGO WORKS
   ============================================================ */
#business {
  background: var(--navy);
  padding: 7rem 0;
}
#business .section-label,
#realestate .section-label { color: var(--gold-light); }
#business .section-label::before,
#realestate .section-label::before { background: var(--gold-light); }
#business .section-title,
#realestate .section-title { color: var(--warm-white); }
#business .section-title em,
#realestate .section-title em { color: var(--magenta-light); }
#business .section-intro,
#realestate .section-intro { color: rgba(255,252,248,.65); }

.ww-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ww-services { display: flex; flex-direction: column; gap: 1rem; }
.ww-service {
  background: rgba(255,252,248,.05);
  border: 1px solid rgba(255,252,248,.09);
  border-radius: 3px;
  border-left: 3px solid var(--magenta);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .2s;
}
.ww-service:hover { background: rgba(255,252,248,.09); }
.ww-service:nth-child(2) { border-left-color: var(--gold-light); }
.ww-service:nth-child(3) { border-left-color: var(--royal); }
.ww-service:nth-child(4) { border-left-color: var(--sage); }
.ww-service-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.ww-service-title { font-weight: 700; color: white; margin-bottom: .2rem; font-size: .92rem; }
.ww-service-desc  { font-size: .82rem; color: rgba(255,252,248,.55); line-height: 1.55; }

.ww-cta-box {
  background: rgba(255,252,248,.05);
  border: 1px solid rgba(196,20,90,.3);
  border-radius: 3px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.ww-cta-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}
.ww-cta-desc { font-size: .92rem; color: rgba(255,252,248,.6); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--cream);
  padding: 7rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-blurb { font-size: .96rem; line-height: 1.78; color: var(--ink-soft); font-weight: 300; margin-bottom: 2rem; }
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--radius);
  background: white;
  border: 1.5px solid var(--sand);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: none;
}
.social-link:hover { background: var(--magenta); border-color: var(--magenta); color: white; }
.contact-note {
  background: var(--magenta-pale);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  border-left: 3px solid var(--magenta);
  margin-top: 2rem;
}
.contact-note-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--magenta);
  margin-bottom: .4rem;
}
.contact-note-text { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  background: white;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  cursor: text;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(196,20,90,.1);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit {
  cursor: none;
  background: var(--magenta);
  color: white;
  padding: .95rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .25s, transform .2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--navy); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 900;
  color: var(--warm-white);
}
.footer-logo span { color: var(--magenta); }
.footer-copy { font-size: .73rem; color: rgba(255,252,248,.3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .73rem; color: rgba(255,252,248,.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--magenta); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: .7rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-photo { height: 55vh; min-height: 380px; }
  .hero-content { padding: 3.5rem 2rem; }
  .about-grid, .ww-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0F1E3A;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15,18,24,.1);
    gap: 1.2rem;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  section, .work-section, #about, #business, #contact { padding: 4rem 0; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
