:root {
  --deep: #a93f9a;
  --mid: #be5cb1;
  --light: #df8cd9;
  --ink: #251b22;
  --muted: #776b73;
  --paper: #fff;
  --blush: #fff6fb;
  --line: #eadde6;
  --brand-gradient: linear-gradient(135deg,var(--deep) 0%,var(--mid) 48%,var(--light) 100%);
  --brand-gradient-dark: linear-gradient(135deg,#8f247e 0%,var(--deep) 42%,var(--mid) 100%);
  --brand-gradient-soft: linear-gradient(135deg,var(--mid) 0%,var(--light) 100%);
  --serif: "Cormorant Garamond",Georgia,serif;
  --sans: "DM Sans",Arial,sans-serif;
  --pad: clamp(24px,6vw,96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.7 var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 92px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(183,43,134,.1);
  transition: .3s;
}

.site-header.scrolled {
  height: 76px;
  box-shadow: 0 12px 35px rgba(86,21,65,.06);
}

.logo-space {
  width: 400px;
  height: 54px;
  display: grid;
  place-items: center;
}

.site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.main-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  position: relative;
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--brand-gradient);
  transition: .3s;
}

.main-nav a:hover:after, .main-nav a.active:after {
  right: 0;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-switcher span {
  height: 14px;
  width: 1px;
  background: var(--line);
}

.lang-btn {
  border: 0;
  background: none;
  padding: 6px 2px;
  font-size: 11px;
  letter-spacing: .12em;
  cursor: pointer;
  color: #988a93;
}

.lang-btn.active {
  color: var(--deep);
  font-weight: 600;
}

.header-cta, .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: var(--brand-gradient-dark);
  color: #fff;
  border: 1px solid transparent;
  padding: 15px 22px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(169,63,154,.2);
  transition: .3s;
}

.header-cta:hover, .button:hover {
  background: var(--brand-gradient);
  box-shadow: 0 20px 40px rgba(169,63,154,.28);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--deep);
  margin: 7px auto;
  transition: .3s;
}

.hero {
  min-height: 900px;
  padding: 150px var(--pad) 80px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 7vw;
  align-items: center;
  background: linear-gradient(120deg,#fff 0 58%,var(--blush) 58%);
  position: relative;
}

.hero:before {
  content: "MEET";
  position: absolute;
  left: -.03em;
  bottom: -.17em;
  font: 500 clamp(160px,27vw,430px)/1 var(--serif);
  color: rgba(183,43,134,.035);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 27px;
  color: var(--deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--brand-gradient-soft);
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 13px;
}

.hero h1, .about-copy h1 {
  font: 400 clamp(64px,7.5vw,124px)/.92 var(--serif);
  letter-spacing: -.045em;
  margin: 0 0 30px;
}

.hero h1 em, .about-copy h1 em, .intro h2 em, .story-copy h2 em, .expertise h2 em, .origin h2 em, .turning-copy h2 em, .values h2 em {
  color: var(--deep);
  font-weight: 400;
}

.hero-lead {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
}

.subtle-link, .text-link {
  color: var(--deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--light);
  padding-bottom: 5px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 55px;
}

.hero-proof strong {
  font: 500 44px var(--serif);
  color: var(--deep);
}

.hero-proof span {
  max-width: 105px;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
}

.hero-visual {
  height: 100vh;
  position: relative;
}

.hero-image {
  height: 100%;
  overflow: hidden;
  border-radius: 240px 240px 8px 8px;
  box-shadow: 0 35px 70px rgba(122,33,94,.13);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-card {
  position: absolute;
  left: -70px;
  bottom: 200px;
  width: 180px;
  height: 210px;
  padding: 25px;
  background: var(--brand-gradient-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 22px 50px rgba(85,21,65,.24);
}

.hero-card>span {
  font-size: 10px;
  letter-spacing: .2em;
}

.hero-card p {
  font: 400 26px/1.25 var(--serif);
  margin: 0;
}

.location-mark {
  position: absolute;
  right: -37px;
  top: 30%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right center;
  color: var(--deep);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.location-mark i {
  width: 25px;
  height: 1px;
  background: var(--brand-gradient-soft);
}

.intro {
  padding: clamp(110px,14vw,210px) var(--pad);
  display: grid;
  grid-template-columns: .17fr 1.25fr .8fr;
  gap: 6vw;
  position: relative;
}

.section-number {
  font: 400 20px var(--serif);
  color: var(--mid);
  padding-top: 65px;
}

.intro h2, .story-copy h2, .expertise h2, .origin h2, .turning-copy h2, .values h2 {
  font: 400 clamp(45px,5.4vw,84px)/1.02 var(--serif);
  letter-spacing: -.03em;
  margin: 0;
}

.intro-copy {
  padding-top: 65px;
}

.intro-copy p {
  color: var(--muted);
  font-weight: 300;
}

.intro-copy .text-link {
  display: inline-block;
  margin-top: 22px;
}

.image-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--blush);
}

.story-image {
  min-height: 780px;
  position: relative;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.story-image>span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: #fff;
  padding: 12px 17px;
  color: var(--deep);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.story-copy {
  padding: clamp(70px,8vw,135px) var(--pad);
  align-self: center;
}

.story-copy>p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
}

.story-copy blockquote {
  margin: 35px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--light);
  font: italic 400 28px/1.45 var(--serif);
  color: var(--deep);
}

.expertise {
  padding: clamp(110px,14vw,200px) var(--pad);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
}

.expertise-head>p:last-child {
  color: var(--muted);
  max-width: 520px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 55px 1fr 25px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 28px 5px;
  transition: .3s;
}

.service-list article:hover {
  padding-left: 18px;
  background: var(--blush);
}

.service-list article>span {
  font: 400 16px var(--serif);
  color: var(--mid);
}

.service-list h3 {
  font: 500 28px var(--serif);
  margin: 0;
}

.service-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-list b {
  color: var(--deep);
  font-weight: 400;
}

.quote-band {
  padding: clamp(90px,11vw,160px) var(--pad);
  background: var(--brand-gradient-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band:before, .quote-band:after {
  display: none;
}

.quote-fitness-mark {
  position: absolute;
  left: max(22px,calc(var(--pad) - 22px));
  top: 50%;
  z-index: 1;
  width: clamp(118px,14vw,190px);
  opacity: .56;
  filter: drop-shadow(0 20px 28px rgba(85,21,65,.18));
  transform: translateY(-50%) rotate(-7deg);
  pointer-events: none;
}

.quote-fitness-mark svg {
  width: 100%;
  height: auto;
}

.quote-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(44vw,560px);
  opacity: .28;
  -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 18%,rgba(0,0,0,.72) 46%,#000 78%);
  mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 18%,rgba(0,0,0,.72) 46%,#000 78%);
  pointer-events: none;
}

.quote-image:before {
  display: none;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
}

.quote-band p {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: auto;
  font: italic 400 clamp(38px,5.5vw,78px)/1.15 var(--serif);
}

.moments {
  padding: clamp(100px,13vw,185px) var(--pad);
}

.moments-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 55px;
}

.moments-head h2 {
  font: 400 clamp(46px,5vw,76px) var(--serif);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 18px;
  align-items: center;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin-top: 18px;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
  height: 520px;
  cursor: zoom-in;
}

.gallery-item.landscape {
  height: 650px;
}

.gallery-item.small {
  height: 210px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.92);
  padding: 9px 14px;
  color: var(--deep);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.contact {
  padding: clamp(100px,12vw,175px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  background: var(--blush);
}

.contact-copy h2 {
  font: 400 clamp(54px,6vw,90px)/1 var(--serif);
  margin: 0;
}

.contact-copy h2 em {
  color: var(--deep);
  font-weight: 400;
}

.contact-copy>p:not(.eyebrow) {
  color: var(--muted);
  max-width: 540px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 38px;
  color: var(--deep);
  font-size: 14px;
}

.contact-direct a, .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-direct i, .footer-links i {
  font-size: 16px;
  line-height: 1;
}

.contact-form {
  background: #fff;
  padding: clamp(30px,4vw,58px);
  box-shadow: 18px 18px 0 var(--light);
}

.contact-form label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 22px;
  color: var(--deep);
}

.contact-form input, .contact-form textarea, .contact-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfbdc9;
  background: transparent;
  padding: 12px 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--deep);
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-note {
  font-size: 10px;
  color: var(--muted);
}

.form-error {
  margin: 0 0 24px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 72px var(--pad) 30px;
  background: #24141f;
  color: rgba(255,255,255,.68);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
}

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

.footer-logo {
  width: 190px;
  height: 145px;
  flex: 0 0 190px;
}

.footer-lead p {
  max-width: 440px;
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--light);
}

.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.created-by {
  display: inline-flex;
  align-items: center;
}

.created-by img {
  width: 200px;
  height: auto;
}

.about-hero {
  min-height: 900px;
  padding: 145px var(--pad) 80px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 8vw;
  align-items: center;
  background: var(--blush);
}

.about-copy h1 {
  font-size: clamp(66px,8vw,125px);
}

.about-copy>p:last-child {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.about-photo {
  height: 690px;
  position: relative;
}

.about-photo>img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 260px 260px 0 0;
}

.about-photo>div {
  position: absolute;
  left: -55px;
  bottom: 38px;
  width: 180px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(99,24,74,.14);
  display: flex;
  flex-direction: column;
}

.about-photo strong {
  font: 500 52px var(--serif);
  color: var(--deep);
}

.about-photo span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.origin {
  padding: clamp(100px,13vw,190px) var(--pad);
  display: grid;
  grid-template-columns: .55fr 1.1fr;
  gap: 10vw;
}

.origin-stat {
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--deep);
  padding-top: 25px;
}

.origin-stat>span, .origin-stat>small {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  color: var(--muted);
}

.origin-stat strong {
  font: 500 40px/1.05 var(--serif);
  color: var(--deep);
  margin: 30px 0;
}

.origin-copy p:not(.eyebrow), .turning-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
}

.turning-point {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #291721;
  color: #fff;
}

.turning-image {
  min-height: 800px;
}

.turning-image img {
  height: 100%;
  object-fit: cover;
}

.turning-copy {
  padding: clamp(70px,8vw,130px) var(--pad);
  align-self: center;
}

.turning-copy h2 em {
  color: var(--light);
}

.turning-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
}

.values {
  padding: clamp(100px,13vw,190px) var(--pad);
}

.values-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 65px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}

.values-grid article {
  padding: 32px 45px 25px 0;
  border-right: 1px solid var(--line);
  min-height: 270px;
}

.values-grid article:not(:first-child) {
  padding-left: 45px;
}

.values-grid article:last-child {
  border: 0;
}

.values-grid span {
  color: var(--mid);
  font: 400 16px var(--serif);
}

.values-grid h3 {
  font: 500 39px var(--serif);
  margin: 55px 0 8px;
}

.values-grid p {
  color: var(--muted);
  font-size: 14px;
}

.mission-banner {
  padding: clamp(100px,12vw,175px) var(--pad);
  background: var(--blush);
  text-align: center;
}

.mission-banner h2 {
  max-width: 1050px;
  margin: 20px auto 30px;
  font: 400 clamp(43px,5.5vw,80px)/1.1 var(--serif);
}

.mission-banner>p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 35px;
  color: var(--muted);
}

.thanks {
  min-height: 82vh;
  padding: 160px var(--pad) 90px;
  display: grid;
  place-content: center;
  text-align: center;
}

.thanks h1 {
  font: 400 clamp(60px,8vw,120px)/.95 var(--serif);
  margin: 10px;
}

.thanks h1 em {
  color: var(--deep);
  font-weight: 400;
}

.thanks .button {
  margin: 25px auto;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: clamp(22px,4vw,56px);
  background: rgba(28,15,24,.72);
  backdrop-filter: blur(14px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-panel {
  position: relative;
  width: min(1040px,100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(30px,5vw,70px);
  background: #fff;
  padding: clamp(34px,5vw,64px);
  box-shadow: 0 34px 90px rgba(28,15,24,.32);
}

.contact-modal-copy {
  align-self: center;
}

.contact-modal-copy h2 {
  margin: 0 0 22px;
  font: 400 clamp(46px,5vw,78px)/1 var(--serif);
}

.contact-modal-copy h2 em {
  color: var(--deep);
  font-weight: 400;
}

.contact-modal-copy>p:not(.eyebrow) {
  color: var(--muted);
}

.modal-contact-form {
  box-shadow: none;
  border-left: 1px solid var(--line);
  padding: 0 0 0 clamp(30px,4vw,58px);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  border: 0;
  background: none;
  color: var(--deep);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,15,24,.95);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 4vw;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .3s;
}

.lightbox-nav:hover {
  background: var(--brand-gradient);
  border-color: transparent;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 16px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

html[dir="rtl"] body {
  font-family: "Noto Kufi Arabic",var(--sans);
  line-height: 1.9;
}

html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] blockquote, html[dir="rtl"] .quote-band p {
  font-family: "Noto Kufi Arabic",sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

html[dir="rtl"] .hero h1, html[dir="rtl"] .about-copy h1 {
  font-size: clamp(52px,6vw,93px);
}

html[dir="rtl"] .eyebrow, html[dir="rtl"] .main-nav a, html[dir="rtl"] .header-cta, html[dir="rtl"] .button {
  letter-spacing: 0;
}

html[dir="rtl"] .hero-card {
  left: auto;
  right: -70px;
}

html[dir="rtl"] .location-mark {
  right: auto;
  left: -37px;
  transform: rotate(-90deg);
  transform-origin: left center;
}

html[dir="rtl"] .gallery-item span {
  left: auto;
  right: 20px;
}

html[dir="rtl"] .footer-links {
  align-items: flex-start;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  body.menu-open .site-header {
    height: 100vh;
    align-items: start;
    background: #fff;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    position: relative;
    z-index: 4;
    margin-top: 14px;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  body.menu-open .site-header .logo-space {
    position: relative;
    z-index: 4;
    margin-top: 9px;
  }

  .main-nav {
    position: absolute;
    z-index: 2;
    inset: 86px 0 auto;
    min-height: calc(100vh - 190px);
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 34px var(--pad) 26px;
    transform: translateX(100%);
    transition: .4s;
  }

  .main-nav.open {
    transform: none;
  }

  .main-nav a {
    width: 100%;
    max-width: 360px;
    padding: 10px 0 14px;
    border-bottom: 1px solid var(--line);
    font: 400 clamp(28px,8vw,42px)/1.05 var(--serif);
    text-align: center;
    letter-spacing: .14em;
  }

  .main-nav a:after {
    display: none;
  }

  .header-actions {
    position: absolute;
    z-index: 3;
    bottom: 34px;
    left: 0;
    right: 0;
    justify-content: center;
    transform: translateX(100%);
    transition: .4s;
  }

  .main-nav.open~.header-actions {
    transform: none;
  }

  .header-cta {
    display: none;
  }

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

  .hero-card {
    left: -35px;
  }

  .intro {
    grid-template-columns: .12fr 1fr;
  }

  .intro-copy {
    grid-column: 2;
  }

  .image-story, .contact, .about-hero, .turning-point {
    grid-template-columns: 1fr;
  }

  .story-image, .turning-image {
    min-height: 0;
    height: 740px;
  }

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

  .about-copy {
    padding-top: 40px;
  }

  .about-photo {
    height: 720px;
  }

  .origin {
    grid-template-columns: .5fr 1fr;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 22px;
  }

  .site-header {
    height: 72px;
  }

  .logo-space {
    width: 260px;
    height: 39px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 115px;
    background: #fff;
  }

  .hero-copy {
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-proof {
    margin-top: 35px;
  }

  .hero-visual {
    height: 570px;
  }

  .hero-card {
    left: 12px;
    bottom: 20px;
    width: 150px;
    height: 165px;
  }

  .location-mark {
    display: none;
  }

  .intro {
    display: block;
  }

  .section-number {
    display: none;
  }

  .intro-title {
    margin-bottom: 35px;
  }

  .intro h2, .story-copy h2, .expertise h2, .origin h2, .turning-copy h2, .values h2 {
    font-size: 47px;
  }

  .intro-copy {
    padding: 0;
  }

  .image-story {
    display: flex;
    flex-direction: column;
  }

  .story-image {
    height: 580px;
  }

  .story-copy {
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .expertise {
    padding-top: 90px;
  }

  .service-list article {
    grid-template-columns: 40px 1fr 15px;
  }

  .service-list h3 {
    font-size: 24px;
  }

  .quote-band p {
    font-size: 39px;
  }

  .quote-fitness-mark {
    left: 14px;
    top: 22px;
    width: 106px;
    opacity: .34;
    transform: rotate(-7deg);
  }

  .quote-image {
    width: 78vw;
    opacity: .18;
    -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 24%,rgba(0,0,0,.78) 56%,#000 84%);
    mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 24%,rgba(0,0,0,.78) 56%,#000 84%);
  }

  .moments-head, .values-head {
    display: block;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(2,1fr);
  }

  .gallery-item, .gallery-item.landscape {
    height: 520px;
  }

  .gallery-item.small {
    height: 240px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .contact-form {
    box-shadow: 9px 9px 0 var(--light);
  }

  .contact-modal-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px 28px;
  }

  .contact-modal-copy h2 {
    font-size: 43px;
  }

  .modal-contact-form {
    border-left: 0;
    padding: 0;
    box-shadow: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-lead {
    gap: 18px;
  }

  .footer-logo {
    width: 124px;
    height: 96px;
    flex-basis: 124px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .about-hero {
    padding-top: 110px;
  }

  .about-copy h1 {
    font-size: 61px;
  }

  .about-photo {
    height: 580px;
  }

  .about-photo>div {
    left: 10px;
  }

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

  .turning-image {
    height: 590px;
  }

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

  .values-grid article, .values-grid article:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    min-height: 220px;
  }

  .values-grid h3 {
    margin-top: 38px;
  }

  html[dir="rtl"] .hero-card {
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
