/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #C0392B;
  --gold:    #D4A017;
  --green:   #1E7A3A;
  --dark:    #111111;
  --mid:     #333333;
  --gray:    #666666;
  --light:   #FDF6EC;   /* warm cream — alternating sections */
  --white:   #FFFDF8;   /* soft warm white — base background */
  --border:  #EDE3D5;   /* warm-tinted border */
  --radius:  10px;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--mid);
  background: var(--white);   /* #FFFDF8 — warm base */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-head {
  margin-bottom: 48px;
}
.section-head p { color: var(--gray); font-size: 1rem; max-width: 520px; }
.center-light { text-align: center; }
.center-light p { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 3px 14px rgba(212,160,23,0.35);
}
.btn-gold:hover { background: #b8880f; border-color: #b8880f; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(212,160,23,0.45); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--mid);
  border-color: var(--mid);
}
.btn-outline-dark:hover { background: var(--mid); color: #fff; transform: translateY(-2px); }

/* ===========================
   LOGO — per-letter colors
=========================== */
@keyframes logo-fadein {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
  animation: logo-fadein 0.6s ease both;
}
.logo:hover .logo-j,
.logo:hover .logo-a,
.logo:hover .logo-l,
.logo:hover .logo-i,
.logo:hover .logo-s,
.logo:hover .logo-c,
.logo:hover .logo-o {
  filter: brightness(1.15);
  transition: filter 0.2s ease;
}
.logo-icon {
  font-size: 1.15rem;
  margin-right: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-icon { transform: translateX(3px); }
.logo-j { color: #9333EA; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-a { color: #E53E3E; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-l { color: #0891B2; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-i { color: #F97316; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-s { color: #16A34A; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-c { color: #DB2777; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-o { color: #D97706; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; }
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-left: 8px;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; height: 64px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-catering { font-weight: 600 !important; color: var(--green) !important; }
.nav-catering:hover { color: var(--dark) !important; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  margin-left: 6px;
  padding: 8px 16px !important;
}
.nav-cta:hover { background: #a93226 !important; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--mid); padding: 8px; margin-left: auto; }
.nav-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 8px 24px 16px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 0; font-size: 0.9rem; font-weight: 500; color: var(--mid); border-bottom: 1px solid var(--border); }
.nav-mobile-cta { background: var(--red); color: #fff !important; text-align: center; padding: 13px !important; border-radius: 4px; margin-top: 10px; border: none !important; font-weight: 700 !important; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  text-align: center;
  background: #1a0a0a;
  overflow: hidden;
}

/* The actual image — real <img> tag, never cropped */
.hero-bg-img {
  display: block;
  width: 100%;
  height: auto;           /* full image, no cropping ever */
  object-fit: contain;
  max-height: 92vh;       /* desktop: cap height so it doesn't take 2 screens */
  object-position: center top;
}

/* Desktop: make it feel like a cover hero by filling more height */
@media (min-width: 641px) {
  .hero-bg-img {
    max-height: 92vh;
    width: 100%;
    object-fit: cover;    /* desktop: cover is fine, image is wide enough */
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 35%,
    rgba(0,0,0,0.20) 60%,
    rgba(0,0,0,0.70) 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;   /* anchor to bottom */
  padding: 40px 24px 52px;
  color: var(--white);
}

/* Mobile: no max-height cap — show entire image */
@media (max-width: 640px) {
  .hero-bg-img {
    max-height: none;
    object-fit: contain;  /* guaranteed: full image visible */
  }
  .hero-content {
    padding: 24px 20px 36px;
  }
  .hero-content h1 { font-size: 1.8rem; margin-bottom: 8px; }
  .hero-sub { font-size: 0.85rem; margin-bottom: 20px; }
  .hero-btns .btn { font-size: 0.8rem; padding: 11px 20px; }
  .hero-eyebrow { font-size: 0.62rem; margin-bottom: 8px; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Heavier at top & bottom for text legibility, lighter in center so art shows */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.30) 38%,
    rgba(0,0,0,0.30) 62%,
    rgba(0,0,0,0.72) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn { font-size: 0.9rem; padding: 15px 36px; }

@media (max-width: 480px) { .hide-mobile { display: none; } }

/* ===========================
   MENU SECTION
=========================== */
.menu {
  padding: 88px 0;
  background: var(--light);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.3px;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.menu-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  gap: 12px;
}
.menu-placeholder span { font-size: 3rem; }
.menu-placeholder p { color: var(--gray); font-size: 0.95rem; }

/* Once images are provided: */
.menu-board {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
  border: 1px solid var(--border);
}
.menu-board img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-cta { text-align: center; margin-top: 40px; }

/* ===========================
   ABOUT
=========================== */
.about { padding: 88px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start; }
.about-text h2 { margin-bottom: 14px; }
.about-lead { font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.about-text p { color: var(--gray); font-size: 0.97rem; margin-bottom: 14px; }
.about-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about-list li { font-size: 0.9rem; color: var(--mid); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 220px;
}
.stat {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat.accent { background: var(--red); border-color: var(--red); }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.stat span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }
.stat.accent strong, .stat.accent span { color: var(--white); }

/* ===========================
   CONTACT
=========================== */
.contact { padding: 88px 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.contact-block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; }
.contact-icon { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.contact-block h3 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.contact-block p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.65; }
.contact-block small { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.contact-block a { color: var(--gold); transition: color 0.15s; }
.contact-block a:hover { color: #fff; }
.contact-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
.footer { background: #0a0a0a; padding: 36px 0 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.footer-logo { font-size: 1.6rem; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(4, 1fr); min-width: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .menu-tabs { gap: 6px; }
  .tab-btn { font-size: 0.76rem; padding: 8px 14px; }
}

/* ===========================
   MENU PHOTO LAYOUT
=========================== */
.menu-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.menu-photo-main,
.menu-photo-side {
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 420px;
  transition: transform 0.4s ease;
}
.menu-photo-main:hover img { transform: scale(1.03); }

.menu-photo-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-photo-side img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.menu-photo-side img:hover { transform: scale(1.02); }

.menu-photo-caption {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  flex: 1;
}
.menu-photo-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.menu-photo-caption p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 4px; }
.menu-note { color: var(--mid) !important; font-style: italic; }

@media (max-width: 640px) {
  .menu-photos { grid-template-columns: 1fr; }
  .menu-photo-main img { max-height: 260px; }
  .menu-photo-side img { height: 200px; }
}

/* Single photo + caption side-by-side */
.menu-photos--single {
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}
.menu-photos--single .menu-photo-main img {
  height: 380px;
  max-height: 420px;
  border-radius: var(--radius);
  object-position: center;
}
.menu-photo-caption--side {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--white);
}
@media (max-width: 640px) {
  .menu-photos--single { grid-template-columns: 1fr; }
  .menu-photos--single .menu-photo-main img { height: 240px; }
}

/* ===========================
   MENU GALLERY GRID (4-up)
=========================== */
.menu-gallery-header {
  margin-bottom: 20px;
}
.menu-gallery-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.menu-gallery-header p {
  font-size: 0.88rem;
  color: var(--gray);
}

.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.menu-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow);
}
.menu-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.menu-gallery-item:hover img { transform: scale(1.05); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 20px 10px 10px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

@media (max-width: 820px) {
  .menu-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .menu-gallery-grid { grid-template-columns: 1fr 1fr; }
  .menu-gallery-item img { height: 160px; }
}

/* ===========================
   BREAKFAST ASYMMETRIC GRID
=========================== */
.breakfast-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.breakfast-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow);
}
.breakfast-main img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.breakfast-main:hover img { transform: scale(1.03); }
.breakfast-main .gallery-label { font-size: 0.82rem; }

.breakfast-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.breakfast-side .menu-gallery-item { flex: 1; }
.breakfast-side .menu-gallery-item img {
  height: 184px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .breakfast-grid { grid-template-columns: 1fr; }
  .breakfast-main img { min-height: 240px; height: 240px; }
  .breakfast-side .menu-gallery-item img { height: 160px; }
}

/* ===========================
   TACO VARIETY GRID
=========================== */
.taco-variety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.taco-variety-grid .menu-gallery-item img {
  height: 180px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 820px) {
  .taco-variety-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .taco-variety-grid .menu-gallery-item img { height: 150px; }
}

/* 6-photo taco grid: 3 cols × 2 rows */
.taco-variety-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}
.taco-variety-grid--6 .menu-gallery-item img {
  height: 200px;
}
@media (max-width: 820px) {
  .taco-variety-grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .taco-variety-grid--6 .menu-gallery-item img { height: 150px; }
}

/* Burrito variety grid — 2 cols */
.burrito-variety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.burrito-variety-grid .menu-gallery-item img {
  height: 220px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 480px) {
  .burrito-variety-grid { grid-template-columns: 1fr; }
  .burrito-variety-grid .menu-gallery-item img { height: 180px; }
}

/* Breakfast variety grid — 2 cols */
.breakfast-variety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.breakfast-variety-grid .menu-gallery-item img {
  height: 220px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 480px) {
  .breakfast-variety-grid { grid-template-columns: 1fr; }
  .breakfast-variety-grid .menu-gallery-item img { height: 180px; }
}

/* ===========================
   FULL MENU SECTION
=========================== */
.fullmenu-section {
  padding: 88px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.fullmenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.fullmenu-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.fullmenu-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  line-height: 0;
  /* Allow touch zoom on mobile */
  -webkit-overflow-scrolling: touch;
}

.fullmenu-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  /* Never crop — show full menu */
  object-fit: contain;
}

/* Tablet: stack side by side still works, reduce gap */
@media (max-width: 820px) {
  .fullmenu-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ===========================
   REVIEWS SECTION
=========================== */
.reviews-section {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* --- Banner: photo + quote --- */
.reviews-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.reviews-banner-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.reviews-banner-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.reviews-banner-img:hover img { transform: scale(1.03); }

.reviews-banner-text { padding: 8px 0; }
.reviews-banner-text .eyebrow { margin-bottom: 16px; }

.reviews-banner-text blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 28px;
  position: relative;
  padding-left: 24px;
}
.reviews-banner-text blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -6px;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray);
}
.reviews-rating-summary strong { color: var(--dark); font-size: 1rem; }
.reviews-rating-summary .stars { font-size: 1rem; letter-spacing: 1px; }

/* --- Review cards grid --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars { font-size: 0.95rem; letter-spacing: 1px; }

.review-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.85rem; color: var(--dark); }
.review-author span { font-size: 0.75rem; color: var(--gray); }

/* Responsive */
@media (max-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .reviews-banner { grid-template-columns: 1fr; gap: 28px; }
  .reviews-banner-img img { height: 280px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===========================
   ABOUT — TEAM PHOTOS
=========================== */
.about-team-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-bottom: 20px;
}
.about-team-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.about-team-item img {
  width: 100%;
  height: auto;               /* full image — no cropping */
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;           /* fills any letterbox bars */
  transition: transform 0.4s ease;
}
.about-team-item:hover img { transform: scale(1.03); }
.about-photo-caption {
  line-height: 1.4;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--white);
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
  .about-team-photos { grid-template-columns: 1fr; }
  .about-team-item img { max-height: 280px; }
}
