/* YathraNest — Components */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition),
    box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn--dark {
  background: var(--text);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  color: #fff;
}

.btn--teal {
  background: var(--primary);
  color: #fff;
  padding-right: 0.5rem;
}

.btn--teal:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn--outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.875rem;
  line-height: 1;
  flex-shrink: 0;
}

.btn--accent {
  background: var(--accent);
  color: var(--text);
}

.btn--accent:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn--secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding-inline: 0.5rem;
  min-height: auto;
}

.btn--ghost:hover {
  color: var(--primary-dark);
}

.btn--light {
  background: #fff;
  color: var(--primary-dark);
}

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

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 36px;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.link-arrow::after {
  content: "→";
  transition: transform var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

/* Cards — soft surfaces */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.card__media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(52, 99, 86, 0.12), rgba(233, 162, 59, 0.12)),
    #d9e0db;
  overflow: hidden;
}

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

.card__media img[data-broken="true"],
.destination-card img[data-broken="true"],
.promo-split__media img[data-broken="true"],
.detail-hero__media img[data-broken="true"],
.room-card__media img[data-broken="true"],
.gallery-grid img[data-broken="true"],
.hero-card img[data-broken="true"] {
  opacity: 0;
}

.card:hover .card__media img {
  transform: scale(1.03);
}

.card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.card__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.card__title {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.card__title a {
  color: inherit;
}

.card__title a:hover {
  color: var(--primary);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Homepage hero */
.hero-v2 {
  --hero-ink: #1d3f36;
  --hero-teal: #346356;
  --hero-wash: #f4f2ee;
  position: relative;
  background: var(--hero-wash);
  padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  overflow: hidden;
}

.hero-v2__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: min(62%, 820px);
  height: clamp(280px, 48vw, 460px);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-v2__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
}

.hero-v2__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background: linear-gradient(90deg, var(--hero-wash) 0%, rgba(244, 242, 238, 0.7) 42%, transparent 100%);
  z-index: 1;
}

.hero-v2__edge {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  height: 100%;
  z-index: 2;
}

.hero-v2__topo {
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  height: 100%;
  opacity: 0.28;
  z-index: 3;
}

.hero-v2__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--hero-wash));
  z-index: 4;
}

.hero-v2__inner {
  position: relative;
  z-index: 1;
}

.hero-v2__copy {
  max-width: 34rem;
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.hero-v2__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero-teal);
  margin-bottom: 1rem;
}

.hero-v2__eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--hero-teal);
  margin-bottom: 0.7rem;
}

.hero-v2__copy h1 {
  font-family: var(--font);
  font-size: clamp(2.35rem, 6vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--hero-ink);
  margin-bottom: 1rem;
}

.hero-v2__lead {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  max-width: 28rem;
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 168px;
  padding: 1.05rem 1.1rem 1rem;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background: #1d3f36;
  isolation: isolate;
}

.hero-card:hover,
.hero-card:focus-visible {
  color: #fff;
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(165deg, rgba(14, 32, 26, 0.42) 0%, rgba(10, 20, 16, 0.62) 100%);
}

.hero-card:hover img {
  transform: scale(1.05);
}

.hero-card__icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.hero-card__icon svg,
.hero-card__icon iconify-icon {
  width: 18px;
  height: 18px;
  color: inherit;
}

.hero-card__icon svg[fill="none"] {
  fill: none;
}

.hero-card__text {
  margin-top: 1.35rem;
  padding-right: 2.4rem;
}

.hero-card__title {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-card__desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.hero-card__arrow {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--hero-ink);
  display: grid;
  place-items: center;
  transition: transform var(--transition);
}

.hero-card__arrow svg,
.hero-card__arrow iconify-icon {
  width: 14px;
  height: 14px;
}

.hero-card:hover .hero-card__arrow {
  transform: translateX(3px);
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(21, 45, 39, 0.08);
}

.hero-trust__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-trust__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(52, 99, 86, 0.1);
  color: var(--hero-teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-trust__icon svg,
.hero-trust__icon iconify-icon {
  width: 20px;
  height: 20px;
}

.hero-trust__item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hero-ink);
  line-height: 1.25;
}

.hero-trust__item span span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 0.1rem;
}

/* Hero image tiles (legacy / inner use) */
.hero-tiles {
  padding-block: 0.65rem 1rem;
}

.hero-tiles__grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.hero-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  color: #fff;
  background: #16302a;
  isolation: isolate;
}

.hero-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 14, 0.08) 15%,
    rgba(10, 18, 14, 0.45) 55%,
    rgba(10, 18, 14, 0.88) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;
}

.hero-tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.65rem 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-tile__title {
  font-size: clamp(0.875rem, 1.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-tile__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.25;
}

.hero-tile__cta {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f0d29a;
  opacity: 0.95;
  transition: transform var(--transition), opacity var(--transition);
}

.hero-tile:hover img,
.hero-tile:focus-visible img {
  transform: scale(1.06);
}

.hero-tile:hover .hero-tile__shade,
.hero-tile:focus-visible .hero-tile__shade {
  background: linear-gradient(
    180deg,
    rgba(10, 18, 14, 0.12) 10%,
    rgba(36, 72, 62, 0.5) 55%,
    rgba(20, 44, 37, 0.92) 100%
  );
}

.hero-tile:hover .hero-tile__cta,
.hero-tile:focus-visible .hero-tile__cta {
  transform: translateX(3px);
  opacity: 1;
}

.hero-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Destination cards */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 220px;
  display: block;
  color: #fff;
  background:
    linear-gradient(135deg, #346356, #24483e);
}

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

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23, 32, 28, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
}

.destination-card h3 {
  color: #fff;
  font-size: 1.125rem;
}

.destination-card span {
  font-size: 0.8125rem;
  opacity: 0.85;
}

/* Benefit cards */
.benefit-grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-item {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.benefit-item__num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.benefit-item h3 {
  margin-bottom: 0.4rem;
}

.benefit-item p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Forms */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
}

.form-group .hint {
  font-size: 0.8125rem;
  color: var(--muted);
}

.form-control {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 99, 86, 0.15);
}

.form-control.is-invalid {
  border-color: var(--error);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.field-error {
  font-size: 0.8125rem;
  color: var(--error);
  display: none;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error .form-control {
  border-color: var(--error);
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.choice-card {
  flex: 1 1 140px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--surface);
}

.choice-card:has(input:checked),
.choice-card.is-selected {
  border-color: var(--primary);
  background: rgba(52, 99, 86, 0.06);
}

.choice-card input {
  margin-right: 0.4rem;
}

.choice-card strong {
  display: block;
  font-size: 0.9375rem;
}

.choice-card span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Filters */
.filter-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.filter-bar__row {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.filter-bar__row > * {
  min-width: 0;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
}

.results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2rem;
}

.pagination button,
.pagination a {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  padding-inline: 0.65rem;
}

.pagination button:hover,
.pagination a:hover,
.pagination button[aria-current="page"],
.pagination a[aria-current="page"] {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(52, 99, 86, 0.08);
}

.pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* Label only — the icon is a span too, and flex: 1 would stretch it into an oval. */
.accordion__trigger span:not(.accordion__icon) {
  flex: 1;
}

.accordion__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(52, 99, 86, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform var(--transition);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__panel {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  max-height: 90vh;
  overflow-y: auto;
}

.modal__dialog--lg {
  width: min(720px, 100%);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(52, 99, 86, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.modal p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

body.modal-open {
  overflow: hidden;
}

/* Lightbox gallery */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 12, 0.9);
  padding: 1rem;
}

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

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

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

.gallery-grid button {
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d9e0db;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA band */
.cta-band {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.65rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin-inline: auto;
}

.cta-band .btn-group {
  justify-content: center;
}

/* Homepage hero tiles live in .hero-tiles — see responsive.css */

/* Featured / listing grids */
.package-grid,
.resort-grid,
.trip-grid {
  display: grid;
  gap: 1.25rem;
}

/* Detail layout */
.detail-hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detail-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(52, 99, 86, 0.15), rgba(233, 162, 59, 0.15)),
    #d9e0db;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__content .btn-group {
  margin-top: 1rem;
}

.detail-layout {
  display: grid;
  gap: 2rem;
}

.detail-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.aside-card h3 {
  margin-bottom: 0.5rem;
}

.aside-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.content-block {
  margin-bottom: 2.25rem;
}

.content-block h2 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.check-list--exclude li::before {
  content: "–";
}

/* Gift / investment option cards */
.option-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.option-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.option-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1rem;
}

.option-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Promo sections */
.promo-split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.promo-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(135deg, rgba(52, 99, 86, 0.15), rgba(233, 162, 59, 0.15)),
    #d9e0db;
}

.promo-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-banner {
  background: #16302a;
  color: #e9efec;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}

.investment-banner h2 {
  color: #fff;
  margin-bottom: 0.65rem;
}

.investment-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

/* Room cards */
.room-card {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.room-card__media {
  aspect-ratio: 16 / 10;
  background: #d9e0db;
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__body {
  padding: 0 1.2rem 1.25rem;
}

@media (min-width: 640px) {
  .room-card {
    grid-template-columns: 220px 1fr;
  }

  .room-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .room-card__body {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}

/* Search strip for resorts */
.search-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.search-strip__grid {
  display: grid;
  gap: 0.85rem;
}
