@font-face {
  font-family: "Noto Sans Arabic";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/noto-sans-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cinzel-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cinzel-semibold.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans Arabic";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/noto-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF;
}

:root {
  color-scheme: light;
  --olive: #303b30;
  --olive-deep: #252d26;
  --paper: #fafaf7;
  --stone: #e9e9df;
  --sage: #d8ddce;
  --gold: #b1a17a;
  --ink: #252d26;
  --muted: #646b60;
  --line: #dedfd5;
  --white: #fff;
  --font-body: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  --container: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 15px; line-height: 1.9; -webkit-font-smoothing: antialiased; }
body.menu-open,
body.lightbox-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
svg { display: block; }
button svg, a svg { flex: 0 0 auto; }
p, h1, h2, h3, h4 { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
figure { margin: 0; }
::selection { color: var(--olive-deep); background: var(--sage); }
:focus-visible { outline: 3px solid #8d7945; outline-offset: 5px; }
[hidden] { display: none !important; }
.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.sr-only, .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; inset-inline-start: 12px; z-index: 100; padding: 10px 20px; color: white; background: var(--olive); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.muted { color: var(--muted); }
.icon { width: 22px; height: 22px; flex: 0 0 auto; stroke-width: 1.55; }

.site-header { position: sticky; top: 0; z-index: 40; background: var(--paper); border-bottom: 1px solid rgba(48, 59, 48, .1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 94px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; }
.brand-mark { position: relative; display: block; width: 48px; height: 52px; flex: 0 0 auto; }
.brand-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.brand-mark-light { display: none; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 19px; line-height: 1.7; font-weight: 650; }
.brand-copy small { font-family: "Cinzel", Georgia, "Times New Roman", serif; font-size: 10px; line-height: 1.5; letter-spacing: .7px; direction: ltr; text-align: start; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { position: relative; padding-block: 12px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.site-nav a::after { position: absolute; content: ""; bottom: 5px; inset-inline: 0; height: 1px; background: var(--olive); transform: scaleX(0); transition: transform .18s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 17px; }
.language-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 0; border: 0; background: transparent; font-size: 12px; font-weight: 500; white-space: nowrap; color: var(--ink); }
.language-toggle .icon { width: 16px; height: 16px; }
.header-contact { white-space: nowrap; }
.menu-toggle { display: none; position: relative; align-items: center; justify-content: center; flex-direction: column; gap: 6px; width: 40px; height: 40px; padding: 8px; border: 1px solid var(--line); background: transparent; color: var(--ink); }
.menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: transform .18s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 11px 27px; border: 1px solid var(--olive); border-radius: 2px; color: var(--white); background: var(--olive); font-size: 14px; font-weight: 500; line-height: 1.8; text-align: center; transition: background .18s ease, border-color .18s ease; }
.button:hover { background: var(--olive-deep); border-color: var(--olive-deep); }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--olive); }
.button-light:hover { background: var(--stone); border-color: var(--stone); }
.button-outline { background: transparent; color: var(--olive); border-color: #858d7f; }
.button-outline:hover { background: var(--stone); border-color: var(--olive); }
.button-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.65); }
.button-outline-light:hover { background: rgba(255,255,255,.12); border-color: white; }
.button-small { min-height: 40px; padding: 6px 19px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 11px; padding-bottom: 3px; color: var(--olive); font-size: 13px; font-weight: 550; border-bottom: 1px solid #b6bcac; }
.text-link:hover { border-color: var(--olive); }
.text-link .icon, .room-link .icon { width: 18px; height: 18px; }
[dir="ltr"] .directional-icon, [dir="ltr"] .icon-arrow { transform: rotate(180deg); }

.home-hero { position: relative; isolation: isolate; min-height: 675px; display: flex; flex-direction: column; justify-content: center; color: white; background: var(--olive) url("../images/hero.jpg") center 53% / cover no-repeat; }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(270deg, rgba(18, 32, 24, .72) 0%, rgba(18, 32, 24, .46) 43%, rgba(18, 32, 24, .08) 100%); }
[dir="ltr"] .home-hero::before { background: linear-gradient(90deg, rgba(18, 32, 24, .72) 0%, rgba(18, 32, 24, .46) 43%, rgba(18, 32, 24, .08) 100%); }
.hero-image, .hero-media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-content { padding-top: 62px; padding-bottom: 124px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 5px 14px; border: 1px solid rgba(255, 255, 255, .46); color: #f0f2e9; font-size: 12px; line-height: 1.8; margin-bottom: 26px; }
.hero-kicker::before { content: ""; height: 5px; width: 5px; border-radius: 50%; background: #d8ddce; }
.hero-title { max-width: 680px; font-size: clamp(44px, 4.7vw, 68px); font-weight: 500; line-height: 1.5; letter-spacing: -.9px; }
.hero-description { max-width: 500px; margin-top: 19px; color: rgba(255,255,255,.88); font-size: 15px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-bottom { position: absolute; bottom: 31px; inset-inline: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.82); font-size: 11px; }
.hero-note { display: flex; align-items: center; gap: 9px; }
.hero-note .icon { width: 17px; height: 17px; }
.scroll-link { display: inline-flex; align-items: center; gap: 10px; }
.scroll-link .icon { width: 19px; height: 19px; }
.welcome-strip { background: var(--stone); }
.welcome-strip > .container { display: flex; justify-content: space-between; align-items: center; padding-block: 25px; gap: 24px; }
.welcome-item { display: flex; align-items: center; justify-content: center; gap: 13px; flex: 1; font-size: 13px; }
.welcome-item + .welcome-item { border-inline-start: 1px solid #cdd0c2; }
.welcome-item .icon { width: 26px; height: 26px; color: #5a6752; }
.welcome-item strong { display: block; font-weight: 550; }
.welcome-item small { display: block; font-size: 11px; color: var(--muted); }

.section { padding-block: 94px; }
.section-tinted { background: #f0f1ea; }
.eyebrow { display: block; margin-bottom: 15px; color: #667259; font-size: 12px; font-weight: 600; }
h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.65; font-weight: 550; letter-spacing: -.5px; }
h3 { font-size: 21px; line-height: 1.7; font-weight: 550; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.section-heading p { max-width: 600px; margin-top: 11px; font-size: 14px; color: var(--muted); }
.section-heading .text-link { flex-shrink: 0; margin-bottom: 9px; }
.section-copy p, .intro-copy p, .facility-copy p { color: var(--muted); font-size: 14px; line-height: 2.1; }
.section-copy p + p, .intro-copy p + p, .facility-copy p + p { margin-top: 15px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 88px; }
.intro-copy h2 { max-width: 430px; margin-bottom: 21px; }
.intro-copy .text-link, .intro-copy .button { margin-top: 25px; }
.intro-visual { position: relative; }
.intro-visual > img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }
.image-caption { display: flex; align-items: center; gap: 8px; margin-top: 11px; color: var(--muted); font-size: 10px; }
.image-caption .icon { width: 15px; height: 15px; }
.room-grid, .rooms-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.room-card { min-width: 0; background: white; }
.room-image { display: block; position: relative; overflow: hidden; }
.room-image img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.room-card:hover .room-image img { transform: scale(1.025); }
.room-content { padding: 23px 25px 26px; }
.room-tag { display: block; color: #667259; margin-bottom: 5px; font-size: 10px; }
.room-content h3 { margin-bottom: 9px; }
.room-content > p { font-size: 12px; line-height: 2; color: var(--muted); }
.room-link { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 23px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 550; color: var(--olive); }
.room-link:hover { color: #627553; }
.room-facts { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 17px; color: var(--muted); font-size: 11px; }
.room-facts span { display: inline-flex; align-items: center; gap: 6px; }
.room-facts .icon { height: 17px; width: 17px; }
.feature-band { background: var(--olive); color: white; padding-block: 51px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-item { padding-inline: 30px; }
.feature-item:first-child { padding-inline-start: 0; }
.feature-item:last-child { padding-inline-end: 0; }
.feature-item + .feature-item { border-inline-start: 1px solid rgba(255,255,255,.17); }
.feature-item > .icon { width: 30px; height: 30px; margin-bottom: 17px; color: var(--sage); }
.feature-item h3 { font-size: 17px; margin-bottom: 7px; }
.feature-item p { font-size: 12px; line-height: 1.95; color: #d0d5c9; }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.experience-card { position: relative; overflow: hidden; min-height: 320px; background: var(--olive); color: white; }
.experience-card > img { width: 100%; height: 100%; min-height: 320px; aspect-ratio: 16 / 10; object-fit: cover; }
.experience-card::after { position: absolute; content: ""; inset: 30% 0 0; background: linear-gradient(transparent, rgba(16, 26, 19, .75)); pointer-events: none; }
.experience-content { position: absolute; z-index: 1; bottom: 26px; inset-inline: 30px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 20px; }
.experience-content h3 { grid-column: 1 / -1; }
.experience-content > span { font-size: 12px; color: #e2e5dc; }
.experience-content h3 { font-size: 25px; }
.experience-content p { color: #e2e5dc; font-size: 12px; }
.experience-content .text-link { color: white; border-color: rgba(255,255,255,.5); font-size: 12px; flex-shrink: 0; }
.contact-banner { padding-block: 53px; background: var(--sage); }
.contact-banner > .container { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.contact-banner h2 { font-size: 30px; }
.contact-banner p { color: #58634f; margin-top: 6px; font-size: 13px; }
.contact-banner .button { flex-shrink: 0; }

.site-footer { background: var(--olive); color: var(--paper); padding-top: 62px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 70px; padding-bottom: 48px; }
.site-footer .brand-mark-dark { display: none; }
.site-footer .brand-mark-light { display: block; }
.site-footer .brand { margin-bottom: 20px; }
.site-footer .brand-copy strong { font-size: 21px; }
.footer-top h3, .footer-top h4 { margin-bottom: 16px; font-size: 14px; font-weight: 550; }
.footer-top p { max-width: 300px; font-size: 12px; line-height: 2; color: #c6cebf; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 20px; }
.footer-nav a { width: fit-content; font-size: 12px; color: #d5dacc; }
.footer-nav a:hover, .site-footer a.email-link:hover { color: white; text-decoration: underline; text-underline-offset: 5px; }
.site-footer .email-link { display: inline-block; margin-top: 7px; font-family: var(--font-body); font-size: 16px; color: white; }
.footer-email { display: inline-block; max-width: 100%; margin-bottom: 10px; color: white; font-size: 16px; overflow-wrap: anywhere; }
.footer-email:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.16); font-size: 10px; color: #bec7b7; }
.footer-bottom p { max-width: 680px; }

.page-intro { padding-block: 52px 68px; background: var(--stone); text-align: center; }
.breadcrumb { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 11px; margin-bottom: 27px; color: #65705c; font-size: 11px; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumb .icon { width: 13px; height: 13px; }
.page-intro .eyebrow { margin-bottom: 9px; }
.page-intro h1 { font-size: clamp(36px, 4vw, 52px); font-weight: 550; line-height: 1.6; }
.page-intro p { max-width: 650px; margin: 15px auto 0; font-size: 14px; color: #626b5b; line-height: 2; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 83px; align-items: center; }
.story-image img { aspect-ratio: 4 / 5; max-height: 580px; object-fit: cover; }
.prose h2 { margin-bottom: 23px; }
.prose p { color: var(--muted); font-size: 14px; line-height: 2.2; }
.prose p + p { margin-top: 20px; }
.prose .button, .prose .text-link { margin-top: 27px; }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 45px; }
.value-item { padding-block: 24px 7px; border-top: 1px solid #b9c0ad; }
.value-item > .icon { width: 31px; height: 31px; margin-bottom: 21px; color: #697b5b; }
.value-item h3 { font-size: 21px; margin-bottom: 12px; }
.value-item p { max-width: 350px; font-size: 13px; line-height: 2; color: var(--muted); }
.notice { display: flex; align-items: start; gap: 12px; padding: 18px 23px; margin-top: 34px; background: var(--stone); border-inline-start: 2px solid #8f9b82; color: #616b58; font-size: 12px; }
.notice > .icon { width: 20px; height: 20px; margin-top: 2px; }
.container > .notice:first-child { margin-top: 0; margin-bottom: 34px; }
.room-help { margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); }
.room-help h2 { margin-bottom: 12px; font-size: 29px; }
.room-help p { max-width: 690px; font-size: 13px; color: var(--muted); }
.room-help .button { margin-top: 21px; }
.notice p + p { margin-top: 7px; }
.facility-row { display: flex; align-items: center; gap: 78px; }
.facility-row + .facility-row { margin-top: 78px; }
.facility-row:nth-child(even) { flex-direction: row-reverse; }
.facility-image, .facility-copy { width: calc(50% - 39px); }
.facility-image img { aspect-ratio: 4 / 3; object-fit: cover; }
.facility-copy > .icon { width: 34px; height: 34px; margin-bottom: 20px; color: #758769; }
.facility-copy h2 { margin-bottom: 15px; font-size: 31px; }
.facility-copy .text-link { margin-top: 20px; }

.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 35px; }
.gallery-filters button { min-width: 91px; min-height: 42px; padding: 7px 22px; border: 1px solid #ccd1c2; background: transparent; color: #59664f; border-radius: 2px; font-size: 12px; }
.gallery-filters button:hover { background: var(--stone); }
.gallery-filters button[aria-pressed="true"], .gallery-filters button.active { background: var(--olive); border-color: var(--olive); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.gallery-item { min-width: 0; }
.gallery-trigger { display: block; width: 100%; padding: 0; border: 0; background: white; color: var(--ink); text-align: start; }
.gallery-trigger img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-label { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 15px 17px; font-size: 13px; }
.gallery-label .icon { width: 17px; height: 17px; color: #77866c; }
.gallery-trigger:hover .gallery-label { background: var(--stone); }
.gallery-count { margin-top: 26px; text-align: center; font-size: 12px; color: var(--muted); }
#gallery-status { margin-top: -17px; margin-bottom: 25px; }
.gallery-dialog { width: min(1100px, 92vw); max-width: none; max-height: 93dvh; padding: 0; border: 0; background: var(--olive-deep); color: white; }
.gallery-dialog::backdrop { background: rgba(7, 13, 9, .82); }
.lightbox-content { width: 100%; }
.lightbox-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 22px; }
.lightbox-toolbar p, .lightbox-toolbar h2 { font-size: 15px; line-height: 1.6; font-weight: 450; }
.lightbox-toolbar button, .lightbox-controls button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; min-width: 42px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: white; font-size: 12px; }
.lightbox-toolbar button:hover, .lightbox-controls button:hover { background: rgba(255,255,255,.12); }
.lightbox-image, .lightbox-image img, img.lightbox-image { width: 100%; max-height: 69dvh; object-fit: contain; }
.lightbox-controls { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 16px 22px; }
.lightbox-controls > p, .lightbox-controls > span { min-width: 55px; text-align: center; font-size: 12px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: start; }
.contact-details { padding: 43px 38px; background: var(--olive); color: white; }
.contact-details > h2 { font-size: 28px; margin-bottom: 13px; }
.contact-details > .icon { width: 33px; height: 33px; margin-bottom: 24px; color: var(--sage); }
.contact-details > p { color: #d2d9ca; font-size: 13px; line-height: 2; }
.contact-details .eyebrow { color: var(--sage); }
.contact-detail { padding-top: 27px; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.22); }
.contact-detail > .icon { width: 25px; height: 25px; margin-bottom: 12px; color: var(--sage); }
.contact-detail h3 { margin-bottom: 6px; font-size: 14px; }
.contact-detail p { color: #d2d9ca; font-size: 12px; line-height: 2; }
.email-link { font-family: Georgia, "Times New Roman", serif; font-size: clamp(21px, 2.1vw, 29px); direction: ltr; unicode-bidi: isolate; overflow-wrap: anywhere; }
.contact-form { min-width: 0; }
.contact-form h2 { margin-bottom: 10px; font-size: 28px; }
.contact-form > p { margin-bottom: 26px; color: var(--muted); font-size: 13px; }
.contact-form > div:first-child:not(.form-row) { margin-bottom: 26px; }
.contact-form > div:first-child:not(.form-row) > p { font-size: 13px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { margin-bottom: 19px; }
.form-field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 550; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-width: 0; min-height: 49px; padding: 10px 13px; border: 1px solid #ccd1c2; border-radius: 1px; background: #fff; color: var(--ink); font-size: 14px; line-height: 1.8; }
.form-field textarea { display: block; resize: vertical; min-height: 140px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #848b7e; font-size: 12px; opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #778868; outline: 2px solid #b7c0ac; outline-offset: 2px; }
.form-field input[type="email"] { direction: ltr; text-align: start; }
.form-note { max-width: 530px; color: var(--muted); font-size: 11px; line-height: 1.9; margin-top: 17px; }
#contact-status:not(:empty) { margin-top: 20px; padding: 14px 17px; background: var(--stone); border-inline-start: 2px solid #8f9b82; font-size: 12px; line-height: 1.9; }

[lang="en"] h1, [lang="en"] h2, [lang="en"] h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
[lang="en"] .hero-title { max-width: 670px; font-size: clamp(46px, 5.3vw, 76px); line-height: 1.13; letter-spacing: -1.8px; }
[lang="en"] .hero-description { margin-top: 25px; line-height: 1.85; }
[lang="en"] h2 { line-height: 1.22; }
[lang="en"] h3 { line-height: 1.35; }
[lang="en"] .section-heading p { margin-top: 17px; }
[lang="en"] .brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.4; }
[lang="en"] .brand-copy small { font-family: var(--font-body); letter-spacing: .3px; }
[lang="en"] .page-intro h1 { line-height: 1.22; }
[lang="en"] .page-intro p { margin-top: 22px; }
[lang="en"] .feature-item h3 { font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 1.5; }
[lang="en"] .footer-top h3 { font-family: var(--font-body); font-weight: 550; }

@media (min-width: 1600px) {
  .home-hero { min-height: 730px; }
}

@media (max-width: 1180px) {
  .header-inner { gap: 22px; }
  .site-nav { gap: 19px; }
  .site-nav a { font-size: 12px; }
  .header-actions { gap: 13px; }
  .header-contact { display: none; }
  .intro-grid, .story-grid { gap: 50px; }
  .contact-grid { gap: 40px; }
  .footer-top { gap: 45px; }
}

@media (max-width: 1050px) {
  .site-header { z-index: 50; }
  .header-inner { min-height: 82px; }
  .site-nav { display: none; position: absolute; top: 100%; inset-inline: 0; align-items: stretch; flex-direction: column; gap: 0; padding: 13px 40px 25px; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 12px 18px rgba(20,30,20,.07); max-height: calc(100dvh - 82px); overflow-y: auto; }
  .site-nav.is-open, .site-header.menu-open .site-nav { display: flex; }
  .site-nav a { width: 100%; padding-block: 13px; font-size: 15px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { content: none; }
  .site-nav a[aria-current="page"] { color: #596f49; font-weight: 650; }
  .header-actions { margin-inline-start: auto; gap: 24px; }
  .header-contact { display: inline-flex; }
  .menu-toggle { display: inline-flex; }
  .home-hero { min-height: 625px; }
  .hero-title { font-size: 56px; max-width: 590px; }
  .section { padding-block: 73px; }
  .intro-grid { gap: 40px; }
  .room-grid, .rooms-list { gap: 18px; }
  .room-content { padding: 20px 18px; }
  .feature-item { padding-inline: 22px; }
  .experience-content { inset-inline: 22px; bottom: 24px; flex-wrap: wrap; gap: 12px; }
  .facility-row { gap: 44px; }
  .facility-image, .facility-copy { width: calc(50% - 22px); }
  .contact-grid { gap: 30px; grid-template-columns: 1fr 1.2fr; }
  .contact-details { padding: 30px 24px; }
  .email-link { font-size: 23px; }
  .gallery-grid { gap: 18px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 95px; }
  body { font-size: 14px; }
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 76px; gap: 16px; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 43px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 9px; letter-spacing: .7px; }
  .header-actions { gap: 17px; }
  .header-contact { display: none; }
  .language-toggle { font-size: 11px; }
  .language-toggle .icon { width: 15px; height: 15px; }
  .site-nav { padding-inline: 20px; max-height: calc(100dvh - 76px); }
  .home-hero { min-height: 660px; background-position: 43% center; }
  .home-hero::before { background: linear-gradient(270deg, rgba(18,32,24,.76), rgba(18,32,24,.42)); }
  [dir="ltr"] .home-hero::before { background: linear-gradient(90deg, rgba(18,32,24,.76), rgba(18,32,24,.42)); }
  .hero-content { padding-block: 48px 108px; }
  .hero-kicker { font-size: 11px; margin-bottom: 21px; }
  .hero-title { font-size: 43px; line-height: 1.55; letter-spacing: -.6px; max-width: 510px; }
  .hero-description { max-width: 410px; margin-top: 15px; font-size: 13px; line-height: 2.1; }
  .hero-actions { margin-top: 27px; gap: 10px; }
  .button { min-height: 48px; font-size: 13px; padding-inline: 22px; }
  .button-small { min-height: 40px; font-size: 12px; padding-inline: 16px; }
  .hero-bottom { bottom: 23px; font-size: 10px; gap: 18px; }
  .hero-note { max-width: 73%; align-items: flex-start; }
  .hero-note .icon { margin-top: 3px; }
  .scroll-link { gap: 4px; white-space: nowrap; }
  .welcome-strip > .container { gap: 16px; padding-block: 22px; }
  .welcome-item { flex-direction: column; gap: 7px; text-align: center; font-size: 11px; line-height: 1.8; }
  .welcome-item .icon { width: 25px; height: 25px; }
  .welcome-item small { font-size: 9px; }
  .welcome-item + .welcome-item { padding-inline-start: 16px; }
  .section { padding-block: 58px; }
  .section-heading { gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
  .section-heading p { font-size: 12px; }
  .section-heading .text-link { margin-bottom: 0; }
  h2 { font-size: 29px; }
  h3 { font-size: 21px; }
  .eyebrow { margin-bottom: 10px; font-size: 11px; }
  .intro-grid, .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-copy h2 { max-width: 100%; margin-bottom: 17px; }
  .intro-copy p, .section-copy p, .facility-copy p { font-size: 13px; }
  .intro-copy .text-link { margin-top: 20px; }
  .intro-visual > img { aspect-ratio: 5 / 4; }
  .room-grid, .rooms-list { grid-template-columns: 1fr; gap: 26px; }
  .room-image img { aspect-ratio: 5 / 3; }
  .room-content { padding: 21px 23px 23px; }
  .room-content > p { font-size: 13px; }
  .room-link { margin-top: 18px; }
  .feature-band { padding-block: 38px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: 31px; }
  .feature-item, .feature-item:first-child, .feature-item:last-child { padding-inline: 20px; }
  .feature-item:nth-child(odd) { padding-inline-start: 0; border-inline-start: 0; }
  .feature-item:nth-child(even) { padding-inline-end: 0; }
  .feature-item > .icon { width: 26px; height: 26px; margin-bottom: 13px; }
  .feature-item h3 { font-size: 16px; }
  .feature-item p { font-size: 11px; }
  .experience-grid { grid-template-columns: 1fr; gap: 23px; }
  .experience-card, .experience-card > img { min-height: 285px; }
  .experience-content { inset-inline: 24px; }
  .experience-content h3 { font-size: 23px; }
  .contact-banner { padding-block: 40px; }
  .contact-banner > .container { align-items: flex-start; flex-direction: column; gap: 22px; }
  .contact-banner h2 { font-size: 27px; }
  .contact-banner p { font-size: 12px; }
  .site-footer { padding-top: 43px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 25px; padding-bottom: 35px; }
  .footer-top > :first-child { grid-column: 1 / -1; }
  .site-footer .brand { margin-bottom: 13px; }
  .footer-top p { max-width: 400px; }
  .footer-nav { column-gap: 15px; }
  .footer-top h3, .footer-top h4 { margin-bottom: 12px; }
  .site-footer .email-link, .footer-email { font-size: 13px; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 9px; font-size: 9px; padding-block: 18px; }
  .page-intro { padding-block: 32px 47px; }
  .breadcrumb { margin-bottom: 19px; font-size: 10px; }
  .page-intro h1 { font-size: 37px; }
  .page-intro p { margin-top: 11px; font-size: 12px; }
  .story-image img { max-height: 460px; aspect-ratio: 5 / 4; }
  .prose h2 { margin-bottom: 17px; }
  .prose p { font-size: 13px; }
  .prose p + p { margin-top: 15px; }
  .values-grid { grid-template-columns: 1fr; gap: 25px; }
  .value-item { padding-top: 23px; }
  .value-item > .icon { margin-bottom: 15px; }
  .value-item h3 { margin-bottom: 7px; }
  .value-item p { max-width: 100%; }
  .notice { padding: 17px 18px; font-size: 11px; margin-top: 28px; }
  .facility-row, .facility-row:nth-child(even) { flex-direction: column; gap: 25px; }
  .facility-row + .facility-row { margin-top: 51px; }
  .facility-image, .facility-copy { width: 100%; }
  .facility-image img { aspect-ratio: 5 / 4; }
  .facility-copy > .icon { width: 28px; height: 28px; margin-bottom: 13px; }
  .facility-copy h2 { font-size: 27px; margin-bottom: 12px; }
  .gallery-filters { gap: 7px; margin-bottom: 25px; }
  .gallery-filters button { min-width: 75px; min-height: 40px; padding-inline: 17px; font-size: 11px; }
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
  .gallery-label { padding: 11px; font-size: 11px; gap: 5px; }
  .gallery-label .icon { width: 15px; height: 15px; }
  .gallery-dialog { width: calc(100vw - 24px); }
  .lightbox-toolbar { padding: 12px; gap: 10px; }
  .lightbox-toolbar p, .lightbox-toolbar h2 { font-size: 12px; }
  .lightbox-toolbar button { padding-inline: 10px; }
  .lightbox-controls { padding: 12px; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .contact-details { padding: 29px 25px; }
  .contact-details > h2, .contact-form h2 { font-size: 26px; }
  .email-link { font-size: 26px; }
  .contact-detail { padding-top: 22px; margin-top: 22px; }
  .form-row { gap: 15px; }
  [lang="en"] .brand-copy strong { font-size: 17px; }
  [lang="en"] .hero-title { font-size: 51px; max-width: 470px; letter-spacing: -1px; line-height: 1.16; }
  [lang="en"] .hero-description { margin-top: 22px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 32px); }
  .header-inner { gap: 9px; }
  .header-actions { gap: 11px; }
  .brand-mark { width: 28px; height: 37px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; letter-spacing: .5px; }
  .language-toggle .icon { display: none; }
  .menu-toggle { width: 35px; height: 35px; }
  .home-hero { min-height: 620px; }
  .hero-title { font-size: 37px; }
  .hero-kicker { font-size: 10px; }
  .hero-description { font-size: 12px; }
  .hero-actions { gap: 8px; }
  .hero-actions .button { padding-inline: 15px; font-size: 12px; gap: 7px; }
  .hero-bottom { gap: 12px; font-size: 9px; }
  .hero-note { max-width: 71%; }
  .scroll-link .icon { width: 16px; }
  .welcome-strip > .container { gap: 10px; }
  .welcome-item { font-size: 10px; }
  .welcome-item + .welcome-item { padding-inline-start: 10px; }
  .welcome-item small { font-size: 8px; }
  .gallery-grid { gap: 11px; }
  .gallery-label { font-size: 10px; padding: 9px; }
  .gallery-label .icon { display: none; }
  .gallery-filters { gap: 6px; }
  .gallery-filters button { min-width: auto; padding-inline: 15px; }
  .footer-top { grid-template-columns: 1fr; gap: 27px; }
  .footer-top > :first-child { grid-column: auto; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .site-footer .email-link { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .email-link { font-size: 23px; }
  [lang="en"] .brand-copy strong { font-size: 15px; }
  [lang="en"] .hero-title { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Commercial profile */
.business-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(37,45,38,.98) 0 57%, rgba(37,45,38,.82) 100%),
    url("../images/lobby.jpg") center 46% / cover;
}
.business-hero::after { position: absolute; content: ""; inset: 24px; border: 1px solid rgba(255,255,255,.15); pointer-events: none; }
.business-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr); align-items: end; gap: 80px; }
.business-hero-copy { max-width: 790px; }
.business-hero .eyebrow { color: #d7d0be; }
.business-hero h1 { max-width: 760px; margin: 14px 0 22px; font-size: clamp(42px,5.2vw,72px); line-height: 1.28; color: var(--white); }
.business-hero-copy > p:not(.eyebrow) { max-width: 710px; color: rgba(255,255,255,.82); font-size: 17px; }
.business-identity { display: grid; justify-items: center; gap: 18px; padding: 34px 28px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); backdrop-filter: blur(9px); text-align: center; }
.business-identity > img { width: 112px; height: 90px; object-fit: contain; }
.business-identity div { display: grid; gap: 4px; }
.business-identity strong { font-size: 22px; font-weight: 650; }
.business-identity span { color: #d7d0be; font-size: 12px; }
.business-identity p { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.8; }
[lang="en"] .business-identity strong { font-family: "Cinzel", Georgia, serif; font-weight: 600; }
.business-facts { padding: 34px 0 28px; color: var(--white); background: #202a22; }
.facts-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.facts-grid article { display: grid; gap: 2px; padding: 6px 28px; border-inline-start: 1px solid rgba(255,255,255,.14); }
.facts-grid article:first-child { border-inline-start: 0; }
.facts-grid strong { font-family: "Cinzel", Georgia, serif; color: #d9ccb0; font-size: 34px; font-weight: 400; line-height: 1.2; }
.facts-grid span { color: rgba(255,255,255,.75); font-size: 12px; }
.facts-note { margin-top: 20px; color: rgba(255,255,255,.58); font-size: 10px; text-align: center; }
.business-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; margin-bottom: 60px; }
.business-intro h2 { max-width: 620px; }
.business-intro > p { color: var(--muted); }
.service-ledger { border-top: 1px solid var(--line); }
.service-ledger article { display: grid; grid-template-columns: 84px minmax(0,1fr); gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.service-ledger article > span { font-family: "Cinzel", Georgia, serif; color: var(--gold); font-size: 16px; }
.service-ledger article > div { display: grid; grid-template-columns: minmax(220px,.7fr) minmax(0,1.3fr); gap: 55px; align-items: baseline; }
.service-ledger h3 { font-size: 23px; }
.service-ledger p { color: var(--muted); }
.operations-grid { display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid #d5d8cc; }
.operations-grid article { padding: 36px 28px; border-inline-start: 1px solid #d5d8cc; }
.operations-grid article:first-child { border-inline-start: 0; }
.operations-grid strong { display: block; margin-bottom: 20px; font-family: "Cinzel", Georgia, serif; color: #8d7945; font-size: 34px; font-weight: 400; }
.operations-grid h3 { margin-bottom: 8px; font-size: 18px; }
.operations-grid p { color: var(--muted); font-size: 13px; }
.facilities-business-grid { display: grid; grid-template-columns: 1fr 1fr; }
.business-panel { min-height: 500px; padding: 64px; background: var(--sage); }
.business-panel-dark { color: var(--white); background: var(--olive); }
.business-panel .eyebrow { color: #6e755f; }
.business-panel-dark .eyebrow { color: #cfc5ad; }
.business-panel h2 { margin-bottom: 40px; max-width: 520px; }
.business-panel-dark h2 { color: var(--white); }
.check-list { display: grid; }
.check-list li { position: relative; padding: 15px 30px 15px 0; border-top: 1px solid rgba(48,59,48,.18); }
[dir="ltr"] .check-list li { padding: 15px 0 15px 30px; }
.business-panel-dark .check-list li { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.82); }
.check-list li::before { position: absolute; content: ""; top: 25px; inset-inline-start: 2px; width: 12px; height: 6px; border-inline-start: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); }
[dir="ltr"] .check-list li::before { transform: rotate(-45deg); }
.commercial-contact { padding: 90px 0; color: var(--white); background: #202a22; }
.commercial-contact-grid { display: grid; grid-template-columns: minmax(0,1fr) 480px; gap: 100px; align-items: center; }
.commercial-contact .eyebrow { color: #cfc5ad; }
.commercial-contact h2 { max-width: 650px; color: var(--white); }
.commercial-contact-grid > div > p:last-child { max-width: 690px; margin-top: 20px; color: rgba(255,255,255,.7); }
.commercial-card { display: grid; gap: 7px; padding: 38px; color: var(--ink); background: var(--paper); font-style: normal; }
.commercial-card > span,.commercial-card > small { color: var(--muted); }
.commercial-card > strong { margin: 5px 0 2px; font-size: 23px; }
.commercial-card > a { width: max-content; max-width: 100%; font-family: "Cinzel", Georgia, serif; font-size: 17px; overflow-wrap: anywhere; }
.commercial-actions { display: flex; gap: 10px; margin-top: 24px; }
.commercial-actions .button { flex: 1; }

@media (max-width: 1180px) {
  .business-hero-grid { grid-template-columns: minmax(0,1fr) 290px; gap: 45px; }
  .business-panel { padding: 50px 40px; }
  .commercial-contact-grid { gap: 60px; }
}
@media (max-width: 900px) {
  .business-hero { padding: 70px 0; }
  .business-hero-grid,.business-intro,.commercial-contact-grid { grid-template-columns: 1fr; }
  .business-hero-grid { align-items: start; }
  .business-identity { grid-template-columns: 80px 1fr; justify-items: start; text-align: start; }
  .business-identity > img { grid-row: 1 / 3; width: 80px; height: 70px; }
  .business-identity p { grid-column: 1 / -1; }
  .facts-grid,.operations-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid article:nth-child(3),.operations-grid article:nth-child(3) { border-inline-start: 0; }
  .facts-grid article:nth-child(n+3),.operations-grid article:nth-child(n+3) { margin-top: 26px; }
  .business-intro { gap: 25px; }
  .service-ledger article > div { grid-template-columns: 1fr; gap: 7px; }
  .facilities-business-grid { grid-template-columns: 1fr; }
  .commercial-contact-grid { gap: 42px; }
  .commercial-card { max-width: 600px; }
}
@media (max-width: 540px) {
  .business-hero { padding: 58px 0; }
  .business-hero::after { inset: 10px; }
  .business-hero h1 { font-size: 38px; }
  .business-identity { padding: 24px 20px; }
  .facts-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .facts-grid article { padding: 5px 15px; }
  .facts-grid strong { font-size: 27px; }
  .service-ledger article { grid-template-columns: 48px minmax(0,1fr); gap: 12px; }
  .operations-grid { grid-template-columns: 1fr; }
  .operations-grid article,.operations-grid article:nth-child(3) { margin-top: 0; border-inline-start: 0; border-top: 1px solid #d5d8cc; }
  .operations-grid article:first-child { border-top: 0; }
  .business-panel { min-height: auto; padding: 42px 24px; }
  .commercial-card { padding: 28px 22px; }
  .commercial-actions { flex-direction: column; }
}
