:root {
  --mint-light: #e8f7f0;
  --mint: #bfe9d7;
  --mint-dark: #8ec9b3;
  --rose-gold: #d9b0a5;
  --text: #333333;
  --muted: #666666;
  --white: #ffffff;
  --border: #e5e5e5;
}

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

body {
  font-family: Arial, sans-serif;
  background: var(--mint-light);
  color: var(--text);
}

/* Header */

.site-header {
  width: 100%;
  padding: 18px 8%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 120px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--mint-dark);
}

/* Home */

.hero {
  min-height: calc(100vh - 120px);
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  max-width: 650px;
  margin-bottom: 22px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

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

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--rose-gold);
}

.hero-card {
  background: var(--white);
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.hero-card img {
  max-width: 100%;
  width: 420px;
}

/* About */

.about {
  padding: 100px 8%;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
}

.about-image,
.about-content {
  min-width: 0;
}

.about-content h2 {
  overflow-wrap: break-word;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-label {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--mint-dark);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 17px;
}

.delete {
  color: #555;
  text-decoration: none;
  font-weight: bold;
}

/* Booking */

.booking-page {
  max-width: 1180px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.booking-page h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.booking-page>p {
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--muted);
}

.booking-form {
  width: 100%;
  background: var(--white);
  padding: 36px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  margin-top: 10px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 16px;
  background: #fbfbfb;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(142, 201, 179, 0.2);
  background: white;
}

.booking-services {
  grid-column: 1 / -1;
  text-align: left;
}

.booking-services h3 {
  margin: 10px 0 18px;
  font-size: 28px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.service-tab {
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-tab span {
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.service-tab.active {
  background: var(--mint-dark);
  color: white;
  border-color: var(--mint-dark);
}

.service-options.compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 58px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.service-option:hover,
.service-option.selected {
  border-color: var(--mint-dark);
  background: #eef9f3;
}

.service-option input {
  display: none;
}

.service-title {
  font-size: 17px;
  font-weight: 800;
  text-align: left;
}

.service-meta {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.booking-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.selected-services-box,
.booking-summary {
  background: #f1faf6;
  border-radius: 24px;
  padding: 22px;
  text-align: left;
}

.selected-services-box h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.empty-selected {
  color: var(--muted);
  font-size: 15px;
}

.selected-service-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
}

.selected-service-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.selected-service-row button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  color: #a33;
  font-size: 18px;
}

.booking-summary {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-summary p {
  margin: 8px 0;
  font-size: 18px;
}

.booking-form>button {
  grid-column: 1 / -1;
  padding: 18px;
  border: none;
  border-radius: 999px;
  background: var(--mint-dark);
  color: white;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.booking-form>button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(142, 201, 179, 0.35);
}

#bookingMessage {
  grid-column: 1 / -1;
  font-weight: 700;
  text-align: center;
}

.booking-success {
  background: #eef9f1;
  border: 1px solid #b8e0c2;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
}

.booking-success p {
  margin: 10px 0 18px;
  color: #555;
}

.pay-online-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--mint-dark);
  color: white;
  text-decoration: none;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 900px) {
  .service-options.compact {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 6%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-card img {
    width: 300px;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .booking-page {
    margin: 35px auto;
  }

  .booking-page h2 {
    font-size: 34px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-option {
    min-height: 80px;
    padding: 14px;
  }

  .booking-form>label,
  .booking-services,
  .booking-bottom,
  .booking-form>button,
  #bookingMessage {
    grid-column: 1 / -1;
  }
}

/* SERVICES PAGE */

.services-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.services-hero {
  text-align: center;
  margin-bottom: 50px;
}

.services-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.services-hero p {
  color: #666;
  font-size: 18px;
}

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

.price-card {
  background: white;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.price-card h2 {
  margin-bottom: 25px;
  font-size: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span {
  font-size: 17px;
}

.price-row strong {
  color: var(--mint-dark);
  font-size: 18px;
}

.services-note {
  margin-top: 40px;
  text-align: center;
  background: #f1faf6;
  padding: 25px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 700;
}

.services-cta {
  text-align: center;
  margin-top: 35px;
}

.services-cta .btn {
  padding: 18px 40px;
  font-size: 18px;
}

@media (max-width: 900px) {

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

  .services-hero h1 {
    font-size: 38px;
  }

}

.service-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 22px;
}

@media (max-width: 1200px) {
  .booking-page {
    max-width: 100%;
    padding: 16px;
  }

  .booking-form {
    grid-template-columns: repeat(3, 1fr);
    padding: 28px;
  }

  .booking-services,
  .booking-bottom,
  .booking-form>button,
  #bookingMessage {
    grid-column: 1 / -1;
  }

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

@media (max-width: 800px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-tab {
    padding: 11px 16px;
    font-size: 15px;
  }

  .service-options.compact,
  .booking-bottom {
    grid-template-columns: 1fr;
  }
}

/* ===== BOOKING FIX ===== */

.booking-page {
  max-width: 1200px;
  width: 100%;
  overflow-x: hidden;
}

.booking-form {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
}

.booking-services,
.booking-bottom,
.booking-form>button,
#bookingMessage {
  grid-column: 1 / -1 !important;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-width: 0;
}

.service-options.compact {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 14px;
}

@media (max-width: 900px) {

  .booking-form {
    grid-template-columns: 1fr !important;
  }

  .service-options.compact {
    grid-template-columns: 1fr !important;
  }

  .booking-bottom {
    grid-template-columns: 1fr !important;
  }
}

/* CONTACT PAGE */

.contact-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 45px;
}

.contact-hero h1 {
  font-size: 52px;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 18px;
  color: var(--muted);
}

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

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.contact-card p,
.contact-card a {
  color: var(--text);
  font-size: 18px;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--mint-dark);
}

.contact-cta {
  margin-top: 35px;
  background: #f1faf6;
  padding: 35px;
  border-radius: 28px;
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 22px;
}

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

  .contact-hero h1 {
    font-size: 38px;
  }
}

.contact-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.location-card {
  background: white;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
  text-align: center;
}

.location-card h2 {
  margin-bottom: 15px;
}

.location-card p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-booking {
  margin-top: 40px;
  background: #f1faf6;
  border-radius: 30px;
  padding: 40px;
  text-align: center;
}

.contact-booking h2 {
  margin-bottom: 15px;
}

.contact-booking p {
  margin-bottom: 20px;
}

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

.contact-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.contact-hero p {
  color: var(--muted);
  font-size: 18px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.contact-card h2 {
  margin-bottom: 15px;
}

.contact-card a {
  color: var(--mint-dark);
  font-weight: bold;
  text-decoration: none;
}

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

.location-card {
  background: white;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.location-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

.location-card h2 {
  margin-bottom: 15px;
}

.location-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}

@media(max-width:900px) {

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .contact-hero h1 {
    font-size: 38px;
  }
}

.location-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.booking-form>button {
  justify-self: center;
  width: 320px;
  padding: 18px 32px;
  border: none;
  border-radius: 999px;
  background: var(--mint-dark);
  color: white;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.booking-form>button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(142, 201, 179, 0.35);
}

.location-info {
  grid-column: 1 / -1;
  text-align: center;
  background: #f1faf6;
  color: #2c7a5b;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 800;
}

.location-info.location-empty {
  background: #fff4d8;
  color: #9a6a00;
}

/* GALLERY PAGE */

.gallery-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.gallery-hero {
  text-align: center;
  margin-bottom: 45px;
}

.gallery-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.gallery-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.gallery-item {
  display: block;
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

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

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

.gallery-wide {
  grid-column: span 3;
  height: 420px;
}

.gallery-cta {
  margin-top: 45px;
  padding: 40px;
  border-radius: 30px;
  background: #f1faf6;
  text-align: center;
}

.gallery-cta h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.gallery-cta p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 18px;
}

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

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

  .gallery-hero h1 {
    font-size: 38px;
  }
}

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

  .gallery-item,
  .gallery-wide {
    grid-column: span 1;
    height: 320px;
  }
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: .25s;

  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {

  position: absolute;

  background: rgba(255, 255, 255, .15);
  color: white;

  border: none;
  border-radius: 50%;

  width: 55px;
  height: 55px;

  cursor: pointer;

  font-size: 28px;

  transition: .25s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: white;
  color: #333;
}

.lightbox-close {
  top: 25px;
  right: 25px;
}

.lightbox-prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

@media(max-width:700px) {

  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-35px);
}

.reveal-right {
  transform: translateX(35px);
}

.reveal-zoom {
  transform: scale(0.94);
}

.reveal-left.show,
.reveal-right.show,
.reveal-zoom.show {
  transform: translateX(0) scale(1);
}

/* REVIEWS */

.reviews-section {
  max-width: 1200px;
  margin: 90px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 45px;
  align-items: center;
}

.reviews-intro h2 {
  font-size: 46px;
  line-height: 1.1;
  margin: 12px 0 22px;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

#googleRatingStars {
  color: #d6a13f;
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews-score {
  font-size: 22px;
  font-weight: 900;
}

#googleReviewCount {
  color: var(--muted);
  font-size: 16px;
}

.reviews-link {
  display: inline-block;
  color: #2c7a5b;
  font-weight: 900;
  text-decoration: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  min-height: 280px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.review-header img,
.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint-dark);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.review-header h3 {
  margin: 0;
  font-size: 18px;
}

.review-header span {
  color: var(--muted);
  font-size: 14px;
}

.review-stars {
  color: #d6a13f;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

.review-card a {
  color: #2c7a5b;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 950px) {
  .reviews-section {
    grid-template-columns: 1fr;
  }

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

  .reviews-intro h2 {
    font-size: 36px;
  }
}

/* MAPS */

.maps-section {
  max-width: 1200px;
  margin: 90px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 40px;
  align-items: start;
}

.maps-content h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.maps-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.maps-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

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

.map-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.map-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.map-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 20px;
}

.location-btn {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 320px;
  height: 58px;

  border-radius: 999px;
}

@media (max-width: 950px) {
  .maps-section {
    grid-template-columns: 1fr;
  }

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

/* FOOTER */

.site-footer {
  width: 100%;
  margin-top: 60px;
  padding: 24px 20px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: #2c7a5b;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-divider {
  margin: 0 8px;
  color: var(--rose-gold);
}

@media (max-width: 600px) {
  .site-footer {
    padding: 22px 16px;
  }

  .site-footer p {
    line-height: 1.8;
  }

  .footer-divider {
    display: none;
  }

  .site-footer strong {
    display: block;
    margin-top: 4px;
  }
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

.site-footer a:hover strong {
  color: #8ec9b3;
  transition: color 0.2s ease;
}