/* =============================================
   FERNANDO'S GUEST HOUSE — Stylesheet
   Aesthetic: Victorian luxury editorial
   Palette: Deep forest green, aged gold, warm cream
   ============================================= */

:root {
  --green:       #1a3328;
  --green-mid:   #2a4a3a;
  --green-light: #3d6b55;
  --gold:        #c9a84c;
  --gold-light:  #e2c278;
  --gold-pale:   #f5e9c8;
  --cream:       #faf6ef;
  --cream-dark:  #f0e9da;
  --charcoal:    #1e1e1e;
  --warm-grey:   #7a7060;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --shadow: 0 8px 40px rgba(26,51,40,0.12);
  --shadow-lg: 0 20px 80px rgba(26,51,40,0.2);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--charcoal); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Utility ─────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-tag { font-family: var(--font-body); font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.section-tag.light { color: var(--gold-light); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--green); }
.section-sub { margin-top: .75rem; color: var(--warm-grey); font-size: .95rem; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2.2rem; font-family: var(--font-body); font-size: .78rem;
  font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer; border: none;
  transition: all .3s ease; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark { background: var(--green); color: var(--cream); }
.btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--cream); }
.full-width { width: 100%; }

/* ── NAV ─────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease;
  padding: 0 2rem;
}
#nav.scrolled {
  background: var(--green);
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .4rem; }
.logo-f {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.logo-text {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 300;
  color: var(--white); letter-spacing: .05em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--green) !important;
  padding: .5rem 1.2rem; border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--green); padding: 1rem 2rem 1.5rem;
}
.mobile-menu a {
  color: rgba(255,255,255,.85); font-size: .85rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,28,20,.82) 0%, rgba(10,28,20,.5) 60%, rgba(10,28,20,.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  padding-top: 72px;
}
.hero-since {
  font-family: var(--font-body); font-size: .75rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1; color: var(--white);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .9s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  max-width: 480px; color: rgba(255,255,255,.78); font-size: 1rem;
  line-height: 1.7; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp .9s .6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .8s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 2;
  animation: fadeIn 1s 1.2s both;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* ── RIBBON ──────────────────────────────── */
.ribbon { background: var(--green); overflow: hidden; padding: .9rem 0; }
.ribbon-inner {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ribbon-inner span {
  font-size: .72rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .6rem;
}
.ribbon-inner i { color: var(--gold); font-style: normal; font-size: .6rem; }

/* ── ABOUT ───────────────────────────────── */
#about { padding: 7rem 0; background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  height: 560px; border-radius: 2px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 55%; height: 280px; border-radius: 2px; overflow: hidden;
  border: 6px solid var(--cream); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--gold); color: var(--green);
  padding: .8rem 1rem; border-radius: var(--radius);
  display: flex; flex-direction: column; line-height: 1.2;
}
.badge-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.badge-label { font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.about-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.2; color: var(--green); margin-bottom: 1.2rem;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-lead { font-size: 1.05rem; color: var(--green-mid); margin-bottom: 1rem; line-height: 1.7; }
.about-text p { color: var(--warm-grey); margin-bottom: .9rem; }
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--cream-dark);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--green); line-height: 1; }
.stat-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-grey); margin-top: .3rem; }

/* ── ROOMS ───────────────────────────────── */
#rooms { padding: 7rem 0; background: var(--cream-dark); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.room-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img-wrap { position: relative; overflow: hidden; }
.room-card:not(.room-card--featured) .room-img-wrap { height: 220px; }
.room-card--featured .room-img-wrap { height: 440px; }
.room-img-wrap img { transition: transform .6s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.04); }
.room-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--green);
  font-size: .68rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--radius);
}
.room-info { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.room-card--featured .room-info { padding: 3rem; }
.room-info h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--green); margin-bottom: .6rem;
}
.room-card--featured .room-info h3 { font-size: 2rem; }
.room-info p { color: var(--warm-grey); font-size: .9rem; margin-bottom: 1.2rem; flex: 1; }
.room-features {
  list-style: none; display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.5rem;
}
.room-features li {
  font-size: .8rem; color: var(--green-mid); padding-left: 1rem; position: relative;
}
.room-features li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}

/* ── GRILL ───────────────────────────────── */
#grill { position: relative; padding: 8rem 0; overflow: hidden; }
.grill-bg { position: absolute; inset: 0; }
.grill-bg img { filter: brightness(.35) saturate(.8); }
.grill-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,28,20,.9) 30%, rgba(10,28,20,.5));
}
.grill-content {
  position: relative; z-index: 2; max-width: 640px;
}
.grill-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--white); margin-bottom: 1.2rem;
  letter-spacing: .02em;
}
.grill-desc { color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 2.5rem; }
.grill-features {
  display: flex; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 2.5rem;
}
.grill-feat {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: .6rem 1.1rem; border-radius: var(--radius);
  color: rgba(255,255,255,.85); font-size: .82rem; letter-spacing: .05em;
}
.gf-icon { font-size: 1rem; }

/* ── AMENITIES ───────────────────────────── */
#amenities { padding: 7rem 0; background: var(--cream); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; transition: all .3s ease;
}
.amenity-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(201,168,76,.12);
}
.amenity-icon { font-size: 2rem; margin-bottom: .8rem; }
.amenity-card h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--green); margin-bottom: .4rem;
}
.amenity-card p { font-size: .82rem; color: var(--warm-grey); }

/* ── GALLERY ─────────────────────────────── */
#gallery { padding: 7rem 0 0; background: var(--cream-dark); }
.gallery-masonry {
  margin-top: 3rem;
  columns: 4; column-gap: .5rem;
  padding: 0 .5rem;
}
.gal-item {
  break-inside: avoid; margin-bottom: .5rem;
  overflow: hidden; cursor: pointer;
}
.gal-item img { transition: transform .5s ease; display: block; }
.gal-item:hover img { transform: scale(1.04); }
.gal-tall img { aspect-ratio: 2/3; }
.gal-wide { column-span: 2; }

/* ── LOCATION ────────────────────────────── */
#location { padding: 7rem 0; background: var(--cream); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.location-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--green); margin-bottom: 1rem;
}
.location-text > p { color: var(--warm-grey); margin-bottom: 1.5rem; }
address { margin-bottom: 2rem; line-height: 1.8; color: var(--green-mid); }
.location-details { margin-bottom: 2rem; border-top: 1px solid var(--cream-dark); }
.loc-item {
  display: flex; justify-content: space-between;
  padding: .7rem 0; border-bottom: 1px solid var(--cream-dark);
  font-size: .88rem;
}
.loc-label { color: var(--warm-grey); }
.loc-item span:last-child { font-weight: 500; color: var(--green); }
.directions-title {
  font-size: .72rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.location-directions ol { padding-left: 1.2rem; }
.location-directions li { font-size: .88rem; color: var(--warm-grey); margin-bottom: .5rem; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ── CONTACT ─────────────────────────────── */
#contact { padding: 7rem 0; background: var(--green); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}
.contact-text .section-tag { color: var(--gold); }
.contact-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--white); margin-bottom: 1rem;
}
.contact-text > p { color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.2rem; border-radius: var(--radius);
  transition: background .2s;
}
a.contact-method:hover { background: rgba(255,255,255,.1); }
.cm-icon { font-size: 1.3rem; }
.cm-label { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.cm-value { display: block; font-size: .92rem; color: var(--white); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--green); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-row .form-group { margin-bottom: 0; }
label { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--green-mid); }
input, select, textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--cream-dark); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; color: var(--charcoal);
  background: var(--cream); transition: border-color .2s; outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: .75rem; color: var(--warm-grey); margin-top: .8rem; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--charcoal); padding: 3rem 0;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand .logo-f { font-size: 2.5rem; }
.footer-name { color: var(--white); font-size: 1rem; font-family: var(--font-display); font-weight: 300; }
.footer-address { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.25); }

/* ── Animations ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* Scroll reveal — safe: visible by default, enhanced when JS works */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.js-ready .reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-secondary { right: 2rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card--featured { grid-column: span 2; }
  .gallery-masonry { columns: 3; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.5rem; }
  .hero-sub { display: none; }

  .about-img-secondary { display: none; }
  .about-img-main { height: 320px; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .room-card--featured .room-img-wrap { height: 260px; }

  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 2; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .about-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  #about, #rooms, #amenities, #location, #contact { padding: 4rem 0; }
  .gallery-masonry { columns: 2; }
  .ribbon-inner { gap: 2rem; }
}

/* ── REVIEWS ─────────────────────────────── */
#reviews { padding: 7rem 0; background: var(--green); }
#reviews .section-tag { color: var(--gold); }
#reviews .section-header h2 { color: var(--white); }
#reviews .section-sub { color: rgba(255,255,255,.5); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .2s;
}
.review-card:hover { background: rgba(255,255,255,.1); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  flex: 1;
}
.review-author { display: flex; flex-direction: column; gap: .2rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: .8rem; }
.review-name { font-size: .82rem; font-weight: 500; color: var(--white); }
.review-source { font-size: .72rem; color: var(--gold); letter-spacing: .05em; }

.reviews-cta { display: flex; align-items: center; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.reviews-cta p { color: rgba(255,255,255,.5); font-size: .85rem; }
.reviews-cta .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); }
.reviews-cta .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.review-links { display: flex; gap: 1rem; }

/* ── About highlight box ─────────────────── */
.about-highlight {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--gold-pale); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  margin: 1rem 0;
}
.hl-icon { font-size: 1.3rem; flex-shrink: 0; }
.about-highlight p { font-size: .88rem; color: var(--green-mid); margin: 0; }

/* ── Rooms note ──────────────────────────── */
.rooms-note { text-align: center; margin-top: 2.5rem; font-size: .82rem; color: var(--warm-grey); }

/* ── Location extra ──────────────────────── */
.location-cancellation { margin-top: 1.5rem; }
.location-cancellation p:last-child { font-size: .88rem; color: var(--warm-grey); }

/* ── Form success message ────────────────── */
.form-success {
  background: #d4edda; border: 1px solid #c3e6cb;
  color: #155724; border-radius: var(--radius);
  padding: 1rem; text-align: center; font-size: .9rem;
  margin-top: .8rem;
}

/* ── Responsive reviews ──────────────────── */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta { flex-direction: column; }
}
