:root {
  --swiss-red: #d71920;
  --swiss-red-bright: #ee2530;
  --swiss-red-dark: #a90d15;
  --ink: #131416;
  --muted: #6f7278;
  --cream: #f7f3ee;
  --white: #ffffff;
  --line: rgba(19, 20, 22, .1);
  --shadow: 0 24px 70px rgba(22, 18, 15, .14);
  --radius: 24px;
  --font-sans: "DM Sans", "Cairo", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}
body[dir="rtl"] { font-family: "Cairo", sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--swiss-red); color: #fff; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #0b0b0c;
  transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse { 50% { transform: scale(.88); opacity: .75; } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 12px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  padding: 6px 0;
  background: rgba(9, 9, 10, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
}
.navbar { --bs-navbar-padding-y: 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.brand:hover { color: #fff; }
.brand img { flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; text-transform: uppercase; letter-spacing: .04em; }
.brand-copy strong { font-size: .92rem; font-weight: 800; }
.brand-copy small { font-size: .75rem; margin-top: 5px; color: rgba(255,255,255,.84); letter-spacing: .12em; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,.86);
  text-transform: uppercase;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 14px 14px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--swiss-red-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.language-switch:hover { background: rgba(255,255,255,.15); }

.btn { border-radius: 10px; font-weight: 700; letter-spacing: .01em; transition: all .25s ease; }
.btn-lg { padding: 14px 24px; font-size: .92rem; }
.btn-swiss {
  background: linear-gradient(135deg, var(--swiss-red-bright), var(--swiss-red));
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(215, 25, 32, .28);
}
.btn-swiss:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(215,25,32,.34); background: linear-gradient(135deg, #ff3540, #c91018); }
.btn i { margin-inline-start: 9px; }
.glass-button { border-color: rgba(255,255,255,.48); background: rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.glass-button:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  background: #0b0b0c;
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-media > * { position: absolute; inset: 0; }
.hero-image {
  background: url("../images/club-cover-enhanced.jpg") center 49% / cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}
.hero-vignette {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 32%, rgba(0,0,0,.14) 66%, rgba(0,0,0,.35) 100%),
    linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 42%, rgba(0,0,0,.23) 100%);
}
.hero-grain {
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}
.hero-content { z-index: 3; }
.hero-copy { max-width: 760px; padding-top: 60px; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--swiss-red-bright);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 800;
}
.eyebrow::before,
.section-kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
  line-height: .93;
  letter-spacing: -.045em;
  max-width: 900px;
  margin: 0 0 28px;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: #fff; font-style: normal; }
.hero-lead { max-width: 610px; font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: rgba(255,255,255,.86); margin-bottom: 32px; }
.hero-bottom { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; }
.hero-stat-grid { display: flex; width: fit-content; border-top: 1px solid rgba(255,255,255,.2); background: rgba(10,10,10,.24); backdrop-filter: blur(8px); }
.hero-stat { min-width: 185px; padding: 15px 24px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-stat:last-child { border-right: 0; }
.hero-stat .stat-number { display: block; font-size: 1.4rem; line-height: 1; font-weight: 800; }
.hero-stat small { color: rgba(255,255,255,.65); font-size: .75rem; }
.scroll-cue { position: absolute; z-index: 5; right: 30px; bottom: 36px; width: 30px; height: 52px; border: 1px solid rgba(255,255,255,.55); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 4px; height: 8px; border-radius: 6px; background: #fff; left: 12px; top: 10px; animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(20px); } }
.hero-decoration { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; pointer-events: none; }
.hero-decoration-one { width: 520px; height: 520px; right: -220px; top: 18%; }
.hero-decoration-two { width: 290px; height: 290px; right: -70px; top: 30%; }

.section { padding: 110px 0; }
.section-heading { margin-bottom: 26px; }
.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-heading p, .section-copy { color: var(--muted); font-size: 1.04rem; max-width: 680px; }

.about-section { background: #fff; }
.about-visual { position: relative; padding: 0 52px 55px 0; }
.about-image-main { position: relative; z-index: 2; border-radius: 4px 90px 4px 4px; overflow: hidden; box-shadow: var(--shadow); }
.about-image-main img { width: 100%; aspect-ratio: 4/4.15; object-fit: cover; object-position: 50% 50%; }
.about-image-main::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.32); pointer-events: none; }
.about-frame { position: absolute; z-index: 1; right: 0; bottom: 0; width: 72%; height: 73%; border: 2px solid rgba(215,25,32,.28); border-radius: 4px 4px 54px 4px; }
.about-badge { position: absolute; z-index: 3; right: 0; bottom: 38px; display: flex; align-items: center; gap: 13px; padding: 16px 20px; background: #fff; box-shadow: var(--shadow); border-radius: 14px; }
.about-badge strong, .about-badge small { display: block; }
.about-badge strong { font-size: .9rem; }
.about-badge small { color: var(--muted); font-size: .75rem; }
.cross-mini { width: 40px; height: 40px; border-radius: 50%; background: var(--swiss-red); position: relative; flex: none; }
.cross-mini::before, .cross-mini::after { content: ""; position: absolute; background: #fff; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.cross-mini::before { width: 21px; height: 7px; }
.cross-mini::after { width: 7px; height: 21px; }
.feature-list { display: grid; gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 13px; font-weight: 600; }
.feature-item i { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 10px; background: rgba(215,25,32,.08); color: var(--swiss-red); }
.text-link { color: var(--ink); font-weight: 800; align-items: center; gap: 10px; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.text-link:hover { color: var(--swiss-red); border-color: var(--swiss-red); }

.management-section { background: var(--cream); overflow: hidden; }
.management-swiper { overflow: visible; }
.management-card { height: 100%; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 40px rgba(32,27,22,.08); transition: transform .35s ease, box-shadow .35s ease; }
.management-card:hover { transform: translateY(-9px); box-shadow: 0 24px 52px rgba(32,27,22,.14); }
.management-photo { position: relative; overflow: hidden; background: #ddd; }
.management-photo img { width: 100%; aspect-ratio: .88/1; object-fit: cover; transition: transform .55s ease; }
.management-card:hover .management-photo img { transform: scale(1.045); }
.management-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent,rgba(0,0,0,.4)); }
.management-social { position: absolute; z-index: 2; right: 13px; bottom: 13px; display: flex; gap: 7px; opacity: 0; transform: translateY(10px); transition: .3s ease; }
.management-card:hover .management-social { opacity: 1; transform: none; }
.management-social a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); }
.management-info { padding: 19px 20px 21px; }
.management-info h3 { font-size: 1.08rem; margin: 0 0 4px; font-weight: 800; }
.management-info p { color: var(--swiss-red); margin: 0; font-size: .9rem; font-weight: 700; }
.slider-buttons { display: flex; gap: 9px; }
.slider-button { width: 46px; height: 46px; border: 1px solid rgba(19,20,22,.18); border-radius: 50%; background: transparent; transition: .25s ease; }
.slider-button:hover { background: var(--swiss-red); color: #fff; border-color: var(--swiss-red); }
.placeholder-note { margin: 22px 0 0; color: var(--muted); font-size: .79rem; }
.placeholder-note i { color: var(--swiss-red); margin-inline-end: 6px; }

.events-section { background: #fff; }
.events-section .section-heading { max-width: 720px; }
.event-stack { display: grid; gap: 24px; height: 100%; }
.event-card { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 280px; color: #fff; box-shadow: var(--shadow); isolation: isolate; }
.event-card-featured { height: 100%; min-height: 590px; }
.event-card-small { min-height: 283px; }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s ease; }
.event-card:hover img { transform: scale(1.06); }
.event-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg,rgba(0,0,0,.82),rgba(0,0,0,.08) 70%); }
.event-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; display: flex; align-items: end; gap: 18px; }
.event-date { width: 70px; min-width: 70px; height: 80px; display: grid; place-content: center; text-align: center; border-radius: 12px; background: var(--swiss-red); line-height: 1; }
.event-date strong { font-size: 1.65rem; }
.event-date span { margin-top: 6px; font-size: .75rem; text-transform: uppercase; font-weight: 700; }
.event-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; color: #ffc7ca; font-weight: 800; }
.event-content h3 { font-family: var(--font-serif); font-size: clamp(1.55rem,2.2vw,2.35rem); margin: 4px 0 5px; }
.event-content p { margin: 0; color: rgba(255,255,255,.75); font-size: .83rem; }

.news-media-section { background: var(--cream); overflow: hidden; }
.news-media-section .section-heading p { max-width: 760px; }
.review-publisher-note { max-width: 430px; margin: 0 0 0 auto; color: var(--muted); }
.swiss-review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr)); gap: 24px; }
.swiss-review-card { display: grid; grid-template-columns: minmax(170px, .72fr) 1fr; min-height: 350px; overflow: hidden; border: 1px solid rgba(19,20,22,.07); border-radius: 22px; background: #fff; box-shadow: 0 16px 44px rgba(32,27,22,.09); }
.swiss-review-cover { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 350px; padding: 26px; overflow: hidden; background: linear-gradient(155deg,#e51e26 0 62%,#b80f16 62%); color: #fff; }
.swiss-review-cover.has-image { padding: 0; background: #171719; }
.swiss-review-cover-image { width: 100%; height: 100%; min-height: 350px; object-fit: contain; object-position: center; }
.swiss-review-cover::after { content: ""; position: absolute; width: 210px; height: 210px; right: -96px; top: 85px; border: 34px solid rgba(255,255,255,.1); border-radius: 50%; }
.swiss-review-cover.has-image::after { display: none; }
.review-brand { position: absolute; top: 25px; left: 25px; font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.review-cross { position: absolute; top: 72px; left: 26px; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.98); }
.review-cross::before, .review-cross::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--swiss-red); }
.review-cross::before { width: 35px; height: 11px; }
.review-cross::after { width: 11px; height: 35px; }
.swiss-review-cover strong { position: relative; z-index: 1; font: 700 3.2rem/1 var(--font-serif); }
.swiss-review-cover small { position: relative; z-index: 1; margin-top: 8px; font-weight: 700; }
.swiss-review-content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 34px; }
.review-source { color: var(--swiss-red); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.swiss-review-content h3 { margin: 14px 0 9px; font-family: var(--font-serif); font-size: 1.65rem; line-height: 1.18; }
.swiss-review-content p { margin: 0 0 25px; color: var(--muted); }
.review-language-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.review-language-link { min-width: 118px; justify-content: center; }

.gallery-section { background: #111214; color: #fff; }
.gallery-section .section-heading p, .gallery-intro { color: rgba(255,255,255,.62); }
.gallery-intro { max-width: 430px; margin-left: auto; }
.gallery-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-group { min-width: 0; }
.gallery-group-cover { position: relative; display: block; height: 360px; overflow: hidden; border-radius: 18px; color: #fff; }
.gallery-group-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.05) 70%); }
.gallery-group-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.gallery-group-cover:hover img { transform: scale(1.045); }
.gallery-group-overlay { position: absolute; z-index: 2; right: 25px; bottom: 23px; left: 25px; }
.gallery-group-overlay h3 { margin: 0 0 8px; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; }
.gallery-group-overlay p { margin: 0; color: rgba(255,255,255,.72); font-size: .82rem; }
.gallery-group-overlay i { margin-right: 6px; }
.gallery-hidden-link { display: none; }
.gallery-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: 255px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 18px; }
.gallery-item-large { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.48),transparent 60%); opacity: .6; transition: opacity .3s; }
.gallery-item span { position: absolute; z-index: 2; right: 18px; bottom: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); transform: scale(.85); opacity: 0; transition: .3s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.12); }
.gallery-item:hover span { transform: none; opacity: 1; }
.gallery-item:hover::after { opacity: 1; }

.membership-section { position: relative; padding: 110px 0; color: #fff; background: #121214; overflow: hidden; }
.membership-bg { position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(215,25,32,.65), transparent 33%), linear-gradient(135deg,#141416,#09090a); }
.membership-bg::before { content: "+"; position: absolute; right: 2%; top: -34%; color: rgba(255,255,255,.035); font: 700 700px/1 Arial; }
.membership-section h2 { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,4.8rem); line-height: 1.02; letter-spacing: -.035em; max-width: 780px; }
.membership-section p { max-width: 710px; color: rgba(255,255,255,.67); font-size: 1.05rem; }
.section-kicker-light { color: #ff6770; }
.membership-benefits { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 25px; }
.membership-benefits > span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.membership-benefits i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); color: #ff6871; font-size: .72rem; }
.membership-card { max-width: 450px; margin-inline-start: auto; padding: 38px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; backdrop-filter: blur(18px); box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.membership-card-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; background: var(--swiss-red); color: #fff; font-size: 1.4rem; margin-bottom: 22px; }
.membership-card h3 { font-size: 1.55rem; font-weight: 800; }
.membership-card p { font-size: .96rem; }

.contact-section { background: #fff; }
.contact-list { display: grid; gap: 14px; }
.contact-list > a, .contact-list > div { display: flex; align-items: center; gap: 15px; color: var(--ink); padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-list > a > i, .contact-list > div > i { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 13px; background: rgba(215,25,32,.08); color: var(--swiss-red); }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { font-size: .95rem; }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; transition: .25s; }
.social-links a:hover { background: var(--swiss-red); transform: translateY(-3px); }
.contact-form { padding: 38px; border-radius: 24px; background: var(--cream); box-shadow: inset 0 0 0 1px rgba(19,20,22,.04); }
.contact-form label { display: block; margin-bottom: 7px; font-size: .79rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.contact-form .form-control, .contact-form .form-select { min-height: 52px; border-radius: 10px; border: 1px solid rgba(19,20,22,.13); background-color: #fff; box-shadow: none; }
.contact-form textarea.form-control { min-height: 145px; resize: vertical; }
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--swiss-red); box-shadow: 0 0 0 .22rem rgba(215,25,32,.1); }
.form-status { color: var(--swiss-red); font-size: .9rem; font-weight: 700; }

.site-footer { background: #0c0c0d; color: #fff; padding: 55px 0 25px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-top p { margin: 0; color: rgba(255,255,255,.55); text-align: center; }
.footer-up { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; }
.footer-up:hover { background: var(--swiss-red); border-color: var(--swiss-red); color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: .78rem; }

body[dir="rtl"] .hero-vignette { background: linear-gradient(270deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 32%, rgba(0,0,0,.14) 66%, rgba(0,0,0,.35) 100%), linear-gradient(0deg,rgba(0,0,0,.55),transparent 42%,rgba(0,0,0,.23)); }
body[dir="rtl"] .hero h1, body[dir="rtl"] .section-heading h2, body[dir="rtl"] .event-content h3, body[dir="rtl"] .membership-section h2 { font-family: "Cairo", sans-serif; letter-spacing: -.02em; }
body[dir="rtl"] .hero-stat { border-right: 0; border-left: 1px solid rgba(255,255,255,.18); }
body[dir="rtl"] .hero-stat:last-child { border-left: 0; }
body[dir="rtl"] .management-social { right: auto; left: 13px; }
body[dir="rtl"] .gallery-intro { margin-left: 0; margin-right: auto; }
body[dir="rtl"] .review-publisher-note { margin-left: 0; margin-right: auto; }
body[dir="rtl"] .gallery-item span { right: auto; left: 18px; }
body[dir="rtl"] .scroll-cue { right: auto; left: 30px; }
body[dir="rtl"] .about-visual { padding: 0 0 55px 52px; }
body[dir="rtl"] .about-frame, body[dir="rtl"] .about-badge { right: auto; left: 0; }

@media (max-width: 1199.98px) {
  .site-header { background: rgba(9,9,10,.83); backdrop-filter: blur(15px); }
  .navbar-collapse { padding: 20px 0 12px; }
  .navbar-nav .nav-link { padding: 9px 0 !important; }
  .navbar-nav .nav-link::after { left: 0; right: auto; width: 26px; bottom: 5px; }
  .nav-actions { padding-top: 8px; }
}
@media (max-width: 991.98px) {
  .swiss-review-grid { grid-template-columns: 1fr; }
  .gallery-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 82px 0; }
  .hero-copy { padding-top: 100px; }
  .hero-bottom { display: none; }
  .scroll-cue { display: none; }
  .hero h1 { font-size: clamp(3.3rem, 11vw, 6rem); }
  .about-visual { max-width: 690px; }
  .event-card-featured { min-height: 520px; }
  .event-card-small { min-height: 300px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 1; }
  .membership-card { margin-inline-start: 0; }
}
@media (max-width: 575.98px) {
  .swiss-review-card { grid-template-columns: 1fr; }
  .swiss-review-cover { min-height: 280px; }
}
@media (max-width: 767.98px) {
  .gallery-groups { grid-template-columns: 1fr; }
  .gallery-group-cover { height: 320px; }
  .brand-copy strong { font-size: .78rem; }
  .brand-copy small { font-size: .66rem; }
  .brand img { width: 45px; height: 45px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-buttons .btn { width: 100%; }
  .hero-vignette { background: linear-gradient(0deg,rgba(0,0,0,.82),rgba(0,0,0,.20) 75%), linear-gradient(90deg,rgba(0,0,0,.42),transparent); }
  .hero-image { background-position: 58% 50%; }
  .section { padding: 68px 0; }
  .section-heading h2 { font-size: 2.45rem; }
  .about-visual { padding: 0 24px 35px 0; }
  .about-badge { right: 0; bottom: 16px; }
  .event-card-featured { min-height: 470px; }
  .event-content { padding: 20px; align-items: flex-end; }
  .event-date { width: 60px; min-width: 60px; height: 70px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item-wide { grid-column: auto; }
  .contact-form { padding: 25px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { grid-column: 1/-1; grid-row: 2; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  body[dir="rtl"] .about-visual { padding: 0 0 35px 24px; }
  body[dir="rtl"] .about-badge { left: 0; right: auto; }
  body[dir="rtl"] .footer-top p { text-align: right; }
}
@media (max-width: 440px) {
  .brand-copy { display: none; }
  .hero-copy { padding-top: 85px; }
  .hero h1 { font-size: 3.15rem; }
  .about-badge { padding: 12px; }
  .about-badge div { display: none; }
  .membership-card { padding: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Board member contact details */
.management-swiper .swiper-slide { height: auto; }
.management-card { display: flex; flex-direction: column; }
.management-info { display: flex; flex: 1; flex-direction: column; }
.management-contact { display: grid; gap: 8px; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); }
.management-contact a { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .78rem; line-height: 1.35; transition: color .2s ease; }
.management-contact a:hover { color: var(--swiss-red); }
.management-contact i { width: 15px; flex: none; margin-top: 2px; color: var(--swiss-red); text-align: center; }
.management-contact span { min-width: 0; overflow-wrap: anywhere; }


/* Club logo */
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.28));
}

/* History */
.history-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4ed 0%, #fff 58%, #f4efe6 100%);
}
.history-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(190, 145, 67, .18);
  border-radius: 50%;
  top: -210px;
  right: -120px;
}
.history-heading {
  position: static;
  top: auto;
}
.history-section .section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.1rem);
  overflow-wrap: break-word;
}
.history-section .section-heading p {
  margin-bottom: 0;
  line-height: 1.8;
}
.history-quote {
  position: relative;
  clear: both;
  margin-top: 32px;
  padding: 28px;
  border-left: 4px solid var(--swiss-red, #d71920);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(25,22,18,.08);
  border-radius: 0 18px 18px 0;
}
[dir="rtl"] .history-quote { border-left: 0; border-right: 4px solid var(--swiss-red, #d71920); border-radius: 18px 0 0 18px; }
.history-quote i { color: var(--swiss-red, #d71920); font-size: 1.5rem; margin-bottom: 12px; }
.history-quote p { margin: 0; font-family: "Playfair Display", serif; font-size: 1.18rem; line-height: 1.75; }
.history-book-button { display: flex; align-items: center; gap: 14px; width: 100%; margin-top: 18px; padding: 16px 18px; border: 1px solid rgba(215,25,32,.16); border-radius: 14px; background: #fff; color: var(--ink); box-shadow: 0 12px 35px rgba(25,22,18,.07); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.history-book-button:hover { transform: translateY(-3px); border-color: rgba(215,25,32,.42); color: var(--ink); box-shadow: 0 18px 42px rgba(25,22,18,.12); }
.history-book-icon { display: grid; flex: 0 0 46px; width: 46px; height: 46px; place-items: center; border-radius: 12px; background: var(--swiss-red, #d71920); color: #fff; font-size: 1.05rem; }
.history-book-copy { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.history-book-copy small { color: #8b8177; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.history-book-copy strong { margin-top: 2px; font-size: 1rem; }
.history-book-arrow { color: var(--swiss-red, #d71920); font-size: .9rem; }
[dir="rtl"] .history-book-arrow { transform: scaleX(-1); }
.history-timeline { position: relative; padding-left: 30px; }
.history-timeline::before { content: ""; position: absolute; left: 8px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(#d71920, #c69a4a); }
[dir="rtl"] .history-timeline { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .history-timeline::before { left: auto; right: 8px; }
.history-item { position: relative; display: grid; grid-template-columns: 105px 1fr; gap: 24px; padding: 0 0 38px 28px; }
[dir="rtl"] .history-item { padding: 0 28px 38px 0; }
.history-item::before { content: ""; position: absolute; left: -28px; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 4px solid #d71920; box-shadow: 0 0 0 6px rgba(215,25,32,.1); }
[dir="rtl"] .history-item::before { left: auto; right: -28px; }
.history-year { font-weight: 800; color: #b48a3c; letter-spacing: .03em; font-size: 1.05rem; }
.history-item h3 { font-size: 1.22rem; margin: 0 0 8px; }
.history-item p { margin: 0; color: #666; line-height: 1.75; }
.history-item-featured { padding: 24px 24px 28px 28px; margin: -10px 0 30px; border-radius: 18px; background: #fff; box-shadow: 0 20px 55px rgba(30,25,20,.09); }
[dir="rtl"] .history-item-featured { padding: 24px 28px 28px 24px; }
@media (min-width: 992px) and (max-width: 1199.98px) {
  .history-section .section-heading h2 { font-size: 3rem; }
  .history-quote { padding: 22px; }
  .history-quote p { font-size: 1.05rem; }
  .history-item { grid-template-columns: 88px 1fr; gap: 18px; }
}
@media (max-width: 991.98px) {
  .history-section .section-heading h2 { max-width: 760px; }
  .history-quote { max-width: 760px; }
}
@media (max-width: 575.98px) {
  .brand img { width: 50px; height: 50px; }
  .history-section .section-heading h2 { font-size: 2.35rem; }
  .history-quote { margin-top: 24px; padding: 20px; }
  .history-quote p { font-size: 1rem; }
  .history-item { grid-template-columns: 82px 1fr; gap: 14px; padding-left: 22px; }
  [dir="rtl"] .history-item { padding-left: 0; padding-right: 22px; }
  .history-item-featured { padding: 20px; }
}

/* =========================================================
   Switzerland Video Section
   ========================================================= */

.switzerland-video-section {
    position: relative;
    min-height: clamp(540px, 75vh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #0b0b0b;
}

.switzerland-video {
    position: absolute;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.switzerland-video-shade {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.86) 0%,
            rgba(0, 0, 0, 0.55) 42%,
            rgba(0, 0, 0, 0.16) 75%,
            rgba(0, 0, 0, 0.25) 100%
        );
}

.switzerland-video-glow {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255, 255, 255, 0.05),
            transparent 38%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.32),
            transparent 30%,
            transparent 72%,
            rgba(0, 0, 0, 0.58)
        );
}

.switzerland-video-content {
    max-width: 680px;
    padding: 110px 0;
    color: #fff;
}

.switzerland-video-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    color: #ff3038;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.switzerland-video-eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
}

.switzerland-video-content h2 {
    max-width: 650px;
    margin: 0 0 24px;
    color: #fff;
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
}

.switzerland-video-description {
    max-width: 580px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.8;
}

.switzerland-video-scroll {
    position: absolute;
    right: 44px;
    bottom: 35px;
    width: 1px;
    height: 70px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.24);
}

.switzerland-video-scroll span {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 55%;
    background: #fff;
    animation: swissVideoScroll 2.2s ease-in-out infinite;
}

@keyframes swissVideoScroll {
    0% {
        top: -60%;
    }

    100% {
        top: 110%;
    }
}

/* Video section language handling */

html[lang="ar"] .video-lang-en {
    display: none;
}

html:not([lang="ar"]) .video-lang-ar {
    display: none;
}

html[lang="ar"] .switzerland-video-content {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

html[lang="ar"] .switzerland-video-eyebrow {
    flex-direction: row-reverse;
}

html[lang="ar"] .switzerland-video-content h2 {
    letter-spacing: normal;
}

/* Tablet and mobile */

@media (max-width: 991.98px) {
    .switzerland-video-section {
        min-height: 620px;
    }

    .switzerland-video-shade {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.4)
            );
    }

    .switzerland-video-content {
        padding: 90px 0;
    }
}

@media (max-width: 767.98px) {
    .switzerland-video-section {
        min-height: 590px;
        align-items: flex-end;
    }

    .switzerland-video {
        object-position: center;
    }

    .switzerland-video-shade {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.12) 0%,
                rgba(0, 0, 0, 0.4) 45%,
                rgba(0, 0, 0, 0.9) 100%
            );
    }

    .switzerland-video-content {
        padding: 170px 0 65px;
    }

    .switzerland-video-content h2 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .switzerland-video-scroll {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .switzerland-video-scroll span {
        animation: none;
    }
}


.history-source {
  margin: 14px 0 0;
  text-align: right;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.75;
}

/* Contact Map */
.contact-map-wrapper {
  margin-top: 10px;
  padding: 24px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(25, 35, 45, 0.1);
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-map-header h3 {
  margin: 5px 0 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.contact-map {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 20px;
  background: #e9ecef;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  .contact-map-wrapper {
    padding: 15px;
    border-radius: 20px;
  }

  .contact-map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-map-header .btn {
    width: 100%;
  }

  .contact-map {
    height: 340px;
    border-radius: 15px;
  }
}
