/* ===========================
   MARTA CAZZIN — MEDIA KIT
   Apple-glass · Feminine · Pro
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg:            #f9f4f6;
  --surface:       rgba(255,255,255,0.72);
  --surface-hi:    rgba(255,255,255,0.88);
  --surface-low:   rgba(255,255,255,0.52);
  --line:          rgba(180,140,160,0.14);
  --line-strong:   rgba(180,140,160,0.22);

  --text:          #1e1520;
  --muted:         #7a6270;

  --rose:          #c9527e;
  --rose-dark:     #a33d64;
  --rose-mid:      #d97fa0;
  --rose-soft:     rgba(201,82,126,0.08);
  --rose-glow:     rgba(201,82,126,0.22);

  --lavender:      rgba(220,215,240,0.35);
  --pearl:         rgba(252,249,248,0.95);

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  /* Unified section vertical rhythm */
  --section-gap:   96px;
  --card-gap:      24px;
  --card-pad:      36px;

  --shadow-xs:  0 2px 8px  rgba(120,60,90,0.06);
  --shadow-sm:  0 6px 20px rgba(120,60,90,0.08);
  --shadow-md:  0 16px 40px rgba(120,60,90,0.10);
  --shadow-lg:  0 28px 60px rgba(120,60,90,0.13);

  --max-w: 1200px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── BASE ─── */
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 0%,  rgba(226,185,205,0.45) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 90% 30%,  rgba(210,205,235,0.40) 0%, transparent 100%),
    radial-gradient(ellipse 40% 30% at 50% 90%,  rgba(230,215,225,0.30) 0%, transparent 100%);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── AMBIENT BLURS ─── */
.bg-blur {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.28;
}
.bg-blur-1 { width: 380px; height: 380px; background: #e8c0d2; top: 80px;  left: -120px; }
.bg-blur-2 { width: 420px; height: 420px; background: #d8d3ef; bottom: 0;  right: -140px; }

/* ─── LAYOUT ─── */
.site { position: relative; min-height: 100vh; }

.container {
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(249,244,246,0.70);
  border-bottom: 1px solid rgba(255,255,255,0.60);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--rose);
}
.brand strong { color: var(--text); font-weight: 600; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.55); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  box-shadow: 0 8px 24px var(--rose-glow);
}
.btn-primary:hover { box-shadow: 0 14px 32px var(--rose-glow); }

.btn-ghost {
  color: var(--rose-dark);
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(201,82,126,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.82); }

/* ─── TAGS / EYEBROWS ─── */
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(201,82,126,0.12);
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ─── SECTION HEADING ─── */
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-heading h2 { margin: 0 0 16px; }
.section-heading .section-tag { margin-bottom: 18px; }

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
}
h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 16px; }

/* ─── GLASS CARD — base ─── */
.card,
.glass-card {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card {
  background: rgba(255,255,255,0.78);
  padding: var(--card-pad);
}
.glass-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.84), rgba(255,255,255,0.68));
  padding: var(--card-pad);
}

.card h3, .glass-card h3 { margin: 0 0 14px; }
.card p, .glass-card p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ─── HERO ─── */
.hero { padding: 80px 0 60px; }

.hero-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.hero-image-wrap { position: relative; }
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, rgba(226,185,205,0.65), rgba(210,205,235,0.60));
  border-radius: var(--r-xl);
  z-index: -1;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.90);
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 20px;
  color: var(--rose-dark);
}

.hero-text {
  max-width: 56ch;
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.75;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SECTIONS — uniform spacing ─── */
.section { padding: var(--section-gap) 0; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--card-gap);
  align-items: start;
}

/* ─── LISTS ─── */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.clean-list li {
  position: relative;
  padding-left: 22px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 1rem;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  transform: translateY(-50%);
}

/* ─── VISION / INSIGHTS PREVIEW ─── */
.instagram-preview {
  margin-bottom: var(--card-gap);
}
.instagram-preview h3 { margin: 0 0 10px; }
.instagram-preview p  { margin: 0; color: var(--muted); font-size: 1rem; }

.actions {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.insights-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none !important;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: var(--rose-dark);
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(201,82,126,0.20);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.insights-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.96);
  color: var(--rose-dark);
}

/* ─── CARDS 2-UP ─── */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  margin-top: var(--card-gap);
}

/* ─── PERFORMANCE SECTION ─── */
.performance-section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.performance-section .section-heading {
  max-width: 760px;
  margin-bottom: 76px;
}

.performance-section .section-sub {
  max-width: 760px;
  margin: 0 auto;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 0;
}

.performance-card {
  position: relative;
  min-height: 320px;
  padding: 46px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.performance-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,82,126,0.12), transparent 70%);
  pointer-events: none;
}

.performance-card-wide {
  grid-column: 1 / -1;
  min-height: 250px;
}

.performance-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(201,82,126,0.08);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.performance-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.performance-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 62ch;
}

.performance-insights {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 48px;
  padding: 46px;
  background: linear-gradient(140deg, rgba(255,255,255,0.88), rgba(245,232,238,0.82));
}

.performance-insights .section-tag {
  margin-bottom: 16px;
}

.performance-insights h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.performance-insights p {
  font-size: 1.03rem;
  line-height: 1.8;
  max-width: 62ch;
}

.performance-actions {
  margin-top: 0;
  justify-content: flex-end;
}

/* ─── LOGO ROW ─── */
.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-card img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-card:hover img { filter: none; opacity: 1; }

/* ─── CONTACT ─── */
.contact-box {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-md);
  background: linear-gradient(140deg, rgba(255,255,255,0.84), rgba(245,232,238,0.80));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.contact-box h2 { margin: 0 0 14px; }
.contact-box p { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 56ch; }

.socials { display: grid; gap: 12px; }
.social {
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: transform 0.22s, box-shadow 0.22s;
}
.social:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ─── FOOTER ─── */
.site-footer { padding: 48px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-note { color: var(--rose-dark); font-weight: 600; font-style: italic; }

/* ─── HOVER STATES ─── */
.card:hover, .glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* ─── FOCUS ─── */
.btn:focus-visible,
.social:focus-visible,
.logo-card:focus-visible,
.insights-button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* ────────────────────────────
   INSIGHT PAGES (insta / tt)
   ──────────────────────────── */

.ig-page {
  padding-top: 72px;
  padding-bottom: 96px;
}

.ig-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(201,82,126,0.14);
  color: var(--rose-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s, box-shadow 0.22s;
}
.ig-back:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.ig-hero-clean {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
.ig-hero-clean h1, .ig-hero-clean h2 {
  max-width: 780px;
  margin: 14px 0;
}
.ig-hero-clean p { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 580px; }

/* Insight card system */
.ig-card,
.ig-main-card,
.ig-card-clean {
  border-radius: var(--r-xl);
  padding: var(--card-pad);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ig-main-card.dark {
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(201,82,126,0.30), transparent 34%),
    radial-gradient(circle at 90% 5%,  rgba(140,88,200,0.32), transparent 38%),
    linear-gradient(145deg, #1a0e1a 0%, #280d20 55%, #3a1040 100%);
  border-color: rgba(255,255,255,0.08);
}

/* Grid layouts */
.ig-metrics-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--card-gap);
  margin-bottom: 52px;
}

.ig-two-col,
.ig-dashboard-grid,
.interaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-gap);
  margin-bottom: 52px;
}

.ig-dashboard-grid { grid-template-columns: 1.2fr 0.8fr; }
.interaction-grid  { grid-template-columns: 1.05fr 0.95fr; }

/* Card inner typography */
.ig-card-label {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  color: var(--rose-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ig-card h2,
.ig-dark-card h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--rose-dark);
}
.ig-dark-card h2 { color: #fff; }

.ig-muted-label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}
.ig-dark-card .ig-muted-label { color: rgba(255,255,255,0.72); }

.ig-divider { height: 1px; margin: 32px 0; background: var(--line); }

/* Audience rows */
.ig-audience-row,
.ig-reach-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ig-audience-row span,
.ig-reach-row span   { color: var(--muted); font-weight: 500; }
.ig-audience-row strong,
.ig-reach-row strong { display: block; font-size: 1.65rem; color: var(--rose-dark); line-height: 1; }

/* Donuts */
.ig-mini-donut {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(var(--rose) 0 31.7%, rgba(180,140,160,0.15) 0 100%);
  position: relative;
}
.non-follower-donut { background: conic-gradient(var(--rose-mid) 0 68.3%, rgba(180,140,160,0.15) 0 100%); }

.ig-big-donut {
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(var(--rose) 0 31.7%, var(--rose-mid) 0 100%);
  box-shadow: 0 16px 36px var(--rose-glow);
}
.ig-big-donut > div {
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-hi);
  text-align: center;
  padding: 16px;
}
.ig-big-donut strong { font-size: 1.9rem; color: var(--rose-dark); font-family: 'Cormorant Garamond', serif; }
.ig-big-donut span   { display: block; margin-top: 6px; color: var(--muted); font-size: 0.82rem; }

.ig-donut-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
}

.ig-donut-stats { display: grid; gap: 14px; }
.ig-donut-stats div {
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.80);
}
.ig-donut-stats span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 500; }
.ig-donut-stats strong { margin-top: 8px; display: block; font-size: 1.6rem; color: var(--rose-dark); }

/* Bars */
.ig-bars, .ig-bars-clean { display: grid; gap: 26px; }

.ig-bar-row { display: grid; gap: 12px; }
.ig-bar-top { display: flex; justify-content: space-between; gap: 14px; color: var(--text); font-weight: 600; }
.ig-bar-top strong { font-size: 1.1rem; }

.ig-track,
.ig-track-clean {
  height: 14px;
  border-radius: 999px;
  background: rgba(180,140,160,0.12);
  overflow: hidden;
}
.ig-track i,
.ig-track-clean i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--rose-mid));
  box-shadow: 0 8px 20px var(--rose-glow);
}
.ig-track-clean.purple i { background: linear-gradient(90deg, #b89fd4, #9070be); }

.ig-bars-clean div  { display: grid; gap: 10px; }
.ig-bars-clean p    { display: flex; justify-content: space-between; gap: 18px; margin: 0; font-weight: 600; color: var(--text); }
.ig-bars-clean p span   { color: var(--text); }
.ig-bars-clean p strong { text-align: right; color: var(--muted); font-weight: 500; }

/* Number list */
.ig-number-list { display: grid; gap: 18px; }
.ig-number-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.ig-number-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.ig-number-list span   { color: var(--muted); font-weight: 500; }
.ig-number-list strong { font-size: 1.4rem; color: var(--rose-dark); font-weight: 700; }

/* Card heads */
.ig-card-head { margin-bottom: 28px; }
.ig-card-head h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--rose-dark);
}
.ig-card-head .section-tag { margin-bottom: 12px; }

/* Activity chart */
.ig-activity-chart {
  height: 320px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  align-items: flex-end;
  padding-top: 28px;
  margin-bottom: 48px;
}
.ig-activity-chart div {
  position: relative;
  min-height: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--rose), var(--rose-dark));
  box-shadow: 0 8px 18px var(--rose-glow);
}
.ig-activity-chart span {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Tabs */
.ig-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.ig-tabs span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(201,82,126,0.08);
  color: var(--rose-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.ig-tabs .active {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 10px 22px var(--rose-glow);
}

/* Summary list */
.ig-summary-list { display: grid; gap: 16px; }
.ig-summary-list > div { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.ig-summary-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.ig-summary-list p      { margin: 0 0 6px; color: var(--muted); font-size: 0.92rem; }
.ig-summary-list strong { display: block; font-size: 1.5rem; color: var(--rose-dark); font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.ig-summary-list span   { display: block; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* Main card sub-sections */
.ig-main-card span { display: block; margin-bottom: 12px; color: var(--rose-dark); }
.ig-main-card h2   { margin: 0; font-size: clamp(2.6rem, 5vw, 4.4rem); }
.ig-main-card p    { margin: 12px 0 0; color: var(--muted); font-size: 1rem; }
.ig-main-card.dark span { color: rgba(255,255,255,0.60); }
.ig-main-card.dark p    { color: rgba(255,255,255,0.78); }

.ig-section-title { margin-bottom: 22px; }
.ig-section-title .ig-card-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.78rem;
  font-weight: 700;
}

.ig-light-card { background: rgba(255,255,255,0.86); }
.ig-light-card h3 {
  margin: 32px 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--rose-dark);
}

.ig-bottom-note {
  padding: 28px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: var(--shadow-xs);
}
.ig-bottom-note p { margin: 0; color: var(--muted); }

/* Scenic donut styles */
.insights-grid.scenic { align-items: center; gap: 22px; }
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.donut { position: relative; width: 210px; height: 210px; display: grid; place-items: center; }
.donut-ring {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(var(--rose) calc(var(--follower) * 1%), rgba(180,140,160,0.12) 0%);
  box-shadow: 0 16px 36px var(--rose-glow);
  transform: rotate(-90deg);
  mask: radial-gradient(farthest-side, transparent calc(50% - 26px), #000 calc(50% - 26px));
}
.donut-center {
  position: absolute;
  width: 134px; height: 134px; border-radius: 50%;
  background: var(--surface-hi);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(120,60,90,0.06);
}
.donut-center .big-number { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--rose-dark); }
.donut-legend  { display: flex; gap: 10px; flex-direction: column; margin-top: 6px; }
.legend-item   { display: flex; gap: 10px; align-items: center; color: var(--muted); font-weight: 500; font-size: 0.9rem; }
.swatch        { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.swatch-accent { background: linear-gradient(90deg, var(--rose), var(--rose-mid)); }
.swatch-muted  { background: rgba(180,140,160,0.25); }

.scenic-right  { display: flex; flex-direction: column; gap: 14px; }
.reach-card    { background: rgba(226,185,205,0.18); padding: 14px 18px; border-radius: var(--r-md); display: flex; flex-direction: column; gap: 6px; }
.reach-card .label        { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.reach-card .reach-number { font-family: 'Cormorant Garamond', serif; color: var(--rose-dark); font-size: 1.35rem; font-weight: 600; }

/* Content bars */
.content-bars { display: flex; flex-direction: column; gap: 10px; }
.content-row  { display: flex; align-items: center; gap: 12px; }
.content-row span { width: 64px; color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.content-row .bar.content { flex: 1; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--rose), var(--rose-mid)); }
.content-row .value { width: 52px; text-align: right; color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .about-grid      { grid-template-columns: 1fr; }
  .contact-box     { grid-template-columns: 1fr; }
  .ig-metrics-grid { grid-template-columns: 1fr 1fr; }
  .ig-two-col, .ig-dashboard-grid, .interaction-grid { grid-template-columns: 1fr; }
  .ig-donut-layout { grid-template-columns: 1fr; }
  .instagram-preview { grid-template-columns: 1fr; }
  .performance-insights { grid-template-columns: 1fr; }
  .performance-actions { justify-content: flex-start; margin-top: 4px; }
}

@media (max-width: 720px) {
  :root { --section-gap: 64px; --card-pad: 26px; }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
  .nav { width: 100%; gap: 8px 12px; }
  .container { width: min(var(--max-w), calc(100% - 32px)); }

  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }

  .hero { padding: 40px 0 32px; }
  .hero-image-wrap { max-width: 380px; }

  .cards-2 { grid-template-columns: 1fr; }
  .performance-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .performance-section .section-heading {
    margin-bottom: 42px;
  }
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .performance-card,
  .performance-card-wide {
    min-height: auto;
    padding: 30px;
  }
  .performance-card-wide {
    grid-column: auto;
  }
  .performance-number {
    margin-bottom: 22px;
  }
  .performance-insights {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 30px;
    gap: 24px;
  }
  .ig-metrics-grid { grid-template-columns: 1fr; margin-bottom: 36px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }

  .contact-box { padding: 32px 26px; }

  .card, .glass-card, .contact-box,
  .ig-card, .ig-main-card, .ig-card-clean { border-radius: var(--r-lg); }

  .ig-mini-donut { display: none; }
  .ig-audience-row, .ig-reach-row { grid-template-columns: 1fr; }
  .ig-activity-chart { height: 260px; gap: 10px; grid-template-columns: repeat(7, 1fr); }
  .ig-bars-clean p { display: block; }
  .ig-bars-clean p strong { display: block; margin-top: 4px; text-align: left; }
}

@media (max-width: 460px) {
  .hero-ctas, .hero-pills { flex-direction: column; align-items: flex-start; }
  .ig-tabs span { font-size: 0.84rem; padding: 9px 14px; }
}
