/* ============================================
   Joseph Assise III Painting and Wallpapering
   Color Palette: Red (#C0392B, #FDEDEC) + Black (#1A1A1A, #2C2C2C, #333)
   ============================================ */

:root {
  --blue-primary: #C0392B;
  --blue-light: #FDEDEC;
  --blue-dark: #96281B;
  --blue-accent: #E6B0AA;
  --grey-dark: #1A1A1A;
  --grey-medium: #2C2C2C;
  --grey-light: #F5F5F5;
  --grey-border: #D0D0D0;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--grey-dark);
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: var(--blue-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--blue-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--grey-dark);
}

.logo-tagline {
  font-size: 12px;
  color: var(--blue-primary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.main-nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--grey-medium);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 14px;
}

.nav-cta {
  background: var(--blue-primary) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--grey-dark);
  padding: 4px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 50%, var(--grey-light) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,164,207,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--grey-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--blue-primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--grey-medium);
  max-width: 650px;
  margin: 0 auto 32px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge .icon {
  color: var(--blue-primary);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-outline:hover {
  background: var(--blue-primary);
  color: var(--white);
}

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

.btn-white:hover {
  background: var(--blue-light);
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 20px;
}

.section-grey {
  background: var(--grey-light);
}

.section-blue {
  background: var(--blue-light);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--grey-medium);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-accent);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue-primary);
  margin-bottom: 20px;
}

.card-icon:empty {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-accent) 100%);
  position: relative;
}

.card-icon:empty::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--blue-primary);
  opacity: 0.4;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--grey-dark);
}

.card p {
  color: var(--grey-medium);
  font-size: 15px;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  height: 200px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--grey-medium);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ---- PORTFOLIO ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.portfolio-placeholder {
  font-size: 64px;
  opacity: 0.5;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.65) 100%);
  color: var(--white);
  padding: 20px 24px 16px;
  transform: none;
}

.portfolio-overlay h3 {
  font-size: 1rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.portfolio-overlay p {
  font-size: 13px;
  opacity: 0.85;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--grey-border);
  border-radius: 50px;
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--grey-medium);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 72px;
  color: var(--blue-accent);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--grey-medium);
  margin-bottom: 20px;
  padding-top: 24px;
  font-size: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-primary);
  font-size: 16px;
}

.testimonial-info strong {
  display: block;
  font-size: 15px;
}

.testimonial-info span {
  color: var(--grey-medium);
  font-size: 13px;
}

.stars {
  color: #F5A623;
  margin-bottom: 8px;
  font-size: 16px;
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--grey-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(91,164,207,0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- CONTACT INFO ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.contact-info-icon:empty::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--blue-primary);
  opacity: 0.4;
}

.contact-info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--grey-medium);
  font-size: 14px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius);
  margin: 0 20px;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- AREA PAGE ---- */
.area-hero {
  background: linear-gradient(135deg, var(--blue-light), var(--white));
  padding: 60px 20px;
  text-align: center;
}

.area-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.area-hero h1 span {
  color: var(--blue-primary);
}

.area-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.area-feature {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

.area-feature h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.area-feature p {
  color: var(--grey-medium);
  font-size: 14px;
}

.area-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.area-link {
  display: block;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.area-link:hover {
  border-color: var(--blue-primary);
  background: var(--blue-light);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--grey-dark);
  color: var(--white);
  padding: 60px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--blue-accent);
}

.footer-col p {
  color: #AAA;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #AAA;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--blue-accent);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: #888;
  font-size: 13px;
}

/* ---- WHY CHOOSE US ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 48px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--blue-primary);
  font-weight: 800;
}

.stat-item p {
  font-size: 14px;
  color: var(--grey-medium);
  margin-top: 4px;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--grey-medium);
  font-size: 14px;
}

/* ---- BOOKING CALENDAR ---- */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.time-slot {
  padding: 10px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}

.time-slot:hover,
.time-slot.selected {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 12px;
}

.calendar-day-name {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 0;
  color: var(--grey-medium);
}

.calendar-day {
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.calendar-day:hover {
  background: var(--blue-light);
}

.calendar-day.selected {
  background: var(--blue-primary);
  color: var(--white);
}

.calendar-day.disabled {
  color: var(--grey-border);
  cursor: default;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calendar-header h3 {
  font-size: 1.1rem;
}

.calendar-nav {
  background: none;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-nav:hover {
  background: var(--blue-light);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--grey-light) 100%);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--grey-medium);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--grey-medium);
}

.breadcrumb span {
  color: var(--grey-border);
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  color: var(--grey-dark);
}

.faq-question:hover {
  background: var(--blue-light);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 18px;
  max-height: 300px;
}

.faq-answer p {
  color: var(--grey-medium);
  font-size: 15px;
}

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--grey-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-medium);
  font-size: 18px;
  border: 2px dashed var(--grey-border);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img-placeholder {
  background: var(--blue-light);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--blue-primary);
  opacity: 0.4;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--grey-medium);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-list {
  list-style: none;
  margin-top: 20px;
}

.about-list li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-container,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 16px;
  }
  .main-nav.open ul {
    display: flex;
  }
  .main-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ---- AREA PHOTO GALLERY ---- */
.area-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.area-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.area-gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

.area-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.area-gallery-item:hover img {
  transform: scale(1.03);
}

.area-gallery-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--grey-medium);
}

/* ---- MAP SECTION ---- */
.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.area-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ---- REVIEW AGGREGATE BAR ---- */
.review-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 50px;
  padding: 12px 32px;
  max-width: 500px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow);
}

.review-bar .stars {
  margin: 0;
  font-size: 20px;
}

.review-bar-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-dark);
}

.review-bar-count {
  font-size: 13px;
  color: var(--grey-medium);
}

@media (max-width: 768px) {
  .area-gallery {
    grid-template-columns: 1fr;
  }
  .area-gallery-item:first-child {
    aspect-ratio: 16/9;
  }
  .area-map iframe {
    height: 300px;
  }
}

/* ---- FOOTER CREDIT ---- */
.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.03em;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #C8A84E;
}

/* ---- JSON-LD Schema hidden ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
