/* PETAL PRICE - shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F2;
  --black: #1A1612;
  --pink: #E8647A;
  --pink-light: #F5B8C4;
  --pink-pale: #FDE8ED;
  --green: #3D6B4F;
  --green-light: #C8DDD0;
  --gold: #C8902A;
  --gold-light: #F5E6CC;
  --gray: #6B6560;
  --border: #E8E2DA;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--black); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--pink); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 600; }
.nav-cta {
  background: var(--black);
  color: var(--cream) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--pink); color: white !important; }

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}

/* CONTAINERS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

/* SECTION TYPOGRAPHY */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--pink); }
.section-sub {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.55;
}

section { padding: 5rem 0; }

/* HERO (homepage) */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(232,100,122,0.13) 0%, transparent 45%),
    radial-gradient(circle at 82% 72%, rgba(200,144,42,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 920px;
  position: relative;
}
.hero h1 em { font-style: italic; color: var(--pink); font-weight: 700; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
  position: relative;
}

/* STAT STRIP */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 880px;
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
}
.stat-item {
  background: var(--cream);
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-number.pink { color: var(--pink); }
.stat-number.green { color: var(--green); }
.stat-number.gold { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: repeat(2,1fr); }
}

/* SEARCH */
.search-wrap { max-width: 580px; width: 100%; position: relative; margin-bottom: 2rem; }
.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  gap: 0.75rem;
  box-shadow: 0 4px 24px rgba(26,22,18,0.05);
}
.search-bar svg { flex-shrink: 0; }
.search-bar input {
  flex: 1;
  border: none; outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}
.search-btn {
  background: var(--black);
  color: var(--cream);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--pink); }

/* CITY GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.city-card {
  background: var(--cream);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.city-card:hover { background: white; }
.city-rank {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.city-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.city-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  font-family: var(--font-display);
}
.city-meta {
  font-size: 0.78rem;
  color: var(--gray);
}
.city-card.cheapest .city-price { color: var(--green); }
.city-card.priciest .city-price { color: var(--pink); }

/* FINDINGS / KEY INSIGHTS */
.findings {
  background: var(--black);
  color: var(--cream);
  padding: 6rem 0;
}
.findings .section-label { color: var(--pink-light); }
.findings .section-title { color: var(--cream); }
.findings .section-title em { color: var(--pink-light); }
.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.finding-card {
  padding: 2rem;
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.finding-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pink-light);
  line-height: 1;
}
.finding-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.finding-body {
  font-size: 0.95rem;
  color: rgba(250,247,242,0.7);
  line-height: 1.6;
}

/* PULL QUOTES */
.quotes-section { background: var(--cream); padding: 6rem 0; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.quote-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,22,18,0.08);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pink-light);
  line-height: 0.5;
  font-style: italic;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
}
.quote-source {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.quote-source strong { color: var(--black); }

/* CLIPS */
.clips-section { background: white; padding: 6rem 0; }
.clip-group {
  margin-bottom: 3.5rem;
}
.clip-group-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.clip-group-sub {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
}
.clip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}
.clip-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.clip-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
}
.clip-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.clip-tag.ai { background: var(--pink-pale); color: var(--pink); }
.clip-tag.markup { background: var(--gold-light); color: var(--gold); }
.clip-tag.price { background: var(--green-light); color: var(--green); }
.clip-tag.quote { background: var(--border); color: var(--gray); }
.clip-florist {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.clip-city { color: var(--gray); font-size: 0.875rem; }
.clip-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.4;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clip-quote::before { content: '"'; }
.clip-quote::after { content: '"'; }
.clip-card audio {
  width: 100%;
  height: 40px;
}
.clip-duration {
  font-size: 0.78rem;
  color: var(--gray);
}

/* HOW IT WORKS / METHODOLOGY */
.how-section { background: var(--black); color: var(--cream); padding: 6rem 0; }
.how-section .section-label { color: var(--pink-light); }
.how-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .how-wrap { grid-template-columns: 1fr; } }
.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--cream);
}
.how-title em { color: var(--pink-light); font-style: italic; }
.how-sub {
  color: rgba(250,247,242,0.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.how-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  width: 2.25rem; height: 2.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.step-text { flex: 1; }
.step-text strong { display: block; margin-bottom: 0.25rem; font-weight: 600; }
.step-text span { color: rgba(250,247,242,0.65); font-size: 0.9rem; }

.call-sim {
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.call-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.4);
  margin-bottom: 0.25rem;
}
.call-label.right { text-align: right; }
.call-bubble {
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
}
.call-bubble.maya {
  background: var(--pink);
  color: white;
}
.call-bubble.florist {
  background: rgba(250,247,242,0.1);
  color: var(--cream);
  margin-left: auto;
}

/* TABLE */
.table-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.table-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.filter-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { color: var(--black); border-color: var(--black); }
.filter-chip.active {
  background: var(--black); color: var(--cream); border-color: var(--black);
}
.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.results-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.results-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.results-table tr:last-child td { border-bottom: none; }
.results-table tr:hover { background: var(--cream); }
.results-table .name { font-weight: 600; }
.results-table .quote { color: var(--gray); font-style: italic; font-size: 0.85rem; max-width: 320px; }
.results-table .price { font-weight: 600; color: var(--pink); font-family: var(--font-display); font-size: 1rem; }
.results-table .ai-flag { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 4px; background: var(--pink-pale); color: var(--pink); font-size: 0.7rem; font-weight: 600; margin-left: 0.4rem; }
.avail-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
}
.avail-pill.yes { background: var(--green-light); color: var(--green); }
.avail-pill.no { background: var(--pink-pale); color: var(--pink); }
.avail-pill.unk { background: var(--border); color: var(--gray); }

.table-pager {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray);
}
.pager-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: white;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.pager-btn:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 700px) {
  .results-table .quote { display: none; }
  .results-table th, .results-table td { padding: 0.65rem 0.75rem; font-size: 0.85rem; }
}

/* CONTRIBUTE */
.contribute-section { background: var(--cream); padding: 6rem 0; }
.contribute-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contribute-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}
@media (max-width: 600px) { .contribute-form { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
}
.form-group input, .form-group select {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus { outline: 2px solid var(--pink); outline-offset: -1px; }
.submit-btn {
  background: var(--black);
  color: var(--cream);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  grid-column: 1 / -1;
}
.submit-btn:hover { background: var(--pink); }

/* FOOTER */
footer {
  background: var(--black);
  color: rgba(250,247,242,0.7);
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--pink); }
.footer-tag { color: rgba(250,247,242,0.5); font-size: 0.85rem; max-width: 280px; }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(250,247,242,0.65);
  text-decoration: none;
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.12);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(250,247,242,0.5);
  font-size: 0.8rem;
}

/* PRESS PAGE */
.page-header {
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  background: var(--cream);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-header h1 em { font-style: italic; color: var(--pink); }
.page-header p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.press-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.press-card img {
  width: 100%;
  display: block;
  background: var(--cream);
}
.press-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.press-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.press-card-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.5; flex: 1; }
.press-card-cta {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}
.press-card-cta:hover { background: var(--pink); color: white; }

.press-stats {
  background: var(--black);
  color: var(--cream);
  padding: 4rem 0;
  margin: 4rem 0;
  border-radius: 16px;
}
.press-stats .container { padding: 0 3rem; }
.press-stats h2 { color: var(--cream); font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.press-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.press-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.press-stat-lbl { color: rgba(250,247,242,0.7); font-size: 0.9rem; }

.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fact-list li {
  padding-left: 2rem;
  position: relative;
  line-height: 1.55;
  font-size: 1.02rem;
}
.fact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1rem;
  height: 1px;
  background: var(--pink);
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-card a { color: var(--pink); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

/* ABOUT PAGE */
.about-hero { padding: 9rem 0 4rem; }
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}
.about-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.about-content a { color: var(--pink); }
.about-content blockquote {
  border-left: 3px solid var(--pink);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--black);
}
.code-block {
  background: var(--black);
  color: var(--cream);
  border-radius: 8px;
  padding: 1.5rem;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  overflow-x: auto;
  margin: 1.5rem 0;
  white-space: pre-wrap;
}
.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.tech-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.tech-item strong { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.tech-item span { font-size: 0.85rem; color: var(--gray); }

/* ============ CLIP EXPAND ============ */
.clips-expand-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}
.clips-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.clips-expand-btn:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}
.clips-expand-arrow {
  display: inline-block;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.clips-collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
}
.clips-collapsed.open {
  max-height: 8000px;
  opacity: 1;
}

/* ============ MOBILE FINDINGS CAROUSEL ============ */
@media (max-width: 720px) {
  .findings-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 1.5rem 1.5rem;
    margin: 1.5rem -1.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .findings-grid::-webkit-scrollbar { display: none; }
  .finding-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
  }
  /* Hint that there's more to swipe */
  .findings-grid::after {
    content: '';
    flex: 0 0 1rem;
  }
}

/* Carousel hint indicator on mobile */
@media (max-width: 720px) {
  .findings .section-sub::after {
    content: ' · Swipe →';
    color: var(--pink-light);
    font-weight: 500;
  }
}

/* ============ MOBILE TIGHTENING ============ */
@media (max-width: 600px) {
  .clips-section { padding: 4rem 0; }
  .clip-group { margin-bottom: 2.5rem; }
  .clip-grid { gap: 1rem; }
  .findings { padding: 4rem 0; }
}

/* ============ PROMPTOAST CREDIT (footer chip) ============ */
.promptoast-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding: 0.5rem 0.85rem 0.5rem 0.95rem;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.15);
  border-radius: 999px;
  text-decoration: none;
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.78rem;
  transition: all 0.2s ease;
  max-width: 100%;
}
.promptoast-credit:hover {
  border-color: rgba(250, 247, 242, 0.4);
  background: rgba(250, 247, 242, 0.1);
  color: rgba(250, 247, 242, 0.95);
}
.promptoast-credit span {
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.promptoast-credit img {
  height: 20px;
  width: auto;
  display: block;
  /* Invert the dark logo so it shows up on dark footer */
  filter: brightness(0) invert(1) opacity(0.85);
  transition: opacity 0.2s;
}
.promptoast-credit:hover img {
  filter: brightness(0) invert(1) opacity(1);
}
@media (max-width: 600px) {
  .promptoast-credit {
    margin-top: 0.75rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
  }
  .promptoast-credit img { height: 18px; }
}

/* ============ PROMPTOAST SECTION HEADER (about page) ============ */
.promptoast-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.promptoast-section-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.promptoast-section-logo:hover { opacity: 0.7; }
.promptoast-section-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.promptoast-section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray);
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
}
@media (max-width: 600px) {
  .promptoast-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 3rem 0 1.25rem;
  }
  .promptoast-section-logo img { height: 30px; }
}

/* ============ CITY SECTION RESTRUCTURE ============ */
.city-chart-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.city-chart-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.city-chart-caption {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.85rem;
  text-align: center;
  font-style: italic;
}

.city-grid-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

/* Override the city-grid for compact 3-col mobile layout */
@media (max-width: 720px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }
  .city-card {
    padding: 0.75rem 0.6rem !important;
    gap: 0.25rem !important;
  }
  .city-card .city-rank {
    font-size: 0.6rem !important;
  }
  .city-card .city-name {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
  }
  .city-card .city-price {
    font-size: 1.2rem !important;
  }
  .city-card .city-meta {
    font-size: 0.62rem !important;
    line-height: 1.3 !important;
  }
}
