/* =====================================================
   Orlando Vacation Rental Services — Main Stylesheet
   Clean, modern, mobile-first
   ===================================================== */

:root {
  /* Palette: warm sun, deep ocean, cream */
  --c-ink: #0d1f2d;
  --c-ink-soft: #3a4a59;
  --c-ink-muted: #6b7d8e;
  --c-cream: #faf6f0;
  --c-cream-deep: #f1eadf;
  --c-sand: #e8dec8;
  --c-accent: #e07a3c;       /* warm orange — Orlando sunset */
  --c-accent-deep: #c46430;
  --c-ocean: #1e5a7a;
  --c-ocean-deep: #133e55;
  --c-border: #e6dccf;
  --c-white: #ffffff;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(13, 31, 45, 0.06), 0 1px 1px rgba(13, 31, 45, 0.04);
  --shadow-md: 0 6px 24px rgba(13, 31, 45, 0.08), 0 2px 6px rgba(13, 31, 45, 0.04);
  --shadow-lg: 0 18px 48px rgba(13, 31, 45, 0.14), 0 4px 12px rgba(13, 31, 45, 0.06);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--c-ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0 0 0.5em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--c-ink);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 64px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.primary-nav a:hover {
  background: var(--c-sand);
  color: var(--c-ink);
}
.primary-nav .nav-cta {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 0.6rem 1.2rem;
  margin-left: 0.5rem;
}
.primary-nav .nav-cta:hover { background: var(--c-accent); color: white; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: min(92vh, 720px);
  min-height: 520px;
  overflow: hidden;
}

.carousel { position: relative; height: 100%; }
.carousel-track { position: relative; height: 100%; }

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  display: flex;
  align-items: center;
}
.carousel-slide.is-active { opacity: 1; }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 31, 45, 0.55) 0%,
    rgba(13, 31, 45, 0.25) 45%,
    rgba(13, 31, 45, 0.55) 100%
  );
}

.carousel-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 720px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero-subtext {
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  margin-bottom: 1.8rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-placeholder {
  height: 100%;
  background: linear-gradient(135deg, var(--c-ocean-deep), var(--c-ocean));
  display: flex;
  align-items: center;
  color: white;
}
.hero-placeholder .hero-headline,
.hero-placeholder .hero-subtext { color: white; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 3px;
}
.carousel-btn:hover { background: rgba(255, 255, 255, 0.3); }
.carousel-prev { left: 1.25rem; }
.carousel-next { right: 1.25rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.carousel-dot.is-active { background: white; transform: scale(1.25); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--c-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(224, 122, 60, 0.35);
}
.btn-primary:hover {
  background: var(--c-accent-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 122, 60, 0.45);
}
.btn-secondary-outline {
  background: transparent;
  color: var(--c-ocean-deep);
  border: 1.5px solid var(--c-ocean-deep);
}
.btn-secondary-outline:hover {
  background: var(--c-ocean-deep);
  color: white;
  transform: translateY(-2px);
}

/* Centered CTA below a section grid */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section-alt { background: var(--c-cream-deep); }
.section-contact {
  background: linear-gradient(135deg, var(--c-ocean-deep), var(--c-ocean));
  color: var(--c-cream);
}
.section-contact h2,
.section-contact .eyebrow { color: var(--c-cream); }
.section-contact .eyebrow { color: rgba(250, 246, 240, 0.7); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--c-ink-muted);
  margin: 0;
}
.empty-state {
  text-align: center;
  color: var(--c-ink-muted);
  padding: 3rem 0;
}

/* ===== PROPERTY GRID ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.property-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--c-ink);
}
.property-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-sand);
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.property-card:hover .property-image img { transform: scale(1.05); }

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(13, 31, 45, 0.85);
  color: white;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.property-card:hover .property-badge { opacity: 1; transform: translateY(0); }

.property-body { padding: 1.4rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.property-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.property-desc {
  color: var(--c-ink-muted);
  font-size: 0.94rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  flex: 1;
}
.property-meta {
  display: flex;
  gap: 1.25rem;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.meta-item { display: inline-flex; align-items: center; gap: 0.45rem; }
.meta-item svg { color: var(--c-accent); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--c-white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream-deep);
  border-radius: 16px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-card p { color: var(--c-ink-muted); margin: 0; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.prose p {
  color: var(--c-ink-soft);
  margin: 0 0 1rem;
  font-size: 1.04rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.stat {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  text-align: left;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--c-ocean-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat span {
  font-size: 0.88rem;
  color: var(--c-ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--c-white);
  padding: 2rem 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  margin: 0;
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--c-accent);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-ink);
  font-style: italic;
}
.testimonial-card figcaption strong {
  display: block;
  font-weight: 600;
  color: var(--c-ink);
}
.testimonial-card figcaption span {
  font-size: 0.88rem;
  color: var(--c-ink-muted);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--c-cream-deep); }
.faq-chevron {
  width: 28px;
  height: 28px;
  background: var(--c-cream-deep);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-ink);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}
.faq-item[open] .faq-chevron { transform: rotate(45deg); background: var(--c-accent); color: white; }
.faq-answer {
  padding: 0 1.5rem 1.35rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-intro p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.contact-info {
  list-style: none;
  margin: 0; padding: 0;
}
.contact-info li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(250, 246, 240, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-info li:last-child { border-bottom: 1px solid rgba(250, 246, 240, 0.15); }
.contact-info strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 240, 0.6);
  font-weight: 600;
}
.contact-info a { color: var(--c-cream); }
.contact-info a:hover { color: var(--c-accent); }

.contact-form {
  background: var(--c-white);
  color: var(--c-ink);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--c-ink);
}
.form-row .optional {
  font-weight: 400;
  color: var(--c-ink-muted);
  font-size: 0.8rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-cream);
  color: var(--c-ink);
  transition: border-color var(--transition), background var(--transition);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-accent);
  background: white;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -10000px; }
.form-status {
  margin-top: 1rem;
  font-size: 0.94rem;
  min-height: 1.2em;
}
.form-status.is-success { color: #1b7a3f; }
.form-status.is-error { color: #b3261e; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-ink);
  color: rgba(250, 246, 240, 0.78);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.96rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.96rem; }
.footer-col a { color: rgba(250, 246, 240, 0.78); }
.footer-col a:hover { color: var(--c-accent); }

.social-links { display: flex; gap: 0.75rem; }
.social-links li { margin: 0; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 240, 0.85);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--c-accent); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.6);
}
.footer-bottom p { margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .brand-logo { height: 52px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
  }
  .primary-nav.is-open { max-height: 500px; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0;
  }
  .primary-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 8px;
  }
  .primary-nav .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
  .carousel-prev, .carousel-next { display: none; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .property-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .hero { min-height: 460px; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--c-ocean-deep), var(--c-ocean));
  color: var(--c-cream);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.page-hero .eyebrow { color: rgba(250, 246, 240, 0.7); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: white;
  font-weight: 500;
  margin: 0;
}

.about-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-intro p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--c-ink-soft);
}

/* Staff grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
.staff-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.staff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.staff-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-sand);
  position: relative;
}
.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--c-ocean);
  background: linear-gradient(135deg, var(--c-cream-deep), var(--c-sand));
}
.staff-body {
  padding: 1rem 1.1rem 1.25rem;
}
.staff-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.15rem;
  color: var(--c-ink);
  line-height: 1.2;
}
.staff-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin: 0 0 0.6rem;
}
.staff-desc {
  color: var(--c-ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

/* =====================================================
   REVIEWS PAGE
   ===================================================== */
.reviews-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
  color: var(--c-ink-muted);
  line-height: 1.6;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-stars {
  color: var(--c-accent);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
  line-height: 1;
}

/* Two-up on small tablets, 1-up on phones */
@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .staff-body { padding: 0.85rem 0.9rem 1rem; }
  .staff-name { font-size: 1rem; }
  .staff-desc { font-size: 0.82rem; }
}
