/* Book North Austin — guest marketing site */
:root {
  --ink: #14241f;
  --ink-soft: #3a5248;
  --mist: #e8f0ec;
  --sage: #9bb5a6;
  --cedar: #2a5a45;
  --cedar-deep: #17352a;
  --sky: #7a9eb0;
  --copper: #b86b35;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: rgba(20, 36, 31, 0.12);
  --shadow: 0 18px 50px rgba(20, 36, 31, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(122, 158, 176, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(155, 181, 166, 0.35), transparent 50%),
    linear-gradient(180deg, #eef4f1 0%, var(--paper) 40%, #e7efe9 100%);
  min-height: 100vh;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 80;
  padding: 0.55rem 0.95rem;
  background: var(--cedar);
  color: var(--white);
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

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

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.nav-cta:focus-visible,
.btn-primary:focus-visible {
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2.5rem));
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--cedar-deep);
  white-space: nowrap;
}

.brand span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cedar);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--cedar);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--cedar-deep);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font: inherit;
  cursor: pointer;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

/* HTML hidden loses to .btn { display: inline-flex } without this. */
.btn[hidden] {
  display: none !important;
}

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

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

.btn-primary:hover {
  background: var(--cedar-deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--cedar);
  color: var(--cedar);
}

.btn-on-cedar {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-on-cedar:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 36, 31, 0.25) 0%, rgba(20, 36, 31, 0.55) 45%, rgba(20, 36, 31, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
  animation: rise 0.9s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero-brand em {
  font-style: italic;
  color: #f0d2b4;
}

.hero-line {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 28rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero-area {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section-flush {
  padding-top: 0;
}

.section-compact {
  padding-top: 1rem;
}

.lede {
  max-width: 34rem;
}

.stack-gap {
  margin-top: 1.5rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.muted {
  color: var(--ink-soft);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* —— Home cards (interactive) —— */
.homes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.home-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(20, 36, 31, 0.18);
}

.home-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-card:hover .home-card-media img {
  transform: scale(1.04);
}

.home-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.home-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.home-card-link .home-card-body {
  padding-bottom: 0.55rem;
}

.home-card-otas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.95rem;
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.home-card-otas a {
  color: var(--cedar);
}

.home-card-otas a:hover {
  color: var(--cedar-deep);
  text-decoration: underline;
}

.home-card h3 {
  font-size: 1.25rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.property-hero .meta-row {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cedar);
  background: rgba(42, 90, 69, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
}

.stars {
  font-variant-numeric: tabular-nums;
}

/* —— Trust strip —— */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.trust-item {
  padding: 1.25rem 1.1rem;
  border-top: 2px solid var(--cedar);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.2rem;
}

/* —— Quotes —— */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  padding: 0;
  border: none;
  background: transparent;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.quote footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* —— Property page —— */
.property-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.property-hero .hero-media,
.property-hero .hero-scrim {
  position: absolute;
  inset: 0;
}

.property-hero .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  animation: rise 0.7s ease both;
}

.property-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.property-hero-copy .badge + h1 {
  margin-top: 0.6rem;
}

.badge-on-photo {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.property-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 1.5rem;
  font-weight: 500;
}

.amenity-list,
.bed-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

.amenity-list li,
.bed-list li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
}

.amenity-list li::before,
.bed-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cedar);
}

.book-panel {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.book-panel h2 {
  font-size: 1.35rem;
}

.book-panel .btn {
  width: 100%;
  margin-top: 0.65rem;
}

.book-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.mobile-book-bar {
  display: none;
}

/* —— Photo gallery —— */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sage);
  cursor: zoom-in;
}

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

.gallery a:hover img {
  transform: scale(1.04);
}

.gallery a:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

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

  .gallery a:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  background: rgba(10, 16, 14, 0.94);
  color: #fff;
}

.lightbox.is-open {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-top {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.lightbox-counter {
  margin-right: auto;
  font-size: 0.95rem;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}

.lightbox-close {
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0.5rem 3.5rem 0.75rem;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  pointer-events: none;
}

.lightbox-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.lightbox-hit-prev {
  left: 0;
  cursor: w-resize;
}

.lightbox-hit-next {
  right: 0;
  cursor: e-resize;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-nav-prev {
  left: 0.75rem;
}

.lightbox-nav-next {
  right: 0.75rem;
}

.lightbox-strip {
  flex: 0 0 auto;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.75rem 1rem 1.1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.lightbox-strip button {
  flex: 0 0 auto;
  width: 4.5rem;
  height: 3.25rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2a24;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.lightbox-strip button.is-active {
  opacity: 1;
  border-color: #fff;
}

.lightbox-strip button:hover {
  opacity: 0.9;
}

.lightbox-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .lightbox-stage {
    padding: 0.25rem 0.5rem 0.5rem;
  }

  .lightbox-nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }

  .lightbox-nav-prev {
    left: 0.35rem;
  }

  .lightbox-nav-next {
    right: 0.35rem;
  }

  .lightbox-strip button {
    width: 3.75rem;
    height: 2.75rem;
  }
}

/* —— About —— */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-panel {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-panel h2 {
  font-size: 1.6rem;
}

.about-panel .trust {
  margin-top: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.about-panel .trust-item {
  padding: 0.75rem 0;
}

.contact-intro h2 {
  font-size: 1.5rem;
}

.prose-narrow {
  max-width: 42rem;
}

.fact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.fact-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea,
select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(42, 90, 69, 0.35);
  border-color: var(--cedar);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(42, 90, 69, 0.1);
  border-radius: 12px;
  color: var(--cedar-deep);
}

.form-success.is-visible {
  display: block;
}

/* —— Page header (inner) —— */
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

/* —— Homepage conversion band —— */
.cta-band {
  background:
    linear-gradient(180deg, rgba(23, 53, 42, 0.08), transparent 40%),
    linear-gradient(135deg, var(--cedar) 0%, var(--cedar-deep) 100%);
  color: var(--white);
  padding: 3.25rem 0;
}

.cta-band .eyebrow {
  color: #f0d2b4;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  margin-bottom: 0.7rem;
}

.cta-band p:not(.eyebrow) {
  max-width: 32rem;
  opacity: 0.92;
  margin-bottom: 1.4rem;
}

/* —— Footer —— */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.1rem 2rem;
  align-items: start;
}

.footer-brand p {
  margin: 0.35rem 0 0.45rem;
}

.footer-contact {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-mail {
  color: var(--cedar);
  font-weight: 500;
}

.footer-mail:hover {
  color: var(--cedar-deep);
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--cedar);
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
}

.disclaimer {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  max-width: 40rem;
  margin: 0;
  opacity: 0.85;
}

/* —— Motion —— */
@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

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

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .homes-grid,
  .quotes,
  .trust,
  .property-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .amenity-list,
  .bed-list {
    grid-template-columns: 1fr;
  }

  .book-panel {
    position: static;
  }

  .mobile-book-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    gap: 0.65rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(247, 250, 248, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(20, 36, 31, 0.1);
  }

  .mobile-book-bar .btn {
    flex: 1;
    padding: 0.72rem 0.55rem;
    font-size: 0.8rem;
    text-align: center;
  }

  .page-property {
    padding-bottom: 4.85rem;
  }

  body.lightbox-open .mobile-book-bar {
    visibility: hidden;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(247, 250, 248, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

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

  .hero {
    min-height: 78vh;
  }
}

/* —— Optional stay dates / availability —— */
.stay-search {
  position: relative;
  display: grid;
  gap: 0.35rem;
}

.stay-search-bar {
  margin-top: 1.25rem;
  max-width: 28rem;
}

.date-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.optional {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.date-trigger {
  font: inherit;
  text-align: left;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  width: 100%;
}

.date-trigger.has-dates {
  color: var(--ink);
}

.date-trigger:focus {
  outline: 2px solid rgba(42, 90, 69, 0.35);
  border-color: var(--cedar);
}

.date-pop {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.4rem);
  left: 0;
  width: min(20.5rem, 100%);
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.date-pop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.date-month {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
}

.date-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  text-align: center;
}

.date-weekdays {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.date-cell {
  font: inherit;
  border: none;
  background: transparent;
  border-radius: 10px;
  min-height: 2.15rem;
  cursor: pointer;
}

.date-cell.is-pad {
  cursor: default;
}

.date-cell:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.date-cell.is-range {
  background: rgba(42, 90, 69, 0.1);
}

.date-cell.is-start,
.date-cell.is-end {
  background: var(--cedar);
  color: var(--white);
}

.date-pop-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.date-clear {
  font: inherit;
  border: none;
  background: none;
  color: var(--cedar);
  cursor: pointer;
  padding: 0;
}

.date-hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.avail-msg {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
}

.avail-msg.is-open {
  color: var(--cedar-deep, #17352a);
}

.avail-msg.is-closed {
  color: #8a3b1f;
}

.avail-msg.is-wait {
  color: var(--ink-soft);
}

.home-card.is-closed {
  opacity: 0.58;
}

.avail-tag {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #8a3b1f;
}

.book-panel .stay-search {
  margin: 0.35rem 0 0.85rem;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.quote-lines {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.quote-lines div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.quote-lines dt {
  margin: 0;
  color: var(--ink-soft);
}

.quote-lines dd {
  margin: 0;
  font-weight: 600;
}

.agree-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  font-weight: 400;
}

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

  .site-footer .wrap {
    grid-template-columns: 1fr;
  }
}

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

  .hero-media img,
  .reveal,
  .hero-content,
  .property-hero .wrap {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
