/* ==========================================================================
   FSF Components
   Buttons, cards, and reusable UI components
   ========================================================================== */

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */

.breadcrumb {
  padding: 1rem var(--container-padding, 2rem);
  font-size: 0.875rem;
  background: #fff;
}

.breadcrumb .container {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.breadcrumb-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #f4c057;
}

.breadcrumb-item::after {
  content: "›";
  color: #ddd;
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item:last-child {
  color: #666;
}

/* 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: var(--color-white);
}

.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: #f4c057;
  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: #fff !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: #f4c057;
}

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

.hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.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: #fff;
  text-align: center;
}

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

.bento-info-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.bento-info-cta {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  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: #fff;
  margin-bottom: 0.5rem;
}

.footer-cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  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: var(--color-gray-500);
  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: var(--color-gray-500);
  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: var(--color-gray-500);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-col .contact-label {
  color: var(--color-gray-500);
  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: var(--color-gray-500);
  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: var(--color-gray-500);
  font-size: 0.875rem;
  margin: 0;
}

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

.footer-service-areas a {
  color: var(--color-gray-500);
  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;
  }
}

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

/* Service Hero */
.service-hero {
  background: rgba(244, 192, 87, 0.1);
  color: var(--color-black);
  padding: var(--spacing-xl) var(--container-padding);
  text-align: center;
}

.service-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.service-hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-black);
  margin-bottom: 1rem;
}

.service-hero-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-hero-desc {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Credibility Section - Compact Stats Bar */
.section-credibility {
  background: #4a3728;
  padding: 1rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
}

.credibility-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}

.credibility-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.credibility-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent);
}

.credibility-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .section-credibility {
    max-width: 90%;
    margin-top: -1.5rem;
  }

  .credibility-grid {
    gap: 1.5rem;
  }

  .credibility-number {
    font-size: 1.2rem;
  }

  .credibility-label {
    font-size: 0.55rem;
  }
}

/* Process Section */
.process-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.process-step {
  text-align: center;
  padding: var(--spacing-sm);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

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

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

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  padding: var(--spacing-md);
  text-align: center;
}

.pricing-card.pricing-featured {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(244, 192, 87, 0.2);
  transform: scale(1.05);
}

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

.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.9rem;
  color: var(--color-gray-500);
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.pricing-featured {
    transform: none;
    order: -1;
  }
}

/* Service Areas */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  max-width: 600px;
  margin: 0 auto;
}

.service-area-list h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.service-area-list ul {
  list-style: none;
}

.service-area-list li {
  padding: 0.35rem 0;
  color: var(--color-gray-500);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .service-areas-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* FAQ Section */
.section-faq {
  padding: var(--spacing-xl) 0;
  background: rgba(244, 192, 87, 0.10);
}

.section-faq h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
  display: block;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gray-500);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--color-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* CTA Content */
.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

/* Collaborators Section */
.section-collab {
  padding: var(--spacing-lg) 0;
  background: #fff;
  position: relative;
}

.section-collab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 100px;
  height: 2px;
  background: #f4c057;
}

.collaborators-heading {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gray-700);
  margin-bottom: var(--spacing-lg);
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 3rem;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.collaborator-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 94px;
}

.collaborator-logo img {
  max-height: 94px;
  max-width: 234px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.collaborator-logo img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@media (max-width: 900px) {
  .collaborators-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .collaborators-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .collaborators-heading {
    font-size: 1.5rem;
  }

  .collaborator-logo img {
    max-height: 70px;
    max-width: 156px;
  }
}

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */

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

.section-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100px;
  right: 100px;
  height: 2px;
  background: #f4c057;
}

.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;
}

/* Carousel wrapper */
.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 cards */
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  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: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reviewer-avatar.has-photo .reviewer-initial {
  display: none;
}

.reviewer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-initial {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.25rem;
}

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

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

.review-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.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;
  font-style: normal;
}

.review-quote::before,
.review-quote::after {
  content: none;
}

.review-expand {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
}

.review-quote-wrapper.truncated .review-expand {
  display: inline-block;
}

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

.review-date {
  color: var(--color-gray-500);
}

.review-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.review-link:hover {
  text-decoration: underline;
}

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

.review-nav:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

.review-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

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

/* Pagination */
.review-pagination {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-gray-600);
  font-size: 0.9rem;
}

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

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

.review-mobile-nav .review-nav {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .review-nav-side {
    display: none;
  }

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

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

  .review-card {
    flex: 0 0 100%;
  }

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

@media (max-width: 480px) {
  .review-card {
    padding: 1.25rem;
  }

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


/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.contact-hero h1 {
  color: var(--color-accent);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--spacing-sm);
}

.contact-hero-divider {
  width: 40px;
  height: 2px;
  background: var(--color-white);
  margin: var(--spacing-sm) auto;
}

.contact-hero h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}

/* Contact Section */
.section-contact {
  background: rgba(244, 192, 87, 0.15);
  padding: var(--spacing-xl) 0;
}

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

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

.section-contact .section-subheading {
  color: var(--color-gray-600);
  font-size: 1.1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

/* Contact Sidebar */
.contact-sidebar {
  align-self: start;
}

.contact-info-box {
  background: rgba(244, 192, 87, 0.25);
  padding: var(--spacing-md);
  border-radius: 8px;
}

.contact-info-box h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-black);
}

.contact-info-box p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.contact-info-box a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.contact-social {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-gray-300);
}

.contact-social strong {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-social-icons {
  display: flex;
  gap: 0.75rem;
}

.contact-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  transition: background 0.2s ease;
}

.contact-social-icons a:hover {
  background: var(--color-accent);
}

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

/* Contact Form */
.contact-form-wrapper {
  background: rgba(244, 192, 87, 0.25);
  padding: var(--spacing-md);
  border-radius: 8px;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group label .label-hint {
  font-weight: 400;
  color: var(--color-gray-500);
  font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(244, 192, 87, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  padding: 1rem 2rem;
  margin-top: var(--spacing-sm);
  background: #f4c057;
  color: var(--color-black);
}

.contact-form .btn:hover {
  background: #e5b34a;
}

/* Hide footer CTA on contact page */
.page-contact .footer-cta {
  display: none;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.25rem;
  }

  .contact-hero h2 {
    font-size: 1.25rem;
  }
}

/* ==========================================
   Portfolio Grid Mobile Fixes
   ========================================== */

/* Portfolio grid - mobile responsive */
@media (max-width: 767px) {
  .portfolio-grid-overlay.grid-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  .portfolio-grid-overlay .grid-item {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .portfolio-grid-overlay .grid-item .grid-image,
  .portfolio-grid-overlay .grid-item .grid-image-inner-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .portfolio-grid-overlay .grid-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .portfolio-grid-overlay .portfolio-text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 8px !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.7)) !important;
  }

  .portfolio-grid-overlay .portfolio-title {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    color: white !important;
  }
}

/* ==========================================
   About Section Teaser (Rob-style)
   ========================================== */

.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);
}

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

.about-subheading {
  font-size: 1.1rem;
  color: var(--color-text-muted, #666);
  margin: 0;
}

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

.about-media {
  width: 100%;
}

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

.section-about-teaser .about-content {
  width: 100%;
}

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

.about-text p:last-child {
  margin-bottom: 1.5rem;
}

/* About Bento Grid - 5 items (4 images + 1 video) */
.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;
}

/* Main image - spans 2 columns */
.about-bento--main {
  grid-column: span 2;
  grid-row: span 1;
}

/* Video - spans 1 column, 2 rows */
.about-bento--video {
  grid-column: 3;
  grid-row: span 2;
}

/* Small images */
.about-bento--small-1,
.about-bento--small-2,
.about-bento--small-3 {
  grid-column: span 1;
}

/* Play button overlay */
.about-bento__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-bento__play svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.about-bento__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #f4c057;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

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

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

@media (max-width: 600px) {
  .about-header h2 {
    font-size: 1.5rem;
  }

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

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

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

  .about-bento__play {
    width: 50px;
    height: 50px;
  }

  .about-bento__play svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================
   About Us Page
   ========================================== */

/* About Hero */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: rgba(244, 192, 87, 0.4);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #333;
  padding: 0 20px;
  max-width: 800px;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f4c057;
}

.about-hero-intro {
  font-size: 1.25rem;
  opacity: 0.9;
  margin: 0;
}

/* About Stats */
.about-stats {
  background: #f4c057;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  padding: 20px;
}

.stat-card .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.stat-card .stat-label {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-top: 5px;
}

/* About Intro */
.about-intro {
  padding: 80px 0;
  background: #fff;
}

.about-intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-intro-content .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-intro-content p {
  color: #555;
  line-height: 1.7;
}

/* Team Split Screen Layout */
.about-team-split {
  padding: 0;
  background: #fff;
}

.team-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.team-profile {
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-profile-left {
  background: #fff;
}

.team-profile-right {
  background: #fff;
}

.team-profile-content {
  max-width: 500px;
  width: 100%;
}

.team-profile .bio-image {
  max-width: 200px;
  max-height: 250px;
  margin: 0 auto 30px;
}

.team-profile .bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-profile .bio-content {
  text-align: center;
}

.team-profile .bio-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.team-profile .bio-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4c057;
  margin-bottom: 1.5rem;
}

.team-profile .bio-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Bio Sections */
.about-bio {
  padding: 80px 0;
  background: #fff;
}

.about-bio-alt {
  background: rgba(244, 192, 87, 0.10);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.bio-grid-reverse {
  grid-template-columns: 1.5fr 1fr;
}

.bio-grid-reverse .bio-image {
  order: 2;
}

.bio-grid-reverse .bio-content {
  order: 1;
}

.bio-image {
  max-width: 200px;
  max-height: 250px;
}

.bio-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bio-role {
  font-size: 1.1rem;
  color: #f4c057;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bio-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Partnership Section */
.about-partnership {
  padding: 80px 0;
  background: rgba(244, 192, 87, 0.10);
}

.partnership-content {
  max-width: 1000px;
  margin: 0 auto;
}

.partnership-content h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.partnership-content .lead {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.partnership-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partnership-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #000;
}

.partnership-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.partnership-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================================================================
   Commitments Page
   ========================================================================== */

.commitments-hero {
  padding: 4rem 2rem;
  background: rgba(244, 192, 87, 0.4);
  text-align: center;
}

.commitments-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.commitments-hero h1 {
  font-size: 2.5rem;
  color: #f4c057;
  margin-bottom: 1rem;
}

.commitments-hero-intro {
  font-size: 1.25rem;
  color: #333;
  margin: 0;
}

/* Purpose Statement */
.commitments-purpose {
  padding: 4rem 2rem;
  background: #fff;
}

.purpose-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.purpose-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #f4c057;
}

.purpose-text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* Declaration of Interdependence */
.commitments-declaration {
  padding: 4rem 2rem;
  background: rgba(244, 192, 87, 0.10);
}

.declaration-content {
  max-width: 800px;
  margin: 0 auto;
}

.declaration-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.declaration-content > p {
  text-align: center;
  color: #555;
  margin-bottom: 1.5rem;
}

.declaration-content blockquote {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #f4c057;
  margin: 0;
}

.declaration-content blockquote p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.declaration-content blockquote p:last-child {
  margin-bottom: 0;
}

.declaration-content blockquote ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
}

.declaration-content blockquote li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Our Commitments Intro */
.commitments-intro {
  padding: 4rem 2rem;
  background: #fff;
}

.commitments-intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.commitments-intro-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #f4c057;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.commitments-intro-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.commitments-intro-content .highlight {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  font-style: italic;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Mission & Vision */
.commitments-mission-vision {
  padding: 4rem 2rem;
  background: rgba(244, 192, 87, 0.10);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f4c057;
}

.mission-card p,
.vision-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Values */
.commitments-values {
  padding: 4rem 2rem;
  background: #fff;
}

.commitments-values h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: rgba(244, 192, 87, 0.10);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #000;
}

.value-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Why This Matters */
.commitments-why {
  padding: 4rem 2rem;
  background: rgba(244, 192, 87, 0.10);
}

.why-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.why-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.why-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-content li {
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* How We Stay Accountable */
.commitments-accountability {
  padding: 4rem 2rem;
  background: #fff;
}

.commitments-accountability h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.accountability-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
  line-height: 1.7;
}

.accountability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.accountability-card {
  background: rgba(244, 192, 87, 0.10);
  padding: 2rem;
  border-radius: 8px;
}

.accountability-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.accountability-logo img {
  max-height: 80px;
  width: auto;
}

.accountability-card h3 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #000;
}

.accountability-detail {
  margin-bottom: 1.25rem;
}

.accountability-detail:last-child {
  margin-bottom: 0;
}

.accountability-detail h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f4c057;
  margin-bottom: 0.35rem;
}

.accountability-detail p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* What You Can Expect */
.commitments-expect {
  padding: 4rem 2rem;
  background: rgba(244, 192, 87, 0.10);
}

.expect-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.expect-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.expect-list li {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.expect-closing {
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

/* Commitments Page Mobile */
@media (max-width: 768px) {
  .commitments-hero h1 {
    font-size: 1.75rem;
  }

  .commitments-hero-intro {
    font-size: 1rem;
  }

  .purpose-text {
    font-size: 1.15rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .accountability-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .commitments-purpose,
  .commitments-declaration,
  .commitments-intro,
  .commitments-mission-vision,
  .commitments-values,
  .commitments-why,
  .commitments-accountability,
  .commitments-expect {
    padding: 3rem 1.5rem;
  }
}

/* Story Section */
.about-story {
  padding: 80px 0;
  background: #fff;
}

.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.story-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* About CTA */
.about-cta {
  padding: 80px 0;
  background: #f4c057;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}

/* About Page Mobile */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-hero-intro {
    font-size: 1rem;
  }

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

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .about-intro,
  .about-bio,
  .about-partnership,
  .about-story,
  .about-cta {
    padding: 50px 0;
  }

  .bio-grid,
  .bio-grid-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bio-grid-reverse .bio-image,
  .bio-grid-reverse .bio-content {
    order: unset;
  }

  .bio-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .bio-content {
    text-align: center;
  }

  /* Team Split Screen Mobile */
  .team-split-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .team-profile {
    padding: 50px 20px;
  }

  .team-profile .bio-image {
    max-width: 250px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-content h2,
  .partnership-content h2,
  .story-content h2,
  .about-cta h2 {
    font-size: 1.75rem;
  }
}


/* ==========================================================================
   Photography Gallery
   ========================================================================== */

.page-photography {
  background: var(--color-white);
}

.page-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  background: var(--color-gray-100);
}

.page-hero h1 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.page-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.photo-gallery {
  padding: 3rem 0 4rem;
}

.photo-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-gallery .gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* CTA Section */
.section-cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--color-gray-100);
}

.section-cta h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-cta p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Photography Gallery Responsive */
@media (max-width: 992px) {
  .photo-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 5rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero .hero-subtitle {
    font-size: 1rem;
  }

  .photo-gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section-cta h2 {
    font-size: 1.5rem;
  }
}


/* ==========================================================================
   Portfolio Grid
   ========================================================================== */

.section-portfolio {
  padding: 4rem 0;
  background: rgba(244, 192, 87, 0.10);
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.portfolio-header h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.portfolio-item.portrait {
  aspect-ratio: 3/4;
}

.portfolio-item.landscape {
  aspect-ratio: 4/3;
}

.portfolio-item-link {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-pill {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-700);
  backdrop-filter: blur(4px);
}

.portfolio-pill .location-text,
.portfolio-pill .location-link {
  color: var(--color-black);
  text-decoration: none;
}

.portfolio-pill .location-link:hover {
  text-decoration: underline;
}

.portfolio-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Portfolio Grid Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

@media (max-width: 480px) {
  .section-portfolio {
    padding: 3rem 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .portfolio-header h2 {
    font-size: 1.5rem;
  }
}


/* ==========================================================================
   Why St. Augustine Section
   ========================================================================== */

.section-why-st-augustine {
  padding: 4rem 0;
  background: var(--color-white);
}

.why-st-augustine-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-st-augustine-card h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-black);
}

.why-st-augustine-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

.why-st-augustine-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-why-st-augustine {
    padding: 3rem 0;
  }

  .why-st-augustine-card h2 {
    font-size: 1.75rem;
  }

  .why-st-augustine-card p {
    font-size: 1rem;
  }
}
