/* =========================================================
   Life Republic — Design Tokens
   ========================================================= */
:root {
  --gold: #e59a36;
  --gold-dark: #c17d24;
  --gold-tint: #fbe9cf;
  --ink: #201c16;
  --ink-soft: #4a4238;
  --bg: #ffff;
  --bg-alt: #f7f7f7;
  --line: #e3dccf;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 14px rgba(32, 28, 22, .08);
  --shadow-lg: 0 20px 50px rgba(32, 28, 22, .14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
}

/* =========================================================
   Reset
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

input {
  font-family: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

p {
  margin: 0 0 1em;
  /* max-width: 62ch; */
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: .6em 1em;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

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

.eyebrow {
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--gold-dark);
  margin: 0 0 .5em;
  font-weight: 600;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.scrolled {
  background: rgba(250, 248, 244, .96);
  box-shadow: var(--shadow-sm);
  height: 64px;
  backdrop-filter: saturate(180%) blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.logo img {
  height: 40px;
  width: auto;
}

.site-header.scrolled .logo img {
  height: 56px;
}

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

.site-nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}

.site-header.scrolled .site-nav a {
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-cta {
  font-size: .85rem;
  padding: .7em 1.4em;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  z-index: 510;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.site-header.scrolled .menu-toggle span {
  background: var(--ink);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 12, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 490;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   Hero — mobile-first: video on top, content below
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  background: var(--ink);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 40vh;
  /* min-height: 340px; */
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 90.25vw;
  /* min-height: 100%; min-width: 177.78vh; keep video covering box */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(20, 17, 12, .15) 0%, rgba(20, 17, 12, .55) 100%); */
}

.hero-content {
  position: relative;
  padding: 34px 20px 44px;
  color: var(--white);
  text-align: left;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: .3em;
}

.hero-location {
  color: rgba(255, 255, 255, .85);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 1.4em;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}

.hero-price-config {
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin-bottom: 1.6em;
}

.hero-feature {
  display: flex;
  flex-direction: column;
}

.hero-feature strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.hero-feature span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
}

/* Desktop hero: content overlaid on the video */
@media (min-width: 900px) {
  .hero {
    padding-top: 0;
  }

  .hero-media {
    height: 100vh;
    min-height: 620px;
  }

  .hero-content {
            position: absolute;
        top: 23vh;
        left: 50px;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 400px;
        height: fit-content;
        padding: 25px;
        background-color: black;
        border-radius: 30px;
  }

  .hero-media-overlay {
    /* background: linear-gradient(100deg, rgba(20, 17, 12, .72) 0%, rgba(20, 17, 12, .4) 45%, rgba(20, 17, 12, .05) 75%); */
  }
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: 72px 0;
}

.section-intro {
      max-width: 720px;
    margin: 0 0 40px;
    justify-self: center;
    text-align: center;
    justify-items: center;
}

.section-intro p {
  max-width: 60ch;
}

/* =========================================================
   About + Projects
   ========================================================= */
.about-projects {
  background: #f7f7f7;
}

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

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

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

.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.project-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.project-media .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}

.project-body {
  padding: 20px;
}

.project-body h3 {
  margin-bottom: .3em;
}

.project-plan {
      font-size: 18px;
    margin-bottom: .2em;
    color: #e59a36;
    font-weight: 500;
}

.project-info {
  
    font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: .5em;
}

.project-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 1em;
}

.project-btn {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
}

.stats li {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-dark);
}

.stat-label {
  font-size: .85rem;
  color: var(--ink-soft);
}

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

/* =========================================================
   Profile grid
   ========================================================= */
.profile-section {
  background: var(--white);
  text-align: center;
}

.profile-section h2 {
  margin-bottom: 32px;
}

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

.profile-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 12, 0) 40%, rgba(20, 17, 12, .75) 100%);
}

.profile-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.25;
}

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

/* =========================================================
   Overview
   ========================================================= */
.overview-section {
  background: var(--bg-alt);
}

.overview-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.overview-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 860px) {
  .overview-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* =========================================================
   Carousels (amenities + gallery) — native scroll-snap, no libs
   ========================================================= */
.amenities-section {
  background: var(--bg);
}

.carousel {
  position: relative;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  scroll-snap-align: start;
  flex: 0 0 78%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.slide-caption {
  display: block;
  padding: 12px 14px 14px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
}

.slide-caption em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: .75rem;
  color: var(--gold-dark);
  margin-top: 2px;
}

.carousel-wide .carousel-slide {
  flex-basis: 85%;
}

.carousel-wide .carousel-slide img {
  aspect-ratio: 16/10;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.carousel-btn.prev {
  left: 4px;
}

.carousel-btn.next {
  right: 4px;
}

@media (min-width: 700px) {
  .carousel-slide {
    flex-basis: 32%;
  }

  .carousel-wide .carousel-slide {
    flex-basis: 46%;
  }

  .carousel-btn {
    display: flex;
  }
}

/* =========================================================
   Location / Accordion
   ========================================================= */
.location-section {
  background: var(--bg-alt);
}

.location-section>.wrap>h2 {
  max-width: 20ch;
  margin-bottom: 32px;
}

.location-grid {
  display: grid;
  gap: 28px;
}

.location-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}

.accordion-head img:first-child {
  width: 22px;
  height: 22px;
}

.plusminus {
  margin-left: auto;
  transition: transform .25s ease;
}

.accordion-head[aria-expanded="true"] .plusminus {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 4px 18px 38px;
}

.accordion-body ul li {
  padding: 4px 0;
  font-size: .92rem;
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* =========================================================
   Gallery section
   ========================================================= */
.gallery-section {
  background: var(--bg);
}

.gallery-section .wrap {
  margin-bottom: 28px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-section {
  background: var(--ink);
  color: rgba(255, 255, 255, .85);
}

.contact-section h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.contact-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

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

.enquiry-form {
  margin-top: 20px;
}

.input-box {
  margin-bottom: 14px;
}

.form-input {
  width: 100%;
  padding: .95em 1.1em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: .95rem;
}

.form-input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.contact-section .form-input {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .2);
  color: var(--white);
}

.contact-section .form-input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.terms label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .8rem;
  line-height: 1.5;
}

.terms input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.form-error {
  display: none;
  color: #ff9d9d;
  font-size: .78rem;
}

.input-submit .btn {
  width: 100%;
  border: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--bg-alt);
  padding: 48px 0 24px;
  font-size: .85rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-info-left .highlight {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.footer-info-right {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.rera-item {
  text-align: center;
  font-size: .75rem;
}

.rera-item img {
  margin: 6px auto 0;
  border-radius: 6px;
}

.footer-disclaimer {
  padding: 20px 0;
  font-size: .76rem;
  color: var(--ink-soft);
}

.footer-bottom {
  padding-top: 10px;
}

.policy-link {
  font-weight: 700;
  color: var(--gold-dark);
}

/* =========================================================
   Floating buttons
   ========================================================= */
.floating-btns {
  position: fixed;
  left: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 400;
}

.fab {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.fab img {
  width: 22px;
  height: 22px;
}

.fab-enquire span {
  display: none;
  font-weight: 700;
  font-size: .85rem;
  padding-right: 6px;
}

@media (min-width: 640px) {
  .fab-enquire span {
    display: inline;
  }
}

.whatsapp-btn {
  position: fixed;
  left: 18px;
  bottom: 150px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 400;
}

.whatsapp-btn img {
  width: 28px;
  height: 28px;
}

/* =========================================================
   Enquire Modal
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 12, .65);
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 760px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  box-shadow: var(--shadow-lg);
}

.modal-image {
  display: none;
}

.modal-form {
  padding: 28px 22px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.modal-close img {
  width: 14px;
  height: 14px;
}

@media (min-width: 700px) {
  .modal-panel {
    grid-template-columns: 1fr 1fr;
  }

  .modal-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================================================
   Chatbot
   ========================================================= */
#chatbot-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 600;
  border: 2px solid var(--gold);
}

#chatbot-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#chatbot {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: min(330px, calc(100vw - 40px));
  height: 70vh;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius);
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 650;
}

#chatbot.open {
  display: flex;
}

#chat-header {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat-header .profile {
  display: flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
}

#chat-header .profile img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 8px;
}

.close-btn {
  cursor: pointer;
  font-size: 1rem;
}

#chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

.message {
  margin: 8px 0;
  padding: 9px 14px;
  border-radius: 16px;
  max-width: 78%;
  font-size: .88rem;
  line-height: 1.4;
}

.message.bot {
  background: var(--bg-alt);
  color: var(--ink);
}

.message.user {
  background: var(--ink);
  color: var(--white);
  margin-left: auto;
}

.chat-option {
  background: var(--gold-tint);
  color: var(--ink);
  border: 1px solid var(--gold);
  padding: 9px 14px;
  max-width: 85%;
  margin: 6px 0 6px auto;
  border-radius: 16px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
}

#chat-input {
  display: flex;
  border-top: 1px solid var(--line);
}

#chat-input input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: .88rem;
}

#chat-input input:focus {
  outline: none;
}

#chat-input button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0 16px;
  font-size: 1rem;
}

.typing {
  display: inline-flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: 16px;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-soft);
  animation: blink 1.4s infinite;
}

.typing span:nth-child(2) {
  animation-delay: .2s;
}

.typing span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: .2;
  }

  40% {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  #chatbot {
    right: 20px;
    bottom: 92px;
  }

  #chatbot-btn {
    bottom: 22px;
    right: 22px;
    width: 54px;
    height: 54px;
  }

  .floating-btns {
    bottom: 84px;
    right: 14px;
  }

  .whatsapp-btn {
    bottom: 14px;
    left: 14px;
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   Nav — mobile
   ========================================================= */
@media (max-width: 899px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    padding: 100px 28px 28px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 500;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 22px;
  }

  .site-nav a {
    color: var(--ink);
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .hero-content{
    text-align: center;
  }
  .hero-features{
    
    justify-content: center;
  }
  .overview-media img, .contact-media img, .location-media img {
    height: 100%;
}
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}



.video-bg-container iframe,
.video-poster {
    position: absolute;
}

.video-poster {
    z-index: 2;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.video-poster.hide-poster {
    opacity: 0;
    pointer-events: none;
}
