/* ==========================================================================
   Resurrection Properties LLC - shared stylesheet
   Rebuilt 1:1 from a Wix source. Fonts are loaded per-page via <link> tags.
   Shared tokens + chrome (top bar, nav, footer) live here and are owned by
   the orchestrator. Page-scoped rules are appended below under page: banners.
   ========================================================================== */

:root {
  --green: #8ba86b;
  --green-dark: #74945a;
  --green-darker: #5f7d49;
  --green-soft: #a9c089;
  --cream: #eef3e0;
  --cream-2: #e8efd8;
  --ink: #141414;
  --ink-2: #1f1f1f;
  --near-black: #0d0d0d;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --gray-bg: #f4f4ef;
  --line: #e3e3d8;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --script: "Cookie", "Segoe Script", cursive;
  --sans: "Poppins", "Nunito Sans", Arial, Helvetica, sans-serif;

  --maxw: 1200px;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 0.4em; line-height: 1.2; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Accent word helper (last word of a heading in green) ---------- */
.accent { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--near-black);
  color: #fff;
  font-size: 0.8rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-item .ico {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-item .ico svg { width: 16px; height: 16px; }
.topbar-label { font-weight: 700; display: block; line-height: 1.3; }
.topbar-value { color: #d8d8d8; }
.topbar-value a { color: #d8d8d8; }
.topbar-value a:hover { color: #fff; }
.topbar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.topbar-social a:hover { background: var(--green); color: #fff; }
.topbar-social svg { width: 15px; height: 15px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 900;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
}
.nav-logo img {
  width: 150px;
  height: auto;
  border-radius: 6px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}
.nav-menu a:hover { color: var(--green); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ==========================================================================
   SECTION SCAFFOLD
   ========================================================================== */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: 0.01em;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -0.2em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--cream);
  color: var(--text);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img {
  width: 190px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 18px;
}
.footer-brand .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.footer-brand .footer-social a:hover { background: var(--green); color: #fff; }
.footer-brand .footer-social svg { width: 16px; height: 16px; }
.footer h4 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--green); }
.footer-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-row .ico {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-row .ico svg { width: 14px; height: 14px; }
.footer-contact-row strong { display: block; font-size: 0.95rem; }
.footer-contact-row span { color: var(--text-muted); font-size: 0.9rem; }
.footer .btn { margin-top: 8px; }
.footer-bottom {
  margin-top: 60px;
  background: var(--near-black);
  color: #cfcfcf;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  background-image: linear-gradient(rgba(13, 13, 13, 0.86), rgba(13, 13, 13, 0.86)),
    url("orig/50.jpg");
  background-size: cover;
  background-position: center;
}
.footer-bottom strong { color: #fff; }

/* ==========================================================================
   ANIMATIONS (ported from the Wix source motion layer)
   Pure-CSS, on-load, animation-fill-mode: both -> content always ends
   visible even if nothing else runs. Never used to permanently hide copy.
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes growIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.anim { animation: fadeIn 0.9s ease both; }
.anim-float { animation: floatIn 0.9s ease both; }
.anim-left { animation: slideInLeft 0.9s ease both; }
.anim-right { animation: slideInRight 0.9s ease both; }
.anim-grow { animation: growIn 0.8s ease both; }
.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.24s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.48s; }

/* Scroll reveal: elements marked .reveal-init START FULLY VISIBLE in this
   stylesheet. The shared script (site.js) applies the hidden state INLINE at
   runtime, and only after its IntersectionObserver has attached, then clears
   it to reveal. If the script is missing, blocked, or throws, the content is
   already visible and nothing is lost. No hidden state ever lives in CSS. */
.reveal-init { transition: opacity 0.8s ease, transform 0.8s ease; will-change: opacity, transform; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   RESPONSIVE (shared chrome)
   ========================================================================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: var(--cream);
    padding: 18px 24px 26px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-cta { margin: 8px 0 0; }
  .topbar-info { gap: 22px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   page: home
   Section styles for the home layout. copy-of-home reuses these same
   classes and only appends its small deltas under its own banner.
   ========================================================================== */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  background: var(--near-black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("orig/04.jpg");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.62);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; width: 100%; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.1em;
}
.hero-tagline {
  font-family: var(--script);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 400;
  margin: 0 0 1.4em;
  line-height: 1;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.hero-call-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-call-ico svg { width: 17px; height: 17px; }
.hero-call:hover { color: var(--green-soft); }

/* ---- Who We Are ---- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-text .section-title { margin-bottom: 0.5em; }
.who-text p { color: var(--text-muted); margin-bottom: 1.6em; }
.who-media {
  position: relative;
  min-height: 500px;
}
.who-img-main {
  width: 66%;
  height: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.who-img-over {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 55%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.who-img-badge {
  position: absolute;
  right: 6%;
  top: 6px;
  width: 150px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}

/* ---- Services ---- */
.services {
  position: relative;
  padding: 84px 0;
  background: var(--green);
  color: #fff;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("orig/01.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.services-head { text-align: center; margin-bottom: 44px; }
.services-title { color: #fff; }
.services-sub { color: rgba(255, 255, 255, 0.9); margin: 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
}
.service-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- What Sets Us Apart ---- */
.apart { background: #fff; }
.apart-title { text-align: center; margin-bottom: 44px; }
.apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.apart-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.apart-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.apart-ico {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  border-radius: 8px;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.apart-ico img { width: 34px; height: 34px; }
.apart-card h5 { font-size: 1.05rem; font-weight: 600; margin: 0 0 4px; }
.apart-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* ---- Testimonials ---- */
.testimonials {
  position: relative;
  padding: 84px 0;
  color: #fff;
  background: var(--near-black);
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url("orig/16.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.testimonials-overlay { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.72); }
.testimonials-inner { position: relative; z-index: 2; }
.testimonials-swiper { padding: 10px 8px 50px; }
.testimonial-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.testimonial-card .stars { width: 90px; height: auto; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.96rem; color: #444; }
.testimonial-name { font-weight: 600; color: var(--green-dark); }
.testimonials-cta { text-align: center; margin-top: 6px; }

/* ---- Gallery ---- */
.gallery-title { text-align: center; margin-bottom: 40px; }
.gallery-swiper { padding-bottom: 52px; }
.gallery-swiper .swiper-slide {
  height: auto;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Swiper control theming (shared by both sliders) */
.swiper-button-prev, .swiper-button-next { color: var(--green); }
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next { color: #fff; }
.swiper-button-prev:after, .swiper-button-next:after { font-size: 26px; font-weight: 700; }
.swiper-pagination-bullet { background: var(--green); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--green); opacity: 1; }
.testimonials .swiper-pagination-bullet { background: #fff; }

/* ---- How It Works ---- */
.howitworks { background: var(--gray-bg); }
.how-head { text-align: center; margin-bottom: 44px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-card {
  border-radius: var(--radius);
  padding: 34px 22px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.how-card:hover { transform: translateY(-5px); }
.how-1 { background: var(--green-soft); }
.how-2 { background: var(--green); }
.how-3 { background: var(--green-dark); }
.how-4 { background: var(--near-black); }
.how-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
}
.how-ico img { width: 64px; height: 64px; filter: brightness(0) invert(1); }
.how-card h6 { font-size: 1rem; font-weight: 600; margin: 0; line-height: 1.35; }

/* ---- Contact ---- */
.contact {
  position: relative;
  padding: 84px 0;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url("orig/47.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.30;
}
.contact-overlay { position: absolute; inset: 0; background: rgba(12, 12, 12, 0.78); }
.contact-inner { position: relative; z-index: 2; }
.contact-head { text-align: center; margin-bottom: 40px; }
.contact-title { color: #fff; }
.contact-sub { color: rgba(255, 255, 255, 0.88); margin: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: stretch;
}
.contact-info {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
}
.contact-info h5 { font-size: 1.25rem; font-weight: 600; margin-bottom: 22px; }
.ci-row { margin-bottom: 20px; display: flex; flex-direction: column; }
.ci-label { font-weight: 700; font-size: 0.95rem; }
.ci-row a, .ci-row span { color: rgba(255, 255, 255, 0.92); }
.ci-row a:hover { color: #fff; text-decoration: underline; }

.contact-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
}
.field .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d3d3cb;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: #fbfbf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 168, 107, 0.2);
}
.field textarea { resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 4px; }

.contact-map {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe { display: block; width: 100%; }

/* ---- Home responsive ---- */
@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-media { min-height: 420px; }
  .apart-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-card img { height: 240px; }
}

/* ==========================================================================
   page: copy-of-home
   Deltas over the shared home layout: testimonial author avatars and the
   labelled location map block.
   ========================================================================== */
.testimonial-card--avatar { padding-top: 46px; position: relative; }
.testimonial-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  margin-bottom: 12px;
}
.contact-map-label {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}
.contact-map-label strong { font-size: 1rem; }
.contact-map-label span { color: rgba(255, 255, 255, 0.88); }
.contact-map-label a { color: var(--green-soft); font-weight: 600; }
.contact-map-label a:hover { color: #fff; text-decoration: underline; }

/* ==========================================================================
   page: leave-a-review
   Wix Comments widget reproduced as a static display (see CLONE-REPORT.md
   "Needs wiring before launch" - comment posting was a Wix platform feature).
   ========================================================================== */
.reviews { min-height: 60vh; }
.reviews-container { max-width: 1060px; }
.reviews-heading { font-size: 1.9rem; font-weight: 700; margin-bottom: 18px; }
.reviews-divider { border: 0; border-top: 1px solid var(--line); margin: 0 0 30px; }
.comment-box {
  border: 1px solid #d3d3cb;
  border-radius: 8px;
  padding: 18px 18px;
  background: #fff;
  margin-bottom: 28px;
}
.comment-box-placeholder { color: #8a8a82; }
.reviews-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.reviews-sort-value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  font-weight: 500;
}
.comment { display: flex; gap: 16px; }
.comment-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9e9e0;
  color: #9a9a90;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-avatar svg { width: 26px; height: 26px; }
.comment-body { flex: 1; }
.comment-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.comment-author { display: block; font-size: 1rem; }
.comment-date { font-size: 0.82rem; color: var(--text-muted); }
.comment-menu { color: #9a9a90; cursor: default; }
.comment-text { margin: 12px 0; color: #333; }
.comment-text p { margin: 0 0 12px; }
.comment-actions { display: flex; gap: 22px; }
.comment-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: default;
}
