/* ==========================================================================
   REZAVÁ CATERING - WORDPRESS HOMEPAGE STYLES
   ==========================================================================
   
   Design System:
   - Primary (Olive Green): #727d4f / hsl(67, 16%, 41%)
   - Secondary (Terracotta): #b75a3a / hsl(17, 47%, 49%)
   - Background: #faf8f5 / hsl(40, 20%, 97%)
   - Foreground: #2a2624 / hsl(20, 10%, 15%)
   - Card: #ffffff
   - Muted: #edeae4 / hsl(40, 15%, 92%)
   - Muted Foreground: #6e6661 / hsl(20, 10%, 40%)
   - Border: #ddd9d3 / hsl(40, 10%, 85%)
   - Dark: #2a2624
   - Dark Foreground: #faf8f5
   
   Font: Barlow Condensed (Google Fonts)
   
   Breakpoints (mobile-first):
   - Base: 0px (mobile)
   - md: 768px (tablet)
   - lg: 1024px (desktop)
   ========================================================================== */

/* ==========================================================================
   0. BASE & VARIABLES
   ========================================================================== */
/* Force load Barlow Condensed with Czech character support */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&subset=latin-ext&display=swap');

:root {
  --color-primary: #727d4f;
  --color-primary-foreground: #ffffff;
  --color-secondary: #b75a3a;
  --color-secondary-foreground: #ffffff;
  --color-background: #faf8f5;
  --color-foreground: #2a2624;
  --color-card: #ffffff;
  --color-muted: #edeae4;
  --color-muted-foreground: #6e6661;
  --color-border: #ddd9d3;
  --color-dark: #2a2624;
  --color-dark-foreground: #faf8f5;
  --color-star: #facc15;
  
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow Condensed', sans-serif;
  
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --container-max: 1400px;
  --container-padding: 1rem;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

a {
  color: #121a24;
	text-decoration: none;
}

/* Base typography */
.hero, .social-proof, .services, .how-it-works, .testimonials,
.about, .chef, .locations, .menus, .why-us, .faq, .contact, .final-cta {
  font-family: var(--font-body);
  color: var(--color-foreground);
  line-height: 1.7;
}

.hero h1, .hero h2, .hero h3,
.services h2, .services h3,
.how-it-works h2, .how-it-works h3,
.testimonials h2,
.about h2,
.chef h2, .chef h3,
.locations h2, .locations h3,
.menus h2, .menus h3,
.why-us h2, .why-us h3,
.faq h2,
.contact h2, .contact h3,
.final-cta h2 {
  font-family: var(--font-heading);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.hero {
  background-color: var(--color-background);
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .hero {
    padding: 5rem 0;
  }
}

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

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Rating Badge */
.hero__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(237, 234, 228, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(221, 217, 211, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.hero__stars {
  display: flex;
  gap: 0.125rem;
}

.hero__star {
  width: 1rem;
  height: 1rem;
  color: var(--color-star);
}

.hero__rating-score {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-foreground);
}

.hero__rating-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.hero__google-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Title */
.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__title-highlight {
  box-shadow: inset 0 -0.26em 0 0 var(--color-secondary);
}

/* Description */
.hero__description {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
}

/* CTAs */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero__cta-group {
    flex-direction: row;
  }
}

.hero__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.hero__cta-button--primary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.hero__cta-button--primary:hover {
  background-color: rgba(114, 125, 79, 0.9);
}

.hero__cta-button--secondary {
  background-color: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.hero__cta-button--secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
}

.hero__cta-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Response Time */
.hero__response-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

.hero__response-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
}

/* Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero__stat {
  text-align: center;
  padding: 1rem;
  background-color: rgba(237, 234, 228, 0.5);
  border-radius: var(--radius-lg);
}

.hero__stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hero__stat-value span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.hero__stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-secondary);
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* Images */
.hero__images {
  position: relative;
}

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

.hero__image-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__image-column--offset {
  padding-top: 2rem;
}

.hero__image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero__image--tall {
  height: 16rem;
}

.hero__image--short {
  height: 12rem;
}

.hero__decoration {
  position: absolute;
  border-radius: 9999px;
  filter: blur(40px);
}

.hero__decoration--bottom {
  bottom: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(183, 90, 58, 0.2);
}

.hero__decoration--top {
  top: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(114, 125, 79, 0.2);
}

/* ==========================================================================
   2. SOCIAL PROOF STRIP
   ========================================================================== */

.social-proof {
  padding: 1.5rem 0;
  background-color: var(--color-primary);
}

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

.social-proof__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .social-proof__content {
    flex-direction: row;
    gap: 2rem;
  }
}

.social-proof__label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-proof__companies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .social-proof__companies {
    gap: 2.5rem;
  }
}

.social-proof__company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.social-proof__company:hover {
  color: #ffffff;
}

.social-proof__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.social-proof__name {
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* ==========================================================================
   3. SERVICES SECTION
   ========================================================================== */

.services {
  padding: 5rem 0;
  background-color: rgba(237, 234, 228, 0.3);
}

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

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

.services__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.services__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .services__title {
    font-size: 2.25rem;
  }
}

.services__subtitle {
  color: var(--color-muted-foreground);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* Service Cards Grid */
.services__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Service Card */
.service-card {
  background-color: var(--color-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card__link_hover:hover {
  color: #B75A3A;
}

.service-card__image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-secondary-foreground);
}

.service-card__content {
  padding: 1.5rem;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a2624;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__title {
  color: var(--color-secondary);
}

.service-card__description {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-card__link:hover {
  gap: 0.75rem;
}

.service-card__arrow {
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   Other Services - Expandable Section
   ========================================================================== */

.services__other {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e2df;
}

.services__other-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

/* Other Services Grid - max 4 columns */
.services__other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .services__other-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services__other-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Service Item */
.services__other-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: rgba(237, 234, 228, 0.5);
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  cursor: default;
}

.services__other-item:hover {
  background-color: rgba(183, 90, 58, 0.1);
}

/* Service name - bigger text */
a.services__other-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
  width: fit-content;
}

a.services__other-name:hover {
  color: #b75a3a;
  text-decoration: underline;
}

.services__other-item:hover a.services__other-name {
  color: #b75a3a;
}

/* Description - bigger text */
.services__other-desc {
  font-size: 0.875rem;
  color: #777;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Details/Summary - Expand/Collapse
   ========================================================================== */

/* Details/Summary - Expand/Collapse */
.services__details {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
}

/* Remove default marker/arrow */
.services__details summary {
  list-style: none;
}

.services__details summary::-webkit-details-marker {
  display: none;
}

.services__details summary::marker {
  display: none;
  content: "";
}

/* Toggle Label - centered, only button width clickable */
.services__toggle-label {
  display: inline-flex;
  justify-content: center;
  align-self: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  padding: 1rem 0;
  order: 1;
  width: auto;
}

/* When open, move toggle to end */
.services__details[open] .services__toggle-label {
  order: 3;
  margin-top: 0.75rem;
}

/* Expanded grid - full width */
.services__other-grid--expanded {
  order: 2;
  width: 100%;
  align-self: stretch;
}

/* Toggle Button Styles */
.services__toggle-more,
.services__toggle-less {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b75a3a;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.services__toggle-more:hover,
.services__toggle-less:hover {
  background-color: rgba(183, 90, 58, 0.1);
}

.services__toggle-icon {
  width: 1rem;
  height: 1rem;
}

/* Default: show "more", hide "less" */
.services__toggle-less {
  display: none;
}

/* Open: hide "more", show "less" */
.services__details[open] .services__toggle-more {
  display: none;
}

.services__details[open] .services__toggle-less {
  display: inline-flex;
}


/* ==========================================================================
   CTA Button
   ========================================================================== */

.services__cta {
  text-align: center;
  margin-top: 2rem;
}

.services__cta-button {
  display: inline-block;
  background-color: #b75a3a;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.services__cta-button:hover {
  background-color: #a04e32;
  transform: translateY(-2px);
}


/* ==========================================================================
   4. HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works {
  padding: 5rem 0;
  background-color: rgba(237, 234, 228, 0.3);
}

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

.how-it-works__header {
  text-align: center;
  margin-bottom: 3rem;
}

.how-it-works__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.how-it-works__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .how-it-works__title {
    font-size: 2.25rem;
  }
}

.how-it-works__steps {
  max-width: 48rem;
  margin: 0 auto;
}

.how-it-works__step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.how-it-works__step--last {
  margin-bottom: 0;
}

.how-it-works__step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-it-works__step-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-secondary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works__step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-secondary-foreground);
}

.how-it-works__step-line {
  width: 2px;
  flex: 1;
  background-color: rgba(183, 90, 58, 0.3);
  margin-top: 1rem;
}

.how-it-works__step--last .how-it-works__step-line {
  display: none;
}

.how-it-works__step-content {
  padding-bottom: 2rem;
}

.how-it-works__step-number {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.how-it-works__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.how-it-works__step-description {
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

/* ==========================================================================
   5. TESTIMONIALS SECTION - Exact match to original
   ========================================================================== */

.testimonials {
  padding: 4rem 0; /* py-16 */
  background-color: rgba(114, 125, 79, 0.05); /* bg-primary/5 */
}

.testimonials__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem; /* px-4 */
}

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem; /* mb-10 */
}

.testimonials__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.testimonials__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .testimonials__title {
    font-size: 2.25rem;
  }
}

.testimonials__grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
}

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

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Testimonial Card */
.testimonial-card {
  background-color: var(--color-card);
  padding: 1.5rem; /* p-6 */
  border-radius: 0.75rem; /* rounded-xl */
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-card__quote {
  width: 2rem; /* w-8 */
  height: 2rem; /* h-8 */
  color: rgba(183, 90, 58, 0.3); /* text-secondary/30 */
  margin-bottom: 1rem; /* mb-4 */
}

.testimonial-card__text {
  color: var(--color-foreground);
  margin-bottom: 1rem; /* mb-4 */
  font-size: 1.15rem; /* Increased from 0.875rem for better readability */
  line-height: 1.625; /* leading-relaxed */
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem; /* gap-0.5 */
  margin-bottom: 1rem; /* mb-4 */
}

.testimonial-card__star {
  width: 1rem; /* w-4 */
  height: 1rem; /* h-4 */
  color: var(--color-star);
}

.testimonial-card__author {
  display: flex;
  align-items: center; /* items-center */
  gap: 0.75rem; /* gap-3 */
}

.testimonial-card__avatar {
  width: 3.5rem; /* w-10 */
  height: 3.5rem; /* h-10 */
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap between name and role */
}

.testimonial-card__name {
  font-weight: 600; /* font-semibold */
  color: var(--color-foreground);
  font-size: 1.2rem; /* text-sm */
  line-height: 1.25;
  margin: 0;
}

.testimonial-card__role {
  color: var(--color-muted-foreground);
  font-size: 1rem; /* text-xs */
  line-height: 1.25;
  margin: 0;
}

/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */

.about {
  padding: 5rem 0;
  background-color: var(--color-background);
}

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

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.about__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 2.25rem;
  }
}

.about__description {
  color: var(--color-foreground);
  margin-bottom: 2rem;
  font-size: 19px;
  line-height: 1.7;
}

.about__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
	font-size: 19px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about__feature:last-child {
  margin-bottom: 0;
}

.about__feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about__feature span {
  color: var(--color-foreground);
}

.about__button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.about__button:hover {
  background-color: rgba(183, 90, 58, 0.9);
}

.about__video {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================================
   LOCATION INFO BOXES + MAP
   =========================================== */
.location-info-boxes {
  padding: 0;
}

.location-info-boxes__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid of 3 boxes */
.location-info-boxes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
	margin-top: 3rem;
}

/* Individual box */
.location-info-boxes__box {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  padding: 2rem;
}

.location-info-boxes__icon {
  width: 56px;
  height: 56px;
  background: rgba(114, 125, 79, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.location-info-boxes__icon svg {
  color: #727d4f;
}

.location-info-boxes__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

.location-info-boxes__text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.location-info-boxes__text strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Map wrapper */
.location-info-boxes__map-wrapper {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  overflow: hidden;
}

.location-info-boxes__map {
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
}

.location-info-boxes__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.location-info-boxes__map-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  text-align: center;
}

.location-info-boxes__map-caption svg {
  color: #b75a3a;
  flex-shrink: 0;
}

.location-info-boxes__map-caption span {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

/* ===========================================
   TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {
  .location-info-boxes__map {
    aspect-ratio: 21 / 9;
  }
}

/* ===========================================
   DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  .location-info-boxes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .location-info-boxes__box {
    padding: 2rem;
  }
}


/* ==========================================================================
   7. CHEF SECTION - Exact match to original
   ========================================================================== */

.chef {
  padding: 3rem 0; /* py-12 */
  background-color: rgba(237, 234, 228, 0.5); /* bg-muted/50 */
}

.chef__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem; /* px-4 */
}

.chef__card {
  max-width: 64rem; /* max-w-4xl = 896px */
  margin: 0 auto;
  background-color: var(--color-card);
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .chef__card {
    flex-direction: row;
  }
}

.chef__image-wrapper {
  aspect-ratio: 1; /* aspect-square on mobile */
}

@media (min-width: 768px) {
  .chef__image-wrapper {
    width: 33.333%; /* md:w-1/3 */
    aspect-ratio: auto;
  }
}

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

.chef__content {
  padding: 1.5rem; /* p-6 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .chef__content {
    width: 66.666%; /* md:w-2/3 */
    padding: 2rem; /* md:p-8 */
  }
}

.chef__eyebrow {
  color: var(--color-primary);
  font-weight: 600; /* font-semibold */
  text-transform: uppercase;
  letter-spacing: 0.1em; /* tracking-widest */
  margin-bottom: 0.5rem; /* mb-2 */
  font-size: 0.875rem;
}

.chef__title {
  font-size: 1.75rem; /* Increased from 1.5rem */
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .chef__title {
    font-size: 2.25rem; /* Increased from 1.875rem */
  }
}

.chef__info {
  margin-top: 0.5rem; /* Reduced from 1rem */
  margin-bottom: 0.25rem; /* Reduced from 1rem */
}

.chef__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0; /* Reset h3 default margin */
  padding: 0;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.chef__name-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.chef__role {
  color: var(--color-muted-foreground);
  margin: 0; /* Reset p default margin */
  padding: 0;
  line-height: 1.4;
}

.chef__quote {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--color-secondary);
  margin-top: 0.5rem; /* Reduced gap above quote */
  margin-bottom: 1rem;
}

.chef__quote p {
  color: var(--color-muted-foreground);
  font-style: italic;
  line-height: 1.625; /* leading-relaxed */
  margin: 0;
}

.chef__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* gap-4 */
}

@media (min-width: 768px) {
  .chef__facts {
    gap: 1.5rem; /* md:gap-6 */
  }
}

.chef__fact {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  font-size: 0.875rem; /* text-sm */
  color: var(--color-muted-foreground);
}

.chef__fact-icon {
  width: 1rem; /* w-4 */
  height: 1rem; /* h-4 */
  color: var(--color-secondary);
}


/* ==========================================================================
   8. LOCATIONS SECTION
   ========================================================================== */

.locations {
  padding: 5rem 1.5rem;
  background-color: var(--color-background);
}

.locations__container {
  max-width: 80rem;
  margin: 0 auto;
}

.locations__header {
  text-align: center;
  margin-bottom: 4rem;
}

.locations__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.locations__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .locations__title {
    font-size: 2.25rem;
  }
}

.locations__subtitle {
  color: var(--color-muted-foreground);
  margin-top: 1rem;
  font-size: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Main Region (Praha) */
.locations__main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--color-card);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem;
  margin-bottom: 3rem;
}

.locations__main-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-secondary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.locations__main-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-secondary-foreground);
}

.locations__main-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
	transition: color 0.2s ease;
}

.locations__main-title:hover {
  color: var(--color-secondary);
}

.locations__main-description {
  color: var(--color-muted-foreground);
  font-size: 1.125rem;
}

/* Locations Grid (Masonry) */
.locations__grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .locations__grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .locations__grid {
    column-count: 3;
  }
}

/* Location Card */
.location-card {
  position: relative;
  break-inside: avoid;
  background-color: var(--color-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.location-card:hover {
  border-color: var(--color-secondary);
}

.location-card__toggle {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}

.location-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem; /* mb-3 from original */
}

.location-card__title-link {
  flex: 1;
  text-decoration: none;
  display: block;
}

.location-card__title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: var(--color-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  margin: 0; /* Reset browser default h3 margins */
  padding: 0;
  line-height: 1.3;
}

.location-card__title-link:hover .location-card__title {
  color: var(--color-secondary);
}

.location-card__pin {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.location-card__arrow {
  width: 1rem;
  height: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.location-card__title-link:hover .location-card__arrow {
  opacity: 1;
}

.location-card__count {
  background-color: rgba(183, 90, 58, 0.1);
  color: var(--color-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}

.location-card__description {
  color: var(--color-muted-foreground);
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 0; /* Ensure no top margin */
}

.location-card__cities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-card__city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-foreground);
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.location-card__bullet {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--color-secondary);
  border-radius: 9999px;
  flex-shrink: 0;
}

.location-card__city:hover {
  text-decoration: underline;
}

/* Collapsed cities */
.location-card__city--collapsed {
  display: none;
}

.location-card__toggle:checked ~ .location-card__cities .location-card__city--collapsed {
  display: flex;
}

/* Toggle label */
.location-card__toggle-label {
  display: flex;
  margin-top: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}

.location-card__toggle-label:hover {
  text-decoration: underline;
}

.location-card__toggle-more,
.location-card__toggle-less {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.location-card__toggle-more svg,
.location-card__toggle-less svg {
  width: 1rem;
  height: 1rem;
}

.location-card__toggle-less {
  display: none;
}

.location-card__toggle:checked ~ .location-card__toggle-label .location-card__toggle-more {
  display: none;
}

.location-card__toggle:checked ~ .location-card__toggle-label .location-card__toggle-less {
  display: flex;
}

/* Footer */
.locations__footer {
  text-align: center;
  margin-top: 3rem;
}

.locations__footer-text {
  color: var(--color-muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.locations__footer-button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.locations__footer-button:hover {
  background-color: rgba(183, 90, 58, 0.9);
}

/* ==========================================================================
   9. MENUS SECTION - Fixed alignment and spacing
   ========================================================================== */

.menus {
  padding: 5rem 1.5rem;
  background-color: #2A2522 !important;
}

.menus__container {
  max-width: 72rem;
  margin: 0 auto;
}

.menus__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .menus__header {
    flex-direction: row;
    align-items: flex-end; /* Align to bottom */
    justify-content: space-between;
  }
}

.menus__header-content {
  /* Wrapper for eyebrow + title */
}

.menus__eyebrow {
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.menus__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0; /* Reset margins */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.menus__header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.2; /* Match title line-height for alignment */
  padding-bottom: 0.25rem; /* Fine-tune vertical alignment with title baseline */
}

.menus__header-link:hover {
  text-decoration: underline;
	color: var(--color-secondary);
}

.menus__header-arrow {
  width: 1.25rem;
  height: 1.25rem;
}

.menus__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .menus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menus__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Menu Card */
.menu-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.menu-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}

.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__image {
  transform: scale(1.05);
}

.menu-card__content {
  margin-top: 0.75rem; /* Reduced from 1rem */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.menu-card__text {
  /* Wrapper for title + description */
}

.menu-card__title {
  font-size: 1rem; /* Reduced from default - slightly smaller */
  font-weight: 700;
  color: var(--color-dark-foreground);
  transition: color 0.2s ease;
  margin: 0;
  line-height: 1.3;
}

.menu-card:hover .menu-card__title {
  color: var(--color-secondary);
}

.menu-card__description {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.9375rem; /* Increased from 0.875rem */
  margin-top: 0.25rem; /* Reduced gap between title and description */
  line-height: 1.5;
}

.menu-card__arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(250, 248, 245, 0.5);
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: color 0.2s ease;
}

.menu-card:hover .menu-card__arrow {
  color: var(--color-secondary);
}

/* ==========================================================================
   10. WHY US SECTION
   ========================================================================== */

.why-us {
  padding: 5rem 0;
  background-color: var(--color-background);
}

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

.why-us__header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-us__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.why-us__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .why-us__title {
    font-size: 2.25rem;
  }
}

.why-us__subtitle {
  color: var(--color-muted-foreground);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.why-us__grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reason Card */
.reason-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.reason-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.reason-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background-color: rgba(183, 90, 58, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-card__icon {
  background-color: var(--color-secondary);
  transform: scale(1.1);
}

.reason-card__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.reason-card:hover .reason-card__icon svg {
  color: var(--color-secondary-foreground);
}

.reason-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.reason-card__description {
  color: var(--color-muted-foreground);
}

/* ==========================================================================
   11. FAQ SECTION
   ========================================================================== */

.faq {
  padding: 5rem 1.5rem;
  background-color: var(--color-background);
}

.faq__container {
  max-width: 48rem;
  margin: 0 auto;
}

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

.faq__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.faq__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 2.25rem;
  }
}

.faq__list {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__toggle {
  display: none;
}

.faq__question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--color-secondary);
}

.faq__question span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-foreground);
  padding-right: 1rem;
  transition: color 0.2s ease;
}

.faq__question:hover span {
  color: var(--color-secondary);
}

.faq__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-muted-foreground);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__toggle:checked + .faq__question .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq__toggle:checked ~ .faq__answer {
  max-height: 10rem;
  opacity: 1;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   12. CONTACT SECTION - Exact match to original
   ========================================================================== */

.contact {
  padding: 5rem 1.5rem; /* py-20 px-6 */
  background-color: rgba(237, 234, 228, 0.3); /* bg-muted/30 */
}

.contact__container {
  max-width: 72rem; /* max-w-6xl */
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
}

.contact__eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .contact__title {
    font-size: 2.25rem;
  }
}

.contact__grid {
  display: grid;
  gap: 3rem; /* gap-12 */
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Side */
.contact__intro {
  color: var(--color-muted-foreground);
  font-size: 1.125rem; /* text-lg */
  margin-bottom: 2rem; /* mb-8 */
}

/* Steps */
.contact__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
  margin-bottom: 2rem; /* mb-8 */
}

.contact__step {
  display: flex;
  align-items: flex-start; /* items-start */
  gap: 1rem; /* gap-4 */
}

.contact__step-icon {
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__step-icon svg {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
}

.contact__step-content {
  /* No specific styles needed, just a wrapper */
}

.contact__step-title {
  font-weight: 700; /* font-bold */
  color: var(--color-foreground);
  margin-bottom: 0;
}

.contact__step-description {
  color: var(--color-muted-foreground);
  margin-top: 0;
}

/* Response Notice */
.contact__response-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  padding: 1rem; /* p-4 */
  background-color: rgba(183, 90, 58, 0.1); /* bg-secondary/10 */
  border-radius: 0.75rem; /* rounded-xl */
  margin-bottom: 1.5rem; /* mb-6 */
}

.contact__response-notice svg {
  width: 1.5rem; /* w-6 */
  height: 1.5rem; /* h-6 */
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact__response-notice p {
  color: var(--color-foreground);
  font-weight: 500;
  margin: 0;
}

/* Direct Contact Box */
.contact__direct {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 1.5rem; /* p-6 */
  border-radius: 1rem; /* rounded-2xl */
}

.contact__direct-label {
  font-size: 0.875rem; /* text-sm */
  opacity: 0.8;
  margin-bottom: 1rem; /* mb-4 */
}

.contact__direct-links {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
}

@media (min-width: 640px) {
  .contact__direct-links {
    flex-direction: row;
  }
}

.contact__direct-link {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  color: var(--color-primary-foreground);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact__direct-link:hover {
  opacity: 0.8;
}

.contact__direct-link svg {
  width: 1rem; /* w-4 */
  height: 1rem; /* h-4 */
}

.contact__direct-link span {
  font-weight: 500;
}

/* Right Side - Form */
.contact__form-wrapper {
  background-color: var(--color-card);
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.contact__form-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem; /* mb-2 */
}

.contact__form-subtitle {
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem; /* mb-6 */
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}

.contact__form-row {
  display: grid;
  gap: 1rem; /* gap-4 */
}

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

.contact__form-field--full {
  grid-column: 1 / -1;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-background);
  color: var(--color-foreground);
  transition: border-color 0.2s ease;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--color-muted-foreground);
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236e6661' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.contact__textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact__submit {
  width: 100%;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em; /* tracking-widest */
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact__submit:hover {
  background-color: rgba(183, 90, 58, 0.9);
}


/* ==========================================================================
   13. FINAL CTA SECTION
   ========================================================================== */

.final-cta {
  padding: 4rem 0;
  background-color: var(--color-secondary);
  text-align: center;
}

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

.final-cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-secondary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta__title {
    font-size: 2.25rem;
  }
}

.final-cta__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta__buttons {
    flex-direction: row;
  }
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
}

.final-cta__button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.final-cta__button--primary {
  background-color: var(--color-primary-foreground);
  color: var(--color-secondary);
}

.final-cta__button--primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.final-cta__button--secondary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.final-cta__button--secondary:hover {
  background-color: rgba(114, 125, 79, 0.9);
}

.final-cta__response {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta__response svg {
  width: 1rem;
  height: 1rem;
}

/* ===========================================
   NEARBY CITIES SECTION
   =========================================== */
.nearby-cities {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.02);
}

.nearby-cities__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nearby-cities__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 2rem 0;
	font-family: 'Barlow Condensed', sans-serif;
}

/* Pills grid */
.nearby-cities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Individual pill */
.nearby-cities__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nearby-cities__pill:hover {
  border-color: #b75a3a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nearby-cities__icon {
  color: #b75a3a;
  flex-shrink: 0;
}

.nearby-cities__link {
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nearby-cities__link:hover {
  color: #b75a3a;
}

.nearby-cities__distance {
  font-size: 0.9rem;
  color: #666;
}

/* More link */
.nearby-cities__more {
  text-align: center;
}

.nearby-cities__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #b75a3a;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.nearby-cities__more-link:hover {
  text-decoration: underline;
  gap: 0.5rem;
}

.nearby-cities__more-link svg {
  transition: transform 0.2s ease;
}

.nearby-cities__more-link:hover svg {
  transform: translateX(3px);
}

/* ===========================================
   LOCATION STATS SECTION
   =========================================== */
.location-stats {
  padding: 3rem 0;
  background: #727d4f;
  font-family: 'Barlow Condensed', sans-serif;
}

.location-stats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-stats__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 2rem 0;
	font-family: 'Barlow Condensed', sans-serif;
}

.location-stats__title-highlight {
  box-shadow: inset 0 -0.12em 0 0 rgba(183, 90, 58, 0.5);
}

/* Stats grid */
.location-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.location-stats__item {
  text-align: center;
}

.location-stats__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.location-stats__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Facts row */
.location-stats__facts {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.location-stats__separator {
  margin: 0 0.5rem;
}

/* ===========================================
   TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {
  .location-stats__title {
    font-size: 1.5rem;
  }

  .location-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .location-stats__number {
    font-size: 3rem;
  }

  .location-stats__label {
    font-size: 1rem;
  }

  .location-stats__facts {
    font-size: 1rem;
  }

  .location-stats__separator {
    margin: 0 0.75rem;
  }
}

/* ===========================================
   EVENT GUIDE SECTION
   =========================================== */
.event-guide {
  padding: 5rem 0;
  background: #faf8f5;
  font-family: 'Barlow Condensed', sans-serif;
}

.event-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Header */
.event-guide__header {
  text-align: center;
  margin-bottom: 4rem;
}

.event-guide__eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #727d4f;
  margin: 0 0 0.5rem 0;
}

.event-guide__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
}

.event-guide__title-highlight {
  color: #b75a3a;
  box-shadow: inset 0 -0.15em 0 0 rgba(183, 90, 58, 0.3);
}

/* Part 1: Intro */
.event-guide__intro {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.event-guide__intro p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.event-guide__intro p:last-child {
  margin-bottom: 0;
}

/* Part 2: Event Types */
.event-guide__types {
  margin-bottom: 5rem;
}

.event-guide__subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 2.5rem 0;
	font-family: 'Barlow Condensed', sans-serif;
}

.event-guide__subtitle-highlight {
  box-shadow: inset 0 -0.15em 0 0 rgba(183, 90, 58, 0.3);
}

.event-guide__types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.event-guide__type-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  padding: 1.5rem;
}

.event-guide__type-icon {
  width: 48px;
  height: 48px;
  background: rgba(183, 90, 58, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-guide__type-icon svg {
  color: #b75a3a;
}

.event-guide__type-content {
  flex: 1;
}

.event-guide__type-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
	font-family: 'Barlow Condensed', sans-serif;
}

.event-guide__type-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}

.event-guide__type-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #b75a3a;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.event-guide__type-link:hover {
  text-decoration: underline;
  gap: 0.5rem;
}

/* Part 3: Venues */
.event-guide__venues-intro {
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.event-guide__venues-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.event-guide__venue-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.event-guide__venue-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-guide__venue-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-guide__venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-guide__venue-card:hover .event-guide__venue-image img {
  transform: scale(1.05);
}

.event-guide__venue-content {
  padding: 1.5rem;
}

.event-guide__venue-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
	font-family: 'Barlow Condensed', sans-serif;
}

.event-guide__venue-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.event-guide__venue-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.event-guide__venue-details li:last-child {
  margin-bottom: 0;
}

.event-guide__venue-details svg {
  color: #b75a3a;
  flex-shrink: 0;
  margin-top: 2px;
}

.event-guide__venue-experience {
  padding-top: 1rem;
  border-top: 1px solid #e0ddd8;
}

.event-guide__venue-experience-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #727d4f;
  margin: 0 0 0.25rem 0;
}

.event-guide__venue-experience-text {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* ===========================================
   TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {
  .event-guide__title {
    font-size: 2.5rem;
  }

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

  .event-guide__venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	.event-guide__venue-card {
    width: calc(50% - 0.75rem);
  }
}

/* ===========================================
   DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  .event-guide__venues-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Last two cards centered */
  .event-guide__venue-card:nth-child(4),
  .event-guide__venue-card:nth-child(5) {
    grid-column: span 1;
  }
}
  /* Center the last row with 2 items */
/* Venue Grid - Using flexbox for centered last row */
.event-guide__venue-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-guide__venue-card {
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid #e5e2df;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-guide__venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.event-guide__venue-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-guide__venue-content {
  padding: 1.25rem;
}

.event-guide__venue-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
}

.event-guide__venue-desc {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Tablet: 2 cards per row */
@media (min-width: 768px) {
  .event-guide__venue-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

/* Desktop: 3 cards per row, last 2 centered */
@media (min-width: 1024px) {
  .event-guide__venue-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
	
/* Reference Section */
.reference {
  padding: 5rem 1rem;
  background: #f5f3f0;
  font-family: 'Barlow Condensed', sans-serif;
}

.reference__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.reference__header {
  text-align: center;
  margin-bottom: 3rem;
}

.reference__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #727d4f;
  margin: 0 0 0.5rem 0;
}

.reference__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

.reference__title-highlight {
  color: #b75a3a;
  box-shadow: rgba(184, 100, 66, 0.3) 0px -0.15em 0px 0px inset;
}

.reference__subtitle {
  font-size: 1.125rem;
  color: #555;
  margin: 0 auto;
  max-width: 42rem;
}

/* Cards Grid */
.reference__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Card */
.reference__card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e2df;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.reference__card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.reference__card-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.reference__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge */
.reference__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
}

.reference__card-badge-icon {
  width: 1rem;
  height: 1rem;
  color: #b75a3a;
}

.reference__card-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Card Content */
.reference__card-content {
  padding: 1.5rem;
}

.reference__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
	font-family: 'Barlow Condensed', sans-serif;
}

.reference__card-date {
  font-size: 0.875rem;
  color: #777;
  margin: 0 0 0.75rem 0;
}

.reference__card-details {
  font-size: 0.875rem;
  color: #555;
  margin: 0 0 1rem 0;
}

.reference__card-quote {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid #b75a3a;
  margin: 0;
  font-size: 0.875rem;
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

/* CTA */
.reference__cta {
  text-align: center;
}

.reference__button {
  display: inline-block;
  background: #b75a3a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.reference__button:hover {
  background: #a04e32;
  transform: translateY(-2px);
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .reference {
    padding: 5rem 2rem;
  }

  .reference__title {
    font-size: 2.25rem;
  }

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

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .reference__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   COMPLETE SERVICE SECTION
   ========================================================================== */

.complete-service {
  padding: 5rem 0;
  background-color: rgba(237, 234, 228, 0.3);
  font-family: 'Barlow Condensed', sans-serif;
}

.complete-service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.complete-service__header {
  text-align: center;
  margin-bottom: 3rem;
}

.complete-service__eyebrow {
  color: #727d4f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.complete-service__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.complete-service__title-highlight {
  box-shadow: inset 0 -0.15em 0 0 rgba(183, 90, 58, 0.3);
}

@media (min-width: 768px) {
  .complete-service__title {
    font-size: 2.25rem;
  }
}

/* Grid - 8 Cards */
.complete-service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .complete-service__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Card */
.complete-service__card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #ddd9d3;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.complete-service__card:hover {
  border-color: #b75a3a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.complete-service__icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(183, 90, 58, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.complete-service__card:hover .complete-service__icon {
  background-color: #b75a3a;
  transform: scale(1.1);
}

.complete-service__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #b75a3a;
  transition: color 0.3s ease;
}

.complete-service__card:hover .complete-service__icon svg {
  color: #fff;
}

/* Card Content */
.complete-service__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.complete-service__card-desc {
  font-size: 0.875rem;
  color: #6e6661;
  margin: 0;
}

/* Philosophy Content */
.complete-service__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.complete-service__content p {
  color: #6e6661;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.complete-service__content p:last-child {
  margin-bottom: 0;
}

/* Video */
.complete-service__video {
  max-width: 56rem;
  margin: 3rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #ddd9d3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.complete-service__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   WHY US DARK SECTION (Wedding Page Style)
   ========================================================================== */

.why-us-dark {
  padding: 5rem 0;
  background-color: #727d4f;
  font-family: 'Barlow Condensed', sans-serif;
}

.why-us-dark__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.why-us-dark__header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-us-dark__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.why-us-dark__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
}

@media (min-width: 768px) {
  .why-us-dark__title {
    font-size: 2.25rem;
  }
}

/* Stats Strip */
.why-us-dark__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .why-us-dark__stats {
    gap: 2rem;
  }
}

.why-us-dark__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-dark__stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .why-us-dark__stat-value {
    font-size: 3.5rem;
  }
}

.why-us-dark__stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .why-us-dark__stat-label {
    font-size: 1rem;
  }
}

/* Benefits Grid */
.why-us-dark__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .why-us-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us-dark__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.why-us-dark__card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-us-dark__card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Emoji */
.why-us-dark__emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

/* Card Content */
.why-us-dark__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.why-us-dark__card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   VARIANTY SECTION (Wedding Feast Styles)
   ========================================================================== */

.varianty {
  padding: 5rem 0;
  background-color: #faf8f5;
  font-family: 'Barlow Condensed', sans-serif;
}

.varianty__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.varianty__header {
  text-align: center;
  margin-bottom: 3rem;
}

.varianty__eyebrow {
  color: #727d4f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.varianty__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
}

@media (min-width: 768px) {
  .varianty__title {
    font-size: 2.25rem;
  }
}

/* Grid */
.varianty__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

/* Card */
.varianty__card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #ddd9d3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.varianty__card:hover {
  border-color: #b75a3a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.varianty__image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.varianty__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.varianty__card:hover .varianty__image {
  transform: scale(1.05);
}

/* Content */
.varianty__content {
  padding: 1.5rem;
}

.varianty__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.varianty__card-desc {
  color: #6e6661;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

/* Meta (guests + price) */
.varianty__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.9375rem;
}

.varianty__guests {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #1a1a1a;
}

.varianty__guests svg {
  width: 1rem;
  height: 1rem;
  color: #b75a3a;
}

.varianty__price {
  font-weight: 600;
  color: #b75a3a;
}

/* ==========================================================================
   RELATED SERVICES SECTION (Pills Style)
   ========================================================================== */

.related-services {
  padding: 4rem 0;
  background-color: rgba(237, 234, 228, 0.4);
  font-family: 'Barlow Condensed', sans-serif;
}

.related-services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Title */
.related-services__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 2rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
}

@media (min-width: 768px) {
  .related-services__title {
    font-size: 1.75rem;
  }
}

/* Pills Container */
.related-services__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Individual Pill */
.related-services__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 50px;
  padding: 0.625rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-services__pill:hover {
  border-color: #b75a3a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-services__emoji {
  font-size: 1.125rem;
  line-height: 1;
}

/* Label as link */
a.related-services__label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.related-services__label:hover {
  color: #b75a3a;
  text-decoration: underline;
}

.related-services__pill:hover a.related-services__label {
  color: #b75a3a;
}

/* CTA Link */
.related-services__cta {
  text-align: center;
  margin-top: 2rem;
}

.related-services__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #b75a3a;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.related-services__link:hover {
  text-decoration: underline;
  gap: 0.625rem;
}

.related-services__link svg {
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   INSPIRACE SECTION (Wedding Menus)
   ========================================================================== */

.inspirace {
  padding: 5rem 1rem;
  background-color: #2a2624;
  font-family: 'Barlow Condensed', sans-serif;
}

.inspirace__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.inspirace__header {
  text-align: center;
  margin-bottom: 3rem;
}

.inspirace__eyebrow {
  color: #b75a3a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.inspirace__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0.5rem 0 1rem 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.inspirace__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .inspirace__title {
    font-size: 2.25rem;
  }
}

/* Grid */
.inspirace__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 1024px) {
  .inspirace__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.inspirace__card {
  background-color: rgba(237, 234, 228, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid rgba(237, 234, 228, 0.2);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.inspirace__card:hover {
  background-color: rgba(237, 234, 228, 0.15);
}

/* Image */
.inspirace__image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.inspirace__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspirace__card:hover .inspirace__image {
  transform: scale(1.05);
}

/* Content */
.inspirace__content {
  padding: 1.25rem;
}

.inspirace__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.inspirace__card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0 0 0.75rem 0;
}

/* Menu Items List */
.inspirace__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inspirace__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.inspirace__bullet {
  width: 6px;
  height: 6px;
  background-color: #b75a3a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA Button */
.inspirace__cta {
  text-align: center;
}

.inspirace__button {
  display: inline-block;
  background-color: #b75a3a;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.inspirace__button:hover {
  background-color: #a04e32;
  transform: translateY(-2px);
}

/* ==========================================================================
   GALERIE SECTION (Wedding Gallery)
   ========================================================================== */

.galerie {
  padding: 5rem 0;
  background-color: #faf8f5;
  font-family: 'Barlow Condensed', sans-serif;
}

.galerie__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.galerie__header {
  text-align: center;
  margin-bottom: 3rem;
}

.galerie__eyebrow {
  color: #727d4f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.galerie__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
}

@media (min-width: 768px) {
  .galerie__title {
    font-size: 2.25rem;
  }
}

/* Grid */
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .galerie__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gallery Item */
.galerie__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.galerie__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galerie__item:hover .galerie__image {
  transform: scale(1.1);
}

/* Hover Overlay */
.galerie__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.galerie__item:hover .galerie__overlay {
  opacity: 1;
}

.galerie__caption {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  padding: 0 1rem;
  margin: 0;
}

/* CTA Button */
.galerie__cta {
  text-align: center;
}

.galerie__button {
  display: inline-block;
  background-color: #b75a3a;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.galerie__button:hover {
  background-color: #a04e32;
  transform: translateY(-2px);
}
	
/* Menus / Inspirace Section */
.menus {
  padding: 5rem 1rem;
  background: #f5f3f0;
  font-family: 'Barlow Condensed', sans-serif;
}

.menus__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header - Fixed Layout */
.menus__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.menus__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #727d4f;
  margin: 0 0 0.5rem 0;
  width: 100%;
}

.menus__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  width: 100%;
  text-transform: none;
}

.menus__title-highlight {
  color: #b75a3a;
  box-shadow: rgba(184, 100, 66, 0.3) 0px -0.15em 0px 0px inset;
  white-space: nowrap;
}

.menus__subtitle {
  font-size: 1.125rem;
  color: #ffffffcc;
  margin: 0;
  max-width: 42rem;
  line-height: 1.6;
  width: 100%;
}

/* Cards Grid */
.menus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Card */
.menus__card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e2df;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Card Image */
.menus__card-image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  margin: 0.5rem 0.5rem 0 0.5rem;
}

.menus__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menus__card:hover .menus__card-image {
  transform: scale(1.05);
}

/* Card Content */
.menus__card-content {
  padding: 1.25rem;
}

.menus__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  text-transform: none;
}

.menus__card-desc {
  font-size: 0.875rem;
  color: #b75a3a;
  margin: 0 0 0.75rem 0;
}

/* Menu Items List */
.menus__card-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menus__card-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #555;
  padding: 0.25rem 0;
}

.menus__card-bullet {
  width: 6px;
  height: 6px;
  background: #b75a3a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA */
.menus__cta {
  text-align: center;
}

.menus__button {
  display: inline-block;
  background: #b75a3a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.menus__button:hover {
  background: #a04e32;
  transform: translateY(-2px);
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .menus {
    padding: 5rem 2rem;
  }

  .menus__title {
    font-size: 2.25rem;
  }

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

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .menus__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================
   HEADER
   =========================================== */

.rezava-header {
  background: #faf8f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Barlow Condensed', sans-serif;
}

/* Hidden checkboxes */
.rezava-header__toggle,
.rezava-header__dropdown-toggle {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.rezava-header__container {
  max-width: 1287px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.rezava-header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  flex-shrink: 0;
}

.rezava-header__logo-accent {
  color: #b75a3a;
}

/* Hamburger */
.rezava-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 100;
}

.rezava-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

/* Hamburger animation */
#header-menu-toggle:checked ~ .rezava-header__container .rezava-header__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#header-menu-toggle:checked ~ .rezava-header__container .rezava-header__hamburger span:nth-child(2) {
  opacity: 0;
}

#header-menu-toggle:checked ~ .rezava-header__container .rezava-header__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   NAVIGATION - Mobile
   =========================================== */

.rezava-header__nav {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #faf8f5;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 32px 1.5rem;
  display: none;
  flex-direction: column;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  border-bottom: 3px solid #b75a3a;
}

/* Show nav when checked */
#header-menu-toggle:checked ~ .rezava-header__container .rezava-header__nav {
  display: flex;
}

/* Nav links */
.rezava-header__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
}

.rezava-header__nav-link:hover {
  color: #b75a3a;
}

.rezava-header__nav > a.rezava-header__nav-link:last-of-type {
  border-bottom: none;
}

.rezava-header__chevron {
  transition: transform 0.3s ease;
  color: #666;
}

/* Dropdown */
.rezava-header__dropdown {
  position: relative;
}

/* Mega menu - hidden by default */
.rezava-header__mega {
  display: none;
  padding: 0.75rem 0 0.5rem 0.5rem;
}

/* Show locations mega on mobile */
#header-locations-toggle:checked ~ .rezava-header__container .rezava-header__nav .rezava-header__dropdown[data-dropdown="locations"] .rezava-header__mega {
  display: block;
}

/* Show services mega on mobile */
#header-services-toggle:checked ~ .rezava-header__container .rezava-header__nav .rezava-header__dropdown[data-dropdown="services"] .rezava-header__mega {
  display: block;
}

/* Rotate chevrons */
#header-locations-toggle:checked ~ .rezava-header__container .rezava-header__nav .rezava-header__dropdown[data-dropdown="locations"] .rezava-header__chevron {
  transform: rotate(180deg);
}

#header-services-toggle:checked ~ .rezava-header__container .rezava-header__nav .rezava-header__dropdown[data-dropdown="services"] .rezava-header__chevron {
  transform: rotate(180deg);
}

/* Locations */
.rezava-header__locations-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rezava-header__location {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rezava-header__location:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rezava-header__location-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.rezava-header__location-title:hover {
  color: #b75a3a;
}

.rezava-header__location-title svg {
  color: #b75a3a;
  flex-shrink: 0;
}

.rezava-header__location-cities {
  margin: 0.4rem 0 0 1.6rem;
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Services */
.rezava-header__services-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rezava-header__service-card {
  padding: 0.75rem;
  background: #f5f4f1;
  border: 1px solid #e0ddd8;
  border-radius: 0.5rem;
}

.rezava-header__service-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.rezava-header__service-name {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
  text-decoration: none;
}

.rezava-header__service-name:hover {
  color: #b75a3a;
}

.rezava-header__service-desc {
  display: block;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.rezava-header__services-other {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rezava-header__services-other-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin: 0 0 0.75rem 0;
}

.rezava-header__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem 1rem;
}

.rezava-header__services-grid a {
  color: #555;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.35rem 0;
}

.rezava-header__services-grid a:hover {
  color: #b75a3a;
}

/* CTA */
.rezava-header__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rezava-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
}

.rezava-header__phone svg {
  color: #b75a3a;
}

.rezava-header__btn {
  display: block;
  text-align: center;
  background: #b75a3a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.rezava-header__btn:hover {
  background: #a04e32;
}

/* ===========================================
   DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  .rezava-header__hamburger {
    display: none;
  }
  
  .rezava-header__container {
    max-width: 1390px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .rezava-header__logo {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
  }

  .rezava-header__nav {
    position: static;
    display: flex !important;
    margin-right: 160px;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    max-height: none;
    overflow: visible;
    gap: 0;
  }

  .rezava-header__nav-link {
    padding: 0.5rem 0.875rem;
    border: none;
    color: #555;
    font-size: 1.05rem;
    width: auto;
    justify-content: center;
    gap: 0.25rem;
  }

  .rezava-header__nav-link:hover {
    color: #1a1a1a;
  }

  .rezava-header__nav-link--parent {
    cursor: default;
  }

  .rezava-header__mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.75rem;
    z-index: 100;
  }

  /* Override checkbox on desktop - use hover */
  #header-locations-toggle:checked ~ .rezava-header__container .rezava-header__nav .rezava-header__dropdown[data-dropdown="locations"] .rezava-header__mega,
  #header-services-toggle:checked ~ .rezava-header__container .rezava-header__nav .rezava-header__dropdown[data-dropdown="services"] .rezava-header__mega {
    display: none;
  }

  .rezava-header__dropdown:hover .rezava-header__mega {
    display: block;
  }

  .rezava-header__dropdown:hover .rezava-header__chevron {
    transform: rotate(180deg);
  }

  .rezava-header__dropdown:hover .rezava-header__nav-link {
    color: #1a1a1a;
  }

  .rezava-header__mega-inner {
    background: #fff;
    border: 1px solid #d0cdc8;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 1.5rem 2rem;
    width: 1000px;
  }

  .rezava-header__locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1.5rem;
  }

  .rezava-header__location {
    padding-bottom: 0;
    border-bottom: none;
  }

  .rezava-header__location-cities {
    margin-left: 1.6rem;
    font-size: 0.8rem;
  }

  .rezava-header__services-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .rezava-header__service-card {
    padding: 1rem;
  }

  .rezava-header__service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .rezava-header__services-other {
    padding-top: 0;
    border-top: none;
  }

  .rezava-header__services-other-title {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.75rem;
  }

  .rezava-header__services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.15rem 1.5rem;
  }

  .rezava-header__services-grid a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .rezava-header__cta {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
    border: none;
  }

  .rezava-header__btn {
    padding: 0.625rem 1.5rem;
    white-space: nowrap;
  }
}


/* ===========================================
   FOOTER - Rezavá Catering
   =========================================== */

.rezava-footer {
  background: #1a1a1a;
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.rezava-footer__container {
  max-width: 1287px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top accent line */
.rezava-footer__accent {
  height: 4px;
  background: linear-gradient(to right, #727d4f, #b75a3a, #727d4f);
}

/* ===========================================
   CTA STRIP
   =========================================== */
.rezava-footer__cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.rezava-footer__cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rezava-footer__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #f5f5f5;
}

.rezava-footer__cta-highlight {
  color: #b75a3a;
}

.rezava-footer__cta-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.rezava-footer__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rezava-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rezava-footer__cta-btn--primary {
  background: #b75a3a;
  color: #fff;
}

.rezava-footer__cta-btn--primary:hover {
  background: #a04e32;
  transform: scale(1.02);
}

.rezava-footer__cta-btn--secondary {
  background: transparent;
  color: #f5f5f5;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.rezava-footer__cta-btn--secondary:hover {
  border-color: #b75a3a;
  color: #b75a3a;
}

/* ===========================================
   MAIN FOOTER
   =========================================== */
.rezava-footer__main {
  padding: 3rem 0;
}

.rezava-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.rezava-footer__heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #727d4f;
  margin: 0 0 1.5rem 0;
}

/* Brand Column */
.rezava-footer__logo {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5f5f5;
  text-decoration: none;
  margin-bottom: 1rem;
}

.rezava-footer__logo-accent {
  color: #b75a3a;
}

.rezava-footer__brand-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.rezava-footer__socials {
  display: flex;
  gap: 0.75rem;
}

.rezava-footer__social {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #f5f5f5;
  transition: all 0.3s ease;
}

.rezava-footer__social:hover {
  background: #b75a3a;
  border-color: #b75a3a;
  color: #fff;
  transform: scale(1.1);
}

/* Services Column */
.rezava-footer__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rezava-footer__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1.5rem;
}

.rezava-footer__service-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.rezava-footer__service-link:hover {
  color: #b75a3a;
}

.rezava-footer__service-link--hidden {
  display: none;
}

/* Show hidden services when checkbox is checked */
#footer-services-toggle:checked ~ .rezava-footer__services-grid .rezava-footer__service-link--hidden {
  display: block;
}

/* Toggle label */
.rezava-footer__services-toggle-label {
  display: block;
  margin-top: 1rem;
  cursor: pointer;
}

.rezava-footer__show-more,
.rezava-footer__show-less {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #b75a3a;
  font-weight: 600;
  font-size: 0.95rem;
}

.rezava-footer__show-more:hover,
.rezava-footer__show-less:hover {
  text-decoration: underline;
}

.rezava-footer__show-less {
  display: none;
}

#footer-services-toggle:checked ~ .rezava-footer__services-toggle-label .rezava-footer__show-more {
  display: none;
}

#footer-services-toggle:checked ~ .rezava-footer__services-toggle-label .rezava-footer__show-less {
  display: inline-flex;
}

/* Contact Column */
.rezava-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rezava-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #f5f5f5;
  transition: color 0.2s ease;
}

.rezava-footer__contact-link:hover {
  color: #b75a3a;
}

.rezava-footer__contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 90, 58, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.rezava-footer__contact-icon svg {
  color: #b75a3a;
}

.rezava-footer__contact-value {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Location Cards */
.rezava-footer__location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.rezava-footer__location-card:last-child {
  margin-bottom: 0;
}

.rezava-footer__location-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.rezava-footer__location-header svg {
  color: #b75a3a;
  flex-shrink: 0;
  margin-top: 2px;
}

.rezava-footer__location-name {
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
  font-size: 0.95rem;
}

.rezava-footer__location-address {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0.25rem 0 0 0;
}

.rezava-footer__location-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.rezava-footer__location-phone:hover {
  color: #b75a3a;
}

.rezava-footer__location-phone svg {
  color: #b75a3a;
}

/* ===========================================
   LOCATIONS ROW
   =========================================== */
.rezava-footer__locations {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
}

.rezava-footer__locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.rezava-footer__region-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f5f5f5;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.rezava-footer__region-name:hover {
  color: #b75a3a;
}

.rezava-footer__region-name svg {
  color: #b75a3a;
}

.rezava-footer__region-cities {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.rezava-footer__region-cities a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rezava-footer__region-cities a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ===========================================
   BOTTOM BAR
   =========================================== */
.rezava-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.rezava-footer__bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.rezava-footer__copyright,
.rezava-footer__credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.rezava-footer__credit-link {
  color: #b75a3a;
  text-decoration: none;
}

.rezava-footer__credit-link:hover {
  text-decoration: underline;
}

/* ===========================================
   TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {
  .rezava-footer__cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .rezava-footer__cta-title {
    font-size: 1.75rem;
  }

  .rezava-footer__cta-buttons {
    flex-direction: row;
    flex-shrink: 0;
  }

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

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

  .rezava-footer__bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===========================================
   DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  .rezava-footer__cta {
    padding: 2.5rem 0;
  }

  .rezava-footer__cta-title {
    font-size: 2rem;
  }

  .rezava-footer__main {
    padding: 4rem 0 3rem;
  }

  .rezava-footer__grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
  }

  .rezava-footer__locations {
    padding: 3rem 0;
  }

  .rezava-footer__locations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* === CF7 Form Styles (consolidated) === */

.contact__form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Kill CF7 auto-generated paragraph and line break spacing */

.contact__form-wrapper .wpcf7-form p {
    margin: 0;
    padding: 0;
}
.contact__form-wrapper .wpcf7-form br {
    display: none;
}

/* Row grid layout */
.contact__form-wrapper .contact__form-row {
    display: grid;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .contact__form-wrapper .contact__form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Full-width field (textarea) */
.contact__form-wrapper .contact__form-field--full {
    grid-column: 1 / -1;
}

/* All inputs, selects, textareas */
.contact__form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 0.6rem 0.875rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: var(--color-background);
    color: var(--color-foreground);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact__form-wrapper .wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: var(--color-secondary);
}

.contact__form-wrapper .wpcf7-form-control::placeholder {
    color: var(--color-muted-foreground);
}

/* Select dropdown arrow */
.contact__form-wrapper select.wpcf7-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236e6661' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Textarea — compact */
.contact__form-wrapper textarea.wpcf7-form-control {
    resize: vertical;
    min-height: 3.5rem;
    height: 5rem;
}

/* Submit button */
.contact__form-wrapper .wpcf7-submit {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-secondary-foreground);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.25rem;
}

.contact__form-wrapper .wpcf7-submit:hover {
    background-color: rgba(183, 90, 58, 0.9);
}

/* Validation & response */
.contact__form-wrapper .wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.contact__form-wrapper .wpcf7-response-output {
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact__form-wrapper .wpcf7-spinner {
    display: none;
}

/* ==========================================================================
   CONTACT TESTIMONIAL (Horizontal card below contact form)
   ========================================================================== */

.contact-testimonial {
  padding: 0 0 5rem;
  background-color: var(--color-background);
  font-family: var(--font-body);
}

.contact-testimonial__container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.testimonial-card--horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card__image {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.testimonial-card--horizontal .testimonial-card__content {
  flex: 1;
}

.testimonial-card--horizontal .testimonial-card__quote {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card--horizontal .testimonial-card__stars {
  justify-content: center;
}

.testimonial-card--horizontal .testimonial-card__author {
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonial-card--horizontal {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .testimonial-card__image {
    width: 150px;
    height: 150px;
    margin-bottom: 0;
    margin-right: 2rem;
  }

  .testimonial-card--horizontal .testimonial-card__quote {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-card--horizontal .testimonial-card__stars {
    justify-content: flex-start;
  }

  .testimonial-card--horizontal .testimonial-card__author {
    justify-content: flex-start;
  }
}

/* Mega dropdown "view all" link */
.rezava-header__mega-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background-color 0.2s ease, gap 0.2s ease;
}

.rezava-header__mega-link:hover {
  background-color: rgba(183, 90, 58, 0.1);
  gap: 0.75rem;
}

.about__video {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.about__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__video_services {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 40px;
}
.about__video_services video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
