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

:root {
  --black: #090b09;
  --black-soft: #121510;
  --ivory: #f1f0e9;
  --gray: #b8bcb1;
  --green: #a6c072;
  --green-pale: #d7e3b9;
  --green-dark: #516332;
  --line: rgba(241, 240, 233, .2);
  --line-dark: rgba(9, 11, 9, .2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --logo: url("../images/logo.png");
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  font-family: "Yekan", Tahoma, sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "Yekan", Tahoma, sans-serif !important;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

svg {
  display: block;
}

::selection {
  color: var(--black);
  background: var(--green);
}

:focus-visible {
  outline: 2px solid var(--green-pale);
  outline-offset: 4px;
}

.wrap {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.skip {
  position: fixed;
  z-index: 999;
  top: 12px;
  right: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--black);
  transform: translateY(-180%);
  transition: transform .25s;
}

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

.progress {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
}

.header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(9, 11, 9, .9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--logo) center/cover no-repeat;
  overflow: hidden;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 400;
}

.brand-text small {
  color: #a2a89d;
  font-size: 9px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: #d1d4cc;
  font-size: 12px;
  transition: color .2s;
}

.nav a:hover {
  color: var(--green-pale);
}

.nav .nav-cta {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(9, 11, 9, .5);
  border: 1px solid var(--line);
}

.menu i {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: .25s;
}

.menu[aria-expanded="true"] i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu[aria-expanded="true"] i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 190;
  inset: 0;
  padding: 105px 24px 30px;
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.hero {
  position: relative;
  width: min(calc(100% - 24px), 1480px);
  min-height: calc(100svh - 24px);
  margin: 12px auto 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #151912;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.9) contrast(1.04);
  transform: scale(1.02) translateY(var(--photo-y, 0px));
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 11, 9, .35), rgba(9, 11, 9, .74) 58%, rgba(9, 11, 9, .92)), linear-gradient(0deg, rgba(9, 11, 9, .92), transparent 44%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 24px);
  padding: 136px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 300px;
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-pale);
  font-size: 11px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

h1 {
  margin-top: 20px;
  font-size: clamp(45px, 5.3vw, 74px);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: -.03em;
}

h1 span {
  color: var(--green-pale);
}

.hero-description {
  max-width: 680px;
  margin-top: 20px;
  color: #d0d4ca;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 49px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 999px;
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--black);
  font-size: 12px;
  transition: transform .25s, background .25s;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-pale);
}

.button.ghost {
  color: #fff;
  background: rgba(9, 11, 9, .25);
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}

.button.ghost:hover {
  color: var(--black);
  background: var(--ivory);
}

.button svg {
  width: 15px;
}

.hero-signature {
  align-self: end;
  display: grid;
  justify-items: end;
  gap: 17px;
}

.hero-logo {
  width: 350px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--logo) center/cover no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
  overflow: hidden;
}

.hero-signature p {
  max-width: 210px;
  color: #c6cbc0;
  font-size: 10px;
  text-align: left;
  direction: rtl;
}

.hero-bottom {
  grid-column: 1/-1;
  margin-top: 54px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  color: #a9afa4;
  font-size: 10px;
}

.ribbon {
  overflow: hidden;
  color: var(--black);
  background: var(--green);
}

.ribbon-track {
  width: max-content;
  display: flex;
  gap: 22px;
  padding: 12px 0;
  animation: ribbon 27s linear infinite;
}

.ribbon-track span {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  font-size: 11px;
}

.ribbon-track i {
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
}

.section {
  padding: clamp(78px, 9vw, 126px) 0;
}

.section.light {
  color: var(--black);
  background: var(--ivory);
}

.section.dark {
  color: var(--ivory);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: #747a70;
  font-size: 10px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.statement-section {
  overflow: hidden;
}

.statement-split {
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  grid-template-areas: "copy visual";
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.statement-visual {
  grid-area: visual;
  direction: rtl;
  min-width: 0;
}

.statement-image-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e7e2d7;
  box-shadow: 0 26px 70px rgba(55, 52, 41, .14);
}

.statement-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 35%, rgba(255, 255, 255, .48) 50%, transparent 65%);
  transform: translateX(-130%);
}

.statement-visual.is-visible .statement-image-frame::after {
  animation: image-sheen 1.25s .55s var(--ease) both;
}

.statement-image-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--story-scale, 1.06)) translateY(var(--story-y, 0px));
  will-change: transform;
}

.statement-visual figcaption {
  margin-top: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #73786e;
  font-size: 10px;
}

.statement-visual figcaption span {
  color: var(--green-dark);
}

.statement-copy {
  grid-area: copy;
  direction: rtl;
}

.statement-copy .section-label {
  margin-bottom: 28px;
}

.statement-copy h2 {
  max-width: 720px;
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -.02em;
}

.statement-copy h2 mark {
  color: var(--green-dark);
  background: transparent;
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-position: right 95%;
  background-size: 0 2px;
  transition: background-size 1.1s .35s var(--ease);
}

.statement-copy h2.is-visible mark {
  background-size: 100% 2px;
}

.statement-note {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: #62685f;
  font-size: 13px;
}

.choice-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 35px;
  margin-bottom: 50px;
}

.choice-head h2,
.services-head h2 {
  max-width: 780px;
  font-size: clamp(31px, 3.8vw, 49px);
  line-height: 1.55;
  font-weight: 400;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 0;
}

.choice {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 300px;
  padding: clamp(26px, 4vw, 52px);
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.choice+.choice {
  border-right: 1px solid var(--line);
}

.choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
}

.choice:hover::before {
  transform: translateY(0);
}

.choice>* {
  position: relative;
  z-index: 1;
  transition: color .3s;
}

.choice:hover {
  color: var(--black);
}

.choice small {
  color: #8a9285;
  font-size: 10px;
}

.choice:hover small {
  color: #354021;
}

.choice h3 {
  margin-top: 48px;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.45;
  font-weight: 400;
}

.choice p {
  max-width: 520px;
  color: #aeb4aa;
  font-size: 13px;
}

.choice:hover p {
  color: #283018;
}

.city {
  position: relative;
  width: min(calc(100% - 24px), 1320px);
  height: min(68vw, 650px);
  min-height: 410px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #22261e;
}

.city img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.06);
}

.city::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 11, 9, .82), transparent 54%);
}

.city-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding-bottom: 32px;
}

.city-caption .wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
}

.city-caption h2 {
  max-width: 700px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.5;
  font-weight: 400;
}

.city-caption p {
  max-width: 320px;
  color: #d1d5cd;
  font-size: 11px;
}

.services-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 35px;
  margin-bottom: 52px;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service {
  display: grid;
  grid-template-columns: 70px minmax(220px, .8fr) minmax(280px, 1.2fr) 32px;
  gap: 24px;
  align-items: center;
  min-height: 126px;
  padding-inline: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  transition: padding .35s var(--ease), background .25s;
}

.service:hover {
  padding-inline: 16px;
  background: rgba(166, 192, 114, .18);
}

.service .num {
  color: #7b8177;
  font-size: 10px;
}

.service h3 {
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.5;
  font-weight: 400;
}

.service p {
  max-width: 600px;
  color: #646a61;
  font-size: 12px;
}

.service svg {
  width: 16px;
  transition: transform .3s;
}

.service:hover svg {
  transform: translateX(-5px);
}

.contact {
  padding: 0 0 28px;
  background: var(--black);
}

.contact-panel {
  min-height: 520px;
  padding: clamp(30px, 6vw, 80px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  color: var(--black);
  background: var(--green);
  overflow: hidden;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.contact h2 {
  max-width: 860px;
  align-self: center;
  font-size: clamp(39px, 5vw, 66px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -.02em;
}

.contact-bottom {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(440px, 1.3fr);
  gap: 52px;
  align-items: end;
}

.contact-bottom>p {
  max-width: 440px;
  font-size: 13px;
}

.contact-links {
  border-top: 1px solid var(--line-dark);
}

.contact-link {
  min-height: 58px;
  display: grid;
  grid-template-columns: 66px 1fr 20px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
  transition: padding .25s, background .25s;
}

.contact-link:hover {
  padding-inline: 10px;
  background: rgba(255, 255, 255, .14);
}

.contact-link small {
  opacity: .65;
}

.contact-link strong {
  direction: ltr;
  justify-self: start;
  font-weight: 400;
}

.contact-link svg {
  width: 14px;
}

.footer {
  padding: 24px 0;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: #767e72;
  font-size: 9px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b4baaf;
}

.footer-brand .brand-logo {
  width: 30px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.copyright {
  justify-self: end;
}

html.motion-ready [data-motion] {
  will-change: transform, opacity, clip-path;
}

html.motion-fallback .header,
html.motion-fallback [data-motion] {
  opacity: 0;
}

html.motion-fallback .hero-photo {
  animation: hero-photo-in 1.55s var(--ease) both;
}

html.motion-fallback .header {
  transform: translateY(-22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

html.motion-fallback [data-motion] {
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), clip-path 1s var(--ease);
}

html.motion-fallback [data-motion="hero-logo"] {
  transform: translateX(-30px) scale(.84) rotate(-4deg);
}

html.motion-fallback [data-motion="image-reveal"] {
  clip-path: inset(0 0 100% 0 round var(--radius-lg));
  transform: translateY(24px) scale(.96);
}

html.motion-fallback [data-motion="choice-right"] {
  transform: translateX(70px) rotate(1.5deg);
}

html.motion-fallback [data-motion="choice-left"] {
  transform: translateX(-70px) rotate(-1.5deg);
}

html.motion-fallback [data-motion="contact-panel"] {
  clip-path: inset(18% 0 18% 0 round var(--radius-xl));
  transform: translateY(55px) scale(.96);
}

html.motion-fallback .header.is-visible,
html.motion-fallback [data-motion].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0 round var(--radius-xl));
}

.choice {
  transition: transform .4s var(--ease), border-color .3s, color .3s;
}

.choice:hover {
  transform: translateY(-7px);
  border-color: rgba(166, 192, 114, .7);
}

.service {
  transition: transform .4s var(--ease), padding .35s var(--ease), background .25s, border-color .25s;
}

.service:hover {
  transform: translateX(-6px);
  border-color: rgba(81, 99, 50, .45);
}

.contact-link svg {
  transition: transform .35s var(--ease);
}

.contact-link:hover svg {
  transform: translateX(-5px);
}

.button.magnetic {
  transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
}

.button.magnetic:hover {
  transform: translate(var(--magnet-x, 0), calc(var(--magnet-y, 0) - 2px));
}

@keyframes ribbon {
  to {
    transform: translateX(50%);
  }
}

@keyframes image-sheen {
  to {
    transform: translateX(130%);
  }
}

@keyframes hero-photo-in {
  from {
    filter: saturate(.55) contrast(1.15);
    transform: scale(1.14) translateY(0);
  }
  to {
    filter: saturate(.9) contrast(1.04);
    transform: scale(1.02) translateY(var(--photo-y, 0px));
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .menu,
  .mobile-nav {
    display: block;
  }

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

  .hero-signature {
    position: absolute;
    left: 0;
    bottom: 76px;
  }

  .hero-logo {
    width: 145px;
  }

  .hero-signature p {
    display: none;
  }

  .hero-copy {
    padding-left: 170px;
  }

  .statement-split {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy";
    gap: 34px;
  }

  .choice-head,
  .services-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1320px);
  }

  .header-inner {
    height: 68px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    width: calc(100% - 16px);
    min-height: calc(100svh - 16px);
    margin-top: 8px;
    border-radius: var(--radius-lg);
  }

  .hero-photo {
    object-position: 41% center;
  }

  .hero-grid {
    min-height: calc(100svh - 16px);
    padding: 116px 0 34px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.48;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
    margin-top: 20px;
  }

  .button {
    width: calc(50% - 4px);
    min-height: 40px;
    padding: 6px 10px;
    gap: 8px;
    font-size: 10px;
  }

  .button svg {
    width: 13px;
  }

  .hero-signature {
    position: static;
    justify-self: start;
    justify-items: start;
  }

  .hero-logo {
    width: 118px;
  }

  .hero-bottom {
    margin-top: 25px;
  }

  .hero-bottom span:last-child {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-label {
    margin-bottom: 28px;
  }

  .statement-split {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy";
    gap: 34px;
  }

  .statement-visual figcaption {
    display: grid;
    gap: 2px;
  }

  .statement-copy h2,
  .choice-head h2,
  .services-head h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.7;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    overflow: clip;
  }

  .choice {
    min-height: 285px;
    transform: none;
  }

  .choice:hover {
    transform: none;
  }

  html.motion-fallback [data-motion="choice-right"],
  html.motion-fallback [data-motion="choice-left"] {
    transform: translateY(38px);
  }

  .choice+.choice {
    border-right: 1px solid var(--line);
  }

  .city {
    width: calc(100% - 16px);
    min-height: 540px;
    border-radius: var(--radius-lg);
  }

  .city img {
    object-position: 58% center;
  }

  .city-caption .wrap {
    display: grid;
  }

  .city-caption h2 {
    font-size: 34px;
  }

  .service {
    grid-template-columns: 35px 1fr 26px;
    gap: 12px;
    padding: 19px 0;
  }

  .service p {
    grid-column: 2 / 4;
  }

  .service svg {
    grid-column: 3;
    grid-row: 1;
  }

  .contact-panel {
    min-height: 670px;
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .contact-top span:last-child {
    display: none;
  }

  .contact h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.6;
  }

  .contact-link {
    grid-template-columns: 50px 1fr 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .copyright {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-motion] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .hero-photo,
  .statement-image-frame img {
    transform: none !important;
  }
}
