@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  color: #222;
  background: #faf9f6;
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: none;
  position: relative;
}

body::-webkit-scrollbar {
  display: none;
}
:root {
  --section-space-block: clamp(2.4rem, 4.5vw, 4.8rem);
  --section-space-top: calc(var(--section-space-block) * 0.72);
  --section-space-bottom: var(--section-space-block);
  --section-space-inline: 5%;
  --measure-body: 68ch;
  --measure-wide: 74ch;
}
body.no-scroll {
  overflow: hidden;
  scrollbar-width: none;
}

body.no-scroll::-webkit-scrollbar {
  display: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #0f172a;
  transition: 0.3s;
  border-radius: 999px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-menu.active {
  overflow-y: auto; /* Scroll if too many links */
  max-height: calc(100vh - 100px);
}
.nav-link {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.nav-link:hover {
  color: #C9A84C;
  transform: translateY(-1px);
}

.nav-link[aria-current="page"],
.nav-link[aria-current="location"] {
  color: #C9A84C;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.logo {
  color: #111827;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url("YM.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.1);
  flex: 0 0 30px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.08;
  font-weight: 700;
}

.hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #D4B85A 100%);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 249, 235, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.hero-eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.section-eyebrow {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.7rem;
  opacity: 0.9;
}
.hero-content {
  max-width: 900px;
  padding: 0 1rem;
}

.hero-proof-bar {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 232, 0.92);
  border: 1px solid rgba(240, 216, 151, 0.38);
  background: rgba(10, 26, 23, 0.42);
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  animation: heroChipIn 0.52s ease forwards;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.hero-proof-item:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-proof-item:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-proof-item:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-proof-item i {
  font-size: 0.78rem;
  color: #d9be76;
  opacity: 0.95;
}

.hero-proof-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 216, 151, 0.62);
  background: rgba(10, 26, 23, 0.54);
  box-shadow: 0 8px 20px rgba(7, 20, 17, 0.28);
}

.hero-content > button {
  animation: heroCtaRise 0.46s ease-out 0.12s both;
}

.hero-content > button,
.cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-shimmer-duration: 0.82s;
  --cta-shimmer-peak: 0.32;
  --cta-shimmer-distance: 390%;
}

.hero-content > button::after,
.cta-btn::after {
  content: "";
  position: absolute;
  inset: -28% auto -28% -35%;
  width: 40%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 46%,
    rgba(255, 255, 255, var(--cta-shimmer-peak)) 50%,
    rgba(255, 255, 255, 0.18) 54%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  transition: transform var(--cta-shimmer-duration) ease;
  pointer-events: none;
  z-index: 1;
}

.hero-content > button:hover::after,
.cta-btn:hover::after {
  transform: translateX(var(--cta-shimmer-distance)) skewX(-18deg);
}

@keyframes heroChipIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCtaRise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #D4B85A 100%);
  background-size: 200% 200%;
  background-position: left center;
  color: #13332e;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition:
    transform 0.25s ease,
    background-position 0.4s ease,
    box-shadow 0.25s ease;
}

section {
  padding: var(--section-space-top) var(--section-space-inline)
    var(--section-space-bottom);
  text-align: center;
}
section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}
h2 {
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  margin-bottom: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #0f2f2a;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.24rem, 2vw, 1.6rem);
  line-height: 1.26;
  letter-spacing: 0.015em;
  color: #163a33;
  font-weight: 600;
}

p {
  line-height: 1.72;
  color: #2f3943;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #13332e;
  font-family: "Playfair Display", serif;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
  color: #ffffff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e7dfd3;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.11);
  border-color: rgba(201, 168, 76, 0.45);
}

.trust-section {
  background: #fff;
  max-width: 1240px;
  margin: -3.5rem auto 1.5rem;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.trust-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-intro p {
  font-size: 1.05rem;
  color: #4f5b66;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.stat-card {
  background: #13332e;
  color: white;
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  border-top: 3px solid #C9A84C;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(19, 51, 46, 0.28);
}

.stat-number {
  font-size: 2rem;
  color: #C9A84C;
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: rgba(255, 248, 232, 0.86);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

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

.review-card {
  background: #ffffff;
  border: 1px solid #e4dbce;
  border-left: 3px solid #C9A84C;
  border-radius: 14px;
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  right: 0.7rem;
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(19, 51, 46, 0.1);
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(19, 51, 46, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.review-stars {
  color: #C9A84C;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.review-meta {
  margin-top: 0.75rem;
  font-weight: 700;
  color: #13332e;
  font-size: 0.9rem;
}

.trust-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  will-change: opacity, transform;
}

.trust-reveal.trust-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-intro.trust-reveal {
  transition-delay: 0.05s;
}

.stats-grid .stat-card.trust-reveal:nth-child(1) {
  transition-delay: 0.08s;
}

.stats-grid .stat-card.trust-reveal:nth-child(2) {
  transition-delay: 0.16s;
}

.stats-grid .stat-card.trust-reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.reviews-grid .review-card.trust-reveal:nth-child(1) {
  transition-delay: 0.12s;
}

.reviews-grid .review-card.trust-reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.reviews-grid .review-card.trust-reveal:nth-child(3) {
  transition-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .trust-reveal,
  .trust-reveal.trust-visible,
  .scroll-reveal,
  .scroll-reveal.reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content > button,
  .hero-proof-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-content > button::after,
  .cta-btn::after {
    transition: none;
  }
}

.pricing-subtitle,
.trust-intro p,
.faq-heading p,
.backdrops > p {
  max-width: min(var(--measure-body), 92vw);
  margin-left: auto;
  margin-right: auto;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input,
textarea {
  padding: 1rem;
  border: 2px solid #e4dbce;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: #f8f3ea;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
textarea {
  height: 150px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #C9A84C;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.contact form {
  background: #ffffff;
  border: 1px solid #e4dbce;
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.footer {
  background: #0a1a17;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4rem 5% 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  color: #13332e;
  border-color: #C9A84C;
  background: #C9A84C;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #C9A84C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

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

.footer-col a:hover {
  color: #C9A84C;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Standalone footer-bottom (not inside dark .footer wrapper) */
:not(.footer) > .footer-bottom {
  border-top: 1px solid rgba(19, 51, 46, 0.15);
  padding: 1.5rem 5%;
}

:not(.footer) > .footer-bottom p {
  color: #13332e;
}

:not(.footer) > .footer-bottom a {
  color: #13332e;
}

:not(.footer) > .footer-bottom a:hover {
  color: #C9A84C;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a,
.footer-bottom a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-bottom a:hover {
  color: #C9A84C;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    margin-bottom: 0.9rem;
  }

  .footer-col ul {
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.1rem 0 1.25rem;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
  .hero {
    min-height: 100svh;
    padding-top: 4.75rem;
  }

  .hero-content {
    max-width: 640px;
    transform: translateY(-0.9rem);
  }

  .hero-eyebrow {
    font-size: 0.66rem;
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    margin-bottom: 0.55rem;
  }
  .hero p {
    font-size: 1.06rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: rgba(255, 249, 235, 0.96);
  }

  .hero-content > button {
    width: min(92vw, 300px);
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  .hero-content > button,
  .cta-btn {
    --cta-shimmer-duration: 0.96s;
    --cta-shimmer-peak: 0.22;
    --cta-shimmer-distance: 330%;
  }

  .hero-content > button::after,
  .cta-btn::after {
    width: 34%;
  }
  .trust-section {
    margin: -2.5rem 1rem 1rem;
    border-radius: 16px;
    padding: 2rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 1.35rem;
  }

  .stat-card {
    padding: 1.1rem 1rem;
  }
}

.video-carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.video-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.video-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.video-slide.active {
  opacity: 1;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 40%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(10, 26, 23, 0.85) 100%
  );
  z-index: -1;
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    width 0.3s ease,
    box-shadow 0.3s ease;
}

.dot:hover {
  background: rgba(201, 168, 76, 0.7);
}

.dot.active {
  background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #D4B85A 100%);
  width: 24px;
  border-radius: 999px;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
  border-color: transparent;
}

.pricing {
  background: linear-gradient(155deg, #0f2520 0%, #13332e 62%, #1a433c 100%);
  text-align: center;
  overflow: hidden;
}

.pricing h2 {
  color: #fffaf0;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 248, 232, 0.9);
  margin-bottom: 3rem;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.tier-card {
  flex: 1;
  min-width: 350px;
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}

.tier-card.basic {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(228, 219, 206, 0.85);
  box-shadow: 0 14px 34px rgba(8, 23, 20, 0.16);
}

.tier-card.basic:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(8, 23, 20, 0.22);
}

.tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.featured {
  background: linear-gradient(165deg, #12322c 0%, #0f2a24 100%);
  border: 3px solid #C9A84C;
  transform: none;
  box-shadow:
    0 20px 56px rgba(9, 27, 23, 0.42),
    0 0 0 1px rgba(201, 168, 76, 0.22),
    0 10px 34px rgba(201, 168, 76, 0.2);
}

.featured::before {
  content: "Most Booked";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #C9A84C;
  color: #12322c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 78px rgba(7, 24, 20, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.35),
    0 14px 40px rgba(201, 168, 76, 0.26);
}

.featured .tier-header h3,
.featured .price {
  color: #f7f2e7;
}

.featured .tier-header p,
.featured .features li {
  color: rgba(247, 242, 231, 0.86);
}

.featured .features li {
  border-bottom-color: rgba(247, 242, 231, 0.16);
}

.featured .cta-btn.popular {
  background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #D4B85A 100%);
  color: #13332e;
}

.featured .cta-btn.popular:hover {
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.tier-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  font-size: 3.5rem;
  font-weight: bold;
  color: #13332e;
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 0.4em;
  color: #999;
}

.tier-header p {
  color: #666;
  font-size: 1.1rem;
}

.features {
  flex-grow: 1;
  list-style: none;
  text-align: left;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
  display: block; /* Force block context */
}

.features li {
  display: block !important; /* Strict vertical */
  padding: 0.75rem 0;
  margin-bottom: 0.25rem; /* Small vertical gap */
  position: relative;
  padding-left: 2.2rem; /* Icon space */
  font-size: 0.92rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow: hidden; /* Clip any overflow */
  white-space: normal;
  min-height: auto;
  border-bottom: 1px solid #f0f0f0; /* Subtle separator */
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #D4B85A 100%);
  background-size: 200% 200%;
  background-position: left center;
  color: #13332e;
  border: none;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-position 0.4s ease,
    box-shadow 0.25s ease;
}

button.cta-btn {
  width: 100%;
}

a.cta-btn {
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover,
button:hover {
  background-position: right center;
  box-shadow: 0 6px 20px rgba(168, 134, 58, 0.45);
  transform: translateY(-2px);
}

.popular {
  background: #13332e;
  color: #C9A84C;
  letter-spacing: 0.1em;
}

.popular:hover {
  background: #004225;
  box-shadow: 0 6px 20px rgba(19, 51, 46, 0.45);
}

.pricing-note {
  font-size: 1rem;
  color: rgba(255, 248, 232, 0.9);
  margin-top: 0.6rem;
}

.pricing-note a {
  color: #f0d897;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.pricing-note a:hover {
  color: #fff2cc;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero-proof-bar {
    margin-top: 1.05rem;
    gap: 0.5rem;
  }

  .hero-proof-item {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    padding: 0.36rem 0.62rem;
  }
}

#email-link {
  text-decoration: none;
  color: white;
}

.backdrops {
  padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.backdrops h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.backdrop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.backdrop-item {
  position: relative;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

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

.backdrop-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  transform-origin: center 30%;
  transition: transform 0.3s;
}

.backdrop-item:hover img {
  transform: scale(1.62);
}

.backdrop-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.backdrop-item:hover .backdrop-hover {
  transform: translateY(0);
}

.backdrop-hover h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #C9A84C;
}

.backdrop-cta button {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.backdrop-swipe-hint {
  display: none;
}

.backdrop-item.hidden {
  display: none;
}

@media (max-width: 768px) {
  .backdrops {
    padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
  }

  .backdrops h2 {
    font-size: 2rem;
  }

  .backdrop-swipe-hint {
    display: none;
  }

  .backdrop-grid {
    position: relative;
    display: block;
    height: 350px;
    overflow: visible;
    padding: 0;
    margin-bottom: 2rem;
    touch-action: pan-y;
  }

  .backdrop-item {
    position: absolute;
    inset: 0;
    height: 320px;
    border: 1px solid #e4dbce;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transform-origin: center center;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease;
  }

  .backdrop-item.deck-top {
    z-index: 3;
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .backdrop-item.deck-top::before,
  .backdrop-item.deck-top::after {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(19, 51, 46, 0.8);
    color: #C9A84C;
    font-size: 1.05rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 5;
  }

  .backdrop-item.deck-top::before {
    content: "‹";
    left: 10px;
  }

  .backdrop-item.deck-top::after {
    content: "›";
    right: 10px;
  }

  .backdrop-item.deck-second {
    z-index: 2;
    transform: translateY(10px) scale(0.97);
    opacity: 1;
  }

  .backdrop-item.deck-third {
    z-index: 1;
    transform: translateY(20px) scale(0.94);
    opacity: 0.92;
  }

  .backdrop-item.deck-rest {
    z-index: 0;
    transform: translateY(28px) scale(0.9);
    opacity: 0;
    pointer-events: none;
  }

  .backdrop-item.swipe-out-left {
    transform: translateX(-115%) rotate(-10deg) scale(0.96);
    opacity: 0;
  }

  .backdrop-item.swipe-out-right {
    transform: translateX(115%) rotate(10deg) scale(0.96);
    opacity: 0;
  }

  .backdrop-item.swipe-in-right {
    animation: backdropSwipeInRight 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes backdropSwipeInRight {
    from {
      transform: translateX(-70%) rotate(-8deg) scale(0.96);
      opacity: 0;
    }
    to {
      transform: translateX(0) rotate(0deg) scale(1);
      opacity: 1;
    }
  }

  .backdrop-item:hover img {
    transform: scale(1.5);
    transform-origin: center 30%;
  }

  .backdrop-item img {
    border-radius: 15px;
    transform: scale(1.5);
    transform-origin: center 30%;
  }

  .backdrop-hover {
    transform: translateY(0);
    padding: 1.5rem 1rem 1rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .backdrop-hover h4 {
    font-size: 1.05rem;
    margin-bottom: 0;
  }
}

#contact {
  background: linear-gradient(180deg, #faf9f6 0%, #ffffff 100%);
}

#faq {
  background: linear-gradient(135deg, #faf9f6 0%, #f1ece2 100%);
}

#contactForm input,
#contactForm textarea {
  transition: all 0.3s;
}

.contact-page,
.faq-page,
.blog-page,
.about-page,
.home-page,
.location-page {
  background:
    radial-gradient(
      circle at 86% 2%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 8% 12%,
      rgba(19, 51, 46, 0.08) 0%,
      transparent 45%
    ),
    linear-gradient(180deg, #f4efe6 0%, #faf8f3 28%, #f7f4ee 100%);
}

.contact-page .navbar,
.faq-page .navbar,
.blog-page .navbar,
.about-page .navbar,
.home-page .navbar,
.location-page .navbar {
  background: rgba(255, 255, 255, 0.95);
}

.home-page #faq,
.home-page #contact {
  background: transparent;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 1.05rem;
  color: #866a2c;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-kicker::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0.75rem auto 0;
  background: rgba(169, 136, 58, 0.55);
}

.about-hero-modern,
.contact-hero-modern,
.faq-hero-modern,
.blog-hero-modern {
  padding: 8.8rem 5% 2.8rem;
}

.about-hero-inner,
.contact-hero-inner,
.faq-hero-inner,
.blog-hero-inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-modern h1,
.contact-hero-modern h1,
.faq-hero-modern h1,
.blog-hero-modern h1 {
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
  color: #102f29;
  text-wrap: balance;
}

.about-hero-modern p,
.contact-hero-modern p,
.faq-hero-modern p,
.blog-hero-modern p {
  max-width: 44rem;
  margin: 0 auto;
  color: #4a5e59;
  font-size: 1.02rem;
  line-height: 1.72;
}

.about-hero-meta,
.contact-hero-meta,
.faq-hero-meta,
.blog-hero-meta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.about-hero-meta span,
.contact-hero-meta span,
.faq-hero-meta span,
.blog-hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #243b35;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero-meta span + span::before,
.contact-hero-meta span + span::before,
.faq-hero-meta span + span::before,
.blog-hero-meta span + span::before {
  content: "/";
  margin-right: 0.8rem;
  color: rgba(169, 136, 58, 0.8);
}

.about-page .location-section,
.about-page .location-section-alt {
  background: transparent;
  padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
}

.about-page .location-container {
  max-width: 1180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(18, 44, 40, 0.08);
  padding: clamp(1.5rem, 2.5vw, 2.4rem);
}

.about-page .location-container.grid {
  max-width: 1180px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  gap: 1.1rem;
}

.about-page .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(18, 44, 40, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.about-page .location-container.grid .card {
  padding: 1.7rem;
}

.about-page .location-container.grid .card h3 {
  max-width: 12ch;
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.about-page .location-container.grid .card p {
  max-width: 30ch;
  color: #43554f;
  font-size: 1rem;
  line-height: 1.62;
}

.about-story-layout {
  margin-top: 0.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(214px, 226px);
  align-items: start;
  gap: clamp(0.55rem, 1.5vw, 1rem);
}

.about-story-copy {
  max-width: 74ch;
}

.about-story-team {
  margin-top: -2.15rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-self: start;
  align-content: start;
  gap: 1rem;
  padding-right: clamp(0.55rem, 1.4vw, 0.95rem);
}

.about-team-placeholder {
  width: min(192px, 32vw);
  aspect-ratio: 1;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  border: 1px solid rgba(169, 136, 58, 0.38);
  background:
    radial-gradient(circle at 32% 28%, rgba(201, 168, 76, 0.22), transparent 42%),
    linear-gradient(180deg, #faf6ed 0%, #f1e8d8 100%);
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.72),
    0 16px 30px rgba(18, 44, 40, 0.08);
  overflow: hidden;
  position: relative;
}

.about-team-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-person {
  margin: 0;
  text-align: center;
}

.about-story-person figcaption {
  color: #43554f;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page .location-section-copy {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .about-hero-modern,
  .contact-hero-modern,
  .faq-hero-modern,
  .blog-hero-modern {
    padding-top: 7.9rem;
  }

  .about-hero-meta,
  .contact-hero-meta,
  .faq-hero-meta,
  .blog-hero-meta {
    gap: 0.35rem 0.7rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-meta span,
  .contact-hero-meta span,
  .faq-hero-meta span,
  .blog-hero-meta span {
    font-size: 0.69rem;
    letter-spacing: 0.12em;
  }

  .about-hero-meta span + span::before,
  .contact-hero-meta span + span::before,
  .faq-hero-meta span + span::before,
  .blog-hero-meta span + span::before {
    margin-right: 0.65rem;
  }

  .about-page .location-container.grid .card h3,
  .about-page .location-container.grid .card p {
    max-width: none;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    margin-top: 0.35rem;
  }

  .about-story-team {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 0.5rem;
    padding-right: 0;
  }

  .about-team-placeholder {
    width: min(210px, 52vw);
  }
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #13332e;
  border: 1px solid rgba(19, 51, 46, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.82rem;
  background: rgba(255, 255, 255, 0.72);
}


.contact-main-modern {
  padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
}

.contact-layout-modern {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

@media (min-width: 641px) {
  .contact-layout-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 1.2rem;
    row-gap: 0;
  }

  .contact-layout-modern > .contact-info-panel,
  .contact-layout-modern > .contact-form-panel {
    grid-column: auto !important;
  }
}

.contact-info-panel,
.contact-form-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(18, 44, 40, 0.08);
}

.contact-info-panel {
  padding: clamp(1.2rem, 2vw, 2rem);
}

.contact-info-panel h2 {
  margin-bottom: 0.95rem;
  color: #11372f;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.contact-info-panel > p {
  color: #49645e;
  margin-bottom: 1.35rem;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.contact-quick-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f2eb 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 16px;
  padding: 1rem;
}

.contact-quick-card h3 {
  margin: 0 0 0.28rem;
  font-size: 0.98rem;
  color: #13332e;
}

.contact-quick-card p,
.contact-quick-card a {
  margin: 0;
  color: #3f5650;
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-quick-card a:hover {
  color: #13332e;
  text-decoration: underline;
}

.contact-guidance-card {
  margin-top: 0.9rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
  border: 1px solid rgba(19, 51, 46, 0.12);
  border-radius: 16px;
  padding: 1.05rem 1.05rem;
}

.contact-guidance-card h3 {
  margin: 0 0 0.45rem;
  color: #13332e;
  font-size: 1rem;
}

.contact-guidance-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #3f5650;
}

.contact-guidance-card li + li {
  margin-top: 0.3rem;
}

.contact-form-panel {
  padding: clamp(1.2rem, 2.3vw, 2rem);
  padding-top: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-form-panel h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: #11372f;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.contact-form-panel > p {
  margin-bottom: 1.25rem;
  color: #4a635e;
}

.contact-page #contact {
  background: transparent;
}

.contact-page #contactForm {
  display: grid;
  gap: 0.72rem;
}

.contact-page #contactForm input,
.contact-page #contactForm textarea {
  background: #fbf7ef;
  border: 1px solid #ddd2bf;
  border-radius: 12px;
  padding: 0.96rem 1rem;
  color: #1f2d2a;
  font-family: "Inter", sans-serif;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-page #contactForm textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page #contactForm input:focus,
.contact-page #contactForm textarea:focus {
  border-color: #C9A84C;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.contact-page #contactForm button {
  width: 100%;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #a8863a 0%, #c9a84c 50%, #d8bb63 100%);
  color: #13332e;
}

.contact-page #contactForm button:hover {
  background: #f7d879;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .contact-layout-modern {
    grid-template-columns: 1fr;
    row-gap: 1.9rem;
  }
}

@media (max-width: 640px) {
  .contact-hero-modern {
    padding-top: 7.9rem;
  }

  .contact-main-modern {
    padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
  }

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

/* ===== MOBILE NAVIGATION - WORKING VERSION ===== */
@media (max-width: 768px) {
  .navbar {
    left: 0.65rem;
    right: 0.65rem;
    width: auto;
    top: 0.55rem;
    padding: 0.8rem 1rem;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: #fff;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 7.2rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease, visibility 0s 0.4s;
    z-index: 1000;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s ease, visibility 0s 0s;
  }

  .nav-link {
    font-size: 1.3rem;
    color: #111827;
    font-weight: 600;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Button loading state */
button.loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

/* Newsletter spinner (darker bg) */
.newsletter-form .spinner {
  border: 3px solid rgba(19, 51, 46, 0.3);
  border-top-color: #13332e;
}

/* Locations Dropdown - FIXED VERSION */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  margin-top: 0;
  padding: 0.5rem 0;
  z-index: 1001;
}

/* Add padding to create invisible bridge */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px; /* Creates invisible hover area above menu */
  left: 0;
  right: 0;
  height: 10px;
}

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

.dropdown-menu a {
  color: #111827;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #C9A84C;
}

.dropdown-menu a[aria-current="page"] {
  background: rgba(201, 168, 76, 0.12);
  color: #C9A84C;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: #f3f4f6;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-radius: 10px;
    width: 100%;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 1rem;
    padding: 0.5rem 2rem;
  }

  .dropdown-menu::before {
    display: none; /* Remove bridge on mobile */
  }
}

/* ===== FAQ Section ===== */
.faq {
  background: transparent;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-heading p {
  max-width: 720px;
  margin: 0.75rem auto 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(19, 51, 46, 0.12);
  border-radius: 14px;
  padding: 0.25rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #13332e;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: background 0.25s ease;
  border-radius: 14px;
}

.faq-item summary:hover {
  background: rgba(201, 168, 76, 0.05);
}

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

/* Plus icon */
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #13332e;
  background: #C9A84C;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item summary:hover::after {
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

/* When open, turn plus into x */
.faq-item[open] summary::after {
  content: "×";
  background: rgba(19, 51, 46, 0.12);
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1.25rem 1.15rem;
  color: #444;
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

.faq-more-link {
  display: none;
  text-align: center;
  margin-top: 1rem;
}

.faq-more-link .cta-btn {
  text-decoration: none;
  display: inline-block;
}

/* Nice open animation */
.faq-item[open] .faq-answer {
  animation: faqFade 0.18s ease-in;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-heading p {
    font-size: 1rem;
  }
  .faq-item summary {
    padding: 1rem 1rem;
  }
  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .faq-home .faq-list .faq-item:nth-child(n + 4) {
    display: none;
  }

  .faq-home .faq-more-link {
    display: block;
  }
}

/* ===== Location Hero Image ===== */
.hero.location-hero {
  position: relative;
  min-height: 90vh; /* similar to your current full-screen hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so text is readable */
.hero.location-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Make sure hero text stays above the overlay */
.hero.location-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.location-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.location-section {
  padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
  background: #fff;
}

.location-section-alt {
  background: linear-gradient(135deg, #faf9f6 0%, #f1ece2 100%);
}

.location-page .location-section,
.location-page .location-section-alt {
  background: transparent;
}

.location-container {
  max-width: 1000px;
  margin: 0 auto;
}

.location-container-narrow {
  max-width: 800px;
}

.location-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  color: #2f3943;
  max-width: min(var(--measure-wide), 100%);
}

.location-lead + .location-lead {
  margin-top: 1.25rem;
}

.location-section-copy {
  margin-bottom: 2rem;
  color: #4f5b66;
}

.location-grid-left {
  text-align: left;
}

.location-card-title {
  color: #13332e;
  margin-bottom: 1rem;
}

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

.location-venue-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.location-venue-list li:last-child {
  border-bottom: none;
}

.location-map {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

.hero.location-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.hero.location-hero p {
  font-size: 1.1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-cta-bar {
  display: none;
}
/* footer-bottom link styles handled in footer block above */

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .hero.location-hero {
    min-height: 78vh;
    padding-top: 5rem;
    padding-bottom: 1.8rem;
  }

  .location-hero-content {
    max-width: 680px;
    padding: 1.25rem 1rem 0.25rem;
  }

  .hero.location-hero h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.7rem);
    margin-bottom: 0.55rem;
  }

  .hero.location-hero p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
    padding: 0 0.2rem;
  }

  .location-hero-content > button {
    width: min(92vw, 300px);
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  body.has-mobile-cta .footer {
    padding-bottom: calc(2.25rem + 76px);
  }

  .mobile-cta-bar {
    display: flex;
    gap: 0.6rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    padding: 0.65rem;
    background: rgba(19, 51, 46, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    padding: 0.9rem 0.7rem;
  }

  .mobile-cta-quote {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #D4B85A 100%);
    color: #13332e;
  }

  .mobile-cta-call {
    background: #ffffff;
    color: #13332e;
  }
}

.blog-hero {
  padding-top: 8.5rem;
  background: linear-gradient(135deg, #13332e 0%, #1f524a 100%);
  color: #fff;
}

.blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.blog-index-section {
  background: transparent;
}

.faq-page .faq-container {
  max-width: 1180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(18, 44, 40, 0.08);
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

.faq-page .faq-item {
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
}

.faq-page .faq-item summary {
  padding: 1.2rem 1.35rem;
  font-size: 1rem;
}

.faq-page .faq-answer {
  padding: 0 1.35rem 1.2rem;
}

.blog-index-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-index-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 22px;
  padding: 1.65rem;
  text-align: left;
  box-shadow: 0 18px 34px rgba(18, 44, 40, 0.07);
}

.blog-index-card h2 {
  margin: 0.45rem 0 0.85rem;
  font-size: 1.7rem;
  line-height: 1.15;
}

.blog-index-card h2 a {
  color: #13332e;
  text-decoration: none;
}

.blog-index-card h2 a:hover {
  color: #0f2a25;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #866a2c;
}

.blog-read-more {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #13332e;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.blog-read-more:hover {
  color: #0f2a25;
}

.blog-cta {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f7f2e7 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(18, 44, 40, 0.08);
}

.blog-cta p {
  max-width: 680px;
  margin: 0 auto 1.2rem;
}

.blog-post {
  max-width: 860px;
  margin: 0 auto;
  padding: 8.5rem 5% 4rem;
}

.blog-post-header {
  text-align: left;
  margin-bottom: 1.4rem;
}

.blog-post-header h1 {
  color: #13332e;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin: 0.8rem 0;
}

.blog-meta {
  color: #5f6c77;
  margin-bottom: 0.8rem;
}

.blog-intro {
  color: #2f3943;
  font-size: 1.08rem;
}

.blog-post-section {
  text-align: left;
  background: #fff;
  border: 1px solid #e4dbce;
  border-radius: 16px;
  padding: 1.5rem;
}

.blog-post-section h2 {
  text-align: left;
  color: #13332e;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.blog-post-section p {
  color: #2f3943;
  margin-bottom: 1.15rem;
  max-width: min(var(--measure-body), 100%);
}

.blog-inline-cta {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #e4dbce;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.blog-inline-cta h2 {
  color: #13332e;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 0.7rem;
}

.blog-inline-cta p {
  color: #2f3943;
  max-width: 720px;
  margin: 0 auto 1rem;
}

.blog-inline-cta .cta-btn {
  display: inline-block;
  text-decoration: none;
}

.blog-post-nav {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.blog-post-nav a,
.blog-preview-all a {
  color: #13332e;
  font-weight: 700;
  text-decoration: none;
}

.blog-post-nav a:hover,
.blog-preview-all a:hover {
  color: #0f2a25;
}

.blog-preview {
  background: linear-gradient(180deg, #faf9f6 0%, #ffffff 12%);
}

.blog-preview-card {
  text-align: left;
}

.blog-preview-card h3 {
  margin: 0.75rem 0;
  color: #13332e;
}

.blog-preview-all {
  margin-top: 1.1rem;
}

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

@media (max-width: 768px) {
  .blog-inline-cta {
    padding: 1.15rem;
  }

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

  .blog-preview .grid > .blog-preview-card:nth-child(n + 2) {
    display: none;
  }
}

.legal-page {
  background:
    radial-gradient(circle at 85% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 42%),
    radial-gradient(circle at 8% 14%, rgba(19, 51, 46, 0.08) 0%, transparent 44%),
    linear-gradient(180deg, #f4efe6 0%, #faf8f3 26%, #f7f4ee 100%);
}

.legal-page .navbar {
  background: rgba(255, 255, 255, 0.96);
}

.legal-hero {
  padding: 8.8rem 5% 2.6rem;
}

.legal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  color: #102f29;
  text-wrap: balance;
}

.legal-hero p {
  max-width: 42rem;
  margin: 0 auto;
  color: #4a5e59;
  font-size: 1.02rem;
  line-height: 1.72;
}

.legal-meta {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  color: #243b35;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-meta span + span::before {
  content: "/";
  margin-right: 0.8rem;
  color: rgba(169, 136, 58, 0.8);
}

.legal-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5% 3.5rem;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 24px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  box-shadow: 0 24px 48px rgba(18, 44, 40, 0.08);
}

.legal-content h2 {
  color: #13332e;
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(19, 51, 46, 0.08);
  text-align: left;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content p {
  color: #2f3943;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-content a {
  color: #13332e;
  text-underline-offset: 3px;
}

.legal-post-nav {
  max-width: 980px;
  margin: 1rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.legal-post-nav a {
  color: #13332e;
  font-weight: 700;
  text-decoration: none;
}

.legal-post-nav a:hover {
  color: #0f2a25;
}

@media (max-width: 640px) {
  .legal-hero {
    padding-top: 7.9rem;
  }

  .legal-meta {
    gap: 0.35rem 0.7rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .legal-meta span {
    font-size: 0.69rem;
    letter-spacing: 0.12em;
  }

  .legal-meta span + span::before {
    margin-right: 0.65rem;
  }
}

.services-page {
  background: linear-gradient(180deg, #f1ebe1 0%, #faf8f3 18%, #f5f1ea 100%);
  color: #22333a;
}

.services-comparison .pricing-subtitle {
  margin-bottom: 1.5rem;
}

.services-comparison .pricing-note {
  margin-top: 1.1rem;
}

.services-page .navbar {
  background: rgba(255, 255, 255, 0.96);
}

.services-page .trust-section,
.services-page .pricing,
.services-page .services,
.services-page .location-section,
.services-page .location-section-alt,
.services-page .faq-full,
.services-page .services-final-cta {
  max-width: 1240px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(19, 51, 46, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(11, 28, 24, 0.08);
  overflow: hidden;
}

.services-page .trust-section,
.services-page .pricing,
.services-page .services,
.services-page .location-section,
.services-page .faq-full,
.services-page .services-final-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfaf7 100%);
}

.services-page .location-section-alt {
  background: linear-gradient(135deg, #f7f1e7 0%, #fcfaf6 100%);
}

.services-page .trust-section {
  margin-top: -3.5rem;
  padding: clamp(2.2rem, 4vw, 3rem) clamp(1.15rem, 3vw, 2.4rem);
}

.services-page .pricing,
.services-page .services,
.services-page .location-section,
.services-page .location-section-alt,
.services-page .faq-full,
.services-page .services-final-cta {
  padding: clamp(2.3rem, 4vw, 3.4rem) clamp(1.15rem, 3vw, 2.6rem);
}

.services-page .pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f8f3ea 100%);
  text-align: center;
}

.services-page .pricing h2,
.services-page .services h2,
.services-page .location-section h2,
.services-page .location-section-alt h2,
.services-page .faq-full h2,
.services-page .services-final-cta h2,
.services-page .trust-intro h2 {
  color: #13332e;
}

.services-page .pricing-subtitle,
.services-page .pricing-note,
.services-page .trust-intro p,
.services-page .location-section-copy,
.services-page .faq-heading p,
.services-page .services-final-cta p {
  color: #55636a;
}

.services-hero {
  min-height: 100svh;
  padding: 8rem 1rem 6.75rem;
  background-position: center 24%;
  position: relative;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 18, 0.3) 0%, rgba(11, 16, 18, 0.58) 100%);
  z-index: 0;
}

.services-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 2.8rem 1rem 2.4rem;
}

.services-hero h1 {
  max-width: 9ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.35rem;
  font-size: clamp(2.85rem, 5.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.services-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero .hero-content > p {
  color: rgba(247, 249, 248, 0.94);
}

.services-hero-actions {
  margin-bottom: 0;
}

.services-hero-cta {
  display: inline-block;
  margin-top: 0.1rem;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(6, 17, 15, 0.28);
}

.services-intro-section {
  margin-top: -1.5rem;
}

.services-page .card {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(19, 51, 46, 0.12);
  box-shadow: 0 14px 28px rgba(7, 26, 22, 0.07);
}

.services-page .card:hover {
  box-shadow: 0 20px 38px rgba(7, 26, 22, 0.13);
}

.services-page .card h3 {
  margin-bottom: 0.55rem;
}

.services-page .services-intent-card strong {
  color: #13332e;
}

.services-page .services img {
  height: 320px;
  object-position: center;
}

@media (min-width: 1024px) {
  .services-page .services-booth-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.services-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
  background: #fff;
  border: 1px solid rgba(19, 51, 46, 0.13);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(7, 26, 22, 0.1);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.services-table thead th {
  background: #13332e;
  color: #fff;
  text-align: left;
  padding: 1rem 1.05rem;
  font-size: 0.98rem;
}

.services-table .services-table-featured {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.22) 0%, rgba(201, 168, 76, 0.12) 100%);
  color: #13332e;
  font-weight: 700;
}

.services-table thead .services-table-featured {
  background: linear-gradient(180deg, #f2d98b 0%, #e8c866 100%);
  color: #13332e;
  font-weight: 800;
}

.services-table tbody th,
.services-table tbody td {
  padding: 0.92rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid #ebe8df;
  font-size: 0.96rem;
}

.services-table tbody th {
  color: #13332e;
  font-weight: 700;
  width: 38%;
}

.services-table tbody tr:nth-child(even) {
  background: #fbf8f1;
}

.services-intent-card p + p {
  margin-top: 0.7rem;
}

.services-addon-card h3 {
  color: #13332e;
  margin-bottom: 0.55rem;
}

.services-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.services-step {
  background: #fff;
  border: 1px solid #e4dbce;
  border-radius: 14px;
  padding: 1.1rem;
  text-align: left;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.services-step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #13332e;
  color: #C9A84C;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.services-step h3 {
  color: #13332e;
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
}

.services-final-cta .cta-btn {
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(7, 24, 21, 0.18);
}

@media (max-width: 768px) {
  .services-page .trust-section,
  .services-page .pricing,
  .services-page .services,
  .services-page .location-section,
  .services-page .location-section-alt,
  .services-page .faq-full,
  .services-page .services-final-cta {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 18px;
  }

  .services-hero {
    min-height: 82svh;
    padding: 6.1rem 1rem 4rem;
    background-position: 58% center;
  }

  .services-hero .hero-content {
    max-width: 520px;
    padding: 1.35rem 0.9rem 1.8rem;
  }

  .services-hero h1 {
    max-width: 8ch;
    font-size: clamp(2.3rem, 9.8vw, 3.35rem);
    line-height: 1;
  }

  .services-intro-section {
    margin-top: -0.9rem;
  }

  .services-table-wrap {
    border-radius: 10px;
  }

  .services-table {
    min-width: 620px;
  }

  .services-step {
    padding: 1rem;
  }

}

.gallery-page {
  background: linear-gradient(180deg, #faf9f6 0%, #ffffff 18%);
  color: #222;
}

.gallery-page .navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.gallery-page .nav-link {
  color: #111827;
}

.gallery-page .nav-link[aria-current="page"],
.gallery-page .nav-link[aria-current="location"] {
  color: #C9A84C;
}

.gallery-page .nav-link:hover {
  color: #C9A84C;
}

.gallery-page .dropdown-menu {
  background: #ffffff;
}

.gallery-page .dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #C9A84C;
}

.gallery-page .dropdown-menu a[aria-current="page"] {
  background: rgba(201, 168, 76, 0.12);
  color: #C9A84C;
}

.gallery-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d8f2eb;
  border: 1px solid rgba(216, 242, 235, 0.42);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.85rem;
}

.gallery-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.gallery-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(240, 250, 247, 0.9);
}

/* Bento Gallery Styles */
.bento-gallery-section {
  padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
  background: linear-gradient(180deg, #faf9f6 0%, #ffffff 50%);
  position: relative;
}

.gallery-page .bento-gallery-section {
  padding-top: calc(var(--section-space-block) + 4.75rem);
}

.bento-gallery-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

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

.bento-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #13332e;
  letter-spacing: -0.02em;
}

.bento-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 240px;
  gap: 1rem;
  perspective: 1200px;
}

/* Bento Grid Items with Varying Sizes */
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e4dbce;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow;
  opacity: 0;
  animation: bento-fadeIn 0.6s ease-out forwards;
}

.bento-item:nth-child(1) {
  animation-delay: 0.05s;
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item:nth-child(2) {
  animation-delay: 0.1s;
}

.bento-item:nth-child(3) {
  animation-delay: 0.15s;
}

.bento-item:nth-child(4) {
  animation-delay: 0.2s;
  grid-row: span 2;
}

.bento-item:nth-child(5) {
  animation-delay: 0.25s;
}

.bento-item:nth-child(6) {
  animation-delay: 0.3s;
  grid-column: span 2;
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  border-color: #C9A84C;
}

.bento-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-item:hover .bento-item-image {
  transform: scale(1.12);
}

/* Gradient Overlay */
.bento-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.bento-item:hover .bento-item-overlay {
  opacity: 1;
}

.bento-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.bento-item:hover .bento-item-title {
  transform: translateY(0);
  opacity: 1;
}

.bento-item-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.bento-item:hover .bento-item-desc {
  transform: translateY(0);
  opacity: 1;
}

.bento-item:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
}

/* Modal Styles */
.bento-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: bento-fadeIn 0.3s ease-out;
  overflow-y: scroll;
}

.bento-modal-overlay.active {
  display: flex;
}

.bento-modal-content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  animation: bento-scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-modal-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 2px rgba(201, 168, 76, 0.6),
    0 30px 80px rgba(0, 0, 0, 0.6);
}

.bento-modal-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.bento-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 1001;
  backdrop-filter: blur(4px);
}

.bento-modal-close:hover {
  background: #C9A84C;
  color: #13332e;
  transform: rotate(90deg) scale(1.1);
}

.bento-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Animations */
@keyframes bento-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bento-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 0.8rem;
  }

  .bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-item:nth-child(4) {
    grid-row: span 2;
  }

  .bento-item:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-gallery-section {
    padding: var(--section-space-top) var(--section-space-inline) var(--section-space-bottom);
  }

  .bento-header {
    margin-bottom: 1.35rem;
  }

  .bento-title {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .bento-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
    gap: 0.55rem;
  }

  .bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-item:nth-child(6) {
    grid-column: span 2;
  }

  .bento-item-overlay {
    padding: 0.8rem;
  }

  .bento-item-title {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .bento-item-desc {
    font-size: 0.75rem;
  }

  .bento-modal-close {
    width: 40px;
    height: 40px;
    top: 0.7rem;
    right: 0.7rem;
    position: fixed;
  }

  .bento-modal-overlay {
    align-items: flex-start;
    padding: 4.75rem 0.75rem 0.75rem;
  }

  .bento-modal-content {
    width: 100%;
    max-width: 100%;
  }

  .bento-modal-content img {
    max-height: calc(100vh - 7rem);
  }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 0.5rem;
  }

  .bento-item:nth-child(1) {
    grid-column: span 2;

  .gallery-page .bento-gallery-section {
    padding-top: calc(var(--section-space-block) + 4.25rem);
  }
    grid-row: span 1;
  }

  .bento-item:nth-child(6) {
    grid-column: span 2;
  }

  .bento-modal-content {
    max-width: 95vw;
    max-height: 90vh;
  }

  .bento-modal-content img {
    max-height: calc(100vh - 7rem);
  }
}

@media (hover: none) {
  .bento-item:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #e4dbce;
  }

  .bento-item:hover .bento-item-image {
    transform: none;
  }

  .bento-item-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.24) 55%,
      transparent 100%
    );
  }

  .bento-item-title,
  .bento-item-desc {
    opacity: 1;
    transform: none;
  }
}

.gallery-cta {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    140deg,
    rgba(17, 57, 50, 0.95) 0%,
    rgba(19, 51, 46, 0.92) 100%
  );
}

.gallery-cta h2 {
  margin-bottom: 0.7rem;
}

.gallery-cta p {
  color: rgba(241, 250, 247, 0.9);
  margin-bottom: 1rem;
}

.gallery-page .footer-bottom {
  display: block;
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 0 5%;
  text-align: center;
  color: #2f3943;
  border-top: none;
  padding-top: 0;
}

.gallery-page .footer-bottom a {
  color: #13332e;
  transition: color 0.2s ease;
}

.gallery-page .footer-bottom a:hover {
  color: #0f2a25;
}

.services-page .footer-bottom {
  display: block;
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 0 5%;
  text-align: center;
  color: #2f3943;
  border-top: none;
  padding-top: 0;
}

.services-page .footer-bottom a {
  color: #13332e;
  transition: color 0.2s ease;
}

.services-page .footer-bottom a:hover {
  color: #0f2a25;
}

.blog-page .footer-bottom {
  display: block;
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 0 5%;
  text-align: center;
  color: #2f3943;
  border-top: none;
  padding-top: 0;
}

.blog-page .footer-bottom a {
  color: #13332e;
  transition: color 0.2s ease;
}

.blog-page .footer-bottom a:hover {
  color: #0f2a25;
}

.contact-page-footer {
  display: block;
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 0 5%;
  text-align: center;
  color: #2f3943;
  border-top: none;
  padding-top: 0;
}

.contact-page-footer a {
  color: #13332e;
  transition: color 0.2s ease;
}

.contact-page-footer a:hover {
  color: #0f2a25;
}

@media (max-width: 768px) {
  .contact-page-footer {
    border-radius: 0;
    padding: 0 1rem 1.25rem;
    margin-top: 1.5rem;
  }

  .contact-page-footer p {
    margin: 0 auto;
    max-width: 28rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .gallery-showcase {
    padding: 1.15rem 1rem 4rem;
  }

  .gallery-masonry {
    columns: 2 160px;
    column-gap: 0.75rem;
  }

  .gallery-tile {
    margin-bottom: 0.75rem;
    border-radius: 13px;
  }

  .gallery-page .footer-bottom {
    border-radius: 0;
    padding: 0 1rem 1.25rem;
    margin-top: 1.5rem;
  }

  .gallery-page .footer-bottom p {
    margin: 0 auto;
    max-width: 28rem;
    line-height: 1.6;
  }

  .services-page .footer-bottom {
    border-radius: 0;
    padding: 0 1rem 1.25rem;
    margin-top: 1.5rem;
  }

  .services-page .footer-bottom p {
    margin: 0 auto;
    max-width: 28rem;
    line-height: 1.6;
  }
}
