@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --background: #faf9f6;
  --foreground: #1b2132;
  --card: #ffffff;
  --card-foreground: #1b2132;
  --primary: hsl(213, 52%, 24%);
  --primary-foreground: #ffffff;
  --secondary: #efeeeb;
  --secondary-foreground: #1b2132;
  --muted: #f3f2ef;
  --muted-foreground: #6b7280;
  --accent: hsl(213, 45%, 35%);
  --accent-foreground: #ffffff;
  --destructive: hsl(0, 84.2%, 60.2%);
  --border: #e8e5df;
  --radius: 0.75rem;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Layout ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: #e1e1de;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  height: 1.75rem;
  width: 1.75rem;
  object-fit: contain;
}

.header-logo span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: background-color 0.2s;
}

@media (min-width: 640px) {
  .header-phone {
    display: flex;
  }
}

.header-phone:hover {
  opacity: 0.9;
}

.header-phone svg {
  width: 0.875rem;
  height: 0.875rem;
}

.menu-btn {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  color: var(--foreground);
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu nav a {
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu nav a:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

.mobile-menu-phone {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
}

.mobile-menu-phone svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin-top: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

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

.hero-subtitle {
  margin: 1.5rem auto 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.btn-primary {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  transition: background-color 0.2s;
}

@media (min-width: 640px) {
  .btn-primary {
    width: auto;
  }
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary svg {
  width: 1rem;
  height: 1rem;
}

.btn-secondary-hero {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s;
}

@media (min-width: 640px) {
  .btn-secondary-hero {
    width: auto;
  }
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 1s infinite;
  pointer-events: none;
}

.hero-chevron svg {
  width: 2rem;
  height: 2rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-25%);
  }
}

/* ===== Trust Badges ===== */
.trust-badges {
  background-color: var(--muted);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .trust-badges {
    padding: 4rem 0;
  }
}

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(29, 58, 92, 0.1);
  color: var(--primary);
}

.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-title {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.trust-subtitle {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Section Common ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.section-label-accent {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.section-title {
  margin-top: 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

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

@media (min-width: 768px) {
  .about {
    padding: 7rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-wrapper {
  order: 2;
}

@media (min-width: 1024px) {
  .about-image-wrapper {
    order: 2;
  }
}

.about-image-wrapper .img-rounded {
  overflow: hidden;
  border-radius: 1.5rem;
}

.about-image-wrapper img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

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

@media (min-width: 1024px) {
  .about-text {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.about-heading {
  margin-top: 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .about-heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-heading {
    font-size: 3rem;
  }
}

.about-heading .italic {
  font-style: italic;
  color: var(--primary);
}

.about-description {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted-foreground);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .about-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.about-stats {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-stats {
    justify-content: center;
  }
}

.about-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-stat-value {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.about-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-cta {
  margin-top: 2.5rem;
}

/* ===== Services ===== */
.services {
  background-color: var(--muted);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .services {
    padding: 7rem 0;
  }
}

.services-grid {
  display: none;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    display: block;
  }
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .services-row {
    gap: 1.5rem;
  }
}

.services-row-centered {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .services-row-centered {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
}

.services-row-centered .service-card {
  width: calc(33.333% - 0.833rem);
}

/* Mobile scroll */
.services-scroll {
  margin-top: 3rem;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 0.25rem;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .services-scroll {
    display: none;
  }
}

.services-scroll .service-card-wrapper {
  width: 85vw;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.service-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--card);
  transition: box-shadow 0.5s;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.service-card-num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.service-card-title {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.service-card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Force equal card body height in desktop grid */
@media (min-width: 768px) {
  .service-card-body {
    min-height: 11.5rem;
  }
}

/* Dot indicators */
.dot-indicators {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .dot-indicators {
    display: none;
  }
}

.dot {
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: rgba(107, 114, 128, 0.3);
  transition: all 0.3s;
}

.dot.active {
  width: 1.75rem;
  background-color: var(--foreground);
}

/* ===== Testimonials ===== */
.testimonials {
  background-color: var(--background);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 7rem 0;
  }
}

.testimonials-rating {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.testimonials-rating svg {
  width: 1rem;
  height: 1rem;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonials-rating span {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonials-scroll {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.25rem;
  padding: 0 1.5rem;
  overflow: hidden;
}

.testimonials-scroll.mobile {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-scroll.mobile::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.testimonial-quote svg {
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(29, 58, 92, 0.15);
}

.testimonial-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  flex: 1;
}

.testimonial-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-avatar {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

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

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
}

.testimonial-stars svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: #fbbf24;
  color: #fbbf24;
}

/* ===== Gallery ===== */
.gallery {
  background-color: var(--muted);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .gallery {
    padding: 7rem 0;
  }
}

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

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

.gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  border: none;
  padding: 0;
}

.gallery-item img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.gallery-cta {
  margin-top: 2.5rem;
  text-align: center;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .gallery-cta {
    padding: 0;
  }
}

.gallery-cta .btn-primary {
  width: 100%;
}

@media (min-width: 640px) {
  .gallery-cta .btn-primary {
    width: auto;
  }
}

/* ===== FAQ ===== */
.faq {
  background-color: var(--background);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .faq {
    padding: 7rem 0;
  }
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .faq-container {
    padding: 0 2rem;
  }
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: all 0.3s;
}

.faq-item.open {
  border-color: rgba(29, 58, 92, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-question span {
  padding-right: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-question svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 10rem;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== Last CTA ===== */
.last-cta {
  background-color: var(--muted);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .last-cta {
    padding: 7rem 0;
  }
}

.last-cta-grid {
  display: grid;
  gap: 2.5rem;
}


.last-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.last-cta-content p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.last-cta-content .btn-primary {
  margin-top: 2rem;
  width: 100%;
}

@media (min-width: 640px) {
  .last-cta-content .btn-primary {
    width: auto;
  }
}

.last-cta-location {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.last-cta-location svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.last-cta-map {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.last-cta-map iframe {
  min-height: 400px;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 4rem 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-brand {
    justify-content: flex-start;
  }
}

.footer-brand img {
  height: 2.25rem;
  width: 2.25rem;
  object-fit: contain;
}

.footer-brand span {
  font-size: 1rem;
  font-weight: 600;
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-foreground);
}

.footer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-hours {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-bottom-inner {
    padding: 1.25rem 2rem;
  }
}

.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Fixed bottom CTA (mobile) ===== */
.fixed-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .fixed-cta-mobile {
    display: none;
  }
}

.fixed-cta-mobile svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(27, 33, 50, 0.9);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: 1rem;
  object-fit: contain;
}

/* ===== Gallery Page ===== */
.gallery-page {
  background-color: var(--muted);
  padding: 5rem 0 5rem;
}

@media (min-width: 768px) {
  .gallery-page {
    padding: 7rem 0 7rem;
  }
}

.gallery-back {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.gallery-back:hover {
  text-decoration: underline;
}

.gallery-back svg {
  width: 1rem;
  height: 1rem;
}

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

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

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

.gallery-mini-cta {
  background-color: var(--background);
  padding: 3rem 1.5rem;
  text-align: center;
}

.gallery-mini-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .gallery-mini-cta h2 {
    font-size: 1.875rem;
  }
}

.gallery-mini-cta p {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.gallery-mini-cta .btn-primary {
  margin-top: 1.5rem;
}

/* Fixed home button */
.fixed-home-btn {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  border: none;
}

@media (min-width: 768px) {
  .fixed-home-btn {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.fixed-home-btn:hover {
  transform: scale(1.1);
}

.fixed-home-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== Padding bottom for mobile CTA ===== */
.page-wrapper {
  min-height: 100vh;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-wrapper {
    padding-bottom: 0;
  }
}
