/* Self-hosted fonts - eliminates render-blocking Google Fonts request */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/roboto-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/poppins-600.woff2') format('woff2');
}
/* ==========================================================================
   FSF Base Styles
   Reset, typography, and CSS variables
   ========================================================================== */

/* CSS Variables */
:root {
  /* Colors */
  --color-black: #000;
  --color-white: #fff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eee;
  --color-gray-300: #ddd;
  --color-gray-500: #666;
  --color-gray-700: #333;
  --color-accent: #f4c057;

  /* Typography */
  --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 2rem;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  padding-top: 120px; /* Space for fixed header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

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

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-lg) 0;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .section {
    padding: var(--spacing-md) 0;
  }
}
/* ==========================================================================
   FSF Site Header
   Clean, modular header styles
   ========================================================================== */

/* Header Container */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  position: relative;
}

/* Branding / Logo */
.branding {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.branding .logo img {
  display: block;
  height: 70px;
  width: auto;
}

.branding .tagline {
  font-size: 0.79rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}

/* Desktop Navigation - Hidden, using hamburger instead */
.nav-main {
  display: none;
}

.nav-main a,
.nav-dropdown-toggle {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-main a:hover,
.nav-dropdown-toggle:hover {
  color: #333;
}

/* CTA Button in Nav */
.nav-cta {
  background: #000 !important;
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 4px;
  transition: background 0.2s ease !important;
}

.nav-cta:hover {
  background: #333 !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  font-size: 0.75em;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 2rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 1rem 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a,
.mobile-accordion-toggle {
  display: block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  text-align: center;
  cursor: pointer;
}

.mobile-accordion-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.accordion-arrow {
  transition: transform 0.2s ease;
}

.mobile-accordion.open .accordion-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  background: #fff;
  width: 100%;
  text-align: center;
}

.mobile-accordion.open .mobile-accordion-content {
  display: block;
}

.mobile-nav-cta {
  background: #f4c057 !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin: 1rem 2rem;
  padding: 1rem !important;
  text-align: center !important;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    padding: 0.75rem 1rem;
  }

  .branding .logo img {
    height: 63px;
  }

  .mobile-menu-toggle {
    right: 1rem;
  }
}
/* ==========================================================================
   FSF Components
   Buttons, cards, and reusable UI components
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #f4c057;
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #e5b34a;
}

.btn-secondary {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #e5b34a;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-content {
  padding: var(--spacing-sm);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Hero Section - Split Layout */
.hero {
  position: relative;
  background: rgba(244, 192, 87, 0.10);
  color: var(--color-black);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
  gap: var(--spacing-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--container-padding);
  position: relative;
}

.hero-text {
  text-align: left;
}

.hero-script {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #5c4a0f;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-black);
}

.hero-tagline {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
}

.hero-desc {
  font-size: 1rem;
  color: var(--color-gray-500);
  margin-bottom: 0.25rem;
  line-height: 1.6;
  max-width: 390px;
}

.hero-cta {
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  background: #f4c057 !important;
  color: #1a1a1a !important;
}

.hero-cta:hover {
  background: #e5b34a !important;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-gray-300);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b8860b;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
}

.hero-photo {
  position: absolute;
  right: var(--container-padding);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
  overflow: hidden;
  max-width: 320px;
}

.hero-photo img,
.hero-photo video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.hero-photo {
  cursor: pointer;
}

.hero-play-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-play-btn .play-icon {
  color: white;
  font-size: 14px;
  margin-left: 2px;
}

.hero-play-btn:hover {
  background: rgba(244, 192, 87, 0.9);
  border-color: #f4c057;
}

.hero-photo.playing picture,
.hero-photo.playing .hero-poster,
.hero-photo.playing .hero-play-btn {
  display: none;
}

.hero-photo.playing .hero-video {
  display: block !important;
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: var(--spacing-md) var(--container-padding);
  }

  .hero-text {
    text-align: center;
    order: 1;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-photo {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: block;
    margin: var(--spacing-sm) auto;
    max-width: 280px;
  }

  .hero-photo img,
  .hero-photo video {
    max-height: 50vh;
    object-fit: contain;
  }

  .hero-play-btn {
    width: 30px;
    height: 30px;
    bottom: 5px;
    right: 5px;
  }

  .hero-play-btn .play-icon {
    font-size: 12px;
  }

  .hero-desc {
    max-width: none;
  }
}

/* Bento Portfolio Section */
.bento-portfolio {
  padding: var(--spacing-lg) var(--container-padding);
  background: var(--color-white);
}

.bento-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bento-header h2 {
  font-size: 1.44rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.bento-header p {
  color: var(--color-gray-500);
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.bento-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  margin: 0;
}

.bento-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f4c057;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-item:hover::before {
  opacity: 0.4;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 70%);
}

.bento-label {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.bento-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 0.35rem;
  line-height: 1.3;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-featured .bento-label {
  font-size: 1.35rem;
}

.bento-info {
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-info-content {
  padding: 2rem;
  color: #1a1a1a;
  text-align: center;
}

.bento-info-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.bento-info-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.25rem;
}

.bento-info-cta {
  display: inline-block;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.bento-info-cta:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .bento-medium,
  .bento-wide {
    grid-column: span 1;
  }
}

/* Section Styles */
.section-light {
  background: var(--color-white);
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-gray {
  background: var(--color-gray-100);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
}

/* Footer CTA Banner */
.footer-cta {
  background: var(--color-accent);
  padding: var(--spacing-lg) var(--container-padding);
  text-align: center;
}

.footer-cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.footer-cta-content p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.footer-cta-button {
  display: inline-block;
  background: #fff;
  color: var(--color-black);
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-cta-button:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Footer Main */
.footer-main {
  padding: var(--spacing-lg) var(--container-padding);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--spacing-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Footer Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo img {
  height: 84px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer Columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-col p {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-col .contact-label {
  color: #fff;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: #fff;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: var(--color-white);
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: var(--spacing-md) var(--container-padding);
  border-top: 1px solid var(--color-gray-700);
}

.footer-bottom p {
  color: #fff;
  font-size: 0.875rem;
  margin: 0;
}

.footer-service-areas {
  margin-bottom: 0.5rem;
}

.footer-service-areas a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-service-areas a:hover {
  color: var(--color-white);
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .footer-brand {
    max-width: none;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto var(--spacing-sm);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-cta-content h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   About Teaser Section
   ========================================================================== */

.section-about-teaser {
  padding: var(--spacing-xl) 0;
  background: rgba(244, 192, 87, 0.10);
}

.about-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: 0 var(--container-padding);
}

.about-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-subheading {
  font-size: 1.1rem;
  color: var(--color-gray-500);
  margin: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  align-items: center;
}

.about-content {
  padding-right: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--color-gray-600);
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 12px;
}

.about-bento__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e0e0e0;
}

.about-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-bento--main {
  grid-column: span 2;
}

.about-bento--video {
  grid-column: 3;
  grid-row: span 2;
}

/* Portfolio Grid Section */
.section-portfolio {
  padding: var(--spacing-xl) var(--container-padding);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Testimonials / Reviews Section
   ========================================================================== */

.section-testimonials {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.testimonials-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonials-header p {
  color: var(--color-gray-600);
  font-size: 1.1rem;
}

.review-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-cards-viewport {
  overflow: hidden;
  flex: 1;
}

.review-cards-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.review-author-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d67f2a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-initial {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-stars {
  color: #f4c057;
  font-size: 0.9rem;
}

.review-quote-wrapper {
  flex: 1;
  margin-bottom: 1rem;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin: 0;
}

.review-read-more {
  display: none;
  font-size: 0.9rem;
  color: var(--color-gray-600);
  text-decoration: none;
  margin-top: 0.5rem;
}

.review-read-more:hover {
  color: #1a1a1a;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
}

.review-date {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

.review-link {
  font-size: 0.85rem;
  color: var(--color-gray-600);
  text-decoration: none;
}

.review-link:hover {
  color: #f4c057;
}

/* Navigation buttons */
.review-nav {
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.review-nav:hover {
  background: #f4c057;
  border-color: #f4c057;
}

.review-nav-side {
  flex-shrink: 0;
}

.review-nav-bottom {
  display: none;
}

.review-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.review-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-300);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.review-pagination-dot.active {
  background: #f4c057;
}

.review-mobile-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.review-mobile-nav .review-pagination {
  margin-top: 0;
  font-size: 1rem;
  color: var(--color-gray-600);
}

.review-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.review-cta-link {
  font-size: 1rem;
  color: var(--color-gray-600);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.review-cta-link:hover {
  color: #1a1a1a;
}

.review-pagination-desktop {
  display: flex;
}

/* Mobile Fixes */
@media (max-width: 768px) {
  /* Add spacing between sections */
  section {
    margin-bottom: var(--spacing-lg);
  }

  /* Testimonials section - mobile layout like Rob's site */
  .section-testimonials {
    background: #f9f9f9;
    padding: 2rem 1.5rem;
  }

  .testimonials-container {
    padding: 0;
  }

  .testimonials-header h2 {
    font-size: 1.75rem;
  }

  .review-carousel-wrapper {
    flex-direction: column;
  }

  .review-nav-side {
    display: none;
  }

  .review-mobile-nav {
    display: flex;
  }

  .review-pagination-desktop {
    display: none;
  }

  .review-cards-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
  }

  .review-cards-viewport::-webkit-scrollbar {
    display: none;
  }

  .review-cards-track {
    gap: 0;
  }

  .review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 1.25rem;
    box-sizing: border-box;
  }

  .review-quote {
    white-space: normal;
    word-wrap: break-word;
  }

  .review-quote-wrapper {
    position: relative;
  }

  .review-quote {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-read-more {
    display: inline-block;
  }

  .review-cta {
    margin-top: 1rem;
  }

  /* Center buttons */
  .about-content {
    text-align: center;
    padding-right: 0;
  }

  .about-content .btn {
    display: block;
    margin: 0 auto;
    max-width: 200px;
  }

  /* About grid for mobile */
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 120px);
  }

  .about-bento--main {
    grid-column: span 2;
  }

  .about-bento--video {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Portfolio grid mobile */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .portfolio-item img {
    aspect-ratio: 1/1;
  }

  /* Center all section titles on mobile */
  .portfolio-header,
  .why-st-augustine-card,
  .faq-header,
  .section-header,
  .section-faq h2 {
    text-align: center;
  }
}

/* ==========================================================================
   Service Page Styles
   ========================================================================== */

