:root {
  --ink: #17130f;
  --ink-soft: #50483f;
  --paper: #f7f3eb;
  --paper-deep: #ece4d5;
  --cream: #fffaf1;
  --gold: #c99a3b;
  --gold-light: #efcb7a;
  --moss: #465647;
  --rust: #82513f;
  --plum: #5c4b55;
  --line: rgba(23, 19, 15, 0.14);
  --shadow: 0 24px 70px rgba(34, 27, 20, 0.12);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.info-page {
  background: #f4f1eb;
}

a {
  color: inherit;
}

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

button,
select {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  min-height: 92px;
  margin: 0 auto;
}

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

.site-header nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  border-radius: 50%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  width: min(1380px, calc(100% - 32px));
  min-height: min(760px, calc(100vh - 120px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 112px);
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 76% 32%, rgba(218, 168, 68, 0.15), transparent 28%),
    linear-gradient(135deg, #17130f, #2a2119 58%, #17130f);
  border-radius: 0 0 46px 46px;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: 14%;
  width: 420px;
  height: 420px;
  background: rgba(201, 154, 59, 0.08);
  border: 1px solid rgba(239, 203, 122, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(201, 154, 59, 0.025), 0 0 0 144px rgba(201, 154, 59, 0.02);
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7.3vw, 7.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.3vw, 4.5rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 36px;
  color: rgba(255, 250, 241, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--gold {
  color: var(--ink);
  background: var(--gold-light);
}

.button--ghost {
  color: var(--cream);
  border-color: rgba(255, 250, 241, 0.32);
}

.button--light {
  color: var(--ink);
  background: var(--cream);
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
}

.hero__mark {
  display: grid;
  place-items: center;
}

.hero__mark img {
  width: min(390px, 34vw);
  border: 1px solid rgba(239, 203, 122, 0.2);
  border-radius: 50%;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(84px, 11vw, 150px) 0;
}

.intro {
  max-width: 900px;
  text-align: center;
}

.intro p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 52px;
  margin-bottom: 50px;
}

.section-heading p:last-child {
  max-width: 440px;
  color: var(--ink-soft);
}

.location-proof {
  padding-top: 36px;
}

.location-proof__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 18px;
}

.location-proof__card {
  min-height: 330px;
  padding: 34px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(34, 27, 20, 0.08);
}

.location-proof__card--number {
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 203, 122, 0.16), transparent 30%),
    linear-gradient(145deg, #263128, #171d19);
  border-color: transparent;
}

.location-proof__card strong {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.location-proof__card h3 {
  max-width: 360px;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

.location-proof__card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.location-proof__card--number p {
  color: rgba(255, 250, 241, 0.66);
}

.location-proof__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  color: var(--rust);
  border: 1px solid rgba(130, 81, 63, 0.28);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.location-proof__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.location-proof__apple-link {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.location-proof__note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.property-card {
  --card-logo: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: 32px;
  overflow: hidden;
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease;
}

.property-card::before {
  position: absolute;
  top: 58px;
  right: -34px;
  width: 245px;
  aspect-ratio: 1;
  background: var(--card-logo) center / contain no-repeat;
  opacity: 0.22;
  content: "";
}

.property-card > * {
  position: relative;
  z-index: 1;
}

.property-card::after {
  position: absolute;
  right: -25%;
  bottom: -30%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.03);
  content: "";
}

.property-card:hover {
  transform: translateY(-7px);
}

.property-card--clara {
  --card-logo: url("logos/santa-clara.webp");
  background: linear-gradient(145deg, #4d5d4d, #27332b);
}

.property-card--cecilia {
  --card-logo: url("logos/santa-cecilia.webp");
  background: linear-gradient(145deg, #8a5a47, #4d2c25);
}

.property-card--rita {
  --card-logo: url("logos/santa-rita.webp");
  background: linear-gradient(145deg, #66545f, #382e35);
}

.property-card__number {
  color: rgba(255, 250, 241, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.property-card p {
  margin-bottom: 9px;
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.guest-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
  padding: clamp(42px, 6vw, 72px);
  color: var(--cream);
  background: var(--rust);
  border-radius: var(--radius);
}

.guest-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.74);
}

.guest-cta .eyebrow {
  color: var(--gold-light);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 50px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.property-footer-details {
  display: grid;
  gap: 5px;
  max-width: 420px;
  line-height: 1.45;
}

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

.footer-links a {
  font-weight: 600;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  color: white;
  background: #1f8f55;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(24, 107, 64, 0.28);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.floating-whatsapp:hover {
  background: #187b49;
  transform: translateY(-2px);
}

.property-hero {
  --property-logo: url("logos/santas-pousadas.webp");
  position: relative;
  display: grid;
  place-items: end start;
  width: min(1380px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px);
  overflow: hidden;
  color: var(--cream);
  border-radius: 0 0 46px 46px;
}

.property-hero::after {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: 5%;
  width: min(430px, 38vw);
  aspect-ratio: 1;
  background: var(--property-logo) center / contain no-repeat;
  border-radius: 50%;
  opacity: 0.35;
  content: "";
}

.property-hero--clara {
  --property-logo: url("logos/santa-clara.webp");
  background: linear-gradient(135deg, #1e2922, #536551);
}

.property-hero--cecilia {
  --property-logo: url("logos/santa-cecilia.webp");
  background: linear-gradient(135deg, #3a211c, #8b5a45);
}

.property-hero--rita {
  --property-logo: url("logos/santa-rita.webp");
  background: linear-gradient(135deg, #30272d, #6a5662);
}

.property-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.property-hero h1 {
  margin-bottom: 18px;
}

.property-hero p:last-child {
  max-width: 600px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 1.08rem;
}

.property-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.property-hero__actions .button {
  min-height: 46px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  color: var(--rust);
  background: var(--paper-deep);
  border-radius: 50%;
  font-weight: 600;
}

.feature-card h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.placeholder-note {
  padding: 24px;
  color: var(--ink-soft);
  background: rgba(201, 154, 59, 0.1);
  border: 1px solid rgba(201, 154, 59, 0.3);
  border-radius: 18px;
}

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

.knowledge-search {
  position: relative;
  z-index: 8;
  width: min(1200px, calc(100% - 48px));
  margin: 18px auto 28px;
}

.knowledge-search__inner {
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 94% 10%, rgba(239, 203, 122, 0.2), transparent 26%),
    var(--cream);
  border: 1px solid rgba(23, 19, 15, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(34, 27, 20, 0.08);
}

.knowledge-search__heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.knowledge-search__heading h2 {
  margin-bottom: 9px;
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
}

.knowledge-search__heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.knowledge-search__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 7px;
  background: white;
  border: 1px solid rgba(23, 19, 15, 0.16);
  border-radius: 999px;
  box-shadow: 0 9px 28px rgba(34, 27, 20, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.knowledge-search__form:focus-within {
  border-color: rgba(201, 154, 59, 0.85);
  box-shadow: 0 0 0 4px rgba(201, 154, 59, 0.13), 0 12px 34px rgba(34, 27, 20, 0.1);
}

.knowledge-search__input {
  min-width: 0;
  min-height: 52px;
  padding: 0 12px 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1rem;
}

.knowledge-search__input::placeholder {
  color: #81776b;
}

.knowledge-search__button {
  min-height: 52px;
  padding: 0 25px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.knowledge-search__button:hover,
.knowledge-search__button:focus-visible {
  background: #302820;
}

.knowledge-search__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.knowledge-search__suggestion {
  padding: 8px 13px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.knowledge-search__suggestion:hover,
.knowledge-search__suggestion:focus-visible {
  color: var(--ink);
  background: white;
  border-color: rgba(201, 154, 59, 0.7);
}

.knowledge-search__results {
  margin-top: 20px;
}

.knowledge-search__results[hidden] {
  display: none;
}

.knowledge-answer {
  padding: clamp(22px, 4vw, 34px);
  color: var(--cream);
  background:
    radial-gradient(circle at 94% 6%, rgba(239, 203, 122, 0.13), transparent 30%),
    var(--ink);
  border-radius: 22px;
}

.knowledge-answer__category {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.knowledge-answer__question {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.knowledge-answer__text {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.8);
  font-size: 1rem;
}

.knowledge-answer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.knowledge-answer__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.knowledge-answer__link:hover,
.knowledge-answer__link:focus-visible {
  background: white;
}

.knowledge-answer__related {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 4px 0;
}

.knowledge-answer__related p {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.knowledge-answer__related button {
  padding: 7px 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 19, 15, 0.24);
  font: inherit;
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
}

.knowledge-answer__related button:hover,
.knowledge-answer__related button:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
}

.knowledge-answer--empty .knowledge-answer__text {
  margin-bottom: 20px;
}

.info-shell .knowledge-search {
  width: 100%;
  margin-top: 6px;
}

.info-shell .knowledge-search__inner {
  padding: 24px;
}

.info-shell .knowledge-search__heading h2 {
  font-size: clamp(1.8rem, 7vw, 2.8rem);
}

.access-shell .knowledge-search {
  width: 100%;
  margin: 0 0 20px;
}

.access-shell .knowledge-search__inner {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.info-shell {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 18px 100px;
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.info-header .brand span {
  font-size: 0.98rem;
}

.info-header__help {
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.info-welcome {
  padding: 38px 26px 28px;
  color: var(--cream);
  background:
    radial-gradient(circle at 86% 15%, rgba(239, 203, 122, 0.17), transparent 30%),
    var(--ink);
  border-radius: 28px;
}

.info-welcome h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 10vw, 4.8rem);
}

.info-welcome > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 250, 241, 0.72);
}

.property-picker {
  display: grid;
  gap: 8px;
}

.property-picker label {
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
}

.property-picker select {
  width: 100%;
  min-height: 54px;
  padding: 0 44px 0 16px;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 14px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 26px;
}

.quick-action {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 10px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.info-status {
  margin: 0 0 18px;
  padding: 13px 16px;
  color: #694e19;
  background: #fff4d7;
  border: 1px solid #e9d296;
  border-radius: 14px;
  font-size: 0.86rem;
}

.info-grid {
  display: grid;
  gap: 12px;
}

.booklet-section {
  margin-top: 52px;
  scroll-margin-top: 24px;
}

.booklet-section:first-of-type {
  margin-top: 34px;
}

.booklet-heading {
  margin-bottom: 20px;
}

.booklet-heading h2 {
  max-width: 650px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 7vw, 3.4rem);
}

.booklet-heading > p:last-child:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
}

.info-card {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(34, 27, 20, 0.045);
}

.info-card--accent {
  color: var(--cream);
  background: var(--moss);
  border-color: transparent;
}

.info-card--accent .info-card__label,
.info-card--accent p {
  color: rgba(255, 250, 241, 0.72);
}

.info-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.info-card__label {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.info-card h2 {
  margin-bottom: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0;
}

.info-card p:last-child,
.info-card ul:last-child {
  margin-bottom: 0;
}

.info-card p,
.info-card li {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.info-card ul {
  padding-left: 20px;
}

.info-card li + li {
  margin-top: 7px;
}

.info-card .business-id {
  margin-top: -4px;
  font-size: 0.8rem;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rust);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.time-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.time-block {
  padding: 15px;
  background: var(--paper);
  border-radius: 14px;
}

.time-block span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.time-block strong {
  font-size: 1.3rem;
}

.wifi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.wifi-row:last-child {
  padding-bottom: 0;
}

.wifi-row span {
  display: block;
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.72rem;
}

.copy-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.rules-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  counter-reset: rules;
}

.rules-list li {
  position: relative;
  padding: 20px 20px 20px 66px;
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  counter-increment: rules;
}

.rules-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--cream);
  background: var(--rust);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  content: counter(rules, decimal-leading-zero);
}

.rules-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.faq-search {
  margin-bottom: 14px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(34, 27, 20, 0.045);
}

.faq-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-search__field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 59, 0.15);
}

.faq-search__field span {
  color: var(--rust);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-search__field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.faq-search__field input::placeholder {
  color: #7b736b;
}

.faq-search__status {
  margin: 9px 2px 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  position: relative;
  padding: 19px 56px 19px 20px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--rust);
  background: var(--paper);
  border-radius: 50%;
  font-size: 1.1rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.faq-empty {
  padding: 24px;
  color: var(--ink-soft);
  background: #fff4d7;
  border: 1px solid #e9d296;
  border-radius: 18px;
  text-align: center;
}

.faq-empty[hidden] {
  display: none;
}

.faq-empty strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.faq-empty p {
  margin-bottom: 10px;
}

.faq-empty a {
  color: var(--rust);
  font-weight: 700;
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.guide-card__label {
  margin-bottom: 34px;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.guide-card > p:not(.guide-card__label) {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.guide-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.guide-card__links a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.guide-card__links a:hover {
  color: var(--rust);
}

.curiosity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.curiosity-grid article {
  padding: 22px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 20px;
}

.curiosity-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.curiosity-grid p {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
}

.info-footer {
  padding: 38px 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.access-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 154, 59, 0.13), transparent 26%),
    var(--ink);
}

.access-shell {
  display: grid;
  align-content: center;
  width: min(680px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0;
}

.access-shell > .brand {
  margin-bottom: 24px;
  color: var(--cream);
}

.access-card {
  padding: clamp(28px, 7vw, 54px);
  background: var(--cream);
  border: 1px solid rgba(239, 203, 122, 0.28);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.access-card h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 9vw, 4.6rem);
}

.access-card > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--ink-soft);
}

.access-card__notice {
  margin-bottom: 20px;
  padding: 14px 16px;
  color: #74372b;
  background: #fbe6df;
  border: 1px solid #eac1b5;
  border-radius: 14px;
  font-size: 0.88rem;
}

.access-card__notice[hidden] {
  display: none;
}

.access-footer {
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.6);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 30px, 1200px);
  }

  .knowledge-search {
    width: min(100% - 30px, 1200px);
  }

  .site-header nav a:first-child {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 720px;
    padding: 64px 26px;
  }

  .hero__mark {
    display: none;
  }

  .section {
    width: min(100% - 36px, 1200px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .property-grid,
  .location-proof__grid,
  .feature-grid,
  .guide-grid,
  .curiosity-grid {
    grid-template-columns: 1fr;
  }

  .location-proof__card {
    min-height: 0;
  }

  .property-card {
    min-height: 370px;
  }

  .guest-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1200px);
  }

  .property-hero {
    min-height: 570px;
    padding: 60px 26px;
  }

  .property-hero::after {
    top: 7%;
    right: -12%;
    width: 290px;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .site-header {
    min-height: 76px;
  }

  .site-header nav {
    gap: 14px;
  }

  .knowledge-search {
    width: min(100% - 24px, 1200px);
    margin-top: 10px;
  }

  .knowledge-search__inner {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .knowledge-search__form {
    grid-template-columns: 1fr;
    padding: 6px;
    border-radius: 18px;
  }

  .knowledge-search__input {
    min-height: 48px;
    padding: 0 12px;
  }

  .knowledge-search__button {
    min-height: 46px;
    border-radius: 13px;
  }

  .knowledge-search__suggestions {
    flex-wrap: nowrap;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .knowledge-search__suggestions::-webkit-scrollbar {
    display: none;
  }

  .knowledge-search__suggestion {
    flex: 0 0 auto;
  }

  .knowledge-answer {
    border-radius: 18px;
  }

  .knowledge-answer__links {
    display: grid;
  }

  .knowledge-answer__link {
    justify-content: center;
  }

  .hero {
    width: 100%;
    border-radius: 0 0 32px 32px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-pair {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .info-header,
  .knowledge-search,
  .quick-actions,
  .copy-button,
  .floating-whatsapp,
  .site-footer {
    display: none !important;
  }

  body,
  body.info-page {
    background: white;
  }

  .info-shell {
    width: 100%;
    padding: 0;
  }

  .info-card {
    box-shadow: none;
    break-inside: avoid;
  }

  .booklet-section {
    break-before: auto;
  }

  .guide-card,
  .curiosity-grid article,
  .rules-list li,
  .faq-item {
    break-inside: avoid;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
