/* ============================================================
   Evolving 50 — editorial luxury redesign
   Palette: dusty blue · dusty rose · charcoal · warm ivory/blush
   Same tokens & photography as evolving50.com — elevated presentation
   ============================================================ */

:root {
  --ivory:      #fbf7f3;
  --cream:      #f4ece6;
  --blush:      #f3e7e9;
  --blush-deep: #e9d6da;
  --rose:       #c19aa3;
  --rose-deep:  #a8757f;
  --blue:       #5e7e96;
  --blue-deep:  #3f5c72;
  --charcoal:   #2f2b2c;
  --ink:        #4a4446;
  --muted:      #877e80;
  --gold:       #b08d57;
  --white:      #ffffff;

  --shadow-sm: 0 6px 18px rgba(63, 92, 114, .08);
  --shadow-md: 0 18px 50px rgba(63, 92, 114, .14);
  --shadow-lg: 0 40px 90px -30px rgba(47, 43, 44, .38);
  --radius: 18px;

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Dancing Script", cursive;
  --sans: "Jost", system-ui, sans-serif;

  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: .3px; }
.script { font-family: var(--script); }
em { font-style: italic; }

/* Tinted text-selection for a designed feel */
::selection { background: var(--rose-deep); color: var(--ivory); }

/* ---------- Grain / atmosphere overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
section { padding: clamp(64px, 9vw, 130px) clamp(22px, 6vw, 96px); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .9em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--rose-deep), transparent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-deep));
}

.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .9em 2em;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 400;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
}
.btn-primary { background: var(--charcoal); color: var(--ivory); box-shadow: var(--shadow-sm); }
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--blue-deep), var(--rose-deep));
  opacity: 0; transition: opacity .35s ease; z-index: -1;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--white); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost { color: var(--charcoal); border-color: var(--blush-deep); background: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); transform: translateY(-3px); }
.btn-outline { color: var(--charcoal); border-color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }

/* ---------- Announcement bar ---------- */
.announce {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
}
.announce-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 0 rgba(193,154,163,.7);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(193,154,163,.6); }
  70% { box-shadow: 0 0 0 7px rgba(193,154,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,154,163,0); }
}
.announce a { color: var(--rose); transition: color .2s; }
.announce a:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 243, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 rgba(47,43,44,.06), 0 14px 40px -22px rgba(63,92,114,.4); background: rgba(251,247,243,.92); }

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(22px, 6vw, 96px);
}

.brand { display: inline-flex; align-items: baseline; gap: .12em; }
.brand-script { font-family: var(--script); font-size: 1.95rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.brand-script.light { color: var(--ivory); }
.brand-num { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--rose-deep); transform: translateY(-.4em); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--rose-deep); transition: width .25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--charcoal); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--blush);
  padding: .65em 1.4em;
  border-radius: 999px;
  color: var(--rose-deep) !important;
  transition: background .25s, color .25s, transform .25s;
}
.nav-cta:hover { background: var(--rose-deep); color: var(--white) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(40px, 7vw, 96px);
  padding-bottom: clamp(56px, 8vw, 110px);
}
.hero-glow {
  position: absolute;
  inset: -20% -30% auto auto;
  width: 70vw; max-width: 760px; aspect-ratio: 1;
  background:
    radial-gradient(circle at 65% 35%, rgba(193,154,163,.40), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(94,126,150,.28), transparent 62%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

.hero-text .eyebrow { margin-bottom: 26px; }
.hero h1 { display: flex; flex-direction: column; line-height: .96; margin-bottom: 28px; }
.hero h1 .script {
  font-size: clamp(3.2rem, 7.4vw, 5.8rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .04em;
}
.hero h1 .serif {
  font-size: clamp(1.9rem, 3.7vw, 3.1rem);
  font-weight: 500;
  color: var(--charcoal);
  font-style: italic;
}
.hero h1 .serif em { color: var(--rose-deep); font-style: italic; }
.hero-lede { max-width: 30rem; font-size: 1.12rem; color: var(--ink); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 4vw, 44px);
  border-top: 1px solid var(--blush-deep);
  padding-top: 26px;
}
.hero-meta li { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .serif { font-size: 1.5rem; color: var(--charcoal); font-weight: 600; line-height: 1; }
.hero-meta small { font-size: .76rem; letter-spacing: .04em; color: var(--muted); }

.hero-image { position: relative; }
.hero-frame {
  position: relative;
  z-index: 2;
  border-radius: 46% 54% 52% 48% / 56% 50% 50% 44%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 7px solid var(--white);
  background: var(--blush);
  will-change: transform;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
/* Decorative outlined ring echoing the brand mark */
.hero-ring {
  position: absolute;
  inset: -7% -6% -10% -8%;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  border-right-color: transparent;
  border-bottom-color: var(--blue);
  z-index: 1;
  will-change: transform;
}
.hero-badge {
  position: absolute;
  z-index: 3;
  bottom: -20px; left: -16px;
  background: var(--charcoal);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.hero-badge img { width: 92px; height: auto; }
.hero-chip {
  position: absolute;
  z-index: 3;
  background: rgba(251,247,243,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--blush-deep);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
}
.hero-chip .script { color: var(--rose-deep); font-size: 1.3rem; font-weight: 600; }
.hero-chip--top { top: 6%; right: -10px; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-scroll {
  position: absolute;
  left: 0; bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll i {
  width: 44px; height: 1px; background: var(--muted); position: relative; overflow: hidden;
}
.hero-scroll i::after {
  content: ""; position: absolute; inset: 0; width: 14px; background: var(--rose-deep);
  animation: trace 2.2s ease-in-out infinite;
}
@keyframes trace { 0% { transform: translateX(-14px); } 100% { transform: translateX(44px); } }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--blue-deep);
  color: var(--cream);
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid rgba(255,255,255,.08);
}
.strip-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: .06em;
}
.strip-track i { color: var(--rose); font-style: normal; font-size: .8rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Favorites ---------- */
.favorites { position: relative; background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 6vw, 78px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); color: var(--charcoal); margin-bottom: 14px; line-height: 1.04; }

.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  border: 1px solid rgba(193,154,163,.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* Editorial stagger — break the flat 4-in-a-row */
.card:nth-child(even) { transform: translateY(26px); }
.card::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
  z-index: 3;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.card:nth-child(even):hover { transform: translateY(16px); }
.card:hover::before { transform: scaleX(1); }

.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--blush);
}
.card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-index {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 2;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .1em;
  font-weight: 600;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(47,43,44,.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 26px 30px;
  flex: 1;
}
.card h3 { font-weight: 600; font-size: 1.6rem; color: var(--charcoal); margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--muted); margin-bottom: 22px; flex: 1; text-align: left; }
.card-link { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); transition: letter-spacing .25s, gap .25s; }
.card:hover .card-link { letter-spacing: .24em; }

/* ---------- About ---------- */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 7px solid var(--white);
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--rose);
  border-radius: var(--radius);
  z-index: -1;
}
.about-tag {
  position: absolute;
  bottom: -18px; right: 18px;
  background: var(--charcoal);
  color: var(--blush);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.about-text .eyebrow { margin-bottom: 18px; }
.about-text h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); color: var(--charcoal); margin-bottom: 24px; line-height: 1.08; }
.about-text h2 em { color: var(--rose-deep); }
.about-text p { margin-bottom: 18px; font-size: 1.06rem; max-width: 36rem; }
.about-text p:first-of-type { position: relative; padding-left: 22px; }
.about-text p:first-of-type::before {
  content: ""; position: absolute; left: 0; top: .35em; bottom: .35em;
  width: 3px; border-radius: 3px; background: linear-gradient(var(--rose), var(--blue));
}
.about-text .btn { margin-top: 14px; }

/* ---------- Quote band ---------- */
.quote-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(63,92,114,.96), rgba(47,43,44,.96)),
    radial-gradient(circle at 82% 18%, rgba(193,154,163,.55), transparent 58%);
  color: var(--ivory);
  text-align: center;
}
.quote-glow {
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 100%, rgba(193,154,163,.35), transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: .6;
  color: rgba(193,154,163,.45);
  margin-bottom: .1em;
}
.quote-band .big {
  position: relative;
  font-size: clamp(2.5rem, 6.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
}
.quote-band .quote-sub {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  margin-top: 22px;
  color: var(--blush);
}

/* ---------- Chat ---------- */
.chat {
  position: relative;
  background:
    radial-gradient(circle at 50% -20%, rgba(94,126,150,.16), transparent 55%),
    var(--blush);
}
.chat-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.chat-inner .eyebrow { margin-bottom: 16px; }
.chat-inner h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); color: var(--charcoal); margin-bottom: 16px; }
.chat-inner h2 em { color: var(--rose-deep); }
.chat-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- Instagram feed ---------- */
.feed { background: var(--ivory); }
.feed-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feed-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  background: var(--blush);
}
.feed-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.feed-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(63,92,114,.0), rgba(47,43,44,.55));
  opacity: 0;
  transition: opacity .35s ease;
}
.feed-item:hover img { transform: scale(1.07); }
.feed-item:hover::after { opacity: 1; }
.feed-ig {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  color: var(--white);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.feed-ig svg { width: 30px; height: 30px; }
.feed-item:hover .feed-ig { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.feed-cta { text-align: center; margin-top: clamp(30px, 4vw, 48px); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--charcoal); color: var(--cream); padding: clamp(56px, 7vw, 92px) clamp(22px, 6vw, 96px) 34px; }
.footer-mark {
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: min(46%, 460px);
  height: auto;
  opacity: .05;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: #b9b1b3; max-width: 22rem; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--cream);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.socials a:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--white); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #c8c1c2; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  letter-spacing: .08em;
  color: #948c8e;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.card.reveal:nth-child(2) { transition-delay: .08s; }
.card.reveal:nth-child(3) { transition-delay: .16s; }
.card.reveal:nth-child(4) { transition-delay: .24s; }
/* keep the editorial stagger after reveal completes */
.card.reveal:nth-child(even).in { transform: translateY(26px); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-text .eyebrow { justify-content: center; }
  .hero h1 { align-items: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; max-width: 460px; margin: 0 auto; }
  .hero-meta li { align-items: center; }
  .hero-image { max-width: 460px; margin: 26px auto 0; }
  .hero-scroll { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-text { text-align: center; }
  .about-text p { margin-left: auto; margin-right: auto; }
  .about-text p:first-of-type { padding-left: 0; }
  .about-text p:first-of-type::before { display: none; }
  .about-image { max-width: 500px; margin: 0 auto 24px; order: -1; }
  .about-image::before { inset: 16px -16px -16px 16px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(even) { transform: none; }
  .card.reveal:nth-child(even).in { transform: none; }
  .card:nth-child(even):hover { transform: translateY(-10px); }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--ivory);
    padding: 14px clamp(22px, 6vw, 96px) 26px;
    box-shadow: var(--shadow-md);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .3s ease;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
  .nav-cta { display: inline-block; margin-top: 8px; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .card-body { align-items: center; text-align: center; }
  .card p { text-align: center; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .hero-chip--top { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card.reveal:nth-child(even).in { transform: translateY(26px); }
  .strip-track, .hero-badge, .hero-chip, .announce-dot, .hero-scroll i::after { animation: none; }
  html { scroll-behavior: auto; }
}
