/* guides.css */
/* ===== Standalone, indexable guest guides ===== */
body.guidePage {
  min-height: 100vh;
  color: #f5f0e6;
  text-align: start;
}
.guidePage a {
  color: inherit;
}
.guideLtrTerm {
  direction: ltr;
  unicode-bidi: isolate;
}
.guideSiteHeader {
  position: relative;
  z-index: 7000;
  border-bottom: 1px solid rgba(200, 171, 79, 0.2);
  background: rgba(8, 8, 8, 0.94);
}
.guideSiteHeaderInner {
  width: min(1140px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.guideHeaderActions {
  min-width: 0;
}
.guidePrimaryNav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.guidePrimaryNav a,
.guideLanguageSummary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 9px 12px;
  color: rgba(245, 240, 230, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}
.guidePrimaryNav a:hover,
.guidePrimaryNav a:focus-visible,
.guideLanguageSummary:hover,
.guideLanguageSummary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
}
.guidePrimaryNav .guideHeaderCta {
  border: 1px solid rgba(200, 171, 79, 0.58);
  color: #f3df9b;
}
.guideLanguageSwitcher {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
}
.guideLanguageSummary {
  max-width: 100%;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guideLanguageSummary::-webkit-details-marker {
  display: none;
}
.guideLanguageList {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  width: min(320px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 100px));
  overflow: auto;
  margin: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid rgba(200, 171, 79, 0.28);
  border-radius: 14px;
  background: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
  list-style: none;
}
.guideLanguageList a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  padding: 7px 9px;
  color: rgba(245, 240, 230, 0.88);
  font-size: 0.86rem;
  line-height: 1.3;
  text-decoration: none;
}
.guideLanguageList a:hover,
.guideLanguageList a:focus-visible,
.guideLanguageList a[aria-current="page"] {
  background: rgba(200, 171, 79, 0.15);
  color: #f3df9b;
  outline: none;
}
.guideHero,
.guideArticleLayout,
.guideRelated,
.guideFooterInner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}
.guideBreadcrumbs {
  margin: 26px 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 230, 0.64);
  font-size: 0.88rem;
  line-height: 1.5;
}
.guideBreadcrumbs a {
  color: #e7cf84;
  text-underline-offset: 3px;
}
.guideHeroPanel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  border: 1px solid rgba(200, 171, 79, 0.25);
  border-radius: 26px;
  background: rgba(13, 13, 13, 0.88);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}
.guideHeroCopy {
  align-self: center;
  padding: clamp(28px, 5vw, 62px);
}
.guideEyebrow {
  margin: 0 0 12px;
  color: #d7b95f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.guidePage h1 {
  margin: 0;
  color: #fff3c2;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.guideLead {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(245, 240, 230, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
  line-height: 1.82;
}
.guideEditorialMeta {
  margin-block-start: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}
.guideEditorialMeta p {
  margin: 0;
}
.guideEditorialMeta span {
  color: rgba(245, 240, 230, 0.56);
}
.guideEditorialMeta a {
  color: #f3df9b;
  font-weight: 800;
  text-underline-offset: 3px;
}
.guideHeroMedia {
  min-height: 390px;
  background: #171717;
}
.guideHeroMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.guideArticleLayout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding-block: 54px 22px;
}
.guideToc {
  align-self: start;
  position: sticky;
  top: 18px;
  border: 1px solid rgba(200, 171, 79, 0.2);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.028);
}
.guideTocTitle {
  margin: 0 0 10px;
  color: #f3df9b;
  font-size: 0.96rem;
}
.guideToc ol {
  margin: 0;
  padding-inline-start: 20px;
}
.guideToc li + li {
  margin-top: 8px;
}
.guideToc a {
  color: rgba(245, 240, 230, 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration-color: rgba(243, 223, 155, 0.45);
  text-underline-offset: 3px;
}
.guideArticle {
  min-width: 0;
}
.guideSection {
  scroll-margin-top: 24px;
}
.guideSection + .guideSection {
  margin-top: 42px;
}
.guideSection h2,
.guidePracticalNote h2,
.guideChecklist h2,
.guideFaq h2,
.guideRelated h2 {
  margin: 0 0 16px;
  color: #f3df9b;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.guideSection p {
  margin: 0;
  color: rgba(245, 240, 230, 0.84);
  font-size: 1.02rem;
  line-height: 1.9;
}
.guideSection p + p {
  margin-top: 16px;
}
.guidePracticalNote {
  margin: 38px 0;
  border: 1px solid rgba(200, 171, 79, 0.3);
  border-inline-start: 5px solid #d4b45a;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(135deg, rgba(200, 171, 79, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}
.guidePracticalNote[data-editorial-placement="afterLead"] {
  margin-block-start: 0;
}
.guidePracticalNote h2 {
  margin-block-end: 12px;
}
.guidePracticalNote p {
  margin: 0;
  color: rgba(245, 240, 230, 0.9);
  font-size: 1.01rem;
  line-height: 1.82;
}
.guidePracticalNote--privacy,
.guidePracticalNote--partners,
.guidePracticalNote--script {
  border-inline-start-color: #d9a96e;
  background: linear-gradient(135deg, rgba(181, 118, 70, 0.14), rgba(255, 255, 255, 0.03));
}
.guidePracticalNote--sequence,
.guidePracticalNote--timeline,
.guidePracticalNote--itinerary {
  border-inline-start-color: #8fc5ba;
  background: linear-gradient(135deg, rgba(91, 147, 139, 0.14), rgba(255, 255, 255, 0.03));
}
.guidePracticalNote--inspection,
.guidePracticalNote--comparison,
.guidePracticalNote--calculation,
.guidePracticalNote--terminology {
  border-inline-start-color: #aab8d6;
  background: linear-gradient(135deg, rgba(100, 119, 159, 0.14), rgba(255, 255, 255, 0.03));
}
.guideContextLink {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 240, 230, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}
.guideContextLink::before {
  content: "›";
  flex: 0 0 auto;
  color: #d7b95f;
  font-size: 1.2em;
  font-weight: 900;
}
.guidePage .guideContextLink a {
  color: #f3df9b;
  font-weight: 800;
  text-decoration-color: rgba(243, 223, 155, 0.48);
  text-underline-offset: 3px;
}
.guidePage .guideContextLink a:hover,
.guidePage .guideContextLink a:focus-visible {
  color: #fff3c2;
  outline: none;
  text-decoration-color: currentColor;
}
.guideInlinePackagesPrompt {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.guidePage .guideInlinePackagesLink {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200, 171, 79, 0.42);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(200, 171, 79, 0.08);
  color: #f3df9b;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}
.guidePage .guideInlinePackagesLink:hover,
.guidePage .guideInlinePackagesLink:focus-visible {
  border-color: rgba(226, 202, 125, 0.78);
  background: rgba(200, 171, 79, 0.16);
  color: #fff3c2;
  outline: 2px solid rgba(226, 202, 125, 0.24);
  outline-offset: 2px;
}
.guideChecklist,
.guideFaq {
  margin-top: 44px;
}
.guideChecklist {
  border: 1px solid rgba(200, 171, 79, 0.24);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(200, 171, 79, 0.07);
}
.guideChecklist ul,
.guideChecklist ol {
  margin: 0;
  padding-inline-start: 22px;
}
.guideChecklist li {
  color: rgba(245, 240, 230, 0.88);
  line-height: 1.75;
}
.guideChecklist li + li {
  margin-top: 10px;
}
.guideChecklist--privacy ul,
.guideChecklist--comparison ul,
.guideChecklist--partners ul,
.guideChecklist--packing ul,
.guideChecklist--script ul,
.guideChecklist--inspection ul,
.guideChecklist--terminology ul {
  padding-inline-start: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}
.guideChecklist--privacy li,
.guideChecklist--comparison li,
.guideChecklist--partners li,
.guideChecklist--packing li,
.guideChecklist--script li,
.guideChecklist--inspection li,
.guideChecklist--terminology li {
  margin: 0;
  border: 1px solid rgba(200, 171, 79, 0.16);
  border-radius: 11px;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.2);
}
.guideLivePrices {
  background: linear-gradient(135deg, rgba(200, 171, 79, 0.11), rgba(255, 255, 255, 0.025));
}
.guideLivePrices .guideLivePriceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-inline-start: 0;
  list-style: none;
}
.guideLivePrices .guideLivePriceItem {
  min-width: 0;
  margin: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(200, 171, 79, 0.2);
  border-radius: 13px;
  padding: 16px;
  background: rgba(8, 8, 8, 0.3);
  line-height: 1.55;
}
.guideLivePriceItem span {
  display: block;
  overflow-wrap: anywhere;
}
.guidePage .guideLivePricePackageLink {
  color: #f3df9b;
  line-height: 1.4;
  text-decoration-color: rgba(243, 223, 155, 0.5);
  text-underline-offset: 3px;
}
.guidePage .guideLivePricePackageLink:hover,
.guidePage .guideLivePricePackageLink:focus-visible {
  color: #fff3c2;
  outline: none;
  text-decoration-color: currentColor;
}
.guideFaq details {
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
}
.guideFaq details:last-child {
  border-block-end: 1px solid rgba(255, 255, 255, 0.12);
}
.guideFaq summary {
  min-height: 52px;
  padding: 15px 4px;
  cursor: pointer;
  color: #f8edc9;
  font-weight: 800;
  line-height: 1.5;
}
.guideFaq p {
  margin: 0;
  padding: 0 4px 18px;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.75;
}
.guideExternalReferences {
  margin-top: 44px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
  padding-block-start: 24px;
}
.guideExternalReferences h2 {
  margin-bottom: 14px;
}
.guideExternalReferences ul {
  margin: 0;
  padding-inline-start: 22px;
}
.guideExternalReferences li + li {
  margin-top: 10px;
}
.guidePage .guideExternalReferences a {
  color: #f3df9b;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}
.guideCta {
  margin-top: 48px;
  border-radius: 22px;
  padding: clamp(24px, 5vw, 40px);
  background: linear-gradient(135deg, rgba(200, 171, 79, 0.18), rgba(255, 255, 255, 0.045));
  text-align: center;
}
.guideCta h2 {
  margin: 0;
  color: #fff3c2;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.3;
}
.guideCta p {
  max-width: 640px;
  margin: 12px auto 22px;
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.7;
}
.guidePage .guideCtaButton {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4b45a;
  border-radius: 12px;
  padding: 11px 20px;
  background: #c8ab4f;
  color: #0b0b0b;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}
.guidePage .guideCtaButton:hover,
.guidePage .guideCtaButton:focus-visible {
  background: #e2ca7d;
  outline: 3px solid rgba(226, 202, 125, 0.26);
  outline-offset: 2px;
}
.guideRelated {
  padding-block: 42px 70px;
}
.guideRelatedGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.guidePage .guideRelatedCard {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(200, 171, 79, 0.18);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.028);
  color: rgba(245, 240, 230, 0.88);
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}
.guideIndexCardTitle {
  display: block;
  color: #f3df9b;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.4;
}
.guideIndexCardDescription {
  display: block;
  margin-block-start: 8px;
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}
.guideIndexListing {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding-block: 48px 72px;
}
.guideIndexListing .guideRelatedGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.guideIndexListing .guideRelatedCard {
  min-height: 168px;
  justify-content: flex-start;
  padding: clamp(18px, 3vw, 24px);
  text-align: start;
}
.guideIndexListing .guideRelatedCard > span {
  width: 100%;
  display: block;
}
.guidePage .guideRelatedCard:hover,
.guidePage .guideRelatedCard:focus-visible {
  border-color: rgba(200, 171, 79, 0.58);
  background: rgba(200, 171, 79, 0.08);
  color: #fff3c2;
  outline: none;
}
.guideFooter {
  border-top: 1px solid rgba(200, 171, 79, 0.18);
  background: rgba(0, 0, 0, 0.24);
}
.guideFooterInner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.guideFooter a {
  color: rgba(245, 240, 230, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 4px;
}
[dir="rtl"] .guideEyebrow {
  letter-spacing: 0;
}
[dir="rtl"] .guideContextLink::before {
  content: "‹";
}
@media (max-width: 900px) {
  .guideSiteHeaderInner {
    padding-block: 10px;
    flex-wrap: wrap;
  }
  .guidePrimaryNav {
    order: 3;
    width: 100%;
    margin-inline-start: 0;
    overflow-x: auto;
  }
  .guidePrimaryNav a {
    flex: 1 0 auto;
  }
  .guideLanguageSwitcher {
    margin-inline-start: 0;
  }
  .guideHeroPanel {
    grid-template-columns: 1fr;
  }
  .guideHeroMedia {
    min-height: 260px;
    max-height: 420px;
    order: -1;
  }
  .guideArticleLayout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block-start: 36px;
  }
  .guideToc {
    position: static;
  }
}
@media (max-width: 620px) {
  .guideSiteHeaderInner,
  .guideHero,
  .guideArticleLayout,
  .guideRelated,
  .guideFooterInner {
    width: min(100% - 24px, 1120px);
  }
  .guideSiteHeaderInner {
    gap: 8px;
  }
  .guidePrimaryNav {
    gap: 4px;
  }
  .guidePrimaryNav a {
    padding-inline: 9px;
    font-size: 0.82rem;
  }
  .guidePrimaryNav a:not(.guideHeaderCta) {
    display: none;
  }
  .guidePrimaryNav .guideHeaderCta {
    width: 100%;
  }
  .guideLanguageList {
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline-start: 0;
    inset-inline-end: auto;
    width: min(320px, calc(100vw - 24px));
    max-height: calc(100vh - 170px);
  }
  .guideBreadcrumbs {
    margin-block-start: 18px;
  }
  .guideHeroPanel {
    border-radius: 18px;
  }
  .guideHeroMedia {
    min-height: 210px;
  }
  .guideHeroCopy {
    padding: 24px 20px 28px;
  }
  .guidePage h1 {
    font-size: clamp(1.75rem, 9.5vw, 2.45rem);
  }
  .guideLead {
    line-height: 1.72;
  }
  .guideEditorialMeta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .guideArticleLayout {
    padding-block-start: 28px;
  }
  .guideSection + .guideSection,
  .guideChecklist,
  .guideFaq {
    margin-top: 34px;
  }
  .guideSection p {
    font-size: 0.98rem;
    line-height: 1.82;
  }
  .guidePracticalNote {
    margin-block: 30px;
    border-radius: 14px;
    padding: 20px;
  }
  .guideContextLink {
    padding: 12px;
  }
  .guideChecklist--privacy ul,
  .guideChecklist--comparison ul,
  .guideChecklist--partners ul,
  .guideChecklist--packing ul,
  .guideChecklist--script ul,
  .guideChecklist--inspection ul,
  .guideChecklist--terminology ul {
    grid-template-columns: 1fr;
  }
  .guidePage .guideInlinePackagesLink {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .guideLivePrices .guideLivePriceList {
    grid-template-columns: 1fr;
  }
  .guideRelatedGrid {
    grid-template-columns: 1fr;
  }
  .guideIndexListing {
    width: min(100% - 24px, 1120px);
    padding-block: 34px 50px;
  }
  .guideIndexListing .guideRelatedGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .guideIndexListing .guideRelatedCard {
    min-height: 0;
    padding: 17px;
  }
  .guideRelated {
    padding-block: 34px 48px;
  }
  .guideFooterInner {
    min-height: 104px;
    flex-direction: column;
    justify-content: center;
  }
}

/* areas.css */
/* ===== Indexable area and directions pages ===== */
body.areaPage {
  min-height: 100vh;
  color: #f5f0e6;
  text-align: start;
}
.areaPage a {
  color: inherit;
}
.areaHero,
.areaContent,
.areaRelated,
.areasHubListing,
.areasHubLocation {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}
.areaBreadcrumbs {
  margin: 26px 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 230, 0.64);
  font-size: 0.88rem;
  line-height: 1.5;
}
.areaBreadcrumbs a {
  color: #e7cf84;
  text-underline-offset: 3px;
}
.areaHeroPanel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: stretch;
  border: 1px solid rgba(200, 171, 79, 0.25);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(200, 171, 79, 0.16), transparent 42%),
    rgba(13, 13, 13, 0.9);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}
.areaHeroCopy {
  align-self: center;
  padding: clamp(28px, 5vw, 62px);
}
.areaHeroMedia {
  min-height: 390px;
  background: #171717;
}
.areaHeroMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
[dir="rtl"] .areaHeroPanel {
  background:
    radial-gradient(circle at top left, rgba(200, 171, 79, 0.16), transparent 42%),
    rgba(13, 13, 13, 0.9);
}
.areaEyebrow {
  margin: 0 0 12px;
  color: #d7b95f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}
[dir="rtl"] .areaEyebrow {
  letter-spacing: 0;
}
.areaPage h1 {
  max-width: 920px;
  margin: 0;
  color: #fff3c2;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.areaLead {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(245, 240, 230, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
  line-height: 1.82;
}
.areaActionGroup {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areaPage .areaButton,
.homeAreas .areaButton {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 171, 79, 0.55);
  border-radius: 12px;
  padding: 10px 18px;
  background: #c8ab4f;
  color: #0b0b0b;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.areaPage .areaButton--secondary,
.homeAreas .areaButton--secondary {
  background: rgba(200, 171, 79, 0.08);
  color: #f3df9b;
}
.areaPage .areaButton:hover,
.areaPage .areaButton:focus-visible,
.homeAreas .areaButton:hover,
.homeAreas .areaButton:focus-visible {
  border-color: #e2ca7d;
  background: #e2ca7d;
  color: #090806;
  outline: 3px solid rgba(226, 202, 125, 0.25);
  outline-offset: 2px;
}
.areaContent {
  padding-block: 52px 22px;
}
.areaLocationNote {
  margin: 0 0 42px;
  border: 1px solid rgba(200, 171, 79, 0.3);
  border-inline-start: 5px solid #d4b45a;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(135deg, rgba(200, 171, 79, 0.13), rgba(255, 255, 255, 0.035));
  color: rgba(245, 240, 230, 0.9);
  line-height: 1.82;
}
.areaLocationNote strong {
  display: block;
  margin-bottom: 8px;
  color: #f3df9b;
  font-size: 1.1rem;
}
.areaAddressLine {
  display: block;
  margin-block-start: 0.65rem;
  color: #f3df9b;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.areaSection + .areaSection {
  margin-top: 46px;
}
.areaSection h2,
.areaRelated h2,
.areasHubListing h2,
.areasHubLocation h2 {
  margin: 0 0 16px;
  color: #f3df9b;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.areaSection p,
.areasHubLocation p,
.areasHubIntro {
  margin: 0;
  color: rgba(245, 240, 230, 0.84);
  font-size: 1.02rem;
  line-height: 1.9;
}
.areaSection p + p {
  margin-top: 16px;
}
.areaRouteGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.areaPackageGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.areaPage .areaPackageCard {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(200, 171, 79, 0.22);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(200, 171, 79, 0.06);
  color: rgba(245, 240, 230, 0.88);
  text-align: start;
  text-decoration: none;
}
.areaPage .areaPackageCard:hover,
.areaPage .areaPackageCard:focus-visible {
  border-color: rgba(200, 171, 79, 0.62);
  background: rgba(200, 171, 79, 0.11);
  outline: none;
}
.areaPackageMeta,
.areaPackagePrice {
  display: block;
  margin-top: 8px;
  color: rgba(245, 240, 230, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}
.areaSection .areaServicesHubLink {
  margin-top: 18px;
}
.areaPackagePrice {
  color: #fff3c2;
  font-weight: 850;
}
.areaRouteCard {
  min-width: 0;
  border: 1px solid rgba(200, 171, 79, 0.2);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.03);
}
.areaRouteCard h3 {
  margin: 0 0 10px;
  color: #fff3c2;
  font-size: 1.08rem;
  line-height: 1.4;
}
.areaRouteCard p {
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.96rem;
  line-height: 1.78;
}
.areaFaq {
  margin-top: 46px;
}
.areaFaq details {
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
}
.areaFaq details:last-child {
  border-block-end: 1px solid rgba(255, 255, 255, 0.12);
}
.areaFaq summary {
  min-height: 52px;
  padding: 15px 4px;
  cursor: pointer;
  color: #f8edc9;
  font-weight: 800;
  line-height: 1.5;
}
.areaFaq p {
  margin: 0;
  padding: 0 4px 18px;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.75;
}
.areaRelated {
  padding-block: 34px 70px;
}
.areaRelatedGuidesTitle {
  margin-block-start: 34px;
}
.areaRelatedGrid,
.areasHubGrid,
.homeAreasGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.areaPage .areaRelatedCard,
.areaPage .areaHubCard,
.homeAreas .homeAreaCard {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(200, 171, 79, 0.2);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 240, 230, 0.88);
  text-align: start;
  text-decoration: none;
}
.areaPage .areaRelatedCard:hover,
.areaPage .areaRelatedCard:focus-visible,
.areaPage .areaHubCard:hover,
.areaPage .areaHubCard:focus-visible,
.homeAreas .homeAreaCard:hover,
.homeAreas .homeAreaCard:focus-visible {
  border-color: rgba(200, 171, 79, 0.58);
  background: rgba(200, 171, 79, 0.08);
  outline: none;
}
.areaCardTitle {
  display: block;
  color: #f3df9b;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.4;
}
.areaCardBody {
  display: block;
  margin-top: 8px;
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}
.areaCardCta {
  margin-top: auto;
  padding-top: 14px;
  color: #f3df9b;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.areasHubLocation {
  margin-top: 44px;
  border: 1px solid rgba(200, 171, 79, 0.28);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(200, 171, 79, 0.07);
}
.areasHubListing {
  padding-block: 48px 72px;
}
.areasHubIntro {
  margin: -4px 0 24px;
}
.areasHubGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.areaPage .areaHubCard {
  min-height: 190px;
}
.homeAreas {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 18px;
  border: 1px solid rgba(200, 171, 79, 0.22);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(145deg, rgba(200, 171, 79, 0.09), rgba(255, 255, 255, 0.025));
  color: #f5f0e6;
  text-align: start;
}
.homeAreasHeader {
  margin-bottom: 22px;
}
.homeAreas h2 {
  margin: 0 0 10px;
  color: #f3df9b;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.25;
}
.homeAreas p {
  margin: 0;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.75;
}
.homeAreasGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.homeAreas .homeAreaCard {
  min-height: 150px;
}
.homeAreasActions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .areaHeroPanel {
    grid-template-columns: 1fr;
  }
  .areaHeroMedia {
    min-height: 260px;
    max-height: 420px;
    order: -1;
  }
  .areaRouteGrid,
  .areaPackageGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .areaHero,
  .areaContent,
  .areaRelated,
  .areasHubListing,
  .areasHubLocation,
  .homeAreas {
    width: min(100% - 24px, 1120px);
  }
  .areaBreadcrumbs {
    margin-top: 18px;
  }
  .areaHeroPanel {
    border-radius: 18px;
  }
  .areaHeroCopy {
    padding: 24px 20px 28px;
  }
  .areaHeroMedia {
    min-height: 220px;
  }
  .areaPage h1 {
    font-size: clamp(1.75rem, 9.5vw, 2.45rem);
  }
  .areaLead,
  .areaSection p,
  .areasHubLocation p,
  .areasHubIntro {
    font-size: 0.98rem;
    line-height: 1.82;
  }
  .areaActionGroup {
    display: grid;
    grid-template-columns: 1fr;
  }
  .areaPage .areaButton,
  .homeAreas .areaButton {
    width: 100%;
  }
  .areaContent {
    padding-block-start: 34px;
  }
  .areaRelatedGrid,
  .areasHubGrid,
  .homeAreasGrid {
    grid-template-columns: 1fr;
  }
  .areaPage .areaHubCard,
  .homeAreas .homeAreaCard {
    min-height: 0;
  }
  .areaRelated,
  .areasHubListing {
    padding-block: 34px 50px;
  }
  .homeAreas {
    margin-top: 28px;
    border-radius: 18px;
    padding: 20px;
  }
}

/* services.css */
.servicePage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(180, 138, 45, 0.17), transparent 30rem),
    #0d0d0d;
  color: #f7f1e4;
}

.homeServices {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(213, 178, 83, 0.24);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(73, 55, 22, 0.3), rgba(16, 15, 13, 0.94));
  color: #f7f1e4;
  text-align: start;
}

.homeServicesHeader {
  margin-bottom: 22px;
}

.homeServicesHeader h2 {
  margin: 0 0 10px;
  color: #f3df9b;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.25;
}

.homeServicesHeader > p:last-child {
  max-width: 74ch;
  margin: 0;
  color: rgba(245, 240, 230, 0.8);
  line-height: 1.75;
}

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

.homeServicesActions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.homeServiceDetailLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 12px auto 4px;
  padding: 8px 15px;
  border: 1px solid color-mix(in srgb, var(--theme1, #c59f45) 60%, transparent);
  border-radius: 999px;
  color: #f5dda0;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

.homeServiceDetailLink:hover,
.homeServiceDetailLink:focus-visible {
  border-color: #f0d17b;
  background: rgba(213, 178, 83, 0.12);
  outline: 2px solid rgba(240, 209, 123, 0.25);
  outline-offset: 2px;
}

.serviceDocument {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 72px;
}

.serviceHero {
  margin-bottom: 28px;
}

.serviceBreadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 16px;
  color: #cfbf9c;
  font-size: 0.92rem;
}

.serviceBreadcrumbs a {
  color: #f0d987;
  text-decoration: none;
}

.serviceHeroPanel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(213, 178, 83, 0.34);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(39, 31, 17, 0.96), rgba(14, 14, 14, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.serviceEyebrow {
  margin: 0 0 12px;
  color: #dfbd61;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.serviceHero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.1rem, 5.2vw, 4.3rem);
  line-height: 1.06;
}

.serviceLead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: #dfd4bc;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
}

.serviceHeroMedia {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(219, 187, 99, 0.28);
  border-radius: 22px;
  background: #17130d;
}

.serviceHeroMedia img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 540px;
  object-fit: cover;
}

.serviceFacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.serviceFact {
  padding: 14px 16px;
  border: 1px solid rgba(213, 178, 83, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.serviceFactLabel {
  display: block;
  color: #bfb08e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.serviceFactValue {
  display: block;
  margin-top: 4px;
  color: #fff2c7;
  font-size: 1.08rem;
  font-weight: 850;
}

.servicePrimaryButton,
.serviceSecondaryButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid #c59f45;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.servicePrimaryButton {
  background: linear-gradient(135deg, #d9b95d, #a47a25);
  color: #120e06;
}

.serviceSecondaryButton {
  background: rgba(255, 255, 255, 0.04);
  color: #f5dda0;
}

.serviceHeroActions,
.serviceCtaActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.serviceContentGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 24px;
  align-items: start;
}

.serviceArticle,
.serviceSidebarCard,
.servicesHubIntro,
.servicesHubListing,
.serviceRelated,
.serviceHelpfulGuides,
.serviceCta {
  border: 1px solid rgba(213, 178, 83, 0.24);
  border-radius: 22px;
  background: rgba(21, 19, 15, 0.9);
}

.serviceArticle {
  padding: clamp(24px, 4vw, 42px);
}

.serviceSection + .serviceSection {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(213, 178, 83, 0.18);
}

.serviceSupportMedia {
  overflow: hidden;
  margin: 34px 0;
  border: 1px solid rgba(213, 178, 83, 0.26);
  border-radius: 18px;
  background: #17130d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.serviceSupportPicture,
.serviceSupportPicture img {
  height: auto;
}

.serviceSupportMedia + .serviceSection {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(213, 178, 83, 0.18);
}

.serviceSection h2,
.serviceFaq h2,
.serviceRelated h2,
.serviceHelpfulGuides h2,
.serviceCta h2,
.servicesHubListing h2,
.servicesHubIntro h2 {
  margin: 0 0 14px;
  color: #f4dda1;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.serviceSection p,
.serviceCta p,
.servicesHubIntro p {
  margin: 0 0 16px;
  color: #d9cfba;
  line-height: 1.8;
}

.serviceIncludedList,
.serviceMassageList {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.serviceIncludedList li,
.serviceMassageList li {
  padding: 13px 15px;
  border-inline-start: 3px solid #c49e43;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #eee4cf;
  line-height: 1.65;
}

.serviceMassageList strong {
  display: block;
  color: #f4dda1;
}

.serviceSidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.serviceSidebarCard {
  padding: 22px;
}

.serviceSidebarCard h2 {
  margin: 0 0 12px;
  color: #f4dda1;
  font-size: 1.2rem;
}

.serviceSidebarCard a {
  color: #f3db97;
}

.serviceFaq {
  margin-top: 34px;
}

.serviceFaq details {
  border-top: 1px solid rgba(213, 178, 83, 0.2);
}

.serviceFaq summary {
  padding: 17px 0;
  color: #fff0c2;
  cursor: pointer;
  font-weight: 800;
}

.serviceFaq details p {
  padding-bottom: 16px;
}

.serviceRelated,
.serviceHelpfulGuides,
.serviceCta,
.servicesHubIntro,
.servicesHubListing {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 36px);
}

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

.serviceCard {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(213, 178, 83, 0.25);
  border-radius: 18px;
  background: #17140f;
  color: #f7f1e4;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.serviceCard:hover,
.serviceCard:focus-visible {
  transform: translateY(-3px);
  border-color: #d7b555;
}

.serviceCard img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.serviceCardPicture {
  height: 230px;
}

.serviceCardCopy {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.serviceCardTitle {
  color: #f5dda0;
  font-size: 1.25rem;
  font-weight: 900;
}

.serviceCardText {
  color: #d2c6ad;
  line-height: 1.65;
}

.serviceCardFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.serviceCardFacts span {
  padding: 5px 9px;
  border: 1px solid rgba(213, 178, 83, 0.2);
  border-radius: 999px;
  background: rgba(213, 178, 83, 0.07);
  color: #f8e5ab;
  font-size: 0.85rem;
  font-weight: 800;
}

.servicesHubListing > p {
  max-width: 74ch;
  margin: 0 0 22px;
  color: #d9cfba;
  line-height: 1.8;
}

.serviceSidebarCard p {
  margin: 0 0 12px;
  color: #d9cfba;
  line-height: 1.7;
}

.serviceCardCta {
  color: #eccd73;
  font-weight: 850;
}

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

.serviceGuideLinks a {
  padding: 15px;
  border: 1px solid rgba(213, 178, 83, 0.22);
  border-radius: 12px;
  color: #f3dc9c;
  text-decoration: none;
}

.serviceCta {
  text-align: center;
  background: linear-gradient(135deg, rgba(81, 61, 23, 0.76), rgba(22, 18, 12, 0.94));
}

.serviceCtaActions {
  justify-content: center;
}

[dir="rtl"] .serviceHeroCopy,
[dir="rtl"] .serviceArticle,
[dir="rtl"] .serviceSidebarCard,
[dir="rtl"] .servicesHubIntro,
[dir="rtl"] .servicesHubListing,
[dir="rtl"] .serviceRelated,
[dir="rtl"] .serviceHelpfulGuides {
  text-align: right;
}

@media (max-width: 820px) {
  .serviceDocument {
    width: min(100% - 20px, 720px);
    padding-top: 18px;
  }

  .serviceHeroPanel,
  .serviceContentGrid {
    grid-template-columns: 1fr;
  }

  .serviceHeroMedia {
    min-height: 290px;
    order: -1;
  }

  .serviceHeroMedia img {
    min-height: 290px;
    max-height: 390px;
  }

  .serviceSidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .serviceHeroPanel {
    padding: 20px;
    border-radius: 20px;
  }

  .serviceFacts,
  .serviceRelatedGrid,
  .servicesHubGrid,
  .homeServicesGrid,
  .serviceGuideLinks {
    grid-template-columns: 1fr;
  }

  .servicePrimaryButton,
  .serviceSecondaryButton {
    width: 100%;
  }

  .serviceHeroActions,
  .serviceCtaActions {
    display: grid;
  }

  .serviceSupportMedia {
    margin: 26px 0;
    border-radius: 14px;
  }

  .homeServices {
    width: min(100% - 24px, 1120px);
    margin-top: 28px;
    padding: 20px;
    border-radius: 18px;
  }

  .homeServicesActions .serviceSecondaryButton {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .serviceCard {
    transition: none;
  }
}

/* about.css */
/* ===== About Bosphorus Spa: trust and local-business hub ===== */
.aboutPage {
  background:
    radial-gradient(circle at 18% 0, rgba(200, 171, 79, 0.11), transparent 32rem),
    #080808;
}

.aboutPage .guideHeroMedia img {
  object-position: center 38%;
}

.aboutPage .guideHeroMedia {
  margin: 0;
}

.aboutName {
  unicode-bidi: isolate;
}

.aboutPage h1 .aboutName {
  white-space: nowrap;
}

.aboutArticle,
.aboutValues,
.aboutVisit,
.aboutExplore {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.aboutArticle {
  padding-block: clamp(38px, 6vw, 72px) 18px;
}

.aboutSectionGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.aboutSection,
.aboutVisitCard {
  border: 1px solid rgba(200, 171, 79, 0.22);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.025);
}

.aboutSection h2,
.aboutValues h2,
.aboutVisit h2,
.aboutExplore h2 {
  margin: 0;
  color: #fff3c2;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.2;
  text-wrap: balance;
}

.aboutSection p,
.aboutValuesIntro,
.aboutVisit p,
.aboutExploreIntro {
  margin: 16px 0 0;
  color: rgba(245, 240, 230, 0.82);
  font-size: 1rem;
  line-height: 1.85;
}

.aboutValues {
  padding-block: clamp(44px, 7vw, 82px) 18px;
}

.aboutValuesIntro,
.aboutExploreIntro {
  max-width: 760px;
}

.aboutValuesGrid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.aboutValueCard {
  min-height: 100%;
  border: 1px solid rgba(200, 171, 79, 0.2);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(200, 171, 79, 0.09), rgba(255, 255, 255, 0.018));
}

.aboutValueCard h3 {
  margin: 0;
  color: #f3df9b;
  font-size: 1.08rem;
  line-height: 1.35;
}

.aboutValueCard p {
  margin: 12px 0 0;
  color: rgba(245, 240, 230, 0.77);
  line-height: 1.72;
}

.aboutVisit {
  padding-block: clamp(44px, 7vw, 82px) 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.aboutVisitCopy {
  align-self: center;
}

.aboutVisitDetails {
  margin: 0;
  display: grid;
  gap: 18px;
}

.aboutVisitDetails div {
  display: grid;
  gap: 5px;
}

.aboutVisitDetails dt {
  color: #d7b95f;
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aboutVisitDetails dd {
  margin: 0;
  color: rgba(245, 240, 230, 0.9);
  line-height: 1.6;
}

.aboutVisitDetails a {
  color: #f3df9b;
  text-underline-offset: 3px;
}

.aboutExplore {
  padding-block: clamp(44px, 7vw, 78px) clamp(54px, 8vw, 92px);
}

.aboutExploreGrid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

.aboutExploreLink {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 171, 79, 0.35);
  border-radius: 13px;
  padding: 12px 14px;
  color: #fff3c2;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.aboutExploreLink:hover,
.aboutExploreLink:focus-visible {
  border-color: rgba(243, 223, 155, 0.75);
  background: rgba(200, 171, 79, 0.13);
  color: #fff;
  outline: 2px solid #f3df9b;
  outline-offset: 3px;
}

.aboutExploreLink--primary {
  background: #b8943f;
  color: #0b0905;
}

[dir="rtl"] .aboutPage .guideEyebrow,
[dir="rtl"] .aboutVisitDetails dt {
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .aboutSectionGrid,
  .aboutVisit {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .aboutArticle,
  .aboutValues,
  .aboutVisit,
  .aboutExplore {
    width: min(100% - 24px, 1120px);
  }

  .aboutSection,
  .aboutVisitCard {
    border-radius: 16px;
    padding: 21px;
  }

  .aboutValuesGrid,
  .aboutExploreGrid,
  .aboutVisit .aboutExploreGrid {
    grid-template-columns: 1fr;
  }

  .aboutValueCard {
    padding: 20px;
  }

  .aboutExploreLink {
    width: 100%;
  }
}

/* faq.css */
/* ===== Search-friendly hammam question hub ===== */
.faqHubPage {
  background:
    radial-gradient(circle at 15% 0, rgba(200, 171, 79, 0.12), transparent 34rem),
    #080808;
}

.faqHubPage .guideHeroMedia img {
  object-position: center 45%;
}

.faqHubIntro,
.faqHubMain,
.faqHubCta {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.faqHubIntro {
  padding-block: clamp(34px, 6vw, 64px) 18px;
}

.faqHubTopicNav {
  margin-top: 24px;
  border: 1px solid rgba(200, 171, 79, 0.24);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.026);
}

.faqHubTopicNav h2 {
  margin: 0 0 14px;
  color: #f3df9b;
  font-size: 1rem;
}

.faqHubTopicLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.faqHubTopicLinks a {
  border: 1px solid rgba(200, 171, 79, 0.32);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(245, 240, 230, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.faqHubTopicLinks a:hover,
.faqHubTopicLinks a:focus-visible {
  border-color: #f3df9b;
  background: rgba(200, 171, 79, 0.12);
  color: #fff;
  outline: 2px solid #f3df9b;
  outline-offset: 3px;
}

.faqHubHealthNote {
  margin-top: 20px;
  border-inline-start: 5px solid #d4b45a;
  border-radius: 14px;
  padding: 18px 20px;
  background: rgba(200, 171, 79, 0.09);
}

.faqHubHealthNote h2 {
  margin: 0;
  color: #fff3c2;
  font-size: 1.05rem;
}

.faqHubHealthNote p {
  margin: 8px 0 0;
  color: rgba(245, 240, 230, 0.8);
  line-height: 1.72;
}

.faqHubMain {
  padding-block: 26px clamp(52px, 8vw, 94px);
}

.faqHubCategory {
  scroll-margin-top: 24px;
}

.faqHubCategory + .faqHubCategory {
  margin-top: clamp(44px, 7vw, 72px);
}

.faqHubCategoryTitle {
  margin: 0 0 18px;
  color: #f3df9b;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.2;
  text-wrap: balance;
}

.faqHubList {
  display: grid;
  gap: 12px;
}

.faqHubItem {
  border: 1px solid rgba(200, 171, 79, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  overflow: clip;
}

.faqHubItem[open] {
  border-color: rgba(243, 223, 155, 0.48);
  background: linear-gradient(145deg, rgba(200, 171, 79, 0.075), rgba(255, 255, 255, 0.025));
}

.faqHubQuestion {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  color: #fff3c2;
  font-size: 1.03rem;
  font-weight: 820;
  line-height: 1.45;
}

.faqHubQuestion::-webkit-details-marker {
  display: none;
}

.faqHubQuestion h3 {
  margin: 0;
  color: inherit;
  font: inherit;
}

.faqHubQuestion::before {
  content: "+";
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 171, 79, 0.42);
  border-radius: 50%;
  color: #d7b95f;
  font-size: 1.1rem;
  line-height: 1;
}

.faqHubItem[open] .faqHubQuestion::before {
  content: "−";
}

.faqHubAnswer {
  padding: 0 20px 21px 64px;
}

[dir="rtl"] .faqHubAnswer {
  padding: 0 64px 21px 20px;
}

.faqHubAnswer p {
  margin: 0;
  color: rgba(245, 240, 230, 0.84);
  font-size: 1rem;
  line-height: 1.85;
}

.faqHubRelated {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  color: rgba(245, 240, 230, 0.58);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faqHubRelated strong {
  color: rgba(245, 240, 230, 0.72);
}

.faqHubRelated a {
  color: #f3df9b;
  font-weight: 760;
  text-underline-offset: 3px;
}

.faqHubCta {
  margin-bottom: clamp(54px, 8vw, 90px);
  border: 1px solid rgba(200, 171, 79, 0.3);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 46px);
  background: linear-gradient(135deg, rgba(200, 171, 79, 0.13), rgba(255, 255, 255, 0.025));
}

.faqHubCta h2 {
  margin: 0;
  color: #fff3c2;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.faqHubCta p {
  max-width: 760px;
  margin: 13px 0 0;
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.78;
}

.faqHubCtaLinks {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faqHubCtaLinks a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 171, 79, 0.42);
  border-radius: 12px;
  padding: 11px 16px;
  color: #fff3c2;
  font-weight: 800;
  text-decoration: none;
}

.faqHubCtaLinks a:first-child {
  background: #b8943f;
  color: #0b0905;
}

.faqHubCtaLinks a:hover,
.faqHubCtaLinks a:focus-visible {
  border-color: #f3df9b;
  color: #fff;
  outline: 2px solid #f3df9b;
  outline-offset: 3px;
}

[dir="rtl"] .faqHubQuestion,
[dir="rtl"] .faqHubAnswer,
[dir="rtl"] .faqHubRelated {
  text-align: right;
}

@media (max-width: 900px) {
  .faqHubIntro,
  .faqHubMain,
  .faqHubCta {
    width: min(100% - 24px, 1120px);
  }

  .faqHubCategory + .faqHubCategory {
    margin-top: 44px;
  }
}

@media (max-width: 620px) {
  .faqHubIntro,
  .faqHubMain,
  .faqHubCta {
    width: min(100% - 24px, 1120px);
  }

  .faqHubTopicNav,
  .faqHubHealthNote {
    border-radius: 14px;
  }

  .faqHubQuestion {
    min-height: 62px;
    padding: 16px;
    font-size: 0.98rem;
  }

  .faqHubAnswer,
  [dir="rtl"] .faqHubAnswer {
    padding: 0 16px 18px;
  }

  .faqHubCtaLinks a {
    width: 100%;
  }
}
