/*
  Keystone Law Group — Main Stylesheet
  Version: 20260615
  Design: Option D (Berenzweig-inspired, Navy + Gold)
*/

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: #ffffff;
  color: #1a1a1a;
}

body.nav-open {
  overflow: hidden;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: 'Literata', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
}

/* ==============================
   UTILITY BAR
   ============================== */

.utility-bar {
  background: #0a0a0a;
  padding: 9px 0;
}

.utility-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.utility-bar .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-bar .phone {
  font-size: 16.5px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.utility-bar .phone:hover {
  color: #C9A84C;
}

/* ==============================
   SITE HEADER
   ============================== */

.site-header {
  background: #1B2E5E;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

.site-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: 'Literata', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  color: #C9A84C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A84C;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Montserrat', sans-serif !important;
  background: #C9A84C !important;
  color: #0a0a0a !important;
  padding: 10px 22px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.07em !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #d4b56a !important;
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

.nav-close {
  display: none;
}

.footer-badge {
  display: inline-block;
  margin-top: 24px;
  width: 172px;
  padding: 16px 20px 18px;
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.footer-badge:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.footer-badge .sl-rated {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 9px;
}
.footer-badge .sl-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 11px;
}
.footer-badge .sl-name {
  display: block;
  font-family: 'Literata', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: #1B2E5E;
  line-height: 1.3;
}
.footer-badge .sl-year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #027793;
  margin-top: 3px;
}

/* ==============================
   HERO
   ============================== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-city.jpg');
  background-size: cover;
  background-position: center 45%;
  will-change: transform;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 8, 10, 0.85) 0%,
    rgba(18, 30, 60, 0.65) 55%,
    rgba(8, 8, 10, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 32px;
}

.hero-inner {
  max-width: 620px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  display: block;
  font-size: 12.5px;
  color: #C9A84C;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.55s ease 0.38s forwards;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 510px;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.55s ease 0.54s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.55s ease 0.7s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   BUTTONS
   ============================== */

.btn-gold {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  background: #C9A84C;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 32px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: #d4b56a;
}

.btn-outline-white {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-outline-white:hover {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.1);
  color: #C9A84C;
}

.btn-navy {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  background: #1B2E5E;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 30px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-navy:hover {
  background: #132245;
}

/* ==============================
   SECTION SHARED
   ============================== */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  display: block;
  font-size: 12px;
  color: #C9A84C;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}

.section-title {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: #5a5a5a;
  max-width: 540px;
  line-height: 1.8;
}

/* ==============================
   PRACTICE AREAS
   ============================== */

.practice-section {
  background: #F5F4F0;
  padding: 88px 0;
}

.section-header {
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto 52px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.practice-card {
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease;
}

.practice-card:hover {
  transform: translateY(-4px);
}

.practice-card-img-wrap {
  display: block;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}

.practice-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.practice-card:hover .practice-card-img {
  transform: scale(1.05);
}

.practice-card-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid #C9A84C;
}

.practice-card-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #1B2E5E;
  margin-bottom: 10px;
  line-height: 1.3;
}

.practice-card-desc {
  font-size: 15.5px;
  color: #666666;
  line-height: 1.7;
  flex: 1;
}

.practice-card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: #C9A84C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.5);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.practice-card-link:hover {
  color: #1B2E5E;
  border-color: #1B2E5E;
}

.practice-all {
  text-align: center;
  margin-top: 48px;
}

/* ==============================
   ATTORNEY SECTION
   ============================== */

.attorney-section {
  background: #ffffff;
  padding: 88px 0;
}

.attorney-grid {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.attorney-img-wrap {
  position: relative;
}

.attorney-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.attorney-img-accent {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 2px solid #C9A84C;
  z-index: -1;
  pointer-events: none;
}

.attorney-content .section-label {
  margin-bottom: 10px;
}

.attorney-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: #1a1a1a;
  margin-bottom: 6px;
}

.attorney-role {
  font-size: 14.5px;
  color: #C9A84C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.attorney-rule {
  width: 40px;
  height: 2px;
  background: #1B2E5E;
  margin-bottom: 26px;
}

.attorney-bio {
  font-size: 16.5px;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 20px;
}

.attorney-stats {
  display: flex;
  gap: 36px;
  padding: 26px 0;
  margin: 8px 0 34px;
  border-top: 1px solid #e8e5e0;
  border-bottom: 1px solid #e8e5e0;
}

.stat-num {
  font-family: 'Literata', Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  color: #1B2E5E;
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

/* ==============================
   WHY SECTION
   ============================== */

.why-section {
  background: #1B2E5E;
  padding: 88px 0;
}

.why-header {
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto 52px;
}

.why-section .section-label {
  color: #C9A84C;
}

.why-section .section-title {
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.why-item {
  padding: 32px 36px 32px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
}

.why-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 36px;
  margin-right: 36px;
}

.why-num {
  font-family: 'Literata', Georgia, serif;
  font-size: 13.5px;
  color: #C9A84C;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.why-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.why-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

/* ==============================
   CTA SECTION
   ============================== */

.cta-section {
  background: #0a0a0a;
  padding: 88px 32px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 500;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.cta-divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  vertical-align: middle;
}

.cta-phone-link {
  font-size: 22px;
  font-weight: 500;
  color: #C9A84C;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  vertical-align: middle;
}

.cta-phone-link:hover {
  color: #d4b56a;
}

.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ==============================
   FOOTER
   ============================== */

.site-footer {
  background: #111c38;
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-family: 'Literata', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 3px;
}

.footer-brand-sub {
  font-size: 11.5px;
  color: #C9A84C;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #C9A84C;
}

.footer-contact span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.footer-col h4 {
  font-family: 'Literata', Georgia, serif;
  font-size: 16.5px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #C9A84C;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.32);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Desktop: stack the footer credit centered so it clears the bottom-right review widget */
@media (min-width: 769px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 960px) {
  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .attorney-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .attorney-img-wrap {
    max-width: 440px;
  }
  .attorney-img-accent {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-item {
    padding: 28px 0;
    border-right: none !important;
    margin-right: 0 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }
  .logo {
    flex-shrink: 1;
    min-width: 0;
  }
  .logo-text {
    min-width: 0;
    overflow: hidden;
  }
  .logo-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .logo-sub {
    display: none;
  }
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #1B2E5E;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 26px;
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    font-size: 19px;
  }
  .nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }
  .nav-cta {
    align-self: flex-start;
    margin-top: 10px;
  }
  .hero {
    min-height: 540px;
  }
  .hero-content {
    padding: 70px 24px;
  }
  .practice-grid {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .section-header {
    padding: 0 24px;
  }
  .section-inner {
    padding: 0 24px;
  }
  .why-grid,
  .why-header {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-inner {
    padding: 0 24px;
  }
  .utility-bar .label {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .attorney-stats {
    flex-direction: column;
    gap: 20px;
  }
  .cta-row {
    flex-direction: column;
  }
  .cta-divider {
    display: none;
  }
  .logo-img {
    height: 38px;
  }
  .logo-name {
    font-size: 15.5px;
  }
}

/* ==============================
   LEAVE A REVIEW WIDGET
   ============================== */
.review-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  /* Container itself must not capture taps over its empty/invisible area —
     only the toggle button and the open panel are interactive. */
  pointer-events: none;
}

/* Hide the review widget while the full-screen mobile menu is open, so it
   never overlaps menu items like "Schedule Consultation". */
body.nav-open .review-widget {
  display: none;
}

.review-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: #1B2E5E;
  color: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(10, 20, 45, 0.35);
  animation: reviewPulse 2.6s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}
.review-toggle:hover {
  background: #24386e;
  transform: translateY(-1px);
}
.review-toggle-star {
  color: #C9A84C;
  font-size: 17px;
  line-height: 1;
}

@keyframes reviewPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(10, 20, 45, 0.35), 0 0 0 0 rgba(201, 168, 76, 0.45); }
  50% { box-shadow: 0 6px 22px rgba(10, 20, 45, 0.35), 0 0 0 10px rgba(201, 168, 76, 0); }
}
.review-widget.open .review-toggle {
  animation: none;
}

.review-panel {
  width: 300px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(10, 20, 45, 0.28);
  padding: 24px 22px 20px;
  position: relative;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.review-widget.open .review-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.review-panel-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #9aa0ac;
  cursor: pointer;
  padding: 0;
}
.review-panel-close:hover { color: #1B2E5E; }

.review-panel-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 6px;
}
.review-panel-head h4 {
  font-family: 'Literata', Georgia, serif;
  font-size: 19px;
  color: #1B2E5E;
  margin: 0 0 8px;
  line-height: 1.25;
}
.review-panel-head p {
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 16px;
}

.review-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 10px 16px;
  background: #f7f7f4;
  border: 1px solid #ececec;
  border-radius: 9px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.review-option:hover {
  border-color: #C9A84C;
  box-shadow: 0 4px 14px rgba(10, 20, 45, 0.1);
  transform: translateY(-2px);
}
.review-option img {
  max-height: 34px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .review-widget { right: 16px; bottom: 16px; gap: 12px; }
  .review-toggle { padding: 11px 18px; font-size: 12.5px; }
  .review-panel { width: 270px; padding: 22px 18px 18px; }
}
