
:root {
  --ink: #171714;
  --paper: #f4f2ed;
  --white: #fff;
  --line: rgba(23, 23, 20, 0.3);
  --soft-line: rgba(23, 23, 20, 0.16);
  --header-h: 82px;
  --pad: clamp(24px, 4.2vw, 72px);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 12px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--white);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(244, 242, 237, 0.94);
  backdrop-filter: blur(14px);
  color: var(--ink);
  border-color: var(--soft-line);
}

.wordmark {
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 25px);
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  opacity: .9;
}

.nav a:hover,
.nav a:focus-visible { opacity: .55; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 15, .16) 0%, rgba(8, 9, 15, .30) 44%, rgba(8, 9, 15, .78) 100%),
    linear-gradient(90deg, rgba(8, 9, 15, .5) 0%, rgba(8, 9, 15, .1) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  padding: calc(var(--header-h) + 70px) var(--pad) clamp(68px, 9vh, 112px);
}

.eyebrow,
.section-number,
.section-label > p {
  margin: 0 0 24px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1240px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: .98;
  letter-spacing: -.038em;
}

.hero-copy {
  max-width: 800px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.38;
  font-family: var(--serif);
}

.hero-note {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(12px, .92vw, 15px);
  line-height: 1.55;
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: .82;
}

.text-link {
  display: inline-block;
  margin-top: 42px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.65fr);
  gap: clamp(48px, 8vw, 140px);
  padding: clamp(88px, 9vw, 142px) var(--pad);
  border-bottom: 1px solid var(--line);
}

.section-label h2,
.ethos h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}

.section-copy {
  max-width: 760px;
}

.section-copy p,
.ethos-copy p,
.contact-copy p {
  margin: 0 0 25px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px) !important;
  line-height: 1.22;
  letter-spacing: -.02em;
}


.focus {
  background: #efede7;
}

.focus-list {
  border-top: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--ink);
}

summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 25px 2px 23px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(24px, 2.05vw, 33px);
  line-height: 1.1;
}

summary::-webkit-details-marker { display: none; }

.mark {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mark::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

details[open] .mark::after { transform: rotate(0); }

.detail-copy {
  max-width: 680px;
  padding: 0 42px 28px 2px;
}

.detail-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.45;
}

.ethos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.ethos-copy {
  padding: clamp(82px, 8vw, 126px) var(--pad);
  align-self: center;
}

.ethos-copy > p:not(.lead):not(.section-number) {
  max-width: 670px;
}

.ethos-image-wrap {
  min-height: 600px;
  overflow: hidden;
  background: #2c1f17;
}

.ethos-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 48%;
}

.closing-panel {
  min-height: 56vh;
  display: grid;
  place-items: center;
  padding: var(--pad);
  color: #f6f3eb;
  background:
    radial-gradient(circle at 80% 22%, rgba(171, 104, 45, .34), transparent 28%),
    radial-gradient(circle at 16% 75%, rgba(90, 67, 46, .34), transparent 30%),
    linear-gradient(135deg, #171610, #292017 58%, #100f0c);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 50px);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 38px);
}

.closing-inner p { margin: 0; }

.closing-inner span {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

.contact {
  min-height: 440px;
  align-items: center;
}

.contact-copy p {
  margin-bottom: 18px;
}

.email-link {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(23px, 2.25vw, 36px);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  line-height: 1.25;
}

.email-link:hover,
.email-link:focus-visible { opacity: .6; }

.footer {
  display: grid;
  grid-template-columns: .7fr 1.6fr .5fr;
  gap: 40px;
  align-items: start;
  padding: 52px var(--pad) 58px;
  color: #ece9df;
  background: #151511;
  font-size: 13px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 21px;
}

.footer-legal {
  max-width: 680px;
  opacity: .72;
}

.footer-legal p { margin: 0 0 12px; }

.back-top {
  justify-self: end;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }

  .site-header { padding-inline: 22px; }
  .nav { gap: 14px; }
  .nav a:nth-child(1),
  .nav a:nth-child(3) { display: none; }

  .hero-content { padding-inline: 22px; }
  .hero h1 { font-size: clamp(38px, 10vw, 54px); }

  .section {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-inline: 22px;
  }

  .section-label {
    display: flex;
    align-items: baseline;
    gap: 20px;
  }

  .section-label > p { margin-bottom: 0; }

  .ethos {
    grid-template-columns: 1fr;
  }

  .ethos-copy { padding-inline: 22px; }
  .ethos-image-wrap { min-height: 620px; }

  .closing-inner {
    flex-direction: column;
  }

  .closing-inner span {
    width: 1px;
    height: 28px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

  .back-top { justify-self: start; }
}

@media (max-width: 520px) {
  .wordmark { font-size: 17px; }
  .nav a { font-size: 11px; }

  .hero { min-height: 700px; }
  .hero-image { object-position: 54% 50%; }
  .hero-content { padding-bottom: 58px; }
  .hero-copy { font-size: 17px; }

  summary {
    padding-block: 21px;
    font-size: 24px;
  }

  .detail-copy { padding-right: 26px; }

  .ethos-image-wrap { min-height: 440px; }

  .email-link {
    font-size: 23px;
    overflow-wrap: anywhere;
  }
}

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


/* Arabic / RTL */
.rtl {
  direction: rtl;
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

.rtl .wordmark,
.rtl .hero h1,
.rtl .hero-copy,
.rtl .section-label h2,
.rtl .ethos h2,
.rtl .lead,
.rtl summary,
.rtl .detail-copy p,
.rtl .closing-inner,
.rtl .email-link,
.rtl .footer-brand {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

.rtl .hero h1 {
  max-width: 1040px;
  line-height: 1.12;
  letter-spacing: 0;
}

.rtl .hero-copy,
.rtl .lead,
.rtl summary,
.rtl .email-link {
  letter-spacing: 0;
}

.rtl .section-copy,
.rtl .ethos-copy > p:not(.lead):not(.section-number),
.rtl .footer-legal {
  text-align: right;
}

.rtl .detail-copy {
  padding-right: 2px;
  padding-left: 42px;
}

.rtl .back-top {
  justify-self: start;
}

.rtl .hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 9, 15, .16) 0%, rgba(8, 9, 15, .30) 44%, rgba(8, 9, 15, .78) 100%),
    linear-gradient(270deg, rgba(8, 9, 15, .5) 0%, rgba(8, 9, 15, .1) 70%);
}

@media (max-width: 860px) {
  .rtl .section-label {
    flex-direction: row;
  }

  .rtl .detail-copy {
    padding-left: 26px;
    padding-right: 2px;
  }

  .rtl .back-top {
    justify-self: start;
  }
}

.rtl .hero-note {
  letter-spacing: 0;
  text-transform: none;
  max-width: 760px;
}

.rtl .situation-item p {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

.footer-descriptor {
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .62;
}
