/* ===== Tokens ===== */
:root {
  --2xl: 16px;
  color-scheme: light;
}

/* Force light UA styling so native form controls (inputs, selects, textareas,
   date pickers, autofill, scrollbars) stay light even when the browser/OS is
   in dark mode. */
html,
body {
  color-scheme: light;
  background-color: #ffffff;
  color: #1a1a1a;
}

input,
select,
textarea,
button {
  color-scheme: light;
  background-color: #ffffff;
  color: #1a1a1a;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  box-shadow: 0 0 0 1000px #ffffff inset;
  caret-color: #1a1a1a;
  transition: background-color 9999s ease-in-out 0s;
}

/* ===== Global Base ===== */
@font-face {
  font-family: "madeena_road2";
  src: local("madeena_road2"), local("madeena road2"), url("../fonts/madeenaroad-Bold.woff") format("woff"), url("../fonts/madeena_road2.woff2") format("woff2"), url("../fonts/madeena_road2.woff") format("woff"), url("../fonts/madeena_road2.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  margin-inline: auto;
}

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

.container-xxl {
  width: 100%;
  max-width: 1266px;
  margin-inline: auto;
  --bs-gutter-x: 0;
  padding-inline: 0;
}

@media (max-width: 1289.98px) {
  .header-inner,
  .container-xxl {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .header-inner,
  .container-xxl {
    padding-inline: 12px;
  }
}
.btn-olive {
  background: #1c3229;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 24px;
}

.btn-olive:hover {
  background: rgb(18.8461538462, 33.6538461538, 27.5961538462);
  color: #fff;
}

.btn-gold {
  background: #bd7a2a;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  padding: 14px 24px;
}

.btn-gold:hover {
  background: rgb(168.1363636364, 108.5324675325, 37.3636363636);
  color: #fff;
}

/* ===== Global Header ===== */
.site-header {
  background: #fff;
  position: relative;
  z-index: 20;
  --mobile-arrow-closed: 90deg;
  --mobile-arrow-open: -90deg;
  --mobile-sub-enter-offset: -18px;
  --mobile-sub-leave-offset: 18px;
}

[dir=ltr] .site-header {
  --mobile-arrow-closed: -90deg;
  --mobile-arrow-open: 90deg;
  --mobile-sub-enter-offset: 18px;
  --mobile-sub-leave-offset: -18px;
}

[dir=ltr] .nav-list {
  width: auto;
  gap: 36px;
}

[dir=ltr] .nav-list .nav-link {
  white-space: nowrap;
  flex-shrink: 0;
}

.top-strip {
  background: #fdfdfd;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
  height: 120px;
}

.header-inner {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
}

.top-strip-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 56px;
  height: 48px;
  justify-content: flex-start;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
}

.logo-wrap {
  width: 133px;
  height: 80px;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  gap: 16px;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.mobile-menu-toggle i {
  font-size: 22px;
  line-height: 1;
}

.mobile-menu-toggle span {
  display: none;
}

.mobile-menu-toggle .mobile-menu-toggle__label {
  display: inline;
}

.mobile-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1998;
}

.mobile-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 360px);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 1999;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
}

.mobile-sidebar-close {
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-size: 34px;
  line-height: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-sidebar-body {
  padding: 16px;
  overflow-y: auto;
}

.mobile-top-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
}

.mobile-login-btn {
  margin: 14px 0 16px;
}

.mobile-nav-link {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 6px;
}

.mobile-nav-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #1a1a1a;
}

.mobile-nav-toggle img {
  transition: transform 0.2s ease;
}

.mobile-nav-toggle[aria-expanded=true] img {
  transform: rotate(180deg);
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-sidebar {
  transform: translateX(0);
}

body.mobile-menu-open .mobile-sidebar-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav {
  background: #fff;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
  position: relative;
}

.main-nav-row {
  height: 104px;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
}

.main-nav-inner {
  max-width: 1266px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav-left {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-auth__user {
  position: relative;
  width: min(220px, 30vw);
  max-width: 100%;
}

.header-auth__trigger {
  width: 100%;
  border: 1px solid rgba(229, 229, 229, 0.6);
  border-radius: 24px;
  background: #fafafa;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1c3229;
}

.header-auth__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.header-auth__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
}

.header-auth__name {
  color: #1c3229;
  font-size: clamp(11px, 1.05vw, 13px);
  line-height: 1.3;
  font-weight: 500;
  white-space: normal;
  overflow: visible;
  word-break: break-word;
  max-width: 100%;
}

.header-auth__role {
  color: #8e8e8e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.header-auth__chevron {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-auth__chevron img {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.header-auth__user.is-open .header-auth__chevron img {
  transform: rotate(180deg);
}

.header-auth__menu {
  position: absolute;
  top: calc(100% + 4px);
  inset-inline-start: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(229, 229, 229, 0.6);
  background: #fafafa;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
  z-index: 30;
}

.header-auth__menu-item {
  width: 100%;
  min-height: 52px;
  padding: 16px 12px;
  border: 0;
  border-bottom: 1px solid rgba(229, 229, 229, 0.6);
  background: #fafafa;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.header-auth__menu-item:last-child {
  border-bottom: 0;
}

.header-auth__menu-item--danger {
  color: #ea2c2c;
}

@media (max-width: 1200px) {
  .header-auth__user {
    width: 44px;
  }
  .header-auth__trigger {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    padding: 2px;
    justify-content: center;
  }
  .header-auth__meta,
  .header-auth__chevron {
    display: none;
  }
  .header-auth__menu {
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 194px;
  }
}
.nav-cta {
  width: 140px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 572px;
  justify-content: flex-start;
}

.nav-list .nav-link {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-list .nav-link.active {
  border-bottom-color: #1a1a1a;
}

.sub-nav-row {
  background: #fff;
  display: none;
  min-height: 104px;
  border-bottom: 1px solid rgba(197, 193, 180, 0.2);
}

.sub-nav-row.is-open {
  display: block;
}

.sub-nav-inner {
  max-width: 1266px;
  width: 100%;
  min-height: 104px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sub-menu-shell {
  width: min(100%, 776px);
  margin-inline-start: 32px;
  margin-inline-end: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-direction: row;
}

.sub-title {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #1a1a1a;
}

.sub-links {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-width: 450px;
  min-height: 44px;
}

.menu-item {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.menu-item:hover,
.menu-item:focus-visible {
  border-bottom-color: currentcolor;
}

@media (max-width: 1200px) {
  .sub-nav-inner {
    gap: 24px;
    padding: 16px;
  }
  .sub-menu-shell {
    width: 100%;
    gap: 24px;
  }
  .sub-title {
    font-size: 18px;
  }
  .sub-links {
    gap: 28px;
  }
}
@media (max-width: 991.98px) {
  .sub-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    min-height: auto;
  }
  .sub-menu-shell {
    width: 100%;
    margin-inline-start: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sub-title {
    font-size: 20px;
    line-height: 32px;
  }
  .sub-links {
    width: 100%;
    min-width: 0 !important;
    justify-content: flex-start;
    gap: 18px 24px;
  }
}
@media (max-width: 575.98px) {
  .sub-nav-row {
    min-height: 88px;
  }
  .sub-nav-inner {
    padding: 12px 16px;
  }
  .sub-title {
    font-size: 18px;
    line-height: 28px;
  }
  .menu-item {
    font-size: 16px;
    line-height: 24px;
  }
  .mobile-nav-link,
  .mobile-nav-toggle {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991.98px) {
  .top-strip {
    height: 104px;
    padding: 0;
  }
  .top-strip-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
  .top-links,
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-sidebar,
  .mobile-sidebar-backdrop {
    display: none;
  }
  .logo-wrap {
    width: 112px;
    height: 68px;
  }
  .top-strip-inner {
    justify-content: center;
  }
  .top-link,
  .lang-dropdown__toggle {
    font-size: 16px;
    line-height: 24px;
  }
  body.home-page .top-strip {
    height: 88px;
  }
  body.home-page .top-strip-inner {
    justify-content: space-between;
  }
  body.home-page .logo-wrap {
    width: 133px;
    height: 80px;
  }
  body.home-page .mobile-menu-toggle {
    display: inline-flex;
  }
  body.home-page .mobile-sidebar,
  body.home-page .mobile-sidebar-backdrop {
    display: block;
  }
  body.home-page .mobile-sidebar {
    display: flex;
    inset: 0;
    width: 100%;
    transform: translateY(-100%);
    transition: transform 0.25s ease;
    z-index: 3001;
    background: #fff;
  }
  body.home-page .mobile-sidebar-backdrop {
    background: transparent;
    z-index: 3000;
  }
  body.home-page .mobile-sidebar-header {
    height: 88px;
    border-bottom: 1px solid rgba(197, 193, 180, 0.2);
    padding: 20px 16px;
  }
  body.home-page .mobile-sidebar-header__left {
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }
  body.home-page .mobile-sidebar-close {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    font-size: 24px;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.home-page .mobile-sidebar-lang-wrap {
    min-width: 88px;
    max-width: 104px;
  }
  body.home-page .mobile-sidebar-lang-wrap .lang-dropdown {
    width: 100%;
  }
  body.home-page .mobile-sidebar-lang-wrap .lang-dropdown__toggle {
    min-height: 36px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    gap: 6px;
    box-shadow: none;
  }
  body.home-page .mobile-sidebar-lang-wrap .lang-dropdown__chevron {
    width: 14px;
    height: 14px;
  }
  body.home-page .mobile-sidebar-lang-wrap .lang-dropdown__panel {
    top: calc(100% + 6px);
    border-radius: 10px;
    padding: 4px;
  }
  body.home-page .mobile-sidebar-lang-wrap .lang-dropdown__option {
    padding: 8px 10px;
    font-size: 13px;
    line-height: 18px;
  }
  body.home-page .mobile-sidebar-book-btn {
    width: 114px;
    min-height: 40px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.home-page .mobile-sidebar-user {
    position: relative;
  }
  body.home-page .mobile-sidebar-user__trigger {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(229, 229, 229, 0.6);
    background: #fafafa;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  body.home-page .mobile-sidebar-user__chevron {
    position: absolute;
    top: -3px;
    inset-inline-start: -3px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  body.home-page .mobile-sidebar-user__chevron img {
    width: 12px;
    height: 12px;
    display: block;
    transition: transform 0.2s ease;
    transform: rotate(var(--mobile-arrow-open));
  }
  body.home-page .mobile-sidebar-user.is-open .mobile-sidebar-user__chevron img {
    transform: rotate(var(--mobile-arrow-closed));
  }
  body.home-page .mobile-sidebar-user__avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.home-page .mobile-sidebar-user__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  body.home-page .mobile-sidebar-user__menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    width: 194px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(229, 229, 229, 0.6);
    background: #fafafa;
    box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
    z-index: 4;
  }
  body.home-page .mobile-sidebar-user__menu-item {
    width: 100%;
    min-height: 52px;
    padding: 16px 12px;
    border: 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.6);
    background: #fafafa;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }
  body.home-page .mobile-sidebar-user__menu-item:last-child {
    border-bottom: 0;
  }
  body.home-page .mobile-sidebar-user__menu-item--danger {
    color: #ea2c2c;
  }
  body.home-page .mobile-sidebar-body {
    position: relative;
    padding: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    background: #fff;
  }
  body.home-page .mobile-sidebar-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.figma.com/api/mcp/asset/c225ae65-6a27-4f47-bb16-b8e77b10ee65");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }
  body.home-page .mobile-sidebar-body > * {
    position: relative;
    z-index: 1;
  }
  body.home-page .mobile-sidebar-search {
    width: 100%;
    min-height: 104px;
    border: 0;
    border-bottom: 1px solid rgba(162, 162, 162, 0.4);
    background: transparent;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #595959;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
  body.home-page .mobile-nav {
    padding: 0 16px;
  }
  body.home-page .mobile-nav-toggle,
  body.home-page .mobile-nav-link {
    margin: 0;
    min-height: 76px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(162, 162, 162, 0.2);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    justify-content: space-between;
  }
  body.home-page .mobile-nav-toggle img {
    transform: rotate(var(--mobile-arrow-closed));
  }
  body.home-page .mobile-nav-toggle[aria-expanded=true] img {
    transform: rotate(var(--mobile-arrow-open));
  }
  body.home-page .mobile-sub-links {
    display: none;
  }
  body.home-page .mobile-nav-view {
    min-height: 0;
  }
  body.home-page .mobile-nav-view--sub {
    padding: 0;
    opacity: 0;
    transform: translateX(var(--mobile-sub-enter-offset));
    transition: opacity 0.24s ease, transform 0.24s ease;
  }
  body.home-page .mobile-nav-view--sub.is-open {
    opacity: 1;
    transform: translateX(0);
  }
  body.home-page .mobile-nav-view--sub.is-leaving {
    opacity: 0;
    transform: translateX(var(--mobile-sub-leave-offset));
  }
  body.home-page .mobile-nav-back {
    width: 100%;
    min-height: 80px;
    padding: 24px 16px;
    border: 0;
    border-bottom: 1px solid rgba(162, 162, 162, 0.4);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
  body.home-page .mobile-nav-back img {
    transform: rotate(var(--mobile-arrow-closed));
  }
  body.home-page .mobile-nav-sublist {
    padding: 16px;
  }
  body.home-page .mobile-nav-subtitle,
  body.home-page .mobile-nav-sublist .menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 76px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(162, 162, 162, 0.2);
    color: #1a1a1a;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-decoration: none;
  }
  body.home-page .mobile-nav-sublist .menu-item {
    justify-content: flex-start;
  }
  body.home-page .mobile-nav-subtitle {
    justify-content: space-between;
  }
  body.home-page .mobile-nav-subtitle::before {
    width: 24px;
    height: 24px;
  }
  body.home-page .mobile-sub-links .menu-item {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    border-bottom: 0;
    padding: 5px 0;
  }
  body.home-page .mobile-sidebar-footer {
    height: 80px;
    border-top: 1px solid rgba(162, 162, 162, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 24px 16px;
    background: #fff;
    flex-shrink: 0;
  }
  body.home-page .mobile-sidebar-footer__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
  }
  body.home-page.mobile-menu-open .mobile-sidebar {
    transform: translateY(0);
  }
}
.lang-dropdown {
  position: relative;
  z-index: 25;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  margin: 0;
  border: 1px solid rgba(197, 193, 180, 0.5);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(28, 50, 41, 0.04);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lang-dropdown__toggle:hover {
  border-color: rgba(10, 100, 55, 0.35);
  box-shadow: 0 4px 14px rgba(28, 50, 41, 0.08);
}
.lang-dropdown__toggle:focus-visible {
  outline: 2px solid #0a6437;
  outline-offset: 2px;
}
.lang-dropdown.is-open .lang-dropdown__toggle {
  border-color: rgba(10, 100, 55, 0.45);
  box-shadow: 0 4px 18px rgba(28, 50, 41, 0.1);
}
.lang-dropdown__current {
  min-width: 4.5ch;
  text-align: center;
}
.lang-dropdown__caret {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  transition: transform 0.2s ease;
}
.lang-dropdown.is-open .lang-dropdown__caret {
  transform: rotate(180deg);
}
.lang-dropdown__chevron {
  display: block;
}
.lang-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  box-sizing: border-box;
  min-width: 100%;
  width: max(100%, 11.5rem);
  padding: 6px;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(197, 193, 180, 0.4);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(28, 50, 41, 0.12);
}
.lang-dropdown__option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
  text-align: start;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lang-dropdown__option:hover {
  background: #f4efe7;
}
.lang-dropdown__option:focus-visible {
  outline: 2px solid #0a6437;
  outline-offset: -2px;
}
.lang-dropdown__option[aria-current=true] {
  background: rgba(10, 100, 55, 0.08);
  color: #0a6437;
  font-weight: 600;
}
.lang-dropdown--drawer {
  width: 100%;
}
.lang-dropdown--drawer .lang-dropdown__toggle {
  width: 100%;
  justify-content: space-between;
}
.lang-dropdown--drawer .lang-dropdown__panel {
  inset-inline: 0;
  width: auto;
  min-width: unset;
}
.lang-dropdown--sheet {
  width: 100%;
}
.lang-dropdown--sheet .lang-dropdown__toggle {
  width: 100%;
  min-height: 46px;
  justify-content: space-between;
  font-size: 14px;
  border-radius: 12px;
}
.lang-dropdown--sheet .lang-dropdown__panel {
  top: auto;
  bottom: calc(100% + 8px);
  inset-inline: 0;
  width: auto;
  min-width: unset;
  box-shadow: 0 -8px 28px rgba(28, 50, 41, 0.12);
}
.lang-dropdown--top .lang-dropdown__toggle {
  font-size: 18px;
  padding-inline: 20px;
}

.mobile-app-lang-wrap {
  min-width: 0;
  display: flex;
}

.site-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: start;
}
.site-breadcrumb__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  text-align: start;
}
.site-breadcrumb__link:hover {
  color: #0a6437;
}
.site-breadcrumb__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
}
.site-breadcrumb__chevron {
  display: block;
  flex-shrink: 0;
  color: #1a1a1a;
}
.site-breadcrumb__current {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #0a6437;
  white-space: nowrap;
  text-align: start;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}

[dir=ltr] .site-breadcrumb__chevron {
  transform: scaleX(-1);
}

.page-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(220px, 20.28vw, 292px);
  overflow: hidden;
  color: #fff;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
  max-width: 1266px;
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  padding-inline: 0;
  padding-block: clamp(20px, 3vw, 28px);
  text-align: start;
  box-sizing: border-box;
}
@media (max-width: 1289.98px) {
  .page-hero__inner {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-hero__inner {
    padding-inline: 12px;
  }
}
.page-hero__breadcrumb {
  align-self: flex-start;
  width: 100%;
  text-align: start;
}
.page-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: start;
  justify-content: flex-start;
}
.page-hero__crumb {
  display: flex;
  align-items: center;
  line-height: 0;
}
.page-hero__crumb--sep {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 0.95;
}
.page-hero__crumb--current {
  min-width: 0;
}
.page-hero__crumb-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  text-align: start;
}
.page-hero__crumb-link:hover {
  color: #f4efe7;
}
.page-hero__crumb-link {
  letter-spacing: 0;
}
.page-hero__crumb-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.page-hero__crumb-current {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #f4efe7;
  white-space: nowrap;
  text-align: start;
  letter-spacing: 0;
}
.page-hero__chevron {
  display: block;
  flex-shrink: 0;
}
.page-hero__title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.75rem, 3.2vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  text-align: start;
}

[dir=ltr] .page-hero__chevron {
  transform: scaleX(-1);
}

/* ===== Inner Pages ===== */
.contact-page {
  position: relative;
  overflow: hidden;
  padding-block: 32px 64px;
}
.contact-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 110px;
  width: min(1024px, 92vw);
  height: min(800px, 120vw);
  transform: translateX(-50%);
  background-image: url("https://www.figma.com/api/mcp/asset/2eb923d0-7e29-4502-918f-0c683f358557");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.contact-page__container {
  position: relative;
  z-index: 1;
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1289.98px) {
  .contact-page__container {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .contact-page__container {
    padding-inline: 12px;
  }
}
.contact-page__breadcrumb {
  margin-bottom: 32px;
}

.contact-form-section {
  direction: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(32px, 4vw, 40px);
  text-align: start;
  max-width: 735px;
}
.contact-form-section > * {
  position: relative;
  z-index: 1;
}
.contact-form-section__header {
  width: 100%;
  max-width: 621px;
  margin-inline-end: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  align-items: flex-start;
}
.contact-form-section__title {
  margin: 0;
  width: 100%;
  font-size: clamp(2rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: start;
}
.contact-form-section__lead {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #595959;
  text-align: start;
}
.contact-form-section__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.contact-form-section__subtitle {
  margin: 0;
  width: 100%;
  font-size: clamp(1.75rem, 1.8vw + 0.75rem, 2rem);
  font-weight: 500;
  line-height: 1.1875;
  color: #1a1a1a;
}
.contact-form-section__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.contact-form-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: #1c3229;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-inline: 16px;
  gap: 4px;
}
.contact-form-section__label-icon {
  font-size: 20px;
  line-height: 1;
  color: #0a6437;
}
.contact-form-section__label-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.contact-form-section__required {
  font-size: 14px;
  color: #dd0417;
  line-height: 1;
}
.contact-form-section__input-wrap {
  position: relative;
}
.contact-form-section__hint-icon {
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #8e8e8e;
  pointer-events: none;
}
.contact-form-section__input, .contact-form-section__textarea {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 20px;
  padding: 18px 16px;
  direction: inherit;
  text-align: start;
  unicode-bidi: plaintext;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-section__input::placeholder, .contact-form-section__textarea::placeholder {
  color: #8e8e8e;
  opacity: 1;
  direction: inherit;
  text-align: start;
  unicode-bidi: plaintext;
}
.contact-form-section__input:focus, .contact-form-section__textarea:focus {
  border-color: rgba(19, 147, 106, 0.7);
  box-shadow: 0 0 0 3px rgba(19, 147, 106, 0.12);
}
.contact-form-section__input, .contact-form-section__textarea {
  font-weight: 400;
}
.contact-form-section__input-wrap .contact-form-section__input {
  padding-inline-end: 44px;
}
.contact-form-section__select {
  appearance: none;
  cursor: pointer;
  padding-inline-end: 44px;
  background-image: linear-gradient(45deg, transparent 50%, #8e8e8e 50%), linear-gradient(135deg, #8e8e8e 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 1px), calc(100% - 12px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-form-section__select:hover {
  border-color: #d7d7d7;
  background-color: #fcfcfc;
}
.contact-form-section__select:focus {
  background-color: #fff;
}
.contact-form-section__dropdown {
  position: relative;
}
.contact-form-section__dropdown-toggle {
  width: 100%;
  min-height: 58px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  color: #8e8e8e;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: start;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-form-section__dropdown-toggle:hover {
  border-color: #d7d7d7;
  background-color: #fcfcfc;
}
.contact-form-section__dropdown-toggle:focus-visible {
  outline: none;
  border-color: rgba(19, 147, 106, 0.7);
  box-shadow: 0 0 0 3px rgba(19, 147, 106, 0.12);
}
.contact-form-section__dropdown-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.contact-form-section__dropdown-chevron {
  font-size: 14px;
  color: #8e8e8e;
  transition: transform 0.2s ease;
}
.contact-form-section__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline: 0;
  z-index: 10;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(28, 50, 41, 0.08);
}
.contact-form-section__dropdown-option {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1a1a1a;
  text-align: start;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.contact-form-section__dropdown-option:hover, .contact-form-section__dropdown-option:focus-visible {
  background: #f6f8f7;
  outline: none;
}
.contact-form-section__textarea {
  min-height: 157px;
  resize: vertical;
}
.contact-form-section__submit {
  align-self: flex-start;
  width: 170px;
  max-width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: #1c3229;
  color: #fff;
  font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form-section__submit:hover {
  background: #15261f;
}
@media (max-width: 767.98px) {
  .contact-form-section__submit {
    width: 100%;
    font-size: 1.125rem;
  }
}
.contact-form-section--newsletter {
  max-width: 735px;
}
.contact-form-section--newsletter .contact-form-section__header {
  max-width: 621px;
}
.contact-form-section--newsletter .contact-form-section__form {
  gap: 64px;
  margin-top: 20px;
}
.contact-form-section--newsletter .contact-form-section__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
@media (min-width: 992px) {
  .contact-form-section--newsletter .contact-form-section__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-form-section--newsletter .contact-form-section__submit {
  width: 140px;
}
.contact-form-section--newsletter .contact-form-section__hint-icon {
  display: none;
}
.contact-form-section--newsletter .contact-form-section__dropdown.is-open .contact-form-section__dropdown-chevron {
  transform: rotate(180deg);
}
.contact-form-section--newsletter .contact-form-section__dropdown.has-value .contact-form-section__dropdown-toggle {
  color: #1a1a1a;
}

.account-page {
  padding-block: 32px 64px;
}
.account-page__container {
  max-width: 1266px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}
@media (max-width: 991.98px) {
  .account-page__container {
    padding-inline: 16px;
  }
}

.account-profile-content {
  display: flex;
  flex-direction: column;
  max-width: 1052px;
  gap: clamp(40px, 6vw, 56px);
}
.account-profile-content__intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.account-profile-content__title {
  margin: 0;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1a1a1a;
  text-align: start;
}
.account-profile-content__lead {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #595959;
  text-align: start;
}
.account-profile-content__card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 40px);
}
.account-profile-content__section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.account-profile-content__section--prefs {
  border-top: 1px solid #1c3229;
  padding-top: 32px;
}
.account-profile-content__section-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  text-align: start;
}
.account-profile-content__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.account-profile-content__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-profile-content__label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: #1c3229;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-inline: 16px;
  gap: 8px;
}
.account-profile-content .req {
  color: #dd0417;
}
.account-profile-content__field input {
  width: 100%;
  min-height: 60px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  color: #8e8e8e;
  font-size: 14px;
  line-height: 20px;
  padding: 18px 16px;
  direction: inherit;
  text-align: start;
  unicode-bidi: plaintext;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.account-profile-content__field input::placeholder {
  color: #8e8e8e;
  opacity: 1;
  direction: inherit;
  text-align: start;
  unicode-bidi: plaintext;
}
.account-profile-content__field input:focus {
  border-color: rgba(19, 147, 106, 0.7);
  box-shadow: 0 0 0 3px rgba(19, 147, 106, 0.12);
}
.account-profile-content__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.account-profile-content__delete {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #ea2c2c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.account-profile-content__save {
  align-self: flex-start;
  min-width: 150px;
  min-height: 56px;
}
@media (max-width: 991.98px) {
  .account-profile-content__title {
    font-size: 32px;
    line-height: 40px;
  }
  .account-profile-content__lead {
    font-size: 16px;
    line-height: 24px;
  }
  .account-profile-content__section-title {
    font-size: 28px;
    line-height: 34px;
  }
  .account-profile-content__fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.my-membership-page {
  padding-block: 32px 64px;
}
.my-membership-page__container {
  max-width: 1266px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}
@media (max-width: 991.98px) {
  .my-membership-page__container {
    padding-inline: 16px;
  }
}

.my-membership-content {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
}
.my-membership-content__intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  max-width: 812px;
}
.my-membership-content__title {
  margin: 0;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1a1a1a;
  text-align: start;
}
.my-membership-content__lead {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #595959;
  text-align: start;
}
.my-membership-content__pdf-actions {
  margin-bottom: 4px;
  text-align: start;
}
.my-membership-content__pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #1c3229;
  background: #fff;
  color: #1c3229;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.my-membership-content__pdf-link:hover {
  background: #1c3229;
  color: #fff;
}
.my-membership-content__plans {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 40px);
}
@media (max-width: 991.98px) {
  .my-membership-content__title {
    font-size: 32px;
    line-height: 40px;
  }
  .my-membership-content__lead {
    font-size: 16px;
    line-height: 24px;
  }
}

.my-membership-current-card__surface {
  display: grid;
  grid-template-columns: minmax(320px, 536px) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}
.my-membership-current-card__details-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.my-membership-current-card__details {
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background: #f6f6f6;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 auto;
}
.my-membership-current-card__head {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(142, 142, 142, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.my-membership-current-card__plan {
  margin: 0;
  color: #1c3229;
  font-size: 24px;
  line-height: 38px;
  font-weight: 700;
  text-align: start;
}
.my-membership-current-card__price {
  margin: 0;
  color: #595959;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-align: start;
}
.my-membership-current-card__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.my-membership-current-card__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #595959;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  text-align: start;
}
.my-membership-current-card__benefit::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("https://www.figma.com/api/mcp/asset/1a46148d-e0df-4196-817e-bc2631d8fac4") center/cover no-repeat;
}
.my-membership-current-card__renew-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  background: #1c3229;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
}
.my-membership-current-card__renew-btn--disabled {
  background: #d8d8d8;
  color: #7a7a7a;
  cursor: not-allowed;
  pointer-events: none;
}
.my-membership-current-card__membership-visual {
  position: relative;
  min-height: 558px;
  border-radius: 8px;
  overflow: hidden;
  color: #d7be82;
  background: #575d3e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 0 16px;
  text-align: center;
}
.my-membership-current-card__membership-visual::before, .my-membership-current-card__membership-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.my-membership-current-card__membership-visual::before {
  background: url("https://www.figma.com/api/mcp/asset/d8f4623c-1de1-4366-abc1-eb8aa26c43fb") center/cover no-repeat;
  opacity: 0.34;
}
.my-membership-current-card__membership-visual::after {
  background: linear-gradient(180deg, rgba(20, 31, 24, 0.08), rgba(20, 31, 24, 0.2));
  opacity: 1;
}
.my-membership-current-card__membership-visual > * {
  position: relative;
  z-index: 1;
}
.my-membership-current-card__membership-top {
  width: 100%;
  padding-inline: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  direction: ltr;
}
.my-membership-current-card__membership-mark img {
  width: 79px;
  height: 70px;
  display: block;
  filter: brightness(0) saturate(100%) invert(86%) sepia(18%) saturate(503%) hue-rotate(351deg) brightness(97%) contrast(90%);
}
.my-membership-current-card__membership-brand img {
  width: 133px;
  height: 80px;
  display: block;
  filter: brightness(0) saturate(100%) invert(86%) sepia(18%) saturate(503%) hue-rotate(351deg) brightness(97%) contrast(90%);
}
.my-membership-current-card__membership-data {
  width: 278px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.my-membership-current-card__member-name {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #d7be82;
  text-shadow: 1.655px 1.655px 8.274px rgba(0, 0, 0, 0.25);
}
.my-membership-current-card__validity {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #d7be82;
  text-shadow: 1.655px 1.655px 8.274px rgba(0, 0, 0, 0.25);
}
.my-membership-current-card__validity-label {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}
.my-membership-current-card__validity-date {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.my-membership-current-card__qr {
  width: 274px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.my-membership-current-card__qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.my-membership-current-card__qr-note {
  margin: 0;
  width: 387px;
  max-width: calc(100% - 24px);
  color: #d7be82;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  text-shadow: 1.655px 1.655px 8.274px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1199.98px) {
  .my-membership-current-card__surface {
    grid-template-columns: 1fr;
  }
  .my-membership-current-card__details {
    padding: 28px 20px;
    gap: 24px;
  }
  .my-membership-current-card__membership-visual {
    min-height: 500px;
    padding-inline: 16px;
    gap: 20px;
  }
  .my-membership-current-card__membership-top {
    padding-inline: 0;
  }
}
@media (max-width: 767.98px) {
  .my-membership-current-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .my-membership-current-card__benefit {
    font-size: 16px;
    line-height: 24px;
  }
  .my-membership-current-card__benefit::before {
    width: 18px;
    height: 18px;
  }
  .my-membership-current-card__membership-mark img {
    width: 64px;
    height: auto;
  }
  .my-membership-current-card__membership-brand img {
    width: 133px;
    height: auto;
  }
  .my-membership-current-card__membership-data {
    width: 100%;
    max-width: 278px;
  }
  .my-membership-current-card__validity {
    flex-wrap: wrap;
    white-space: normal;
  }
  .my-membership-current-card__qr {
    width: min(100%, 274px);
  }
}

html[dir=ltr] .my-membership-current-card__surface {
  grid-template-columns: minmax(320px, 536px) minmax(0, 1fr);
}
html[dir=ltr] .my-membership-current-card__details-wrap {
  order: 2;
}
html[dir=ltr] .my-membership-current-card__membership-visual {
  order: 1;
}
html[dir=ltr] .my-membership-current-card__plan,
html[dir=ltr] .my-membership-current-card__price,
html[dir=ltr] .my-membership-current-card__benefit {
  text-align: left;
}

@media (max-width: 1199.98px) {
  html[dir=ltr] .my-membership-current-card__surface {
    grid-template-columns: 1fr;
  }
  html[dir=ltr] .my-membership-current-card__details-wrap,
  html[dir=ltr] .my-membership-current-card__membership-visual {
    order: initial;
  }
}
.members-page {
  position: relative;
  overflow: hidden;
  padding-block: 32px 64px;
}
.members-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 110px;
  width: min(1024px, 92vw);
  height: min(800px, 120vw);
  transform: translateX(-50%);
  background-image: url("https://www.figma.com/api/mcp/asset/2eb923d0-7e29-4502-918f-0c683f358557");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.members-page__container {
  position: relative;
  z-index: 1;
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}
.top-link--disabled,
.nav-link--disabled,
.mobile-nav-link--disabled,
.menu-item--disabled,
.mobile-sidebar-footer__item--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  text-decoration: none;
  color: inherit;
}
.members-page__breadcrumb {
  margin-bottom: 0;
}
.members-page__flash {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.members-page__flash--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}
.members-page__flash--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ffcdd2;
}
.members-page__flash-list {
  margin: 0;
  padding-inline-start: 1.25rem;
}
.membership-plan-card__cta-form {
  width: 100%;
  margin: 0;
  display: block;
}
.membership-plan-card__cta-form .membership-plan-card__cta {
  width: 100%;
}
@media (max-width: 991.98px) {
  .members-page__container {
    padding-inline: 16px;
  }
}

.membership-intro {
  width: 100%;
  max-width: 751px;
  margin-inline-end: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.membership-intro__title {
  margin: 0;
  width: 100%;
  font-size: clamp(2rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: start;
}
.membership-intro__lead {
  margin: 0;
  width: 100%;
  font-size: clamp(1rem, 0.7vw + 0.8rem, 1.125rem);
  font-weight: 500;
  line-height: 1.56;
  color: #595959;
  text-align: start;
}

html[dir=ltr] .membership-intro {
  margin-inline-end: 0;
  /* margin-inline-start: auto; */
}

.membership-plans {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.6vw, 44px);
}
.membership-plans__top {
  margin-bottom: 0;
}
.membership-plans__heading {
  margin: 0;
  color: #1c3229;
  font-size: clamp(1.45rem, 1.5vw + 0.95rem, 2rem);
  font-weight: 700;
  line-height: 1.3;
}
.membership-plans__list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 52px);
}

.membership-plan-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 1.6vw, 20px);
  border: 0;
  background: #0a6437;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px) clamp(16px, 6.4vw, 88px);
  color: #fff;
}
.membership-plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../../storage/images/pattern/membership-pattern.png") center/cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
}
.membership-plan-card > * {
  position: relative;
  z-index: 1;
}
.membership-plan-card--silver {
  background: #31a287;
}
.membership-plan-card--bronze {
  background: #d5aa47;
}
.membership-plan-card--dynamic {
  background: var(--m-card, #0a6437);
}
.membership-plan-card--dynamic .membership-plan-card__title {
  color: var(--m-card, #0a6437);
}
.membership-plan-card--dynamic .membership-plan-card__cta {
  background: color-mix(in srgb, var(--m-card, #0a6437) 70%, #1a1a1a);
}
.membership-plans__empty {
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
  color: #595959;
  font-size: clamp(0.95rem, 0.35vw + 0.9rem, 1.125rem);
}
.membership-plan-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(234, 234, 234, 0.35);
  padding: 12px 8px 22px;
  margin-bottom: clamp(26px, 3.8vw, 56px);
}
.membership-plan-card__plan-name {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: start;
}
.membership-plan-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.8vw, 32px);
  text-align: right;
}
.membership-plan-card__title {
  margin: 0;
  color: #0a6437;
  font-size: clamp(1.125rem, 0.7vw + 0.95rem, 1.5rem);
  font-weight: 700;
  line-height: 1.58;
  text-align: start;
}
.membership-plan-card__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.membership-plan-card__benefit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #595959;
  font-size: clamp(0.95rem, 0.35vw + 0.9rem, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: right;
}
.membership-plan-card__benefit::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: url("../../../storage/images/pattern/dot-list.png") center/cover no-repeat;
  flex-shrink: 0;
}
.membership-plan-card__note {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(0.75rem, 0.28vw + 0.7rem, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}
.membership-plan-card__price {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}
.membership-plan-card__price span {
  font-weight: 500;
  font-size: 0.95em;
}
.membership-plan-card__surface {
  background: #fff;
  border-radius: 12px;
  padding: clamp(16px, 2.8vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
}
.membership-plan-card__visual {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.membership-plan-card__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.membership-plan-card__cta {
  width: 100%;
  text-align: center;
  padding-block: 14px;
  border-radius: 12px;
  color: #fff;
  background: #1c3229;
  border: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.membership-plan-card--silver .membership-plan-card__cta {
  background: #198c72;
}
.membership-plan-card--silver .membership-plan-card__title {
  color: #198c72;
}
.membership-plan-card--bronze .membership-plan-card__cta {
  background: #b38827;
}
.membership-plan-card--bronze .membership-plan-card__title {
  color: #b38827;
}
@media (min-width: 1200px) {
  .membership-plan-card__surface {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 40px;
  }
  .membership-plan-card__content {
    order: 1;
  }
  .membership-plan-card__visual {
    order: 2;
  }
}
@media (max-width: 991.98px) {
  .membership-plan-card {
    border-radius: 12px;
    padding-inline: clamp(14px, 4vw, 28px);
  }
  .membership-plan-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }
  .membership-plan-card__price, .membership-plan-card__plan-name {
    white-space: normal;
    font-size: clamp(1.1rem, 1vw + 0.8rem, 1.5rem);
    line-height: 1.35;
  }
  .membership-plan-card__surface {
    padding: clamp(14px, 3.5vw, 22px);
  }
}
@media (max-width: 767.98px) {
  .membership-plan-card__benefit {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .membership-plan-card__benefit::before {
    width: 14px;
    height: 14px;
  }
  .membership-plan-card__title {
    font-size: 1rem;
    line-height: 1.5;
  }
  .membership-plan-card__cta {
    font-size: 16px;
    line-height: 24px;
    padding-block: 10px;
  }
}

html[dir=ltr] .membership-plan-card__content,
html[dir=ltr] .membership-plan-card__title,
html[dir=ltr] .membership-plan-card__benefit,
html[dir=ltr] .membership-plan-card__note,
html[dir=ltr] .membership-plan-card__price,
html[dir=ltr] .membership-plan-card__plan-name {
  text-align: left;
}
html[dir=ltr] .membership-plan-card__benefit {
  justify-content: flex-start;
}
html[dir=ltr] .membership-plan-card__benefit::before {
  order: 0;
}

.collections-page__main {
  padding-block: clamp(48px, 8vw, 88px);
  background: #fff;
}

.collections-content {
  width: 100%;
  background: #fff;
}

.collections-content .collections-content__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 56px;
}

@media (max-width: 991.98px) {
  .collections-content .collections-content__row {
    --bs-gutter-y: 24px;
  }
}

.collections-content__search {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}
@media (min-width: 768px) {
  .collections-content__search {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
.collections-content__search-btn {
  width: clamp(110px, 22vw, 140px);
  max-width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: #1c3229;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.collections-content__search-btn:hover {
  background: #15261f;
}
.collections-content__search-field {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 56px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline: 16px 24px;
}
.collections-content__search-icon {
  color: #8e8e8e;
  font-size: 18px;
  line-height: 1;
}
.collections-content__search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: start;
  outline: none;
}
.collections-content__search-input::placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.collections-content__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (min-width: 992px) {
  .collections-content__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  html[dir=rtl] .collections-content .collections-content__search {
    flex-direction: row-reverse;
  }
}
html[dir=rtl] .collections-content .collections-content__search-field {
  flex-direction: row-reverse;
}

.collections-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 100%;
  min-height: 320px;
  aspect-ratio: 404/320;
  border-radius: 12px;
  border: 2px solid #eaeaea;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  overflow: hidden;
}
.collections-card--wide {
  grid-column: 1/-1;
  aspect-ratio: 830/320;
}
@media (min-width: 992px) {
  .collections-card--wide {
    grid-column: span 2;
    aspect-ratio: 830/320;
  }
}
.collections-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.collections-card__img--wide {
  object-fit: cover;
}
.collections-card__img--book {
  object-position: center center;
  padding: 8px 22px 0;
}
.collections-card__img--pots {
  object-position: center 54%;
  padding: 20px;
}
.collections-card__img--vessel {
  object-position: center center;
  padding: 24px;
}
.collections-card__overlay {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 2;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.72) 55%, rgba(26, 26, 26, 0.88) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.collections-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.collections-card__desc {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.collections-card:hover .collections-card__overlay, .collections-card:focus-within .collections-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .collections-card__overlay {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.news-events-page__main {
  padding-block: clamp(48px, 8vw, 88px);
  background: #fff;
}

.news-events-grid .news-events-grid__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 56px;
}

@media (max-width: 991.98px) {
  .news-events-grid .news-events-grid__row {
    --bs-gutter-y: 24px;
  }
}
.news-event-single-page__main {
  padding-block: clamp(48px, 8vw, 88px);
  background: #fff;
}
.news-event-single-page__newsletter {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.news-event-single-content {
  width: 100%;
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1289.98px) {
  .news-event-single-content {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .news-event-single-content {
    padding-inline: 12px;
  }
}
.news-event-single-content__inner {
  width: min(100%, 812px);
  margin-inline-start: 0;
  margin-inline-end: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 39px);
  text-align: start;
}
.news-event-single-content__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-event-single-content__title {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(1.875rem, 2vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
}
.news-event-single-content__subtitle {
  margin: 0;
  color: #595959;
  font-size: clamp(1.25rem, 1.4vw + 0.85rem, 1.5rem);
  font-weight: 600;
  line-height: 1.58;
}
.news-event-single-content__media {
  position: relative;
  margin: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  min-height: clamp(240px, 45vw, 414px);
}
.news-event-single-content__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}
.news-event-single-content__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-event-single-content__copy {
  color: #595959;
  font-size: clamp(1rem, 0.65vw + 0.85rem, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
}
.news-event-single-content__copy p {
  margin: 0;
}
.news-event-single-content__copy p + p {
  margin-top: 16px;
}

[dir=ltr] .news-event-single-content__inner {
  text-align: left;
}

.artifact-page__main {
  padding-block: clamp(48px, 8vw, 88px);
  background: #fff;
}

.artifact-content {
  width: 100%;
  background: #fff;
}
.artifact-content__inner {
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1289.98px) {
  .artifact-content__inner {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .artifact-content__inner {
    padding-inline: 12px;
  }
}
.artifact-content__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 104px);
}
.artifact-content__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
}
@media (min-width: 1200px) {
  .artifact-content__top {
    grid-template-columns: minmax(0, 513px) minmax(0, 703px);
    justify-content: space-between;
    align-items: stretch;
  }
}
.artifact-content__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1200px) {
  .artifact-content__details {
    height: 100%;
  }
}
.artifact-content__panel {
  background: #f6f6f6;
  border-radius: 8px;
  padding: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: start;
}
@media (min-width: 1200px) {
  .artifact-content__panel {
    flex: 1 1 auto;
  }
}
.artifact-content__title {
  margin: 0;
  color: #1c3229;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1.21;
}
.artifact-content__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.artifact-content__meta-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.artifact-content__meta-label {
  width: 130px;
  margin: 0;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.artifact-content__meta-value {
  margin: 0;
  color: #595959;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.artifact-content__description {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(1.125rem, 1vw + 0.75rem, 1.5rem);
  font-weight: 500;
  line-height: 1.58;
}
.artifact-content__read-more {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #0a6437;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.artifact-content__comment-btn {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: #1c3229;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
}
.artifact-content__gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1200px) {
  .artifact-content__gallery {
    height: 100%;
  }
}
.artifact-content__main-image {
  margin: 0;
  height: clamp(320px, 42vw, 508px);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #e6e6e6 100%);
  flex: 1 1 auto;
}
.artifact-content__main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 4vw, 38px);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.artifact-content__main-image.is-changing img {
  opacity: 0.08;
  transform: scale(0.985);
}
.artifact-content__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.artifact-content__thumb {
  aspect-ratio: 1/1;
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: #f2f2f2;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 8px;
}
.artifact-content__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.artifact-content__thumb.is-active {
  outline: 2px solid rgba(28, 50, 41, 0.25);
  outline-offset: 0;
}
.artifact-content__related {
  width: 100%;
  max-width: 628px;
  margin-inline-end: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.artifact-content__related-title {
  margin: 0;
  font-size: clamp(2rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: start;
}
.artifact-content__video {
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  background: #111;
  aspect-ratio: 628/370;
}
.artifact-content__video-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media (max-width: 1199.98px) {
  .artifact-content__top {
    grid-template-columns: 1fr;
  }
  .artifact-content__details, .artifact-content__gallery {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .artifact-content__meta-row {
    flex-direction: column;
    gap: 2px;
  }
  .artifact-content__meta-label {
    width: auto;
    font-size: 16px;
    line-height: 24px;
  }
  .artifact-content__meta-value {
    font-size: 16px;
    line-height: 24px;
  }
  .artifact-content__thumbs {
    gap: 10px;
  }
  .artifact-content__thumb {
    padding: 6px;
  }
}

.comment-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.comment-modal[hidden] {
  display: none !important;
}
.comment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.48);
}
.comment-modal__dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(90vh, 820px);
  overflow: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.22);
  padding: clamp(16px, 3vw, 24px);
}
.comment-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.comment-modal__title {
  margin: 0;
  font-size: clamp(1.375rem, 1.2vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.comment-modal__close {
  border: 0;
  background: transparent;
  color: #595959;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.comment-modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comment-modal__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1c3229;
}
.comment-modal__textarea {
  width: 100%;
  min-height: 128px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.5;
  padding: 14px 16px;
  direction: inherit;
  text-align: start;
  unicode-bidi: plaintext;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.comment-modal__textarea::placeholder {
  color: #8e8e8e;
  opacity: 1;
  direction: inherit;
  text-align: start;
  unicode-bidi: plaintext;
}
.comment-modal__textarea:focus {
  border-color: rgba(19, 147, 106, 0.7);
  box-shadow: 0 0 0 3px rgba(19, 147, 106, 0.12);
}
.comment-modal__textarea {
  resize: vertical;
}
.comment-modal__actions {
  display: flex;
  justify-content: flex-start;
}
.comment-modal__submit {
  border: 0;
  border-radius: 12px;
  background: #1c3229;
  color: #fff;
  min-height: 46px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}
.comment-modal__list-wrap {
  margin-top: 22px;
  border-top: 1px solid #ededed;
  padding-top: 16px;
}
.comment-modal__empty {
  margin: 0;
  color: #595959;
  font-size: 14px;
  line-height: 22px;
}
.comment-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comment-modal__item {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fafafa;
}
.comment-modal__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.comment-modal__item-author {
  font-size: 14px;
  font-weight: 700;
  color: #1c3229;
}
.comment-modal__item-date {
  font-size: 12px;
  color: #8e8e8e;
}
.comment-modal__item-text {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #1a1a1a;
  text-align: start;
}

.school-programs-page__main {
  padding-block: clamp(48px, 8vw, 88px);
  background: #fff;
}

.school-programs-media-figure {
  margin: 0;
  width: 100%;
  max-width: 452px;
  margin-inline: auto;
}
.school-programs-media-figure__visual {
  --sp-bbox-w: 452.34;
  --sp-bbox-h: 444;
  --sp-frame-x: 0;
  --sp-frame-y: 19.734;
  --sp-frame-w: 409.846;
  --sp-frame-h: 424.267;
  --sp-scale: 1.08;
  --sp-photo-shift-x: 20;
  --sp-photo-shift-y: -17;
  position: relative;
  width: 100%;
  max-width: 452px;
  margin-inline: auto;
  aspect-ratio: var(--sp-bbox-w)/var(--sp-bbox-h);
  filter: drop-shadow(0 20px 44px rgba(28, 50, 41, 0.2));
}
@media (max-width: 575.98px) {
  .school-programs-media-figure__visual {
    max-width: min(100%, 452px);
  }
}

html[dir=ltr] .school-programs-media-figure {
  transform: scaleX(-1);
}

.school-programs-visual-frame {
  position: absolute;
  z-index: 0;
  left: calc(100% * var(--sp-frame-x) / var(--sp-bbox-w));
  top: calc(100% * var(--sp-frame-y) / var(--sp-bbox-h));
  width: calc(100% * var(--sp-frame-w) / var(--sp-bbox-w) * var(--sp-scale));
  height: calc(100% * var(--sp-frame-h) / var(--sp-bbox-h) * var(--sp-scale));
  pointer-events: none;
}
.school-programs-visual-frame__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.school-programs-visual-photo-svg {
  position: absolute;
  z-index: 2;
  left: calc(100% * (var(--sp-frame-x) + var(--sp-photo-shift-x)) / var(--sp-bbox-w));
  top: calc(100% * (var(--sp-frame-y) + var(--sp-photo-shift-y)) / var(--sp-bbox-h));
  width: calc(100% * var(--sp-frame-w) / var(--sp-bbox-w) * var(--sp-scale));
  height: calc(100% * var(--sp-frame-h) / var(--sp-bbox-h) * var(--sp-scale));
  pointer-events: none;
}
.school-programs-visual-photo-svg__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.school-programs-content {
  width: 100%;
  background: #fff;
}
.school-programs-content__inner {
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1289.98px) {
  .school-programs-content__inner {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .school-programs-content__inner {
    padding-inline: 12px;
  }
}
.school-programs-content__grid {
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 992px) {
  .school-programs-content__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 480px);
  }
}
.school-programs-content__column {
  min-width: 0;
}
.school-programs-content__column--text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(32px, 5vw, 48px);
}
.school-programs-content__column--media {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .school-programs-content__column--media {
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .school-programs-content__column--media {
    order: -1;
    max-width: 452px;
    margin-inline: auto;
    width: 100%;
  }
}
.school-programs-content__intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  text-align: start;
}
.school-programs-content__intro-title {
  margin: 0;
  font-size: clamp(2rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  color: #1a1a1a;
}
.school-programs-content__intro-lead {
  margin: 0;
  font-size: clamp(1.125rem, 1vw + 0.75rem, 1.5rem);
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0;
  color: #595959;
}
.school-programs-content__outcomes {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  text-align: start;
}
.school-programs-content__outcomes-title {
  margin: 0;
  font-size: clamp(1.5rem, 1.8vw + 0.75rem, 2rem);
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0;
  color: #1a1a1a;
}
.school-programs-content__outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.school-programs-content__outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  direction: inherit;
  padding-block: clamp(12px, 2vw, 16px);
}
.school-programs-content__outcome-bar {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-block-start: 10px;
  border-radius: 999px;
  background: #efefef;
}
.school-programs-content__outcome-text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(1.125rem, 1vw + 0.75rem, 1.5rem);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0;
  color: #595959;
  text-align: start;
}
.school-programs-content__cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  width: 100%;
  max-width: 220px;
  padding: 14px 24px;
  border-radius: 12px;
  background: #1c3229;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
  transition: background 0.2s ease;
}
.school-programs-content__cta:hover {
  background: rgb(20.6769230769, 36.9230769231, 30.2769230769);
  color: #fff;
}
.school-programs-content__cta:focus-visible {
  outline: 2px solid #0a6437;
  outline-offset: 3px;
}
.school-programs-content__cta-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.ticket-page-intro {
  display: flex;
  flex-direction: column;
  gap: 56px;
  text-align: start;
  color: #1a1a1a;
}
.ticket-page-intro__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
.ticket-page-intro__title {
  margin: 0;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1a1a1a;
  text-align: start;
}
.ticket-page-intro__subtitle {
  margin: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  color: #595959;
  text-align: start;
}
.ticket-page-intro__lead {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #595959;
  text-align: start;
}

.ticket-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 48px;
  overflow: hidden;
  background: #0a6437;
  border-radius: 12px;
  border: 1px solid rgba(197, 193, 180, 0.2);
  background: #0a6437;
  overflow: hidden;
  color: #fff;
}
.ticket-cta-card__decoration {
  position: absolute;
  inset-inline-end: -1px;
  inset-block-end: -1px;
  pointer-events: none;
  z-index: 0;
  max-width: min(55%, 320px);
  line-height: 0;
  transform-origin: inline-end bottom;
}
.ticket-cta-card__decoration img {
  display: block;
  width: 100%;
  height: auto;
}
.ticket-cta-card__header {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234, 234, 234, 0.1);
}
.ticket-cta-card__title {
  margin: 0;
  text-align: start;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  color: #f4efe7;
}
.ticket-cta-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}
.ticket-cta-card__stack {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  width: 100%;
}
.ticket-cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: 175px;
  max-width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  background: #fff;
  color: #1c3229;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.ticket-cta-card__btn:hover {
  background: #f4efe7;
  color: #1c3229;
}
.ticket-cta-card__note {
  margin: 0;
  max-width: 100%;
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}
.ticket-cta-card__member {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  flex-wrap: wrap;
}
.ticket-cta-card__member-link {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}
.ticket-cta-card__member-link:hover {
  color: #f4efe7;
}
.ticket-cta-card__member-icon {
  display: flex;
  flex-shrink: 0;
  color: #fff;
}

html[dir=ltr] .ticket-cta-card__decoration {
  transform: scaleX(-1);
}
html[dir=ltr] .ticket-cta-card__member-icon svg {
  transform: scaleX(-1);
}

.tickets-page {
  padding-block: 32px 64px;
}
.tickets-page__container {
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1289.98px) {
  .tickets-page__container {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .tickets-page__container {
    padding-inline: 12px;
  }
}
.tickets-page__breadcrumb {
  margin-bottom: 32px;
}
.tickets-page__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media (min-width: 992px) {
  .tickets-page__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
}
.tickets-page__intro {
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .tickets-page__intro {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
  }
  .tickets-page__intro .ticket-page-intro {
    flex: 1;
    min-height: 100%;
    justify-content: center;
  }
}
.tickets-page__cta {
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .tickets-page__cta {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
  }
}
.tickets-page__cta .ticket-cta-card {
  width: 100%;
}
@media (min-width: 992px) {
  .tickets-page__cta .ticket-cta-card {
    flex: 1;
    min-height: 100%;
  }
}
.tickets-page__visitor-section {
  margin-top: 48px;
  width: 100%;
  max-width: 100%;
}
.tickets-page__visitor-panel {
  width: 100%;
  max-width: 100%;
  margin-top: 32px;
}
.tickets-page__directions {
  margin-top: clamp(48px, 8vw, 80px);
  width: 100%;
  max-width: 100%;
}

.visit-page {
  padding-block: 32px 64px;
}
.visit-page__container {
  max-width: 1266px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1289.98px) {
  .visit-page__container {
    padding-inline: 16px;
  }
}
@media (max-width: 575.98px) {
  .visit-page__container {
    padding-inline: 12px;
  }
}
.visit-page__breadcrumb {
  margin-bottom: 32px;
}
.visit-page__visitor-section {
  margin-top: 48px;
  width: 100%;
  max-width: 100%;
}
.visit-page__visitor-panel {
  width: 100%;
  max-width: 100%;
}
.visit-page__directions {
  margin-top: clamp(48px, 8vw, 80px);
  width: 100%;
  max-width: 100%;
}

.visit-page-intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  text-align: start;
  color: #1a1a1a;
}
.visit-page-intro__title {
  margin: 0;
  width: 100%;
  font-size: clamp(1.5rem, 2.2vw + 0.75rem, 2rem);
  font-weight: 700;
  line-height: 1.1875;
  color: #1a1a1a;
  text-align: start;
  letter-spacing: 0;
}
.visit-page-intro__lead {
  margin: 0;
  width: 100%;
  font-size: clamp(1rem, 0.9vw + 0.75rem, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  color: #595959;
  text-align: start;
  letter-spacing: 0;
}

.visitor-info-heading {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding-block: 40px;
  padding-inline: 0;
  border: 0;
  border-block: 1px solid #eaeaea;
  background: #fff;
  font: inherit;
  text-align: start;
  color: inherit;
  cursor: pointer;
}
.visitor-info-heading:focus-visible {
  outline: 2px solid #0a6437;
  outline-offset: 4px;
}
.visitor-info-heading__text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 532px;
  text-align: start;
}
.visitor-info-heading__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1a1a1a;
}
.visitor-info-heading__subtitle {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  color: #595959;
}
.visitor-info-heading__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}
.visitor-info-heading__chevron {
  display: block;
  transition: transform 0.25s ease;
}
.visitor-info-heading[aria-expanded=false] .visitor-info-heading__chevron {
  transform: rotate(180deg);
}

.visitor-info-panel {
  width: 100%;
}
.visitor-info-panel__grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-inline: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .visitor-info-panel__grid {
    flex-direction: row;
    align-items: stretch;
  }
}
.visitor-info-panel__column {
  flex: 1 1 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .visitor-info-panel__column {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
.visitor-info-panel__column--hours {
  position: relative;
}
.visitor-info-panel__hours-surface {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(20px, 4vw, 32px);
  min-height: 0;
  padding: clamp(28px, 6vw, 56px) clamp(16px, 4vw, 48px);
  background: #efefef;
  text-align: start;
}
@media (min-width: 992px) {
  .visitor-info-panel__hours-surface {
    min-height: min(532px, 70vh);
  }
}
.visitor-info-panel__hours-heading {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw + 0.65rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.visitor-info-panel__hours-blocks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(20px, 4vw, 32px);
}
.visitor-info-panel__hours-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding-block: 16px;
}
.visitor-info-panel__hours-block--friday .visitor-info-panel__hours-block-title {
  font-weight: 600;
}
.visitor-info-panel__hours-block-title {
  margin: 0;
  font-size: clamp(1.125rem, 2vw + 0.55rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.visitor-info-panel__hours-block-text {
  margin: 0;
  font-size: clamp(1rem, 1.4vw + 0.65rem, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: #595959;
}
.visitor-info-panel__hours-note {
  margin: 0;
  font-size: clamp(0.875rem, 0.9vw + 0.65rem, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: start;
}
.visitor-info-panel__hours-cta-bar {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  min-height: clamp(120px, 22vw, 152px);
  display: flex;
  align-items: center;
  justify-content: start;
  padding-block: clamp(16px, 3vw, 24px);
  padding-inline: clamp(16px, 4vw, 48px);
  background: #1c3229;
  overflow: hidden;
}
.visitor-info-panel__hours-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2vw, 14px);
}
@media (min-width: 992px) {
  .visitor-info-panel__hours-cta-inner {
    flex-wrap: nowrap;
    gap: 8px;
  }
}
.visitor-info-panel__hours-cta-deco {
  position: absolute;
  inset-inline-end: -1px;
  inset-block-end: -1px;
  z-index: 0;
  max-width: min(38%, 250px);
  pointer-events: none;
  line-height: 0;
  transform-origin: inline-end bottom;
}
.visitor-info-panel__hours-cta-deco img {
  display: block;
  width: 100%;
  height: auto;
}
.visitor-info-panel__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  width: min(160px, 100%);
  max-width: 100%;
  flex: 0 1 auto;
  padding: clamp(10px, 1.8vw, 12px) clamp(14px, 2.5vw, 20px);
  border-radius: 10px;
  background: #fff;
  color: #1c3229;
  font-size: clamp(0.875rem, 1vw + 0.65rem, 1rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
@media (min-width: 992px) {
  .visitor-info-panel__cta-btn {
    flex: 0 0 auto;
    width: 160px;
    padding: 12px 20px;
  }
}
.visitor-info-panel__cta-btn:hover {
  background: #f4efe7;
  color: #1c3229;
}
.visitor-info-panel__column--pricing {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(12px, 2.5vw, 18px);
  min-height: 0;
  padding: clamp(28px, 6vw, 56px) clamp(16px, 4vw, 48px);
  background: #13936a;
  color: #fff;
  text-align: start;
}
.visitor-info-panel__pricing-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(20px, 4vw, 32px);
  width: 100%;
}
.visitor-info-panel__pricing-heading {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw + 0.65rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: start;
  width: 100%;
}
.visitor-info-panel__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 16px);
  min-height: 0;
  padding-block: clamp(12px, 2vw, 16px);
  border-bottom: 1px solid rgba(234, 234, 234, 0.5);
}
@media (min-width: 576px) {
  .visitor-info-panel__price-row {
    min-height: 72px;
  }
}
@media (min-width: 992px) {
  .visitor-info-panel__price-row {
    min-height: 80px;
  }
}
.visitor-info-panel__price-value {
  font-size: clamp(1rem, 1.4vw + 0.65rem, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #f4efe7;
  white-space: nowrap;
}
.visitor-info-panel__price-meta {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 12px;
  min-width: 0;
}
.visitor-info-panel__price-label {
  font-size: clamp(1rem, 1.4vw + 0.65rem, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
.visitor-info-panel__price-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #fff;
}
.visitor-info-panel__price-icon img {
  display: block;
  width: clamp(22px, 4vw, 28px);
  height: clamp(22px, 4vw, 28px);
  object-fit: contain;
  opacity: 0.92;
}
.visitor-info-panel__free-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  width: 100%;
}
.visitor-info-panel__free-value {
  font-size: clamp(1rem, 1.4vw + 0.65rem, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #f4efe7;
  white-space: nowrap;
}
.visitor-info-panel__free-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(12px, 2vw, 16px);
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 min(200px, 100%);
  min-width: 0;
}
.visitor-info-panel__free-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: clamp(8px, 1.5vw, 12px);
  font-size: clamp(0.9375rem, 1.2vw + 0.65rem, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
.visitor-info-panel__free-dot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.visitor-info-panel__free-dot img {
  display: block;
  width: clamp(11px, 2.5vw, 14px);
  height: clamp(11px, 2.5vw, 14px);
  object-fit: contain;
}
.visitor-info-panel__free-text {
  min-width: 0;
  text-align: start;
}

html[dir=ltr] .visitor-info-panel__hours-cta-deco {
  transform: scaleX(-1);
}

.directions-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(40px, 6vw, 56px);
  width: 100%;
}
.directions-section__intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  max-width: min(621px, 100%);
  margin-inline-end: auto;
}
.directions-section__title {
  margin: 0;
  width: 100%;
  font-size: clamp(1.5rem, 2.2vw + 0.75rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: start;
  letter-spacing: 0;
}
.directions-section__lead {
  margin: 0;
  width: 100%;
  font-size: clamp(1rem, 0.9vw + 0.75rem, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  color: #595959;
  text-align: start;
  letter-spacing: 0;
}
.directions-section__map {
  width: 100%;
  min-width: 0;
}
.directions-section__map-viewport {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 600px);
  min-height: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: #e8e4dc;
}
.directions-section__map-embed {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #e8e4dc;
}
.directions-section .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
.directions-section__card {
  position: absolute;
  z-index: 500;
  top: clamp(16px, 3vw, 33px);
  left: clamp(12px, 2.5vw, 23px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: min(358px, 100% - 24px);
  max-width: calc(100% - 24px);
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.directions-section__card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  direction: ltr;
}
.directions-section__card-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 254px;
  direction: rtl;
  text-align: right;
}
.directions-section__card-title {
  margin: 0;
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  color: #1a1a1a;
}
.directions-section__card-subtitle {
  margin: 0;
  font-size: clamp(0.875rem, 0.35vw + 0.75rem, 1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #595959;
}
.directions-section__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 0;
}
.directions-section__card-icon img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}
.directions-section__map-link {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #2b8af0;
  text-decoration: underline;
  text-underline-offset: 2px;
  align-self: start;
  direction: rtl;
  text-align: right;
  width: 100%;
}
.directions-section__map-link:hover {
  color: #1a6fd4;
}
.directions-section__map-link:focus-visible {
  outline: 2px solid #2b8af0;
  outline-offset: 2px;
}

/* ===== Mobile App Nav ===== */
.mobile-app-nav {
  display: none;
}

body.home-page .mobile-app-nav {
  display: none !important;
}

@media (max-width: 991.98px) {
  .mobile-app-nav {
    display: block;
  }
  .mobile-app-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2998;
  }
  .mobile-app-nav-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 86px;
    background: #fff;
    border-radius: 20px;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.22s ease, visibility 0.22s ease;
    z-index: 2999;
    margin-inline: auto;
    width: min(94vw, 420px);
    padding: 14px 14px 12px;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  }
  .mobile-app-nav-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
  .mobile-app-nav-close {
    border: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 30px;
    line-height: 1;
    width: 34px;
    height: 34px;
    cursor: pointer;
  }
  .mobile-app-nav-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 193, 180, 0.4);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    padding: 10px 12px;
  }
  .mobile-app-nav-toggle {
    justify-content: space-between;
  }
  .mobile-app-nav-toggle img {
    transition: transform 0.2s ease;
  }
  .mobile-app-nav-toggle[aria-expanded=true] img {
    transform: rotate(180deg);
  }
  .mobile-app-nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }
  .mobile-app-sub-links {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .mobile-app-sub-links .menu-item {
    min-height: 40px;
    border: 1px dashed rgba(28, 50, 41, 0.24);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1c3229;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    background: #fafaf8;
    padding: 6px 8px;
  }
  .mobile-app-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(197, 193, 180, 0.2);
  }
  .mobile-app-action-btn {
    min-height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-app-nav-bar {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: min(94vw, 360px);
    height: 62px;
    background: #1c3229;
    border-radius: 18px;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    z-index: 3000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  }
  .mobile-app-nav-btn {
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-app-nav-btn i {
    font-size: 18px;
    line-height: 1;
  }
  .mobile-app-nav-btn.is-active {
    background: rgba(255, 255, 255, 0.14);
  }
  body.mobile-app-sheet-open {
    overflow: hidden;
  }
  body.mobile-app-sheet-open .mobile-app-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.mobile-app-sheet-open .mobile-app-nav-sheet {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 991.98px) and (max-width: 575.98px) {
  .mobile-app-nav-sheet {
    bottom: 78px;
    width: min(95vw, 390px);
    border-radius: 16px;
    padding: 12px;
  }
  .mobile-app-nav-list {
    gap: 6px;
  }
  .mobile-app-nav-link {
    min-height: 42px;
    font-size: 13px;
    line-height: 20px;
    padding: 8px 10px;
  }
  .mobile-app-sub-links {
    gap: 5px;
  }
  .mobile-app-sub-links .menu-item {
    min-height: 36px;
    font-size: 11px;
    line-height: 16px;
  }
  .mobile-app-actions-grid {
    gap: 6px;
    padding-top: 8px;
  }
  .mobile-app-action-btn {
    min-height: 42px;
    font-size: 13px;
    line-height: 20px;
  }
}
/* ===== Home Page ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(69.6195deg, rgba(28, 50, 41, 0.35) 11.507%, rgba(15, 31, 25, 0.7) 93.65%), url("../../../storage/images/home/hero-bg.png") center center/cover no-repeat;
}

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

.hero-copy {
  position: absolute;
  top: 104px;
  right: 91px;
  width: 878px;
  text-align: right;
}

.info-cards {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.hero-title {
  font-family: "madeena_road2", "IBM Plex Sans Arabic", sans-serif;
  font-size: 80px;
  line-height: 68px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
  width: 878px;
  text-align: right;
  font-style: normal;
}

.hero-subtitle {
  font-size: 24px;
  line-height: 38px;
  color: #f4efe7;
  width: 878px;
  margin: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.info-card {
  color: #fff;
  min-height: 270px;
  height: auto;
  /* padding: 32px 24px 32px 64px; */
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: var(--2xl, 16px);
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 48px;

  border: 1px solid rgba(197, 193, 180, 0.2);
}

.info-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 38px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.info-card p {
  margin: 0;
  color: #f4efe7;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.info-card p strong {
  color: #fff;
  font-weight: 600;
}

.info-card a {
  color: #fff;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  direction: rtl;
  margin-top: auto;
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.bg-olive {
  background: #1c3229;
}

.bg-gold {
  background: #d4a545;
}

.bg-teal {
  background: #359c7e;
}

.info-card-pattern {
  position: absolute;
  left: -58.992px;
  top: 44.307px;
  width: 260.592px;
  height: 228.123px;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  background: url("../../../storage/images/home/info-card-pt.png") center/contain no-repeat;
  z-index: 0;
}

@media (max-width: 1399.98px) {
  .hero-copy {
    right: 56px;
    width: min(860px, 100% - 112px);
  }
  .hero-title,
  .hero-subtitle {
    width: 100%;
  }
  .hero-title {
    font-size: clamp(56px, 5.8vw, 76px);
    line-height: 1.12;
  }
  .hero-subtitle {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 760px;
  }
  .hero-copy {
    top: 88px;
    right: 32px;
    width: min(760px, 100% - 64px);
  }
  .hero-title {
    font-size: clamp(46px, 6vw, 64px);
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 20px;
    line-height: 32px;
  }
  .info-card {
    min-height: 250px;
  }
  .info-card h3 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 991.98px) {
  .hero-section {
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
  }
  .hero-bg {
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, 100% auto;
  }
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero-copy {
    position: absolute;
    top: 58px;
    right: 24px;
    width: min(680px, 100% - 48px);
  }
  .hero-title {
    font-size: clamp(40px, 7.2vw, 56px);
    line-height: 1.16;
    margin-bottom: 14px;
    width: min(100%, 640px);
  }
  .hero-subtitle {
    line-height: 1.45;
    font-size: clamp(18px, 2.8vw, 22px);
    width: min(100%, 700px);
  }
  .info-cards {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    z-index: 2;
  }
  .info-cards .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .info-cards .row > [class*=col-] {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .info-card {
    min-height: 230px;
  }
  .info-card h3 {
    font-size: 24px;
    font: 600;
    line-height: 1.35;
  }
  .info-card p {
    font-size: clamp(13px, 1.75vw, 16px);
    line-height: 1.45;
  }
  .info-card-pattern {
    left: -28px;
    top: auto;
    bottom: -24px;
    width: 170px;
    height: 170px;
    opacity: 0.4;
  }
  .info-card a {
    font-size: 13px;
    gap: 6px;
  }
  .info-card a img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    height: auto;
    min-height: 760px;
    display: block;
    overflow: visible;
  }
  .hero-content {
    position: relative;
    inset: 0;
    min-height: 500px;
    padding: 44px 16px 0;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(69.6195deg, rgba(28, 50, 41, 0.35) 11.507%, rgba(15, 31, 25, 0.7) 93.65%), url("../../../storage/images/home/hero-bg.png") center top/cover no-repeat;
  }
  .hero-bg {
    display: none;
  }
  .hero-copy {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: 42px;
    line-height: 1.18;
    margin-bottom: 12px;
    width: 100%;
    text-align: start;
    font-weight: 600;
    margin-inline: auto;
  }
  .hero-subtitle {
    font-size: clamp(16px, 3.6vw, 18px);
    line-height: 1.5;
    width: 100%;
    font-weight: 600;
    text-align: start;
    margin-inline: auto;
  }
  .info-cards {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -34px;
    z-index: 2;
  }
}
@media (max-width: 767.98px) and (max-width: 575.98px) {
  .hero-content {
    min-height: 340px;
    background-position: center top;
  }
  .info-cards {
    margin-top: -28px;
  }
}
@media (max-width: 767.98px) and (max-width: 420px) {
  .hero-content {
    min-height: 340px;
    background-position: 52% top;
  }
  .info-cards {
    margin-top: -22px;
  }
}
@media (max-width: 767.98px) {
  .info-cards .row {
    display: flex;
    flex-direction: column;
    gap: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  .info-cards .row > [class*=col-] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .info-card {
    min-height: 190px;
  }
  .info-card h3 {
    font-size: clamp(15px, 3vw, 18px);
    line-height: 1.3;
  }
  .info-card p {
    font-size: clamp(11px, 2.25vw, 13px);
    line-height: 1.45;
  }
  .info-card a {
    font-size: 12px;
    gap: 4px;
  }
  .info-card a img {
    width: 15px;
    height: 15px;
  }
  .info-card-pattern {
    width: 124px;
    height: 124px;
    left: -18px;
    bottom: -12px;
    opacity: 0.34;
  }
}
[dir=ltr] .hero-copy {
  right: auto;
  left: 91px;
  text-align: left;
}
[dir=ltr] .hero-title {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  line-height: 1.18;
}
[dir=ltr] .hero-subtitle {
  line-height: 1.5;
}
[dir=ltr] .hero-title,
[dir=ltr] .hero-subtitle,
[dir=ltr] .info-card {
  text-align: left;
}
[dir=ltr] .info-card a {
  direction: ltr;
  align-self: flex-start;
}
[dir=ltr] .info-card-pattern {
  left: auto;
  right: -58.992px;
  transform: scaleX(-1);
  transform-origin: center;
}
[dir=ltr] .info-card a img {
  transform: scaleX(-1);
  transform-origin: center;
}
@media (max-width: 1399.98px) {
  [dir=ltr] .hero-copy {
    left: 56px;
  }
}
@media (max-width: 1199.98px) {
  [dir=ltr] .hero-copy {
    left: 32px;
  }
}
@media (max-width: 991.98px) {
  [dir=ltr] .hero-copy {
    left: 24px;
  }
  [dir=ltr] .info-card-pattern {
    left: auto;
    right: -28px;
  }
}
@media (max-width: 767.98px) {
  [dir=ltr] .hero-copy {
    left: 16px;
  }
  [dir=ltr] .info-card-pattern {
    left: auto;
    right: -18px;
  }
}

.content-section {
  padding: 42px 0;
}

.pattern-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 243, 0.92) 100%), url("../../../storage/images/home/news-section-bg.png") center top/cover no-repeat;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head-main {
  order: 1;
  width: 540px;
  max-width: 100%;
}

.section-head-cta {
  order: 2;
  width: 724px;
  max-width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 4px;
}

.section-head p {
  color: #595959;
  margin: 0;
}

.more-link {
  text-decoration: underline;
  font-size: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.more-link img {
  width: clamp(14px, 2.2vw, 20px);
  height: clamp(14px, 2.2vw, 20px);
  flex-shrink: 0;
  object-fit: contain;
}

[dir=ltr] .more-link img {
  transform: scaleX(-1);
  transform-origin: center;
}

.section-more-mobile-wrap {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.section-more-mobile-btn {
  min-width: 160px;
  justify-content: center;
}

.news-card {
  border-radius: 11.923px;
  border: 0.994px solid rgba(197, 193, 180, 0.2);
  background: #fbfbfb;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-image {
  height: 270px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.08)), url("../../../storage/images/home/news-default.png") center/cover no-repeat;
  transition: transform 0.35s ease;
}

.news-body {
  padding: 20px 22px;
  text-align: start;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-body h3 {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 8px;
  font-weight: 600;
}

.news-body h3 a {
  color: inherit;
  text-decoration: none;
}

.news-body h3 a:hover {
  text-decoration: underline;
}

.news-body p {
  color: #636464;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.meta, .location {
  color: #595959;
  font-size: 14px;
}

.meta img, .location img {
  margin-left: 6px;
}

.news-body .btn {
  align-self: flex-start;
  margin-top: 14px !important;
}

@media (hover: hover) and (pointer: fine) {
  .news-card:hover,
  .news-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(197, 193, 180, 0.35);
  }
  .news-card:hover .news-image,
  .news-card:focus-within .news-image {
    transform: scale(1.03);
  }
}
.collection-card {
  height: 611px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: url("../../../storage/images/home/collection-default.png") center/cover no-repeat;
}

.collection-overlay {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(85, 152, 125, 0.1) 0%, rgba(59, 108, 88, 0.6) 42.995%, #051911 96.94%);
  color: #fff;
  text-align: right;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.collection-overlay-content {
  width: 364px;
  max-width: 100%;
  margin: 0 25px 24px;
}

.collection-overlay h3 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
}

.collection-overlay p {
  margin: 0;
  width: 327px;
  max-width: 100%;
  font-size: 18px;
  line-height: 28px;
  color: #f4efe7;
  font-weight: 500;
}

.collection-card:hover .collection-overlay,
.collection-card:focus-within .collection-overlay {
  opacity: 1;
  transform: translateY(0);
}

.newsletter {
  background: #0a6437;
  color: #fff;
  position: relative;
  min-height: 505px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 918.764px;
  height: 549px;
  background: url("../../../storage/images/home/news-letter-pt.png") center/contain no-repeat;
  opacity: 0.95;
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  width: 608px;
  max-width: 100%;
}

.newsletter h2 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 76px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.newsletter-form {
  width: 578px;
  max-width: 100%;
  gap: 32px;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.newsletter-submit {
  width: 146px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.newsletter-input-wrap {
  width: 400px;
  max-width: 100%;
  min-height: 56px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
  padding-inline: 16px;
}

.newsletter-input-wrap input {
  border: 0;
  outline: 0;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  min-height: 0;
  text-align: start;
  padding-block: 12px;
  padding-inline: 4px 8px;
  font: inherit;
  color: #1a1a1a;
  background: transparent;
}

.newsletter-input-wrap__icon {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .section-head-cta-desktop {
    display: none;
  }
  .section-more-mobile-wrap {
    display: flex;
  }
  .section-head-main {
    width: min(100%, 540px);
  }
  .section-head-cta {
    width: auto;
    flex: 1;
  }
  .section-head h2 {
    font-size: 34px;
  }
  .more-link {
    font-size: 20px;
  }
  .news-image {
    height: 230px;
  }
  .news-body {
    padding: 18px;
  }
  .news-body h3 {
    font-size: 22px;
    line-height: 34px;
  }
  .news-body p {
    font-size: 16px;
    line-height: 26px;
  }
  .collection-card {
    height: 480px;
  }
  .collection-overlay {
    transform: translateY(0);
    opacity: 1;
  }
  .collection-overlay-content {
    margin: 0 14px 14px;
    width: calc(100% - 28px);
  }
  .collection-overlay h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .collection-overlay p {
    font-size: 14px;
    line-height: 22px;
  }
  .newsletter {
    min-height: 460px;
  }
  .newsletter::before {
    width: 760px;
    height: 460px;
  }
  .newsletter-inner {
    width: 560px;
  }
  .newsletter h2 {
    line-height: 1.2;
    font-size: clamp(30px, 5.2vw, 50px);
  }
}
@media (max-width: 991.98px) {
  .section-head {
    flex-direction: column;
    align-items: flex-end !important;
    gap: 12px;
  }
  .section-head-main,
  .section-head .text-end {
    order: 1;
    width: 100%;
  }
  .section-head-cta {
    order: 2;
    width: 100%;
    justify-content: flex-end;
    padding-top: 0;
  }
  .section-more-mobile-wrap {
    margin-top: 16px;
  }
  .more-link {
    font-size: 18px;
  }
  .news-image {
    height: 210px;
  }
  .news-body {
    padding: 14px;
  }
  .news-body h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .news-body p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .meta, .location {
    font-size: 12px;
  }
  .news-body .btn {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 12px;
    border-radius: 10px;
    margin-top: 10px !important;
  }
  .collection-card {
    height: 360px;
  }
  .newsletter {
    min-height: 420px;
    padding: 24px 0;
  }
  .newsletter::before {
    width: 640px;
    height: 420px;
  }
  .newsletter-inner {
    width: 100%;
    max-width: 620px;
  }
  .newsletter-form {
    width: 100%;
    gap: 12px;
  }
  .newsletter-input-wrap {
    width: calc(100% - 142px);
  }
  .newsletter-submit {
    width: 130px;
  }
}
@media (max-width: 767.98px) {
  .content-section {
    padding: 24px 0;
  }
  .section-head h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .section-head p {
    font-size: 15px;
    line-height: 24px;
  }
  .news-image {
    height: 190px;
  }
  .news-body h3 {
    font-size: 17px;
    line-height: 26px;
  }
  .news-body p {
    font-size: 13px;
    line-height: 21px;
  }
  .meta, .location {
    font-size: 11px;
  }
  .news-body .btn {
    font-size: 11px;
    line-height: 16px;
    padding: 6px 10px;
  }
  .collection-card {
    height: 280px;
  }
  .collection-overlay h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .collection-overlay p {
    font-size: 13px;
    line-height: 20px;
  }
  .newsletter {
    min-height: 360px;
  }
  .newsletter::before {
    width: 560px;
    height: 360px;
  }
  .newsletter h2 {
    font-size: clamp(24px, 6.6vw, 36px);
    white-space: nowrap;
  }
  .newsletter-form {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }
  .newsletter-submit {
    width: 112px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 12px;
  }
  .newsletter-input-wrap {
    width: calc(100% - 122px);
    min-height: 50px;
    padding-inline: 12px;
  }

  .newsletter-input-wrap input {
    padding-block: 10px;
    padding-inline: 2px 6px;
  }
}
@media (max-width: 575.98px) {
  .section-more-mobile-btn {
    min-width: 140px;
    font-size: 13px;
    line-height: 20px;
    padding: 8px 14px;
  }
  .content-section .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  .news-image {
    height: 150px;
  }
  .news-body {
    padding: 10px;
  }
  .news-body h3 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .news-body p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 6px;
  }
  .meta, .location {
    font-size: 10px;
    line-height: 16px;
  }
  .news-body .btn {
    font-size: 10px;
    line-height: 14px;
    padding: 5px 8px;
    border-radius: 8px;
    margin-top: 8px !important;
  }
  .collection-card {
    height: 230px;
  }
  .collection-overlay {
    justify-content: stretch;
  }
  .collection-overlay h3 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .collection-overlay p {
    font-size: 11px;
    line-height: 16px;
  }
  .newsletter {
    min-height: 330px;
  }
  .newsletter::before {
    width: 470px;
    height: 320px;
  }
  .newsletter h2 {
    font-size: clamp(17px, 5.5vw, 24px);
    line-height: 1.3;
    white-space: nowrap;
  }
  .newsletter-input-wrap {
    width: calc(100% - 108px);
    min-height: 46px;
    border-radius: 10px;
    padding-inline: 10px;
  }

  .newsletter-input-wrap input {
    padding-block: 8px;
    padding-inline: 2px 4px;
  }
  .newsletter-submit {
    width: 100px;
    height: 46px;
    font-size: 13px;
    line-height: 18px;
    padding: 8px 10px;
  }
}
[dir=ltr] .section-head-main,
[dir=ltr] .news-body,
[dir=ltr] .collection-overlay {
  text-align: left;
}
[dir=ltr] .section-head h2,
[dir=ltr] .news-body h3,
[dir=ltr] .collection-overlay h3,
[dir=ltr] .newsletter h2 {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
[dir=ltr] .section-head {
  align-items: flex-start !important;
}
[dir=ltr] .meta img,
[dir=ltr] .location img {
  margin-left: 0;
  margin-right: 6px;
}
[dir=ltr] .collection-overlay {
  justify-content: flex-start;
}
[dir=ltr] .collection-overlay-content {
  margin: 0 24px 24px;
}
[dir=ltr] .newsletter h2 {
  line-height: 1.22;
  text-wrap: balance;
}
[dir=ltr] .newsletter-form {
  width: min(640px, 100%);
  gap: 16px;
}
[dir=ltr] .newsletter-input-wrap {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}
[dir=ltr] .newsletter-input-wrap input {
  text-align: left;
}
[dir=ltr] .newsletter-submit {
  width: auto;
  min-width: 168px;
  white-space: nowrap;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  [dir=ltr] .section-head {
    align-items: flex-start !important;
  }
  [dir=ltr] .section-head-cta {
    justify-content: flex-start;
  }
  [dir=ltr] .newsletter-form {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  [dir=ltr] .newsletter-input-wrap {
    width: 100%;
    flex: 1 1 100%;
  }
  [dir=ltr] .newsletter-submit {
    min-width: 152px;
  }
}
@media (max-width: 575.98px) {
  [dir=ltr] .newsletter h2 {
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.25;
  }
  [dir=ltr] .newsletter-submit {
    min-width: 136px;
  }
}

/* ===== Home only: news + collections section heads (fluid type & spacing, keep row + side CTA) ===== */
body.home-page main .content-section > .container-fluid.py-5 {
  padding-block: clamp(1.75rem, 5vw, 3rem) !important;
}

body.home-page main .content-section .section-head {
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem) !important;
}

body.home-page main .content-section .section-head-main {
  width: min(100%, clamp(280px, 42vw, 540px));
  flex: 1 1 auto;
  min-width: 0;
}

body.home-page main .content-section .section-head-cta {
  width: auto;
  max-width: min(100%, clamp(200px, 38vw, 724px));
  flex: 0 1 auto;
  min-width: 0;
  padding-top: clamp(2px, 0.6vw, 6px);
}

body.home-page main .content-section .section-head h2 {
  font-size: clamp(1.375rem, 2.2vw + 0.6rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

body.home-page main .content-section .section-head p {
  font-size: clamp(0.8125rem, 1.1vw + 0.4rem, 1rem);
  line-height: 1.45;
  max-width: min(54ch, 100%);
}

body.home-page main .content-section .section-head .more-link {
  font-size: clamp(0.875rem, 1.4vw + 0.35rem, 1.5rem);
  line-height: 1.35;
  gap: clamp(0.25rem, 1vw, 0.5rem);
}

@media (max-width: 1199.98px) {
  body.home-page main .content-section .section-head-cta-desktop {
    display: flex !important;
  }

  body.home-page main .content-section .section-more-mobile-wrap {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  body.home-page main .content-section .section-head {
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 2vw, 1rem);
  }

  body.home-page main .content-section .section-head-main,
  body.home-page main .content-section .section-head .text-end {
    width: min(100%, clamp(260px, 58vw, 540px)) !important;
    flex: 1 1 auto;
    min-width: 0;
  }

  body.home-page main .content-section .section-head-cta {
    order: 2;
    width: auto !important;
    max-width: min(42%, 11rem) !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    padding-top: clamp(2px, 0.5vw, 4px);
  }

  body.home-page main .content-section .section-head .more-link {
    font-size: clamp(0.8125rem, 1.2vw + 0.4rem, 1.125rem);
  }

  [dir=ltr] body.home-page main .content-section .section-head-cta {
    justify-content: flex-end !important;
  }
}

@media (max-width: 575.98px) {
  body.home-page main .content-section .section-head h2 {
    font-size: clamp(1.125rem, 4.2vw + 0.5rem, 1.5rem);
  }

  body.home-page main .content-section .section-head p {
    font-size: clamp(0.75rem, 2.8vw + 0.35rem, 0.875rem);
  }

  body.home-page main .content-section .section-head .more-link {
    font-size: clamp(0.75rem, 2.5vw + 0.3rem, 0.9375rem);
  }

  body.home-page main .content-section .section-head-cta {
    max-width: min(38%, 10rem) !important;
  }
}

/* ===== Global Footer ===== */
.site-footer {
  background: #25483e;
  color: #fff;
  position: relative;
  margin-top: 20px;
  padding: 88px 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("../../../storage/images/home/footer-pt-bg.png") center/cover no-repeat;
  pointer-events: none;
}

.site-footer .container-xxl {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 326px 117px 315px;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 32px;
}

.footer-brand {
  width: 100%;
  text-align: start;
  justify-self: end;
}

.footer-links-wrap {
  width: 100%;
  min-width: 0;
  text-align: start;
  justify-self: center;
}

.footer-contact-wrap {
  width: 100%;
  text-align: start;
  justify-self: start;
}

.site-footer h4 {
  font-size: 24px;
  line-height: 38px;
  margin: 0 0 24px;
  font-weight: 700;
}

.footer-logo {
  width: 133px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-inline-start: 0;
  margin-inline-end: auto;
  margin-bottom: 24px;
}

.footer-about {
  color: #f4efe7;
  width: 326px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 24px;
  max-width: 326px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  color: #f4efe7;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}

.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact li {
  color: #f4efe7;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  font-size: 18px;
  line-height: 28px;
  text-align: start;
}

.footer-contact li > span {
  min-width: 0;
  flex: 1 1 auto;
}

.footer-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 2px;
  object-fit: contain;
  display: block;
}

.footer-hours {
  align-items: flex-start !important;
}

.footer-hours-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-hours-text span {
  display: block;
}

.footer-hours-text span + span {
  margin-top: 8px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26.667px;
}

.footer-social-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
}

.footer-social-link .footer-icon {
  width: 100%;
  height: 100%;
  margin-top: 0;
  flex: none;
}

/* [dir=ltr] .footer-grid {
  grid-template-columns: 326px 220px 315px;
}

[dir=ltr] .footer-brand {
  justify-self: start;
}

[dir=ltr] .footer-contact-wrap {
  justify-self: end;
}

[dir=ltr] .footer-logo {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

 */
 [dir=ltr] .footer-links a , h4 {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}
/* @media (max-width: 1199.98px) {
  .site-footer {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: minmax(250px, 1fr) 140px minmax(250px, 1fr);
    column-gap: 24px;
  }

  .site-footer h4 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 18px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 16px;
    line-height: 25px;
  }
} */

@media (max-width: 990px) {
  .site-footer {
    margin-top: 12px;
    padding-block: 30px;
    padding-inline: 18px;
  }

  /* Pattern: stretch to the full footer box (tall mobile stack). */
  .site-footer::before {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: repeat;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .footer-brand {
    justify-self: start;
    text-align: start;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .footer-links-wrap,
  .footer-contact-wrap {
    justify-self: stretch;
    text-align: start;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .site-footer h4 {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 8px;
    text-align: start;
  }

  .footer-logo {
    width: 100px;
    height: 62px;
    margin-bottom: 8px;
    margin-inline-start: 0;
    margin-inline-end: auto;
  }

  .footer-about {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
    max-width: none;
    margin-inline: 0;
    text-align: start;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-social-link,
  .footer-social-link .footer-icon {
    width: 20px;
    height: 20px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-links a {
    text-align: start;
    font-size: 13px;
    line-height: 19px;
  }

  .footer-contact li {
    justify-content: flex-start;
    text-align: start;
    font-size: 13px;
    line-height: 19px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-contact li .footer-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 0;
  }

  .footer-hours-text {
    align-items: flex-start;
  }

  .footer-hours-text span {
    white-space: normal;
  }

  .footer-hours-text span + span {
    margin-top: 4px;
  }

  [dir=ltr] .footer-brand {
    justify-self: start;
    text-align: start;
  }

  [dir=ltr] .footer-logo {
    margin-inline-start: 0;
    margin-inline-end: auto;
  }

  [dir=ltr] .footer-contact-wrap {
    justify-self: stretch;
  }
}