:root {
  --gold: #b79242;
  --gold-dark: #8d6a2a;
  --ink: #242529;
  --muted: #62666d;
  --nav: #f5f5f5;
  --paper: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-dark); text-underline-offset: 0.2em; }
a:hover { color: #5f4217; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: white;
  background: #272727;
  border-radius: 0.35rem;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.site-header { border-top: 2px solid var(--gold); }

.utility-bar,
.page-shell,
.footer-inner {
  width: min(1170px, calc(100% - 3rem));
  margin-inline: auto;
}

.utility-bar {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: inline-flex; text-decoration: none; }
.brand img { display: block; width: 310px; max-width: 42vw; height: auto; }

.language-switch {
  padding: 0.45rem 0.8rem;
  color: var(--gold-dark);
  font-size: 1.05rem;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 0.4rem;
}

.language-switch:hover,
.language-switch:focus-visible {
  color: white;
  background: var(--gold-dark);
}

.page-shell { padding-top: 3.4rem; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.8rem;
  padding: 0;
  color: var(--ink);
  list-style: none;
  font-size: 1rem;
  font-weight: 650;
}

.breadcrumbs li + li::before {
  display: inline-block;
  margin-right: 1rem;
  color: #8e9298;
  content: "›";
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 0;
  vertical-align: -0.08em;
}

.breadcrumbs a { color: var(--muted); text-decoration: none; font-weight: 500; }

.hero {
  position: relative;
  min-height: 220px;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: white;
  background: #c4a46c url("inner-banner-bg.jpg") center / cover no-repeat;
  border-radius: 0.9rem;
}

.hero-pattern,
.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-pattern { display: none; }

.hero-pattern::before {
  left: -12%;
  width: 42%;
  background: linear-gradient(148deg, transparent 27%, rgba(255,255,255,.25) 28%, rgba(255,255,255,.08) 45%, transparent 46%),
              linear-gradient(158deg, transparent 38%, rgba(255,255,255,.28) 39%, rgba(255,255,255,.05) 55%, transparent 56%);
}

.hero-pattern::after {
  right: -9%;
  left: auto;
  width: 40%;
  background: linear-gradient(332deg, transparent 24%, rgba(255,255,255,.3) 25%, rgba(255,255,255,.07) 43%, transparent 44%),
              linear-gradient(346deg, transparent 32%, rgba(255,255,255,.25) 33%, rgba(255,255,255,.04) 50%, transparent 51%);
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  font-weight: 300;
  line-height: 1.1;
}

.content-section { padding: 4.6rem 0 5rem; }
.policy-card { max-width: none; }

.policy-card p {
  margin: 0;
  color: #2d2f33;
  font-size: 1.08rem;
  line-height: 1.7;
}

.policy-card p + p { margin-top: 1.5rem; }

footer { color: #e8e2d9; background: #28241f; }

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p { margin: 0; }
.footer-inner a { color: #dec486; }

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .breadcrumbs li + li::before {
  margin-right: 0;
  margin-left: 1rem;
  content: "‹";
}

@media (max-width: 700px) {
  .utility-bar,
  .page-shell,
  .footer-inner { width: min(100% - 2rem, 1170px); }

  .utility-bar { min-height: 82px; }
  .brand img { width: 245px; max-width: 68vw; }
  .page-shell { padding-top: 2rem; }
  .breadcrumbs { margin-bottom: 1.6rem; }
  .hero { min-height: 165px; border-radius: 0.65rem; }
  .content-section { padding-block: 2.5rem 3.5rem; }
  .policy-card p { font-size: 1rem; }
  .footer-inner { min-height: 125px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
