*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111111;
  --dark: #1a1a1a;
  --gold: #b8965a;
  --gold-light: #d4aa72;
  --gray: #666;
  --light-gray: #f7f6f4;
  --border: #e2e0dc;
  --white: #ffffff;
  --text: #222;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--black);
  display: flex;
  justify-content: flex-end;
  padding: 7px 48px;
  gap: 24px;
}
.top-bar a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #aaa;
  transition: color 0.2s;
  font-family: 'Source Sans 3', sans-serif;
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar .lang-active { color: #fff; font-weight: 600; }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}
.nav-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-emblem {
  width: 44px;
  height: 44px;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-wordmark strong {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}
.logo-wordmark span {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-top: 2px;
  font-weight: 400;
}

/* Nav */
nav { flex: 1; }
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
}
nav ul li a {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 8px 13px;
  transition: color 0.2s;
  white-space: nowrap;
}
nav ul li a:hover { color: var(--gold); }
nav ul li.active-nav > a { color: var(--gold); }

/* Share price */
.nav-right { flex-shrink: 0; text-align: right; }
.share-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.share-price-chg {
  font-size: 11px;
  color: #b94040;
  margin-top: 2px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.42) 100%);
}

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}
.breadcrumb a { color: #888; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: #ccc; font-size: 11px; }
.breadcrumb .current { color: var(--dark); }

/* ─── PAGE WRAP ─── */
.page-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  padding-top: 52px;
  padding-bottom: 96px;
}

/* ─── SIDEBAR ─── */
.sidebar {
  position: relative;
}
.sidebar-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-nav { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--border); }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 14px;
  color: var(--dark);
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-nav li a:hover { color: var(--gold); padding-left: 5px; }
.sidebar-nav li.active a {
  color: var(--gold);
  font-weight: 600;
}
.sidebar-nav li a .arrow { font-size: 10px; color: #bbb; }
.sidebar-nav li.active a .arrow { color: var(--gold); }

/* ─── MAIN CONTENT ─── */
.main-content {}

/* Page title section */
.page-intro {
  margin-bottom: 56px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--black);
  max-width: 580px;
}
.page-subtitle {
  font-size: 19px;
  color: var(--dark);
  line-height: 1.65;
  max-width: 640px;
  font-weight: 300;
}
.page-subtitle em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Content sections */
.content-section {
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--black);
}

.section-text {
  font-size: 16.5px;
  line-height: 1.78;
  color: #333;
  max-width: 640px;
  font-weight: 300;
}
.section-text + .section-text { margin-top: 16px; }
.section-text strong { font-weight: 600; color: var(--black); }

/* ─── IMAGE + TEXT BLOCK ─── */
.image-text-block {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.image-text-block.reversed { direction: rtl; }
.image-text-block.reversed > * { direction: ltr; }

.image-text-block .block-image {
  overflow: hidden;
  border-radius: 2px;
}
.image-text-block .block-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.image-text-block .block-image:hover img { transform: scale(1.03); }

.image-text-block .block-text {}
.block-text .section-title { margin-bottom: 18px; }
.block-text .section-text { max-width: 100%; }

/* ─── VALUES SECTION ─── */
.values-section {
  margin-bottom: 64px;
}
.values-section .section-title { margin-bottom: 14px; }
.values-intro {
  font-size: 16.5px;
  color: #444;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.values-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.value-card {
  background: var(--light-gray);
  padding: 32px 28px 32px 36px;
  position: relative;
  border-left: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.value-card:hover {
  border-left-color: var(--gold);
  background: #f1ede7;
}
.value-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #ddd;
  line-height: 1;
  margin-bottom: 10px;
}
.value-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.value-card-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
  font-weight: 300;
}

/* CTA Button */
.cta-wrap {
  margin-top: 36px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.25s, gap 0.25s;
}
.cta-btn:hover {
  background: var(--gold);
  gap: 14px;
}
.cta-btn .arrow-r { font-size: 16px; }

/* ─── RELATED PAGES ─── */
.related-pages-section {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--black);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.related-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--black);
  cursor: pointer;
}
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.45s ease, opacity 0.35s;
  display: block;
}
.related-card:hover img { transform: scale(1.05); opacity: 0.5; }
.related-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 24px 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}
.related-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  transition: padding-bottom 0.3s;
}
.related-card:hover .related-card-label { padding-bottom: 6px; }

/* ─── FOOTER ─── */
footer {
  background: #111;
  color: #888;
  padding: 64px 0 0;
}
.footer-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 52px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 52px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #777;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid #222;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; }
.footer-disclaimer {
  font-size: 11px;
  color: #555;
  font-style: italic;
  margin-top: 4px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: #666;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold-light); }

/* ─── SECTION DIVIDER LINE ─── */
.section-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
}

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 500;
}
.back-top.visible { opacity: 1; }
.back-top:hover { background: var(--gold); }

/* ─── PILLAR GRID (global / about pages) ─── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--light-gray);
  padding: 28px 24px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}
.pillar-icon {
  margin-bottom: 16px;
}

/* ─── MOBILE NAV TOGGLE ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-menu-open {
  overflow: hidden;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .top-bar {
    padding: 7px 24px;
  }

  .nav-wrap {
    padding: 0 24px;
    height: 64px;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: max-height 0.35s ease, border-color 0.2s, box-shadow 0.2s;
    z-index: 300;
  }

  header.nav-open nav {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    border-bottom-color: var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 20px;
    gap: 0;
  }

  nav ul li a {
    padding: 14px 0;
    white-space: normal;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  .page-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 24px 72px;
  }

  .breadcrumb {
    padding: 12px 24px;
    flex-wrap: wrap;
  }

  .hero {
    height: 280px;
  }

  .page-title {
    font-size: 36px;
    max-width: none;
  }

  .page-subtitle {
    font-size: 17px;
    max-width: none;
  }

  .image-text-block,
  .image-text-block.reversed {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }

  .image-text-block .block-image {
    order: -1;
  }

  .image-text-block .block-image img {
    height: 260px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    padding: 0 24px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 7px 16px;
  }

  .nav-wrap {
    padding: 0 16px;
    height: 58px;
    gap: 12px;
  }

  .logo-emblem,
  .logo-link svg {
    width: 36px;
    height: 36px;
  }

  .logo-wordmark strong {
    font-size: 15px;
  }

  .logo-wordmark span {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  header.nav-open nav {
    max-height: calc(100vh - 58px);
  }

  .hero {
    height: 220px;
  }

  .breadcrumb {
    padding: 10px 16px;
    font-size: 12px;
  }

  .page-wrap {
    padding: 28px 16px 56px;
  }

  .page-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-text {
    font-size: 15px;
  }

  .image-text-block .block-image img {
    height: 220px;
  }

  .value-card {
    padding: 24px 20px 24px 24px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    height: 220px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo-name {
    font-size: 20px;
    margin-bottom: 36px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}