/* =========================================
   Banner redesign - matches luxury mockup
   Loaded after style.css to override chrome/hero
   ========================================= */

h1.hero-title,
.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: none;
}

/* Announcement */
.announce {
  background: var(--forest);
  border-bottom: 1px solid rgba(196, 165, 116, 0.22);
  color: rgba(253, 242, 211, 0.78);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: auto;
}

.announce p {
  margin: 0;
  font-size: inherit;
  color: inherit;
}

.announce span {
  color: var(--gold);
  margin-right: 0.35rem;
}

.announce-inner,
.announce-pill,
.announce-cta {
  display: none;
}

/* Header */
.site-header {
  background: rgba(26, 34, 28, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-solid {
  background: rgba(26, 34, 28, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand-logo {
  height: 46px;
  border-radius: 6px;
}

.nav {
  justify-content: center;
  gap: 1.75rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  padding: 0.35rem 0;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--white);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 1.15rem;
  font-size: 0.88rem;
}

.nav-mobile-cta {
  display: none;
}

.nav-toggle {
  justify-self: end;
}

/* Hero */
.hero {
  background: var(--forest);
  display: grid;
  align-items: center;
}

.hero-slide {
  margin: 0;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.05);
  transition: transform 8s linear;
}

.hero-slide.is-active img {
  transform: scale(1.12);
}

.hero-media {
  display: none;
}

.hero-veil {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 24, 20, 0.92) 0%, rgba(18, 24, 20, 0.72) 38%, rgba(18, 24, 20, 0.28) 68%, rgba(18, 24, 20, 0.45) 100%),
    linear-gradient(180deg, rgba(18, 24, 20, 0.2) 0%, transparent 35%, rgba(18, 24, 20, 0.55) 100%);
  pointer-events: none;
}

.hero-progress {
  position: absolute;
  z-index: 4;
  left: clamp(0.75rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-progress-current {
  color: var(--gold);
}

.hero-progress-line {
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.2));
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--container));
  max-width: 640px;
  margin: 0 auto 0 clamp(2.5rem, 8vw, 6.5rem);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.hero-kicker {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title em {
  font-style: italic;
  color: var(--secondary);
  font-weight: 600;
}

.hero-text {
  max-width: 30rem;
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.35rem;
  max-width: 34rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.hero-trust-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 116, 0.5);
  color: var(--gold);
  flex-shrink: 0;
  align-self: center;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
}

.hero-trust-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  display: block;
}

.hero-trust li > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
}

.hero-trust strong {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.hero-trust span {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.58);
}

.hero-side-nav {
  position: absolute;
  z-index: 4;
  right: clamp(0.85rem, 2.5vw, 1.75rem);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.65rem;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(18, 24, 20, 0.35);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.hero-arrow:hover {
  background: rgba(87, 127, 108, 0.75);
  border-color: transparent;
}

.hero-controls,
.hero-dots,
.hero-content,
.hero-brand {
  display: none !important;
}

.hero-experience {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  border-radius: 14px;
  background: rgba(26, 34, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  max-width: 280px;
}

.hero-experience-thumbs {
  display: flex;
}

.hero-experience-thumbs img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(26, 34, 28, 0.9);
  margin-left: -10px;
}

.hero-experience-thumbs img:first-child {
  margin-left: 0;
}

.hero-experience-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.hero-experience-text {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hide legacy standalone stats if present */
.stats {
  display: none;
}

@media (max-width: 1100px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 899px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.35rem;
  }

  .hero-progress {
    display: none;
  }

  .hero-panel {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 7rem;
  }

  .hero-experience {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .hero-side-nav {
    top: auto;
    bottom: 5.75rem;
    right: 1rem;
    transform: none;
    grid-auto-flow: column;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-mobile-cta {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .hero-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 44rem;
  }
}

@media (max-width: 560px) {
  .announce {
    font-size: 0.66rem;
    letter-spacing: 0.03em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Luxury Services - mockup carousel layout
   ========================================= */

.services {
  background:
    radial-gradient(circle at top right, rgba(87, 127, 108, 0.12), transparent 40%),
    var(--forest);
  color: var(--white);
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.services-layout {
  display: grid;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.services-intro {
  max-width: 360px;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.services-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(196, 165, 116, 0.7);
}

.services-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--white);
}

.services-lead {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
}

.services-view {
  border-color: rgba(253, 242, 211, 0.28);
  color: var(--white);
  min-height: 48px;
}

.services-carousel {
  position: relative;
  min-width: 0;
}

.services-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.25rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
  overscroll-behavior-x: contain;
}

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

.service-card {
  flex: 0 0 min(78vw, 250px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(147, 162, 134, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.service-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #121812;
}

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

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

.service-card-icon {
  position: absolute;
  left: 0.9rem;
  bottom: -18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--forest);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.service-card-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  display: block;
}

/* No admin-uploaded image: clean branded placeholder instead of stock photo */
.service-card-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(147, 162, 134, 0.18), transparent 60%),
    #121812;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card-placeholder {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(87, 127, 108, 0.22);
  color: var(--secondary);
  border: 1px solid rgba(147, 162, 134, 0.4);
}

.service-card-placeholder svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  display: block;
}

.service-card--no-image .service-card-body {
  padding-top: 1.25rem;
}

.service-card-body {
  padding: 1.75rem 1.1rem 1.25rem;
}

.service-card-body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.service-card-body p {
  margin: 0 0 0.9rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.service-price {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.services-next {
  position: absolute;
  right: -0.25rem;
  top: 38%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(26, 34, 28, 0.85);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: background 0.25s var(--ease);
  z-index: 3;
}

.services-next:hover {
  background: var(--primary);
  border-color: transparent;
}

.services-perks {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.perks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  overflow: visible;
}

.perks-list li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.perk-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 116, 0.5);
  color: var(--gold);
  flex-shrink: 0;
  align-self: center;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
}

.perk-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  display: block;
}

.perks-list li > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
}

.perks-list strong {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.perks-list span {
  display: block;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.services-book-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #7a6242 0%, #6d5337 55%, #5a442d 100%);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(109, 83, 55, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.services-book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(109, 83, 55, 0.36);
}

.services-book-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.services-book-card span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.services-book-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .services-layout {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 2rem 2.5rem;
    align-items: center;
  }

  .services-rail {
    gap: 1.1rem;
  }

  .service-card {
    flex-basis: 235px;
  }

  .services-perks {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: center;
    gap: 1.5rem 2rem;
  }

  .perks-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .service-card {
    flex-basis: 250px;
  }

  .services-next {
    right: -0.5rem;
  }
}

@media (max-width: 899px) {
  .services-next {
    display: none;
  }
}
