/* Inner page content — about, rooms, dining, contact */

.inner-section {
  padding: 5rem 5vw;
}
.inner-section--alt {
  background: var(--parchment);
}
.inner-section--white {
  background: var(--white);
}
.inner-section--cream {
  background: var(--cream);
}
.inner-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
.inner-wrap--narrow {
  max-width: 42rem;
}
.inner-wrap--mid {
  max-width: 56rem;
}

.page-hero__note {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin: 0.75rem 0 0;
  max-width: 32rem;
}
.page-hero--center .page-hero__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.page-hero--center .page-hero__eyebrow {
  justify-content: center;
}
.page-hero--center .page-hero__eyebrow::before {
  display: none;
}
.page-hero__rule {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  opacity: 0.85;
}

.inner-heading {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.inner-heading em {
  color: var(--gold-d);
  font-style: italic;
}
.inner-heading--center {
  text-align: center;
}
.inner-lead {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
}
.inner-lead + .inner-lead {
  margin-top: 1.25rem;
}
.inner-eyebrow-center {
  text-align: center;
  margin-bottom: 2.5rem;
}
.inner-eyebrow-center .eyebrow {
  justify-content: center;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(14, 26, 22, 0.06);
  text-align: center;
}
.pillar-card h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.85rem;
}
.pillar-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--stone);
  font-weight: 300;
  margin: 0;
}

/* Policies */
.policy-panel {
  background: var(--white);
  border: 1px solid rgba(14, 26, 22, 0.08);
  padding: 2rem 2.25rem;
}
.policy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.policy-col h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.policy-col__title--accent {
  color: var(--gold-d);
}
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.policy-list li {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.policy-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.policy-list--no li::before {
  content: '×';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #c45c5c;
  font-size: 0.9rem;
  margin-top: 0;
}

/* Rooms — unified card (image + copy + price/CTA) */
.rooms-stack {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.room-block {
  scroll-margin-top: calc(var(--nav-offset, 4.5rem) + 1rem);
}
.room-block__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--white);
  border: 1px solid rgba(14, 26, 22, 0.09);
  box-shadow: 0 18px 48px rgba(14, 26, 22, 0.07);
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.room-block:hover .room-block__card {
  border-color: rgba(200, 169, 110, 0.35);
  box-shadow: 0 24px 56px rgba(14, 26, 22, 0.11);
}
.room-block--flip .room-block__card {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.room-block--flip .room-block__media {
  order: 2;
}
.room-block--flip .room-block__body {
  order: 1;
}
.room-block__media {
  position: relative;
  min-height: 100%;
  background: var(--parchment);
  overflow: hidden;
}
.room-block__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(14, 26, 22, 0.12) 100%
  );
}
.room-block--flip .room-block__media::after {
  background: linear-gradient(
    90deg,
    rgba(14, 26, 22, 0.08) 0%,
    transparent 18%
  );
}
.room-block:not(.room-block--flip) .room-block__media::after {
  background: linear-gradient(
    90deg,
    transparent 82%,
    rgba(14, 26, 22, 0.08) 100%
  );
}
.room-block__media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-block:hover .room-block__media img {
  transform: scale(1.03);
}
.room-block__body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.room-block__content {
  flex: 1 1 auto;
  padding: 2rem 2.25rem 1.75rem;
}
.room-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 0.65rem;
  display: block;
}
.room-block__content h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.12;
}
.room-block__content > p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  margin: 0 0 1.35rem;
}
.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 300;
}
.room-amenities li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}
.room-amenities li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.room-block__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.25rem 2.25rem;
  background: linear-gradient(180deg, var(--parchment) 0%, #f3efe6 100%);
  border-top: 1px solid rgba(200, 169, 110, 0.28);
}
.room-block__price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.room-block__price-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.room-block__price-value {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: var(--ink);
  line-height: 1.05;
}
.room-block__price-value small {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--stone);
}
.room-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
}
.room-block__actions .btn-primary,
.room-block__actions .btn-outline {
  padding: 0.78rem 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.honeymoon-box {
  margin-top: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(200, 169, 110, 0.35);
  background: var(--white);
}
.honeymoon-box h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.honeymoon-box p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.honeymoon-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.honeymoon-box .honeymoon-price {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}

/* Dining */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.dining-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
}
.dining-card__img-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}
.dining-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
}
.dining-card h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1rem;
}
.dining-card > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  margin: 0 0 1.5rem;
}
.menu-block h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--parchment);
}
.menu-list {
  list-style: none;
  margin-bottom: 1.25rem;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 300;
  padding: 0.35rem 0;
}
.menu-list li span:last-child {
  color: var(--ink);
  font-weight: 400;
  white-space: nowrap;
}
.dining-note {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--stone);
  margin-top: 1rem;
}
.lounge-panel {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem;
  margin-top: 0.5rem;
}
.lounge-panel h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold-l);
  margin: 0 0 0.85rem;
}
.lounge-panel p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.lounge-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}
.lounge-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lounge-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Contact */
.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 5vw 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(14, 26, 22, 0.08);
  padding: 1.75rem;
}
.contact-card--wide {
  grid-column: 1 / -1;
  background: var(--parchment);
}
.contact-card h2 {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem;
}
.contact-card p,
.contact-card address {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--stone);
  font-weight: 300;
  font-style: normal;
}
.contact-card a:not(.btn-primary):not(.btn-wa):not(.btn-advance):not(.contact-cta) {
  color: var(--forest);
  transition: color 0.2s;
}
.contact-card a:not(.btn-primary):not(.btn-wa):not(.btn-advance):not(.contact-cta):hover {
  color: var(--gold-d);
}
.contact-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0;
}
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding: 0.85rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-cta span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  opacity: 0.85;
}
.contact-cta--call {
  background: var(--gold-l);
  color: var(--forest);
  border: 1px solid var(--gold);
}
.contact-cta--wa {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
}
.contact-cta--wa span {
  color: rgba(255, 255, 255, 0.92);
}
.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.contact-links a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(14, 26, 22, 0.1);
  color: var(--forest);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.contact-links a:hover {
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.35);
}
.contact-map {
  height: 14rem;
  margin-top: 0.85rem;
  border: 1px solid rgba(14, 26, 22, 0.08);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-card .btn-primary,
.contact-card .btn-advance,
.contact-card .btn-outline {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  box-sizing: border-box;
}
.contact-card .btn-outline {
  border-color: rgba(14, 26, 22, 0.32);
  color: var(--forest);
  background: var(--white);
  font-weight: 600;
}
.contact-card .btn-outline:hover {
  border-color: var(--gold-d);
  background: rgba(200, 169, 110, 0.18);
  color: var(--ink);
}
.contact-card--wide .btn-primary {
  display: inline-flex;
  width: auto;
}

.inner-cta-bar {
  text-align: center;
  padding: 3rem 5vw;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.55);
}
.inner-cta-bar h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 400;
  margin: 0 0 0.75rem;
}
.inner-cta-bar p {
  font-size: 0.88rem;
  margin: 0 0 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.inner-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.inner-cta-btns .btn-ghost {
  border-color: rgba(200, 169, 110, 0.4);
  color: var(--gold-l);
}

.legal-prose h2 {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.legal-prose h2:first-child {
  margin-top: 0;
}
.legal-prose p,
.legal-prose li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
}
.legal-prose ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}
.legal-prose li {
  margin-bottom: 0.35rem;
}
.legal-prose a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-prose a:hover {
  color: var(--gold-d);
}

@media (max-width: 900px) {
  .inner-section {
    padding: 3.5rem 1.25rem;
  }
  .contact-grid {
    padding: 2rem 1.25rem 4rem;
    grid-template-columns: 1fr;
  }
  .pillars-grid,
  .policy-cols,
  .dining-grid,
  .room-block__card,
  .room-block--flip .room-block__card {
    grid-template-columns: 1fr;
  }
  .room-block--flip .room-block__media,
  .room-block--flip .room-block__body {
    order: unset;
  }
  .room-block__media::after {
    background: linear-gradient(
      180deg,
      transparent 50%,
      rgba(14, 26, 22, 0.14) 100%
    ) !important;
  }
  .room-block__media img {
    min-height: 16rem;
    max-height: 20rem;
  }
  .room-block__content {
    padding: 1.5rem 1.35rem 1.25rem;
  }
  .room-block__foot {
    padding: 1.15rem 1.35rem;
    flex-direction: column;
    align-items: stretch;
  }
  .room-block__actions {
    justify-content: stretch;
  }
  .room-block__actions .btn-primary,
  .room-block__actions .btn-outline {
    flex: 1 1 calc(50% - 0.3rem);
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .room-block__actions {
    flex-direction: column;
  }
  .room-block__actions .btn-primary,
  .room-block__actions .btn-outline {
    flex: 1 1 auto;
    width: 100%;
  }
  .room-amenities {
    grid-template-columns: 1fr;
  }
}
