:root {
  --cream: #f4efe4;
  --warm-white: #fffaf2;
  --charcoal: #161b18;
  --forest: #1f3328;
  --gold: #b89a5b;
  --line: #d9ccb5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

/* Consistent spacing between ordinary paragraphs */
p {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.promise-intro p + p {
  margin-top: 1.25rem;
}

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

.container {
  width: min(1160px, 90%);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 14, 11, 0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
  width: min(1220px, 92%);
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--warm-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.88rem;
}

.nav-cta,
.button {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--charcoal) !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.button.ghost {
  background: transparent;
  color: var(--warm-white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 1.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("/media/hero/hero-estate-web.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 14, 11, 0.48),
      rgba(10, 14, 11, 0.16),
      rgba(10, 14, 11, 0.04)),
    linear-gradient(0deg,
      rgba(10, 14, 11, 0.38),
      transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, 90%);
  margin: 0 auto 0 20%;
  color: var(--warm-white);
  padding-top: 20px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.08rem;
   margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-weight: normal;
  line-height: 1.08;
  margin: 0 0 1.2rem;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 8.4rem);
  max-width: 950px;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: 1.6rem;
}

.hero p {
  max-width: 680px;
  font-size: 1.3rem;
}

.hero-opening-note {
  margin-top: 4rem;
  color: rgba(255, 250, 242, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-opening-note strong {
  display: block;
  color: var(--gold);
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

/* Hero Stay & Gathering Offerings */

.hero-offerings{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:2.5rem;
  max-width:800px;
  margin:3.5rem 0 0;
}

.hero-offering h3 {
  margin:0 0 .65rem;
  color:var(--gold);
  font-size:1.1rem;
  font-weight:normal;
  text-transform:uppercase;
  letter-spacing:.2em;
}

.hero-offering p{

  margin:0;

  max-width:none;

  font-size:1.15rem;

  line-height:1.7;

  color:rgba(255,250,242,.92);

}

@media (max-width:900px){

  .hero-offerings{

    grid-template-columns:1fr;

    gap:1.75rem;

  }

}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--warm-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  opacity: 0.75;
  z-index: 2;
}

.story-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 720px;
  background: var(--cream);
}

.story-section.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-image {
  position: relative;
  overflow: hidden;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 14, 11, 0.08),
    rgba(10, 14, 11, 0.22)
  );
  pointer-events: none;
}

.story-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: translateY(0);
  transition: transform 0.08s linear;
  will-change: transform;
}

.story-text {
  align-self: center;
  padding: 4rem 5rem;
}

.story-text p {
  font-size: 1.08rem;
}

.events-section,
.why-section {
  padding: 7rem 0;
}

.center {
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.gallery-section .section-intro {
  max-width: 32rem;
  margin-top: -0.4rem;
}

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

.feature-item {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.feature-item span {
  display: block;
  color: var(--gold);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.feature-item p {
  margin: 0;
  font-size: 1rem;
}


.gallery-section {
  padding: 5rem 0;
  background: var(--warm-white);
}

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

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  font-family: inherit;
  color: var(--warm-white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 0.9rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 14, 11, 0.78));
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 6rem;
  background: rgba(10, 14, 11, 0.94);
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox figure {
  width: min(1100px, 82vw);
  margin: 0;
  text-align: center;
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox figcaption {
  margin-top: 1rem;
  color: var(--warm-white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--warm-white);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
}

.gallery-lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 68px;
  font-size: 3rem;
  line-height: 1;
}

.gallery-lightbox-prev {
  left: 1.5rem;
}

.gallery-lightbox-next {
  right: 1.5rem;
}

.inquiry-section {
  padding: 7rem 0;
  background:
    linear-gradient(rgba(244, 239, 228, 0.9), rgba(244, 239, 228, 0.9)),
    url("/media/manor-architecture.jpg") center/cover no-repeat;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  background: white;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 150px;
}

.inquiry-form .button {
  cursor: pointer;
  justify-self: center;
}

.site-footer {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 3rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* Chapter Transition */

.section-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    height:56px;
    background:var(--cream);
}

.section-divider span{
    display:block;
    width:180px;
    height:1px;
    background:rgba(184,154,91,.30);
}

.section-divider::before,
.section-divider::after{
    display:none;
}

@media (max-width: 900px) {
  .hero-content {
    width: 84%;
    margin: 0 auto;
  }
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: var(--charcoal);
    padding: 1.5rem;
  }

  .site-nav.active {
    display: flex;
  }

  .story-section,
  .story-section.reverse,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .story-image img {
    height: 360px;
  }

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

  .gallery-item img {
    height: 180px;
  }

  .gallery-lightbox {
    padding: 4rem 1rem 2rem;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 42px;
    height: 56px;
    font-size: 2.4rem;
  }

  .gallery-lightbox-prev {
    left: 0.6rem;
  }

  .gallery-lightbox-next {
    right: 0.6rem;
  }

  .story-text {
    padding: 4rem 8%;
  }

  .footer-grid {
    flex-direction: column;
  }
}

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

  .gallery-item img {
    height: 240px;
  }
}


/* Curated Gallery Collections */

.collection-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.9rem;
}

.collection-tab {
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.collection-tab:hover,
.collection-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.gallery-collections {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.featured img {
  height: 476px;
}

.gallery-item.is-hidden {
  display: none;
}

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

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.featured img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .collection-tabs {
    justify-content: flex-start;
  }

  .collection-tab {
    width: 100%;
  }

  .gallery-collections {
    grid-template-columns: 1fr;
  }

  .gallery-item.featured {
    grid-column: span 1;
  }

  .gallery-item.featured img {
    height: 280px;
  }
}



/* Living Time Minimal Header */

.living-time-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 14, 11, 0.38);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.living-time-nav-inner {
  width: min(1220px, 92%);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.living-time-logo {
  color: var(--warm-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.living-time-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.living-time-nav a {
  color: rgba(255, 250, 242, 0.86);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.living-time-nav a:hover {
  color: var(--warm-white);
}

.living-time-nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(184, 154, 91, 0.75);
  color: var(--gold) !important;
}

@media (max-width: 700px) {
  .living-time-nav-inner {
    height: auto;
    min-height: 72px;
    padding: 0.9rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .living-time-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .living-time-nav a {
    font-size: 0.68rem;
  }

  .living-time-nav-cta {
    padding: 0.55rem 0.75rem;
  }
}

/* Founder / Personal Welcome */

.founder-section {
  padding: 7rem 0;
  background: var(--warm-white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

.founder-photo {

  display: flex;

  height: 100%;

}

.founder-photo img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  border-radius: 12px;

  border: 1px solid rgba(184, 154, 91, 0.55);

  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);

}

.founder-text p {
  font-size: 1.08rem;
}



.founder-welcome {
  margin-top: 1.6rem;
  font-size: 1.18rem !important;
  font-style: italic;
}

.founder-signature {
  margin-top: 2.8rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.founder-signature span {
  display: block;
  color: var(--gold);
  font-size: 0.92rem;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Living Time Invitation */

.living-time-invite {

  margin: 5rem auto 0;

  padding: 4rem 2rem;

  max-width: 920px;

  text-align: center;

  background:

    linear-gradient(rgba(22, 27, 24, 0.78), rgba(22, 27, 24, 0.78)),

    url("/media/manor/views/sunset-sky.jpg") center/cover no-repeat;

  color: var(--warm-white);

  border-radius: 14px;

  border: 1px solid rgba(184, 154, 91, 0.45);

  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);

}

.living-time-invite h3 {

  font-size: clamp(2rem, 4vw, 3.4rem);

}

.living-time-invite p {

  max-width: 680px;

  margin: 0 auto 1.8rem;

  font-size: 1.08rem;

  color: rgba(255, 250, 242, 0.9);

}

.living-time-invite .button {

  margin-top: 0.5rem;

}

/* Living Time Chapters */

.living-time-chapters {
  background: var(--charcoal);
}

.living-time-chapter {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 0;
  background: #0d110f;
  border-top: 1px solid rgba(184, 154, 91, 0.18);
}

.living-time-chapter.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.living-time-chapter.reverse .living-time-chapter-heading {
  order: 2;
}

.living-time-chapter-heading {
  padding: 5rem;
}

.living-time-chapter-heading p {
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.08rem;
}


@media (max-width: 900px) {
  .living-time-chapter,
  .living-time-chapter.reverse {
    grid-template-columns: 1fr;
  }

  .living-time-chapter.reverse .living-time-chapter-heading {
    order: 0;
  }

  .living-time-chapter-heading {
    padding: 4rem 8% 2rem;
  }

}

/* Living Time Page */

.living-time-page {
  background: var(--charcoal);
  color: var(--warm-white);
}

.living-time-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #050706;
}

/* Living Time Hero Video */
.living-time-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.living-time-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 14, 11, 0.58);
}

.living-time-hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
}

.living-time-hero-content h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 7vw, 7rem);
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 700px) {
  .living-time-hero-content h1 {
    white-space: normal;
  }
}

.living-time-hero-content p {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  color: rgba(255, 250, 242, 0.88);
}

.living-time-closing-section {
  padding: 7rem 0;
  text-align: center;
  background:
    linear-gradient(rgba(22, 27, 24, 0.88), rgba(22, 27, 24, 0.88)),
    url("/media/manor/views/moon-stars-estate.jpg") center/cover no-repeat;
}

.living-time-closing-section p {
  font-size: 1.15rem;
  color: rgba(255, 250, 242, 0.82);
}

/* =====================================================
   Living Time Feature Viewer
===================================================== */

.living-time-feature-viewer {
    padding: 3rem;
}

.living-time-feature-video {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #050706;  height: 640px;
}

.living-time-feature-video .living-time-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.75s ease-in-out;
  will-change: opacity;
}

.living-time-feature-video .living-time-layer.is-active {
  opacity: 1;
  z-index: 2;
}

/* Let the next scene emerge more slowly than the previous scene disappears. */
.living-time-feature-video .living-time-layer.is-entering {
  transition-duration: 1.15s;
}

.living-time-feature-video .living-time-layer video,
.living-time-feature-video .living-time-layer img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

.living-time-feature-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin: 1.1rem 0 0.8rem;
  color: var(--warm-white);
}

.living-time-feature-controls button {
  background: none;
  border: none;
  color: rgba(184, 154, 91, 0.85);
  cursor: pointer;
  font-size: 2.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  line-height: 1;
  padding: 0 0.35rem;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.living-time-feature-controls button:hover {
  color: var(--gold);
  transform: translateY(-1px);
  opacity: 1;
}


.living-time-feature-viewer h3,
.living-time-feature-viewer p {
  text-align: center;
}

.living-time-feature-viewer h3 {
  margin-top: 0.15rem;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
  font-size: 2.3rem;
  font-weight: normal;
  letter-spacing: 0.02em;
}

.living-time-feature-viewer p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(22,27,24,.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .living-time-feature-viewer {
    padding: 2rem 8% 4rem;
}

  .living-time-feature-video {
    height: 320px;
  }
}


/* =====================================================
   Arroway Image Viewer
   Reuses Living Time viewer layout for still images
===================================================== */

.manor-image-chapters{
    background: transparent;
}

.manor-image-chapters .living-time-chapter{
  min-height:auto;
  background: transparent;
  border-top: none;
}

.arroway-image-viewer{
  padding:1.5rem 3rem 2.5rem;
}

.manor-image-chapters .arroway-image-viewer{
    padding-top:0;
}

.arroway-feature-image{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  height:auto;
  overflow:hidden;
  border-radius:14px;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
  background:#050706;
}

.arroway-feature-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

@media (max-width:900px){

  .arroway-image-viewer{
    padding:2rem 8% 4rem;
  }

  .arroway-feature-image{
    width:100%;
    aspect-ratio:16 / 9;
    height:auto;
  }

  .arroway-feature-image img{
  height:100%;
}
}

/* =====================================================
   Homepage Story Image Frame
===================================================== */

#place-apart .story-image,
#estate .story-image{
  margin:3rem;
  border-radius:14px;
  border:1px solid rgba(184,154,91,.35);
  box-shadow:0 24px 60px rgba(0,0,0,.20);
  background:transparent;
}

#place-apart .story-image img{
  border-radius:14px;
}

#estate .story-image{
  align-self: center;
  height: auto;
}

#estate .story-image img{
  width: 100%;
  height: auto;
  border-radius:14px;
  object-fit: contain;
  object-position: center center;
  background: var(--cream);
}

  @media (max-width: 900px) {
  #place-apart .story-image,
  #estate .story-image {
    margin: 2rem 8%;
  }
}


/* =====================================================
   Experience Choice Chapters
===================================================== */

.experience-choice-chapters{
    background: transparent;
}

.experience-choice-chapter{
    min-height:auto;
    display:grid;
    grid-template-columns:0.82fr 1.18fr;
    align-items:start;
    border-top:none;
    background:transparent;
}

.experience-choice-chapter.reverse{
    grid-template-columns: 1.18fr 0.82fr;
}

.experience-choice-chapter.reverse .experience-choice-text{
    order: 2;
}

.experience-choice-text{
    padding: 2.5rem 5rem;
}

.experience-choice-text p{
    color: rgba(22,27,24,.78);
    font-size: 1.08rem;
}

.experience-choice-text .eyebrow{
    color: var(--gold);
}

.experience-choice-text .button{
    margin-top: 1.2rem;
}

.experience-choice-image{
    margin: .5rem 3rem 2.5rem;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.20);
    aspect-ratio: 16 / 9;
}

.experience-choice-image img,
.experience-choice-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 14px;
}

.experience-choice-image video{
    background: #050706;
}

@media (max-width:900px){
    .experience-choice-chapter,
    .experience-choice-chapter.reverse{
        grid-template-columns: 1fr;
    }

    .experience-choice-chapter.reverse .experience-choice-text{
        order: 0;
    }

    .experience-choice-text{
        padding: 4rem 8% 2rem;
    }

    .experience-choice-image{
        margin: 2rem 8% 4rem;
    }
}

/* =====================================================
   Manor Homepage Color Overrides
===================================================== */

.manor-image-chapters .living-time-chapter-heading h2{
    color: var(--charcoal);
}

.manor-image-chapters .living-time-chapter-heading p{
    color: rgba(22,27,24,.78);
}

.manor-image-chapters .living-time-chapter-heading .eyebrow{
    color: var(--gold);
}

.manor-image-chapters .living-time-feature-viewer h3{
    color: var(--charcoal);
}

.manor-image-chapters .living-time-feature-viewer p{
    color: rgba(22,27,24,.78);
}


.manor-image-chapters .living-time-chapter-heading{
  padding-top:2.5rem;
  padding-bottom:2.5rem;
}

/* Experience Introduction */

.experience-introduction {
    padding: 3.5rem 0 2.5rem;
    background: var(--cream);
}

/* The Estate */

#estate .story-text{
    order:1;
    padding:6rem;
}

#estate .story-image{
    order:2;
}

#estate .story-text h2{
    max-width:520px;
    margin-bottom:2rem;
}

.estate-heading-line {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .estate-heading-line {
        white-space: normal;
    }
    #estate .story-text {
        padding: 4rem 8%;
    }
}

/* =====================================================
   Estate Map Labels
===================================================== */

.estate-map{
  position: relative;
}

.estate-label{
  position: absolute;
  color: #f4efe4;
  font-family: Georgia, serif;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.9);
  z-index: 5;
  transform: translate(-50%, -50%);
  line-height: 1.05;
}

.manor{
  left: 36.5%;
  top: 39%;
}

.moon-meadow{
  left: 85%;
  top: 30%;
}

.sophias-spot{
  left: 67%;
  top: 18%;
}

.vegetable-garden{
  left: 59%;
  top: 29%;
}

.firefly-meadow{
  left: 70%;
  top: 33%;
}

.olivers-creek{
  left: 23%;
  top: 30%;
}

.quiet-valley{
  left: 71.5%;
  top: 64.5%;
}

.secret-meadow{
  left: 33.5%;
  top: 93%;
  transform: translate(-50%, -50%) rotate(65deg);
}

.raven-lane{
  left: 33%;
  top: 67%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

.rosebud-hill{
  left: 60%;
  top: 92%;
}

.cedar-grove{
  left: 50%;
  top: 15%;
}

.tractor-shed{
  left: 20%;
  top: 59%;
}

.willow-pond{
  left: 23%;
  top: 75%;
}

/* .black-walnut-trees{
  left: 40%;
  top: 25%;
} */

.bunny-crossing{
  left: 47%;
  top: 84%;
  transform: translate(-50%, -50%) rotate(-70deg);
}

.dogwood-meadow{
  left: 30%;
  top: 57%;
  transform: translate(-50%, -50%) rotate(20deg);
}

.ancient-oak{
  left: 95%;
  top: 22%;
}

.clover-field{
  left: 32%;
  top: 20%;
}

.scarlet-spot{
  left: 38%;
  top: 6%;
}

.arroway-lane{
  left: 43%;
  top: 66.5%;
  transform: translate(-50%, -50%) rotate(20deg);
}

.runway-woodland{
  left: 71.5%;
  top: 53%;
}

.estate-name{
  display:block;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:.78rem;
}

.estate-type{
  display:block;
  font-size:.86rem;
  font-style:italic;
  margin-top:2px;
}

.arrow-left{
    display:inline-block;
    width:24px;
    height:1px;
    background:#f4efe4;
    vertical-align:middle;
    margin-right:8px;
    position:relative;
}

.arrow-left::before{
    content:"";
    position:absolute;
    left:-6px;
    top:-3px;

    border-top:4px solid transparent;
    border-bottom:4px solid transparent;
    border-right:6px solid #f4efe4;
}

/* =====================================================
   Estate Label Styles
===================================================== */

/* Major label */

.major-label .estate-name{
    font-size:1.10rem;
    letter-spacing:.22em;
}

.major-label .estate-type{
    font-size:1rem;
}

/* Single-line estate label */

.estate-inline{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .30rem;
    white-space: nowrap;
}

.estate-inline .estate-name,
.estate-inline .estate-type{
    display: inline;
    margin-top: 0;
}

/* =====================================================
   Estate Explorer Information Card — v1.6
===================================================== */

.estate-label[data-story]{
  cursor: help;
  outline: none;
  transition:
    color .30s ease,
    text-shadow .30s ease,
    filter .30s ease;
}

.estate-label[data-story]:hover,
.estate-label[data-story]:focus-visible,
.estate-label[data-story].is-active{
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(184,154,91,1),
    0 0 21px rgba(184,154,91,.90),
    0 2px 8px rgba(0,0,0,.95);
  filter: brightness(1.18);
}

.estate-explorer-card{
  margin-top: 2rem;
  min-height: 190px;
  padding: 1.75rem 1.8rem;
  border: 1px solid rgba(184,154,91,.55);
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgba(255,250,242,.97),
      rgba(244,239,228,.94)
    );
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
}

.estate-explorer-content{
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .34s ease,
    transform .34s ease;
}

.estate-explorer-content.is-changing{
  opacity: 0;
  transform: translateY(7px);
}

.estate-explorer-card h3{
  margin: 0;
  color: var(--charcoal);
  font-size: 1.72rem;
  line-height: 1.2;
}

.estate-explorer-rule{
  display: block;
  width: 64px;
  height: 1px;
  margin: .8rem 0 .9rem;
  background: rgba(184,154,91,.75);
}

.estate-explorer-card p{
  margin: 0;
  color: rgba(22,27,24,.78);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px){
  .estate-explorer-card{
    margin-top: 1.6rem;
    min-height: 175px;
  }
}

/* =====================================================
   Arroway Image Viewer Current Title and Counter
===================================================== */

/* Keep the arrows close to the single large title below. */
.arroway-image-viewer .living-time-feature-controls {
  width: max-content;
  margin: 0.45rem auto 0;
  gap: 1rem;
}

.arroway-image-viewer .feature-current {
  flex: none;
  min-width: 3.2rem;
  text-align: center;
  line-height: 1;
}

.arroway-image-viewer .feature-counter {
  display: block;
  margin: 0;
  color: rgba(22, 27, 24, 0.55);
  font-size: 1.5rem;     /* same size as the arrows */
  line-height: 1;
  letter-spacing: 0;
}

.arroway-image-viewer h3 {
  margin-top: 0;
}

/* =====================================================

   Living Time Page Text Colour Override

===================================================== */

/* Keep every Living Time eyebrow label in Arroway gold. */
.living-time-page .eyebrow{
    color: var(--gold);
}


.living-time-page .living-time-feature-viewer h3{
    color: var(--warm-white);
}

.living-time-page .living-time-feature-viewer p{
    color: rgba(255,250,242,.82);
}


/* =====================================================
   Arroway Image/Video Viewer — soft blur crossfade
===================================================== */

.arroway-feature-image .arroway-media-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(0);
  transform: scale(1);
  z-index: 1;
  transition:
    opacity 1.15s ease-in-out,
    filter 1.15s ease-in-out,
    transform 1.15s ease-in-out;
  will-change: opacity, filter, transform;
}

.arroway-feature-image .arroway-media-layer.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
}

.arroway-feature-image .arroway-media-layer.is-entering {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.015);
  z-index: 3;
}

.arroway-feature-image .arroway-media-layer.is-entering.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.arroway-feature-image .arroway-media-layer.is-leaving {
  filter: blur(8px);
  transform: scale(1.01);
}

.arroway-feature-image .arroway-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.arroway-feature-image .arroway-media.show-full {
  object-fit: contain;
}

/* =====================================================
   Gallery Lightbox — soft blur crossfade
===================================================== */

.gallery-lightbox-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #050706;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox .gallery-lightbox-image-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0;
  filter: blur(0);
  transform: scale(1);
  z-index: 1;
  border-radius: 14px;
  box-shadow: none;
  transition:
    opacity 0.9s ease-in-out,
    filter 0.9s ease-in-out,
    transform 0.9s ease-in-out;
  will-change: opacity, filter, transform;
}

.gallery-lightbox .gallery-lightbox-image-layer.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
}

.gallery-lightbox .gallery-lightbox-image-layer.is-entering {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.015);
  z-index: 3;
}

.gallery-lightbox .gallery-lightbox-image-layer.is-entering.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.gallery-lightbox .gallery-lightbox-image-layer.is-leaving {
  filter: blur(8px);
  transform: scale(1.01);
}

.gallery-lightbox figcaption.is-changing {
  opacity: 0;
}



/* =====================================================
   Living Time Video Viewer Counter
   Matches the homepage slide navigation
===================================================== */

.living-time-page .living-time-feature-controls {
  width: max-content;
  margin: 0.45rem auto 0.8rem;
  gap: 1rem;
}

.living-time-page .feature-current {
  flex: none;
  min-width: 3.2rem;
  text-align: center;
  line-height: 1;
}

.living-time-page .feature-counter {
  display: block;
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
}

/* =====================================================
   Inquiry Path Selection
===================================================== */

.inquiry-path-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-path-choice legend {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  text-align: center;
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1.3;
}

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

.inquiry-path-card {
  position: relative;
  display: block;
  min-height: 155px;
  border: 1px solid var(--line);
  background: var(--warm-white);
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.inquiry-path-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.inquiry-path-card:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.inquiry-path-card.is-selected {
  border-color: var(--gold);
  background: rgba(184, 154, 91, .12);
}

.inquiry-path-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inquiry-path-content {
  display: flex;
  min-height: 155px;
  padding: 1.7rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inquiry-path-content strong {
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: .65rem;
}

.inquiry-path-content span {
  max-width: 260px;
  color: rgba(22, 27, 24, .74);
  font-size: .98rem;
  line-height: 1.55;
}

.inquiry-fields {
  display: grid;
  gap: 1rem;
  animation: inquiry-fields-reveal .45s ease both;
}

.inquiry-fields[hidden],
.inquiry-path-fields[hidden] {
  display: none;
}

.inquiry-path-fields {
  display: grid;
  gap: 1rem;
}

.inquiry-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: rgba(22, 27, 24, .72);
  font-family: inherit;
  font-size: 1rem;
}

@keyframes inquiry-fields-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .inquiry-path-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-path-card,
  .inquiry-path-content {
    min-height: 130px;
  }
}

/* =====================================================
   Estimated Guest Counter
===================================================== */

.guest-count-field {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  background: white;
}

.guest-count-field > label {
  margin: 0;
  color: rgba(22, 27, 24, .72);
  font-size: 1rem;
  white-space: nowrap;
}

.guest-count-control {
  display: grid;
  grid-template-columns: 48px 86px 48px;
  align-items: stretch;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--warm-white);
}

.guest-count-control .qty-btn {
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.guest-count-control .qty-btn:hover:not(:disabled),
.guest-count-control .qty-btn:focus-visible {
  background: rgba(184, 154, 91, .14);
}

.guest-count-control .qty-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.guest-count-control .qty-btn:disabled {
  cursor: default;
  opacity: .35;
}

.guest-count-field .qty-display {
  width: 86px;
  min-width: 0;
  height: 48px;
  padding: .55rem .4rem;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: white;
  color: var(--charcoal);
  text-align: center;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1;
  appearance: textfield;
  -moz-appearance: textfield;
}

.guest-count-field .qty-display::-webkit-outer-spin-button,
.guest-count-field .qty-display::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 560px) {
  .guest-count-field {
    gap: 1rem;
  }

  .guest-count-control {
    grid-template-columns: 42px 68px 42px;
  }

  .guest-count-field .qty-display {
    width: 68px;
  }
}


/* Keep the Estimated Guests row exactly the same height as the form fields. */
.inquiry-path-fields > input,
.guest-count-field {
  height: 54px;
  min-height: 54px;
}

/* =====================================================
   Gathering Date Range
===================================================== */

.gathering-date-range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gathering-date-range label {
  display: grid;
  gap: 0.45rem;
}

.gathering-date-range label > span {
  color: rgba(22, 27, 24, .72);
  font-size: 0.92rem;
}

.gathering-date-range input[type="date"] {
  height: 54px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: rgba(22, 27, 24, .82);
  font-family: inherit;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .gathering-date-range {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   Living Time — Universal Mixed Media Motion
   Optional per-image animation:
   "none", "zoom-in", "zoom-out", "pan-left", "pan-right"
===================================================== */

/* Still-image motion is intentionally subtle. */
.living-time-feature-video .living-time-layer img[class*="media-motion-"] {
  --media-motion-duration: 6s;
  will-change: transform;
  animation-duration: var(--media-motion-duration);
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

.living-time-feature-video .media-motion-zoom-in {
  animation-name: arroway-media-zoom-in;
}

.living-time-feature-video .media-motion-zoom-out {
  animation-name: arroway-media-zoom-out;
}

.living-time-feature-video .media-motion-pan-left {
  animation-name: arroway-media-pan-left;
}

.living-time-feature-video .media-motion-pan-right {
  animation-name: arroway-media-pan-right;
}

@keyframes arroway-media-zoom-in {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

@keyframes arroway-media-zoom-out {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

@keyframes arroway-media-pan-left {
  from { transform: scale(1.05) translateX(1.5%); }
  to   { transform: scale(1.05) translateX(-1.5%); }
}

@keyframes arroway-media-pan-right {
  from { transform: scale(1.05) translateX(-1.5%); }
  to   { transform: scale(1.05) translateX(1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .living-time-feature-video .living-time-layer img[class*="media-motion-"] {
    animation: none;
    transform: none;
  }
}

/* Living Time - Hide navigation */
.living-time-page .living-time-feature-controls {
    display: none;
}

.living-time-page .living-time-feature-viewer h3 {
    margin-top: 1.25rem;
}


/* =====================================================
   Estate Aerial Compass
   Orientation is intentionally controlled in one place.
   Set --estate-compass-rotation only after north is confirmed.
===================================================== */

#estate .estate-map {
  --estate-compass-rotation: 180deg;
}

.estate-compass {
  position: absolute;
  left: clamp(14px, 2.2vw, 28px);
  bottom: clamp(14px, 2.2vw, 28px);
  width: clamp(86px, 9vw, 118px);
  aspect-ratio: 1;
  z-index: 12;
  pointer-events: none;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.55));
}

.estate-compass-face {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,250,242,.82);
  border-radius: 50%;
  background: rgba(13,17,15,.38);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transform: rotate(var(--estate-compass-rotation));
  transform-origin: 50% 50%;
}

.estate-compass-n,
.estate-compass-e,
.estate-compass-s,
.estate-compass-w {
  position: absolute;
  color: rgba(255,250,242,.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.64rem, .9vw, .78rem);
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,.85);
}

.estate-compass-n {
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-weight: bold;
}

.estate-compass-e {
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(calc(-1 * var(--estate-compass-rotation)));
}

.estate-compass-s {
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
}

.estate-compass-w {
  left: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(calc(-1 * var(--estate-compass-rotation)));
}

.estate-compass-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255,250,242,.5);
  transform-origin: 50% 50%;
}

.estate-compass-axis-ns {
  width: 1px;
  height: 58%;
  transform: translate(-50%, -50%);
}

.estate-compass-axis-ew {
  width: 58%;
  height: 1px;
  transform: translate(-50%, -50%);
}


.estate-compass-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255,250,242,.82);
  background: rgba(13,17,15,.62);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 1px 4px rgba(0,0,0,.45);
}

@media (max-width: 900px) {
  .estate-compass {
    width: clamp(72px, 13vw, 94px);
    left: 12px;
    bottom: 12px;
  }
}

/* =====================================================
   Public Launch — Reservations Not Yet Open
===================================================== */

.button-disabled {
  cursor: default;
  pointer-events: none;
  opacity: .82;
}

.reservations-notice {
  margin-top: 2.25rem;
  padding: 2.2rem 2rem;
  border: 1px solid var(--gold);
  background: var(--warm-white);
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.reservations-notice-kicker {
  margin: 0 0 .65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .88rem;
}

.reservations-notice p:last-child {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(22, 27, 24, .78);
}

/* Center only the inquiry introduction */
#inquiry > .container > .eyebrow,
#inquiry > .container > h2,
#inquiry > .container > h2 + p {
  text-align: center;
}

/* =====================================================

   Estate Map — Mobile Label Scaling

===================================================== */

@media (max-width: 900px) {
  .estate-name {
    font-size: clamp(.48rem, 1.8vw, .68rem);
    letter-spacing: .10em;
  }
  .estate-type {
    font-size: clamp(.50rem, 1.9vw, .72rem);
  }
  .major-label .estate-name {
    font-size: clamp(.62rem, 2.2vw, .90rem);
  }
  .major-label .estate-type {
    font-size: clamp(.56rem, 2vw, .78rem);
  }
  .arrow-left {
    width: 16px;
    margin-right: 5px;
  }

/* =====================================================

   Living Time — 16:9 Media on Smaller Screens

===================================================== */

@media (max-width: 900px) {
  .living-time-page .living-time-feature-video {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }
}}

/* =====================================================
   Living Time — Restart Button
===================================================== */

.living-time-restart {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 10;

  padding: 0.8rem 1.4rem;
  border: 1px solid var(--gold);
  background: rgba(13, 17, 15, 0.78);
  color: var(--warm-white);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  cursor: pointer;
}

.living-time-restart[hidden] {
  display: none;
}

