/* 7Realty Reviews — brand: Shadow Grey #2D232E, Spicy Orange #E53D00, Parchment #F1F0EA (60-30-10) */
:root {
  --shadow: #2D232E;
  --orange: #E53D00;
  --parchment: #F1F0EA;
  --paper: #FFFFFF;
  --ink: #2D232E;
  --muted: #6B6470;
  --line: #E3E1D8;
  --star: #E53D00;
  --radius: 14px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  font-size: 17px;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }

/* Header */
.site-header {
  background: var(--shadow);
  color: var(--parchment);
  padding: 14px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--parchment); letter-spacing: .02em; }
.brand b { color: var(--orange); }
.site-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav a { color: var(--parchment); font-size: .95rem; opacity: .9; }
.site-nav a:hover { color: var(--orange); opacity: 1; text-decoration: none; }

/* Hero */
.hero { background: var(--shadow); color: var(--parchment); padding: 56px 0 64px; }
.hero .kicker { color: var(--orange); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 600; margin-bottom: 12px; }
.hero h1 { color: #fff; max-width: 21ch; }
.hero .sub { font-size: 1.15rem; max-width: 60ch; opacity: .92; }
.hero .cta { display: inline-block; background: var(--orange); color: #fff; font-weight: 600; padding: 12px 22px; border-radius: 999px; margin-top: 10px; }
.hero .cta:hover { text-decoration: none; filter: brightness(1.08); }

/* Rating summary band */
.ratings-band { background: var(--paper); border-bottom: 1px solid var(--line); padding: 28px 0; }
.ratings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.rating-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: center;
}
.rating-card .score { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--shadow); }
.rating-card .stars { color: var(--star); letter-spacing: 2px; font-size: .95rem; }
.rating-card .label { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.rating-card .label a { color: var(--muted); text-decoration: underline; }

/* Sections */
main section { padding: 48px 0; }
section.alt { background: var(--paper); }
.section-head { max-width: 70ch; margin-bottom: 24px; }
.section-head .eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; }

/* Review cards */
.reviews { display: grid; gap: 16px; }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
section.alt .review { background: var(--parchment); }
.review .meta { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.review .stars { color: var(--star); letter-spacing: 2px; }
.review .author { font-weight: 700; }
.review .when, .review .via { color: var(--muted); font-size: .88rem; }
.review .txn { color: var(--muted); font-size: .88rem; font-style: italic; margin: -2px 0 8px; }
.review blockquote { margin: 0; }
.review .reply {
  margin-top: 14px; padding: 12px 16px;
  background: rgba(229, 61, 0, .06);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
}
.review .reply .who { font-weight: 700; font-size: .85rem; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; }

/* Agent cards on index */
.agents { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.agent-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.agent-card .stat { color: var(--muted); font-size: .92rem; margin: 2px 0; }
.agent-card .more { display: inline-block; margin-top: 10px; font-weight: 600; }

/* FAQ */
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; }
.faq summary { font-weight: 600; cursor: pointer; }
.faq details[open] summary { color: var(--orange); }
.faq details p { margin: 10px 0 4px; }

/* Sources / footnotes */
.sources { font-size: .9rem; color: var(--muted); }
.sources ul { padding-left: 20px; }

/* Footer */
.site-footer { background: var(--shadow); color: var(--parchment); padding: 36px 0; font-size: .92rem; }
.site-footer a { color: var(--orange); }
.site-footer .small { opacity: .75; font-size: .82rem; margin-top: 12px; }

/* Breadcrumb */
.crumbs { font-size: .85rem; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--muted); text-decoration: underline; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .review { padding: 18px; }
}
