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

@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --ivory: #f2efe8;
  --paper: #e9e5dc;
  --olive: #676e5c;
  --olive-deep: #30382b;
  --maroon: #572b2a;
  --blue: #a8afbf;
  --ink: #2e312b;
  --line: rgba(46, 49, 43, 0.2);
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", "Noto Sans Arabic", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
::selection { background: var(--blue); color: var(--olive-deep); }

.site-header {
  min-height: 112px;
  padding: 24px 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 232, 0.92);
  position: relative;
  z-index: 10;
}

.brand img { width: clamp(230px, 20vw, 320px); }

.header-side {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.header-side a {
  color: var(--maroon);
  border-bottom: 1px solid currentColor;
  padding: 9px 0;
  transition: opacity 180ms ease;
}

.header-side a:hover { opacity: 0.62; }

.link-dot {
  width: 4px;
  height: 4px;
  margin-left: 9px;
  display: inline-block;
  background: currentColor;
  border-radius: 50%;
  vertical-align: 2px;
}

.hero {
  min-height: calc(100svh - 112px);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.hero-copy {
  min-height: 690px;
  padding: clamp(70px, 9vh, 112px) 5vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.overline,
.section-label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  margin: 6vh 0;
  color: var(--olive-deep);
  font-size: clamp(62px, 7.7vw, 124px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.88;
  animation: rise 900ms cubic-bezier(.2,.7,.2,1) both;
}

em { color: var(--maroon); font-style: normal; }

.hero-intro {
  width: min(540px, 80%);
  margin-left: 16%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
}

.hero-intro p {
  margin: 0;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.7;
}

.text-link,
.email-link {
  width: max-content;
  color: var(--maroon);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

.hero-image {
  margin: 0;
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background: var(--olive-deep);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 48%;
  filter: saturate(0.55) contrast(0.93) brightness(0.9);
  transform: scale(1.01);
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48,56,43,.06), rgba(48,56,43,.34));
}

.hero:hover .hero-image img { transform: scale(1.045); }

.hero-image figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  color: var(--ivory);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: -0.055em;
  bottom: -0.2em;
  color: rgba(242, 239, 232, 0.16);
  font-size: 21vw;
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.story {
  min-height: 790px;
  padding: 9vw 6vw 7vw;
  background: var(--olive-deep);
  color: var(--ivory);
  display: grid;
  grid-template-columns: 24% 60% 16%;
  position: relative;
  overflow: hidden;
}

.story-content { position: relative; z-index: 2; }

.story h2,
.offer h2,
.contact h2 {
  margin: 0;
  font-size: clamp(48px, 6.1vw, 92px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.story h2 { color: var(--ivory); max-width: 900px; }

.story-content > p {
  width: min(540px, 76%);
  margin: 24px 0 0 20%;
  color: rgba(242, 239, 232, 0.76);
  font-size: 16px;
  line-height: 1.78;
}

.story-content > p:first-of-type { margin-top: 62px; }

.story-year {
  position: absolute;
  left: -0.03em;
  bottom: -0.27em;
  color: rgba(168, 175, 191, 0.12);
  font-size: 26vw;
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.offer {
  padding: 10vw 6vw 6vw;
  background: var(--paper);
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 7vw 5vw;
}

.offer-heading .section-label { margin-bottom: 76px; }
.offer h2 { color: var(--olive-deep); }

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.offer-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  color: var(--olive-deep);
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 400;
}

.offer-list li span {
  color: var(--maroon);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.locations {
  grid-column: 1 / -1;
  min-height: 220px;
  margin-top: 2vw;
  padding: 0 4vw;
  background: var(--blue);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  font-size: clamp(46px, 8vw, 124px);
  font-weight: 300;
  letter-spacing: -0.065em;
}

.locations i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--maroon);
}

.contact {
  padding: 9vw 6vw 10vw;
  background: var(--maroon);
  color: var(--ivory);
}

.contact .section-label { color: rgba(242, 239, 232, 0.68); }

.contact-main {
  margin-top: 6vw;
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: end;
}

.contact h2 {
  color: var(--ivory);
  font-size: clamp(62px, 8vw, 125px);
}

.contact h2 em { color: var(--blue); }

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 0.8vw;
}

.contact-actions p {
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(242, 239, 232, 0.75);
  font-size: 14px;
  line-height: 1.8;
}

.primary-link {
  min-width: 260px;
  padding: 20px 22px;
  background: var(--ivory);
  color: var(--maroon);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.primary-link:hover { background: var(--blue); color: var(--olive-deep); }
.email-link { color: var(--ivory); }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

footer {
  min-height: 190px;
  padding: 36px 6vw;
  background: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

footer img { width: clamp(230px, 20vw, 320px); }

.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .site-header { min-height: 92px; padding: 20px 24px; }
  .header-side > span { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 590px; padding: 68px 24px 44px; }
  .hero-intro { width: 82%; margin-left: 18%; }
  .hero-image { min-height: 72svh; }
  .hero-mark { font-size: 43vw; }
  .story { min-height: 760px; padding: 90px 24px 120px; grid-template-columns: 1fr; gap: 60px; }
  .story-content > p { width: 82%; margin: 22px 0 0 18%; }
  .story-content > p:first-of-type { margin-top: 48px; }
  .story-year { font-size: 47vw; }
  .offer { padding: 90px 24px 70px; grid-template-columns: 1fr; gap: 70px; }
  .offer-heading .section-label { margin-bottom: 52px; }
  .locations { min-height: 170px; padding: 0 18px; gap: 28px; }
  .contact { padding: 90px 24px 100px; }
  .contact-main { margin-top: 60px; grid-template-columns: 1fr; gap: 68px; }
  .contact-actions { margin-left: 18%; }
  footer { padding: 38px 24px; align-items: flex-start; }
  .footer-meta { grid-template-columns: 1fr; gap: 11px; }
}

@media (max-width: 560px) {
  .brand img { width: 205px; }
  .hero-copy { min-height: 540px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-intro { width: 88%; margin-left: 12%; grid-template-columns: 1fr; gap: 24px; }
  .hero-image { min-height: 72svh; }
  .story h2, .offer h2 { font-size: 48px; }
  .story-content > p { width: 88%; margin-left: 12%; font-size: 14px; line-height: 1.75; }
  .offer-list li { grid-template-columns: 44px 1fr; }
  .locations { min-height: 135px; gap: 17px; font-size: 43px; }
  .locations i { width: 5px; height: 5px; flex-basis: 5px; }
  .contact h2 { font-size: 54px; }
  .contact-actions { margin-left: 12%; }
  .primary-link { min-width: 0; width: 100%; }
  footer { flex-direction: column; gap: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1 { animation: none; }
  .hero-image img { transition: none; }
}
