.inner-body {
  background: #f8f7f3;
}

.inner-container {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.inner-page {
  min-height: 70vh;
}

.inner-hero {
  position: relative;
  min-height: 520px;
  padding: 142px 0 76px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 30%, rgba(215, 171, 90, .16), transparent 32%),
    radial-gradient(circle at 84% 76%, rgba(215, 171, 90, .11), transparent 27%),
    linear-gradient(135deg, #181917, #2d2e2a 64%, #20211e);
}

.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(231, 185, 103, .14);
  border-radius: 50%;
  pointer-events: none;
}

.inner-hero::before {
  width: 420px;
  height: 420px;
  top: -210px;
  left: -100px;
}

.inner-hero::after {
  width: 260px;
  height: 260px;
  right: 8%;
  bottom: -170px;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: center;
  gap: 90px;
}

.inner-hero-copy {
  max-width: 690px;
}

.inner-eyebrow,
.section-heading > span,
.panel-heading > div > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bf8c33;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.1px;
}

.inner-hero .inner-eyebrow {
  color: #e5b65f;
}

.inner-eyebrow::before,
.section-heading > span::before,
.panel-heading > div > span::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.inner-hero h1 {
  max-width: 680px;
  margin: 15px 0 18px;
  color: #fff;
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: 1.3;
  letter-spacing: -2px;
}

.inner-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 2.05;
}

.inner-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action,
.form-submit,
.secondary-button,
.panel-action {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.primary-action,
.form-submit,
.panel-action {
  color: #25231d;
  background: linear-gradient(135deg, #f1d08b, #d8a848);
  box-shadow: 0 11px 25px rgba(8, 8, 7, .18), inset 0 1px rgba(255, 255, 255, .4);
}

.primary-action:hover,
.primary-action:focus-visible,
.form-submit:hover,
.form-submit:focus-visible,
.panel-action:hover,
.panel-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 28px rgba(8, 8, 7, .23), inset 0 1px rgba(255, 255, 255, .45);
}

.primary-action svg,
.secondary-action svg,
.form-submit svg {
  font-size: 19px;
}

.secondary-action {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .2);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(231, 185, 103, .5);
}

.contact-hours {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(231, 185, 103, .22);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.contact-hours > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #efc774;
  background: rgba(231, 185, 103, .12);
  border: 1px solid rgba(231, 185, 103, .25);
  border-radius: 16px;
}

.contact-hours > span svg { font-size: 26px; }
.contact-hours small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.55); }
.contact-hours b { display: block; color: #fff; font-size: 19px; }
.contact-hours p { margin: 8px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }

.inner-section {
  padding: 84px 0;
}

.inner-section--soft {
  background: #f1efe9;
  border-block: 1px solid #e7e2d9;
}

.section-heading {
  max-width: 670px;
  margin: 0 0 34px;
}

.section-heading h2,
.contact-form-intro h2,
.about-story h2,
.documents-intro h2,
.about-cta h2,
.panel-heading h2 {
  margin: 10px 0 8px;
  color: #252622;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
  letter-spacing: -.8px;
}

.section-heading p,
.contact-form-intro > p,
.documents-intro > p,
.panel-heading p {
  margin: 0;
  color: #77746d;
  line-height: 1.9;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-info-card {
  min-height: 210px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6e1d7;
  border-radius: 21px;
  box-shadow: 0 10px 34px rgba(41, 38, 31, .055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: #ddc795;
  box-shadow: 0 18px 40px rgba(41, 38, 31, .09);
}

.contact-info-card--wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #a97727;
  background: #faf1de;
  border: 1px solid #ecd9b5;
  border-radius: 15px;
}

.info-icon svg { font-size: 23px; }
.contact-info-card small { display: block; color: #8a867e; font-size: 12px; font-weight: 700; }
.contact-info-card h3 { margin: 4px 0 6px; color: #292a26; font-size: 19px; }
.contact-info-card p { margin: 7px 0 0; color: #716e68; font-size: 13px; line-height: 1.8; }
.contact-info-card > div > a:not(.contact-main-link) { margin-top: 17px; display: inline-flex; align-items: center; gap: 7px; color: #a16f1e; font-size: 13px; font-weight: 800; }
.contact-info-card > div > a:not(.contact-main-link) svg { font-size: 16px; }

.contact-main-link {
  margin-top: 5px;
  display: block;
  color: #292a26;
  font-size: 20px;
  font-weight: 850;
}

.contact-main-link--email { font-size: 15px; word-break: break-all; }

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 70px;
}

.clean-list {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.clean-list li { display: flex; align-items: center; gap: 10px; color: #4b4a45; font-size: 14px; font-weight: 700; }
.clean-list svg { width: 24px; height: 24px; padding: 5px; color: #91631d; background: #ead6ab; border-radius: 50%; }

.surface-card {
  background: #fff;
  border: 1px solid #e4dfd5;
  border-radius: 22px;
  box-shadow: 0 14px 44px rgba(42, 39, 31, .07);
}

.contact-form,
.profile-form,
.wallet-charge {
  padding: 30px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.form-field {
  margin-bottom: 17px;
  display: grid;
  gap: 8px;
}

.form-field > span {
  color: #3d3d38;
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 14px;
  color: #33342f;
  background: #fbfaf7;
  border: 1px solid #ded9cf;
  border-radius: 12px;
  outline: none;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-field select { cursor: pointer; }
.form-field textarea { min-height: 110px; resize: vertical; line-height: 1.8; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa69e; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { background: #fff; border-color: #c99742; box-shadow: 0 0 0 3px rgba(201, 151, 66, .13); }
.form-field [aria-invalid="true"] { border-color: #bd4b42; box-shadow: 0 0 0 3px rgba(189, 75, 66, .1); }
.field-help { color: #8a867f; font-size: 12px; }

.form-check {
  margin: 2px 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #68665f;
  font-size: 12px;
  line-height: 1.7;
  cursor: pointer;
}

.form-check input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: #b7832e; }
.form-submit { min-width: 158px; border: 0; }
.form-status { min-height: 20px; margin: 14px 0 0; color: #31704e; font-size: 12px; font-weight: 700; }
.form-status.is-error { color: #ae423a; }

/* About */
.about-hero { min-height: 550px; }

.about-stats {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-stats div {
  min-width: 135px;
  padding: 14px 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}

.about-stats b { display: block; color: #edc473; font-size: 21px; }
.about-stats span { color: rgba(255,255,255,.58); font-size: 12px; }

.about-mark {
  aspect-ratio: 1;
  width: clamp(260px, 28vw, 320px);
  height: clamp(260px, 28vw, 320px);
  min-width: 0;
  margin-inline: auto;
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle, rgba(231,185,103,.14), rgba(255,255,255,.035));
  border: 1px solid rgba(231,185,103,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(255,255,255,.018), 0 25px 60px rgba(0,0,0,.18);
}

.about-mark > span { width: 88px; height: 88px; display: grid; place-items: center; color: #e7b967; background: rgba(231,185,103,.1); border-radius: 28px; }
.about-mark svg { font-size: 45px; }
.about-mark b { margin-top: 17px; color: #fff; font-size: 25px; }
.about-mark small { color: rgba(255,255,255,.55); }

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 80px;
}

.about-story p { margin: 0 0 14px; color: #6f6c65; line-height: 2; }
.inline-link { margin-top: 15px; display: inline-flex; align-items: center; gap: 8px; color: #9b6b20; font-size: 14px; font-weight: 850; }
.inline-link svg { font-size: 18px; transition: transform .2s ease; }
.inline-link:hover svg { transform: translateX(-4px); }

.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.value-card { padding: 24px; background: #fff; border: 1px solid #e5e0d6; border-radius: 19px; box-shadow: 0 10px 30px rgba(42,39,31,.045); }
.value-card > span { width: 44px; height: 44px; display: grid; place-items: center; color: #9d6d20; background: #f8eed8; border-radius: 13px; }
.value-card svg { font-size: 21px; }
.value-card h3 { margin: 14px 0 5px; color: #30312d; font-size: 17px; }
.value-card p { margin: 0; color: #7c7972; font-size: 12.5px; line-height: 1.8; }

.documents-heading { max-width: 760px; }

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

.document-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ded8cd;
  border-radius: 21px;
  box-shadow: 0 12px 35px rgba(42, 39, 31, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.document-card:hover {
  transform: translateY(-4px);
  border-color: #d2b77e;
  box-shadow: 0 19px 42px rgba(42, 39, 31, .1);
}

.document-frame {
  position: relative;
  width: calc(100% - 26px);
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 13px 13px 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #a27a36;
  background:
    linear-gradient(135deg, rgba(215, 171, 90, .07), rgba(255, 255, 255, .55)),
    repeating-linear-gradient(45deg, #f7f3e9 0, #f7f3e9 12px, #f2ede1 12px, #f2ede1 24px);
  border: 1.5px dashed #cab78e;
  border-radius: 15px;
  cursor: pointer;
  font: inherit;
}

.document-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(169, 125, 48, .12);
  border-radius: 10px;
}

.document-frame svg {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(169, 125, 48, .16);
  border-radius: 17px;
}

.document-frame span {
  position: relative;
  z-index: 1;
  color: #8a795b;
  font-size: 12px;
  font-weight: 800;
}

.document-frame img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  background: #fff;
}

.document-caption {
  padding: 16px 18px 19px;
}

.document-caption small {
  color: #9a6c25;
  font-size: 12px;
  font-weight: 800;
}

.document-caption h3 {
  margin: 3px 0 0;
  color: #3a3a35;
  font-size: 15px;
}

.document-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
}

.document-lightbox[hidden] { display: none; }

.document-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 16, .86);
  border: 0;
  cursor: zoom-out;
  backdrop-filter: blur(7px);
}

.document-lightbox > section {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: calc(100dvh - 56px);
  overflow: hidden;
  background: #252622;
  border: 1px solid rgba(231, 185, 103, .32);
  border-radius: 22px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .46);
}

.document-lightbox header {
  min-height: 62px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.document-lightbox h2 { margin: 0; color: #fff; font-size: 16px; }
.document-lightbox header button { width: 40px; height: 40px; display: grid; place-items: center; color: #f0c875; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 11px; cursor: pointer; }
.document-lightbox-stage { height: min(76vh, 720px); padding: 18px; display: grid; place-items: center; }
.document-lightbox-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; }
body.document-lightbox-open { overflow: hidden; }

.about-cta { padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #fff; background: linear-gradient(135deg, #242522, #353630); border: 1px solid #484941; border-radius: 24px; box-shadow: 0 18px 45px rgba(34,34,29,.16); }
.about-cta > div > span { color: #d8a848; font-size: 12px; font-weight: 800; }
.about-cta h2 { margin: 5px 0 0; color: #fff; font-size: 25px; }

/* Profile */
.profile-page { min-height: 100vh; padding-bottom: 90px; background: #f4f3ef; }
.profile-guest-gate { max-width: 560px; margin: -46px auto 0; padding: 40px 34px; text-align: center; background: #fff; border: 1px solid #dfdbd2; border-radius: 22px; box-shadow: 0 20px 55px rgba(41,38,31,.12); }
.profile-guest-gate > span { width: 62px; height: 62px; margin: 0 auto 18px; display: grid; place-items: center; color: #9d6d20; background: #f8eed8; border-radius: 18px; }
.profile-guest-gate > span svg { width: 28px; height: 28px; }
.profile-guest-gate h1 { margin: 0 0 8px; color: #2e2e29; font-size: 21px; }
.profile-guest-gate p { margin: 0 0 24px; color: #7c776c; font-size: 13.5px; line-height: 1.9; }
.profile-guest-gate .form-submit { width: 100%; max-width: 280px; margin: 0 auto; }
.profile-guest-gate small { display: block; margin-top: 16px; color: #9a958a; font-size: 12px; }
.profile-topbar { padding: 138px 0 54px; color: #fff; background: radial-gradient(circle at 15% 20%, rgba(215,171,90,.16), transparent 30%), linear-gradient(135deg, #1b1c19, #30312d); }
.profile-welcome { display: flex; align-items: center; gap: 16px; }
.profile-avatar { width: 70px; height: 70px; display: grid; place-items: center; flex: 0 0 auto; color: #28251f; background: linear-gradient(135deg, #f0cf89, #d7a648); border: 2px solid rgba(255,255,255,.18); border-radius: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.22); font-size: 20px; font-weight: 900; }
.profile-welcome-copy span { color: #d7ab5a; font-size: 12px; font-weight: 800; }
.profile-welcome-copy h1 { margin: 2px 0 2px; color: #fff; font-size: 27px; }
.profile-welcome-copy p { margin: 0; color: rgba(255,255,255,.56); font-size: 12px; }
.profile-support { margin-right: auto; min-height: 43px; padding: 0 15px; display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; font-size: 12px; font-weight: 750; }
.profile-support svg { color: #e4b65e; font-size: 19px; }
.profile-layout { margin-top: -22px; display: grid; grid-template-columns: 250px minmax(0,1fr); align-items: start; gap: 22px; }
.profile-sidebar { position: sticky; top: 16px; overflow: hidden; background: #fff; border: 1px solid #dfdbd2; border-radius: 20px; box-shadow: 0 14px 45px rgba(41,38,31,.09); }
.profile-completion { padding: 20px; background: #fbf7ed; border-bottom: 1px solid #e7e0d1; }
.profile-completion > div { display: flex; align-items: center; justify-content: space-between; color: #4e4c45; font-size: 12px; font-weight: 750; }
.profile-completion b { color: #96671f; }
.completion-track { height: 6px; margin: 10px 0; display: block; overflow: hidden; background: #e5ded0; border-radius: 99px; }
.completion-track i { height: 100%; display: block; background: linear-gradient(90deg,#d2a34f,#edcc83); border-radius: inherit; transition: width .35s ease; }
.profile-completion p { margin: 0; color: #88837a; font-size: 12px; line-height: 1.65; }
.profile-nav { padding: 9px; display: grid; gap: 3px; }
.profile-nav button { width: 100%; min-height: 49px; padding: 0 12px; display: flex; align-items: center; gap: 10px; color: #69665f; background: transparent; border: 0; border-radius: 11px; font: inherit; font-size: 13px; font-weight: 750; text-align: right; cursor: pointer; }
.profile-nav button > svg:first-child { width: 31px; height: 31px; padding: 6px; color: #9c6b20; background: #f6edda; border-radius: 9px; }
.profile-nav .nav-chevron { margin-right: auto; font-size: 15px; opacity: .45; }
.profile-nav em { min-width: 22px; height: 22px; margin-right: auto; display: grid; place-items: center; color: #6a5127; background: #ead7af; border-radius: 8px; font-size: 12px; font-style: normal; }
.profile-nav em + .nav-chevron { margin-right: 0; }
.profile-nav button:hover { background: #f8f5ef; }
.profile-nav button[aria-selected="true"] { color: #2e2e29; background: #f2e6cc; }
.profile-nav button[aria-selected="true"] > svg:first-child { color: #fff; background: #a77425; }
.profile-logout { width: calc(100% - 18px); min-height: 43px; margin: 0 9px 9px; padding: 0 12px; display: flex; align-items: center; gap: 9px; color: #a6453e; background: #fbefee; border: 0; border-radius: 10px; font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.profile-logout svg { transform: rotate(180deg); }
.profile-content { min-width: 0; }
.profile-summary { margin-bottom: 22px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.profile-summary article { min-height: 120px; padding: 18px; display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid #e2ded5; border-radius: 17px; box-shadow: 0 9px 30px rgba(41,38,31,.045); }
.summary-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; color: #9a6b21; background: #f5ead3; border-radius: 13px; }
.summary-icon svg { font-size: 21px; }
.profile-summary small { display: block; color: #8b877f; font-size: 12px; }
.profile-summary b { display: block; margin: 2px 0; color: #34342f; font-size: 15px; }
.profile-summary a { color: #9c6b20; font-size: 12px; font-weight: 800; }
.profile-summary article > div > span { color: #8c887f; font-size: 12px; }
.profile-panel[hidden] { display: none; }
.panel-heading { min-height: 94px; margin-bottom: 16px; padding: 20px 23px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: #fff; border: 1px solid #e2ded5; border-radius: 18px; }
.panel-heading h2 { margin: 3px 0 0; font-size: 23px; }
.panel-heading p { font-size: 12px; }
.panel-heading-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #96671f; background: #f5ead3; border-radius: 14px; }
.panel-heading-icon svg { font-size: 23px; }
.panel-action { min-height: 40px; padding: 0 15px; border: 0; font-size: 12px; }
.profile-form-section + .profile-form-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid #ece8e0; }
.profile-form-section h3 { margin: 0 0 18px; color: #3b3b36; font-size: 16px; }
.profile-form-actions { margin-top: 7px; padding-top: 22px; display: flex; justify-content: flex-end; gap: 10px; border-top: 1px solid #ece8e0; }
.secondary-button { min-width: 120px; color: #55534d; background: #f6f4ef; border-color: #ded9cf; box-shadow: none; }

.reservation-filter { margin-bottom: 14px; padding: 5px; display: inline-flex; gap: 3px; background: #e9e6df; border-radius: 12px; }
.reservation-filter button { min-height: 37px; padding: 0 16px; color: #6f6c65; background: transparent; border: 0; border-radius: 9px; font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.reservation-filter button.is-active { color: #33332e; background: #fff; box-shadow: 0 3px 10px rgba(39,36,30,.08); }
.reservation-list { display: grid; gap: 14px; }
.reservation-card { overflow: hidden; background: #fff; border: 1px solid #dfdbd2; border-radius: 19px; box-shadow: 0 10px 32px rgba(41,38,31,.05); }
.reservation-hotel { padding: 17px; display: flex; align-items: center; gap: 15px; }
.reservation-hotel img { width: 106px; height: 78px; object-fit: cover; border-radius: 13px; }
.reservation-hotel h3 { margin: 5px 0 3px; color: #34342f; font-size: 16px; }
.reservation-hotel p { margin: 0; display: flex; align-items: center; gap: 5px; color: #858178; font-size: 12px; }
.reservation-hotel p svg { font-size: 13px; }
.status-chip { display: inline-flex; align-items: center; justify-content: center; min-height: 24px; padding: 0 8px; border-radius: 8px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.status-chip--active,.status-chip--success { color: #28704a; background: #e4f2e9; }
.status-chip--past { color: #726c61; background: #ece9e2; }
.status-chip--pending { color: #9d6d20; background: #f8eed8; }
.status-chip--cancelled { color: #bd4b42; background: #fbeae8; }
.reservation-details { padding: 15px 17px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; background: #f8f7f3; border-block: 1px solid #e9e5dd; }
.reservation-details div { padding-left: 10px; border-left: 1px solid #e1ddd4; }
.reservation-details div:last-child { border-left: 0; }
.reservation-details small,.reservation-footer small { display: block; color: #8f8b82; font-size: 12px; }
.reservation-details b { color: #4a4943; font-size: 12px; }
.reservation-footer { padding: 15px 17px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.reservation-footer > div:first-child b { color: #2e2e2a; font-size: 14px; }
.reservation-footer > div:last-child { display: flex; align-items: center; gap: 7px; }
.reservation-footer a,.reservation-footer button { min-height: 37px; padding: 0 13px; display: inline-flex; align-items: center; color: #553f1c; background: #edcf8e; border: 0; border-radius: 9px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.reservation-footer button { color: #65625b; background: #f2f0eb; border: 1px solid #ded9d0; }
.reservation-empty,.transaction-empty { padding: 55px 20px; text-align: center; color: #8d8980; background: #fff; border: 1px solid #e0dcd3; border-radius: 18px; }
.reservation-empty svg,.transaction-empty svg { font-size: 35px; }
.reservation-empty h3 { margin: 10px 0 3px; color: #4a4943; }
.reservation-empty p,.transaction-empty p { margin: 0; font-size: 12px; }

.wallet-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 15px; }
.wallet-card { min-height: 300px; padding: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; background: radial-gradient(circle at 20% 15%, rgba(232,190,106,.2),transparent 33%), linear-gradient(145deg,#22231f,#383933); border: 1px solid #4d4e46; border-radius: 22px; box-shadow: 0 16px 40px rgba(35,34,29,.17); }
.wallet-card > span { color: rgba(255,255,255,.59); font-size: 12px; }
.wallet-card strong { margin-top: 8px; color: #edc671; font-size: 38px; line-height: 1.2; }
.wallet-card small { color: rgba(255,255,255,.7); font-size: 12px; }
.wallet-card p { max-width: 250px; margin: 24px 0 0; padding-top: 18px; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; line-height: 1.8; }
.wallet-charge h3 { margin: 0; color: #373732; font-size: 18px; }
.wallet-charge > p { margin: 3px 0 18px; color: #8a867e; font-size: 12px; }
.charge-options { margin-bottom: 17px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.charge-options button { min-height: 42px; color: #625a4a; background: #faf7f0; border: 1px solid #e3d7be; border-radius: 10px; font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.charge-options button.is-active { color: #503a17; background: #efdaa9; border-color: #c8963f; }
.wallet-note { margin-top: 14px; padding: 18px; display: flex; align-items: center; gap: 13px; }
.wallet-note > svg { width: 40px; height: 40px; padding: 9px; flex: 0 0 auto; color: #297050; background: #e2f0e7; border-radius: 12px; }
.wallet-note h3 { margin: 0 0 3px; color: #474741; font-size: 13px; }
.wallet-note p { margin: 0; color: #858178; font-size: 12px; }

.transaction-filters { margin-bottom: 13px; display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 10px; }
.transaction-filters .form-field { margin: 0; }
.transaction-table-wrap { overflow: hidden; }
.transaction-table { width: 100%; border-collapse: collapse; }
.transaction-table th { padding: 14px; color: #88847b; background: #f5f3ee; border-bottom: 1px solid #e3dfd6; font-size: 12px; font-weight: 800; text-align: right; }
.transaction-table td { padding: 14px; color: #66635c; border-bottom: 1px solid #ece8e1; font-size: 12px; white-space: nowrap; }
.transaction-table tr:last-child td { border-bottom: 0; }
.transaction-table td:first-child { display: flex; align-items: center; gap: 9px; white-space: normal; }
.transaction-table td:first-child b { display: block; color: #3f3f3a; font-size: 12px; }
.transaction-table td:first-child small { color: #918d84; font-size: 12px; }
.transaction-kind { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; }
.transaction-kind svg { font-size: 17px; }
.transaction-kind--in { color: #26704b; background: #e4f1e8; }
.transaction-kind--out { color: #a34d43; background: #f7e8e6; }
.amount-in { color: #27704b !important; font-weight: 800; }
.amount-out { color: #a44841 !important; font-weight: 800; }
.transaction-empty { border: 0; border-radius: 0; }

@media (max-width: 1050px) {
  .inner-hero-grid { gap: 45px; }
  .contact-info-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-info-card:last-child { grid-column: 1 / -1; }
  .contact-form-layout { gap: 38px; }
  .field-grid--three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .profile-layout { grid-template-columns: 225px minmax(0,1fr); }
  .reservation-details { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .reservation-details div:nth-child(2) { border-left: 0; }
  .transaction-table-wrap { overflow-x: auto; }
  .transaction-table { min-width: 760px; }
}

@media (max-width: 860px) {
  .inner-hero { min-height: auto; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .contact-hours { max-width: 560px; }
  .about-mark { display: none; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-layout { grid-template-columns: 1fr; }
  .contact-form-intro { max-width: 680px; }
  .document-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-layout { display: block; margin-top: 0; }
  .profile-sidebar { position: static; margin: 14px 0; overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .profile-completion,.profile-logout { display: none; }
  .profile-nav { padding: 4px; display: flex; overflow-x: auto; background: #fff; border: 1px solid #e0dcd4; border-radius: 14px; scrollbar-width: none; }
  .profile-nav::-webkit-scrollbar { display: none; }
  .profile-nav button { width: auto; min-width: max-content; padding-inline: 12px; }
  .profile-nav .nav-chevron,.profile-nav em { display: none; }
  .profile-summary { margin-top: 12px; }
}

@media (max-width: 680px) {
  .inner-container { width: calc(100% - 24px); }
  .inner-hero { padding: 112px 0 50px; }
  .inner-hero h1 { margin-top: 11px; font-size: 34px; letter-spacing: -1.2px; }
  .inner-hero-copy > p { font-size: 14px; line-height: 1.95; }
  .inner-hero-actions { margin-top: 22px; }
  .primary-action,.secondary-action { flex: 1; padding-inline: 14px; white-space: nowrap; }
  .contact-hours { padding: 20px; }
  .inner-section { padding: 55px 0; }
  .section-heading { margin-bottom: 24px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-card,.contact-info-card--wide,.contact-info-card:last-child { grid-column: auto; min-height: auto; padding: 20px; }
  .contact-form,.profile-form,.wallet-charge { padding: 20px; }
  .field-grid,.field-grid--three { grid-template-columns: 1fr; gap: 0; }
  .about-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
  .about-stats div { min-width: 0; padding: 11px 8px; text-align: center; }
  .about-stats b { font-size: 17px; }
  .about-stats span { font-size: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .document-showcase { gap: 11px; }
  .document-showcase { grid-template-columns: 1fr; }
  .document-frame { width: calc(100% - 18px); margin: 9px 9px 0; }
  .document-caption { padding: 13px 13px 16px; }
  .document-caption h3 { font-size: 13px; }
  .document-lightbox { padding: 0; place-items: end center; }
  .document-lightbox > section { width: 100%; max-height: 94dvh; border-radius: 22px 22px 0 0; }
  .document-lightbox-stage { height: min(76vh, 650px); padding: 12px; }
  .about-cta { padding: 26px 22px; align-items: stretch; flex-direction: column; }
  .about-cta h2 { font-size: 20px; }
  .profile-page { padding-bottom: 55px; }
  .profile-topbar { padding: 111px 0 34px; }
  .profile-welcome { align-items: flex-start; }
  .profile-avatar { width: 57px; height: 57px; border-radius: 17px; font-size: 16px; }
  .profile-welcome-copy h1 { font-size: 21px; }
  .profile-welcome-copy p { max-width: 230px; line-height: 1.6; }
  .profile-support { display: none; }
  .profile-sidebar { margin-inline: -4px; }
  .profile-nav button > svg:first-child { width: 28px; height: 28px; }
  .profile-summary { grid-template-columns: 1fr; gap: 8px; }
  .profile-summary article { min-height: 84px; }
  .panel-heading { min-height: 80px; padding: 16px; }
  .panel-heading h2 { font-size: 20px; }
  .panel-heading p { display: none; }
  .panel-heading-icon { width: 42px; height: 42px; }
  .profile-form-actions { flex-direction: column-reverse; }
  .profile-form-actions button { width: 100%; }
  .reservation-filter { width: 100%; overflow-x: auto; }
  .reservation-filter button { min-width: max-content; flex: 1; padding-inline: 12px; }
  .reservation-hotel { align-items: flex-start; }
  .reservation-hotel img { width: 85px; height: 72px; }
  .reservation-details { grid-template-columns: 1fr 1fr; gap: 14px 8px; }
  .reservation-details div { padding-left: 6px; }
  .reservation-footer { align-items: stretch; flex-direction: column; }
  .reservation-footer > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
  .reservation-footer a,.reservation-footer button { justify-content: center; }
  .wallet-grid { grid-template-columns: 1fr; }
  .wallet-card { min-height: 240px; }
  .wallet-card strong { font-size: 32px; }
  .wallet-note { align-items: flex-start; }
  .transaction-filters { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .inner-container { width: calc(100% - 16px); }
  .inner-hero h1 { font-size: 30px; }
  .inner-hero-actions { flex-direction: column; }
  .primary-action,.secondary-action { width: 100%; }
  .contact-hours { gap: 12px; }
  .contact-hours > span { width: 46px; height: 46px; }
  .reservation-hotel img { width: 74px; }
  .reservation-hotel h3 { font-size: 14px; }
  .document-showcase { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .primary-action,.secondary-action,.form-submit,.panel-action,.contact-info-card,.document-card { transition: none; }
}
