/* ============================================================
   angelicacolion.com — Personal brand · Bay Area · 2026
   Editorial lavender system inspired by IG stories aesthetic
   ============================================================ */

:root {
  /* Type families */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;

  /* Palette — lavender editorial */
  --cream: #F5F0E8;
  --cream-soft: #FAF6EF;
  --paper: #FFFBF0;          /* Apple Notes warm yellow */
  --paper-line: rgba(123, 111, 224, 0.10);
  --lavender: #7B6FE0;
  --lavender-soft: #B5ACEF;
  --lavender-bg: #E8E2F5;
  --lavender-pale: #F2EEFB;
  --ink: #1A1820;
  --ink-soft: #423E55;
  --ink-mute: #7A7290;
  --border: rgba(26, 24, 32, 0.10);
  --border-soft: rgba(26, 24, 32, 0.06);
  --shadow-soft: 0 4px 20px rgba(26, 24, 32, 0.04);
  --shadow-card: 0 12px 40px rgba(123, 111, 224, 0.08), 0 2px 8px rgba(26, 24, 32, 0.04);
  --shadow-lift: 0 20px 60px rgba(123, 111, 224, 0.14), 0 4px 12px rgba(26, 24, 32, 0.06);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px; --s-8: 32px;  --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 760px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}

/* Background layered gradient — cream→lavender soft, like the stories */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px circle at 90% -10%, rgba(123, 111, 224, 0.18), transparent 50%),
    radial-gradient(700px circle at 0% 110%, rgba(123, 111, 224, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  z-index: -1;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-6); }
.container.narrow { max-width: var(--max-w-narrow); }
section { position: relative; }

/* ============================================================
   TYPOGRAPHY — editorial serif headings + sans body
   The italic-lavender accent is the SIGNATURE move.
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.display em, .display .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--lavender);
}

h1.section-title, h2.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.016em;
  color: var(--ink);
}
.section-title em, .section-title .italic {
  font-style: italic;
  color: var(--lavender);
}

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.008em;
  color: var(--ink-soft);
  max-width: 56ch;
}
.lede em { font-family: var(--serif); font-style: italic; color: var(--lavender); font-weight: 500; }

.body-large {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.body-large + .body-large { margin-top: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--lavender);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lavender);
}

.caption { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.02em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(245, 240, 232, 0.78);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}
.nav-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-brand .italic { font-style: italic; color: var(--lavender); font-weight: 500; }
.nav-brand .suffix {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--lavender);
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px var(--s-5); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all .2s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 111, 224, 0.35);
}
.btn-lavender {
  background: var(--lavender);
  color: white;
}
.btn-lavender:hover {
  background: #6A5ED0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 111, 224, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO — Editorial big serif + photo collage
   ============================================================ */
.hero {
  padding: var(--s-20) 0 var(--s-24);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-16);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero { padding: var(--s-12) 0 var(--s-16); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(123, 111, 224, 0.10);
  border: 1px solid rgba(123, 111, 224, 0.2);
  color: var(--lavender);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}
.hero-eyebrow::before { display: none; }
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.hero-meta {
  margin-top: var(--s-12);
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-meta .num em { font-style: italic; color: var(--lavender); }
.hero-meta .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  max-width: 18ch;
}

/* Hero photo with lavender frame */
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.hero-photo::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--lavender);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}
.hero-photo::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--lavender-pale), var(--lavender-bg));
  border-radius: var(--radius);
  z-index: -2;
}

/* Hero floating sticker — like the iOS notification in stories */
.hero-sticker {
  position: absolute;
  background: white;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  z-index: 2;
  max-width: 280px;
}
.hero-sticker.bottom-left {
  bottom: -20px;
  left: -40px;
  animation: float 5s ease-in-out infinite;
}
.hero-sticker.top-right {
  top: 30px;
  right: -50px;
  animation: float 5s ease-in-out infinite reverse;
}
.hero-sticker .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 16px;
}
.hero-sticker strong { font-weight: 600; }
.hero-sticker .sub { color: var(--ink-mute); font-size: 11px; margin-top: 1px; display: block; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 880px) {
  .hero-sticker.bottom-left, .hero-sticker.top-right { display: none; }
}

/* ============================================================
   SECTION wrappers
   ============================================================ */
.section {
  padding: var(--s-24) 0;
}
.section.compact { padding: var(--s-16) 0; }
.section-head { margin-bottom: var(--s-12); }
.section-head .lede { margin-top: var(--s-5); }

/* ============================================================
   ABOUT / BIO
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--s-12);
  align-items: center;
}
.about-grid .photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-8);
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(123, 111, 224, 0.08);
  border: 1px solid rgba(123, 111, 224, 0.18);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cred-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender);
}
.featured-badge {
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(123, 111, 224, 0.04);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.featured-badge .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.featured-badge a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--lavender);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   OFFER LADDER — 1:1 + Agency packages
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: var(--s-8);
  margin-top: var(--s-10);
}
@media (max-width: 980px) {
  .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: white;
  border-radius: var(--radius);
  padding: var(--s-10);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.offer-card.advisory {
  background: linear-gradient(155deg, var(--lavender-pale), white 70%);
  border: 1px solid rgba(123, 111, 224, 0.25);
}
.offer-card .tier-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.offer-card .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.offer-card .name em { font-style: italic; color: var(--lavender); }
.offer-card .sub {
  font-family: var(--sans);
  color: var(--ink-mute);
  margin-top: var(--s-2);
  font-size: 14px;
  letter-spacing: -0.005em;
}
.offer-card .price {
  margin-top: var(--s-6);
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.offer-card .price .now {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.offer-card .price .now em { font-style: italic; color: var(--lavender); }
.offer-card .price .per {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
}
.offer-card .price .old {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.offer-card .features {
  list-style: none;
  margin: var(--s-8) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex-grow: 1;
}
.offer-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.offer-card .features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lavender);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.offer-card .cta {
  margin-top: var(--s-8);
}
.offer-card .spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(123, 111, 224, 0.12);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-top: var(--s-4);
}
.offer-card .spots::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender);
  animation: pulse 1.6s infinite;
}

/* Packages stack inside offer-grid right column */
.packages-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.pkg-row {
  background: white;
  border-radius: var(--radius);
  padding: var(--s-6) var(--s-8);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr) auto;
  gap: var(--s-6);
  align-items: center;
  transition: all .25s;
}
.pkg-row:hover {
  border-color: var(--lavender);
  transform: translateX(4px);
}
.pkg-row.featured {
  border: 1.5px solid var(--lavender);
  background: linear-gradient(155deg, rgba(123, 111, 224, 0.06), white);
}
.pkg-row .pkg-head .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-transform: lowercase;
}
.pkg-row .pkg-head .name em { font-style: italic; color: var(--lavender); }
.pkg-row .pkg-head .sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 600;
}
.pkg-row .pkg-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.pkg-row .pkg-features strong { color: var(--ink); font-weight: 600; }
.pkg-row .pkg-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-3);
}
.pkg-row .pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pkg-row .pkg-price .now {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pkg-row .pkg-price .now em { font-style: italic; color: var(--lavender); }
.pkg-row .pkg-price .old {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.pkg-row .pkg-price .per {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
}
.pkg-row .pkg-roi {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
}
@media (max-width: 720px) {
  .pkg-row {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .pkg-row .pkg-cta { align-items: flex-start; }
}

/* ============================================================
   BAY AREA BANNER
   ============================================================ */
.bay-banner {
  position: relative;
  padding: var(--s-10) var(--s-12);
  background: linear-gradient(135deg, var(--lavender) 0%, #6A5ED0 50%, #5749A8 100%);
  color: white;
  border-radius: var(--radius);
  overflow: hidden;
  margin: var(--s-16) auto;
}
.bay-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  z-index: 0;
}
.bay-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--s-10);
  align-items: center;
  position: relative;
  z-index: 1;
}
.bay-banner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: white;
}
.bay-banner h2 em { font-style: italic; color: #F0EAFF; }
.bay-banner p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-top: var(--s-4);
  max-width: 56ch;
}
.bay-banner .spots-large {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: white;
}
.bay-banner .spots-large em { font-style: italic; color: #F0EAFF; }
.bay-banner .spots-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: var(--s-2);
}
@media (max-width: 880px) {
  .bay-banner { padding: var(--s-8); }
  .bay-banner-grid { grid-template-columns: 1fr; }
  .bay-banner .spots-large { font-size: 64px; }
}

/* ============================================================
   STORIES STRIP — featured social posts inspired by IG
   ============================================================ */
.stories-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-10);
}
.story-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: var(--s-8);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 31px,
    var(--paper-line) 31px,
    var(--paper-line) 32px
  );
  pointer-events: none;
}
.story-card .date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  z-index: 1;
}
.story-card .text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-top: var(--s-5);
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.story-card .text em { font-style: italic; color: var(--lavender); }
.story-card .sig {
  font-family: var(--serif);
  font-style: italic;
  color: var(--lavender);
  text-align: right;
  position: relative;
  z-index: 1;
  font-size: 18px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--s-8);
  margin-top: var(--s-10);
}
.review {
  background: white;
  border-radius: var(--radius);
  padding: var(--s-10);
  box-shadow: var(--shadow-card);
  position: relative;
}
.review .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  line-height: 0.5;
  color: var(--lavender);
  margin-bottom: var(--s-3);
  display: block;
}
.review blockquote {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-soft);
}
.review-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lavender-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.review-author .meta { flex-grow: 1; }
.review-author .name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.review-author .role {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.review-author .date {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-top: 6px;
}
.review-author .link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(123, 111, 224, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.review-author .link:hover {
  background: var(--lavender);
  color: white;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: var(--s-24) 0;
  background: linear-gradient(135deg, var(--lavender-pale), var(--cream));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--s-12);
  align-items: center;
}
.cta-rows {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.cta-row {
  background: white;
  padding: var(--s-5) var(--s-6);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  transition: all .2s;
}
.cta-row:hover {
  border-color: var(--lavender);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.cta-row .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lavender-pale);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-row .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.cta-row .val {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
  letter-spacing: -0.005em;
}
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--s-20) 0 var(--s-12);
  background: var(--ink);
  color: var(--cream);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: var(--s-10);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.footer-brand .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.footer-brand .wordmark em { font-style: italic; color: var(--lavender-soft); }
.footer-brand .tag {
  font-family: var(--sans);
  color: rgba(245, 240, 232, 0.65);
  font-size: 14px;
  line-height: 1.55;
  margin-top: var(--s-3);
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-soft);
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: var(--s-3); }
.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245, 240, 232, 0.75);
  transition: color .15s;
}
.footer-col a:hover { color: var(--lavender-soft); }
.footer-col p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.65);
}
.footer-bottom {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .caption { color: rgba(245, 240, 232, 0.55); }
.footer-bottom a.caption { color: rgba(245, 240, 232, 0.55); }
.footer-bottom a.caption:hover { color: var(--lavender-soft); }
.footer-social {
  display: flex;
  gap: var(--s-4);
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.7);
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--lavender);
  border-color: var(--lavender);
  color: white;
}
@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .footer-bottom { justify-content: flex-start; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.accent-italic {
  font-family: var(--serif);
  font-style: italic;
  color: var(--lavender);
  font-weight: 500;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-8 { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }
