/* ==========================================================================
   Tameer Designs — editorial dark stylesheet
   Brand: Charcoal #141414 · Ivory #EDEAE3 · Antique Gold #C9A34E · Royal #1E3A5F
   Type:  Cormorant Garamond (display serif) · Montserrat (sans) · Cinzel (wordmark)
   ========================================================================== */
:root {
  --black: #141414;
  --white: #EDEAE3;
  --gold: #C9A34E;
  --royal: #1E3A5F;
  --hairline: rgba(237, 234, 227, .22);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --brand: "Cinzel", serif;
}

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

html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.3;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

/* ---------- Type scale (mosaic-style fluid vw) ---------- */
.h-450 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23.44vw;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-align: center;
}
.h-295 { font-family: var(--sans); font-weight: 500; font-size: 15.36vw; line-height: 1.1; letter-spacing: -.06em; text-transform: uppercase; }
.h-200 { font-family: var(--serif); font-weight: 400; font-size: 10.42vw; line-height: .9; letter-spacing: -.02em; text-transform: uppercase; position: relative; z-index: 1; }
.h-150 { font-family: var(--sans); font-weight: 500; font-size: 7.81vw; line-height: .95; letter-spacing: -.03em; }
.h-130 { font-family: var(--serif); font-weight: 400; font-size: 6.77vw; line-height: 1.1; letter-spacing: -.02em; }
.h-75 { font-family: var(--sans); font-weight: 400; font-size: 3.91vw; line-height: 1.15; letter-spacing: -.03em; }
.h-50 { font-family: var(--serif); font-weight: 300; font-size: 2.6vw; line-height: 1.1; letter-spacing: -.01em; text-align: center; }
.h-50.left { text-align: left; }
.p-20 { font-family: var(--sans); font-weight: 400; font-size: clamp(13px, 1.04vw, 20px); line-height: 1.35; letter-spacing: -.02em; }
.dim { opacity: .55; }
.underline { text-decoration: underline; text-underline-offset: .35em; text-decoration-thickness: 1px; }
.ed-italic { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold); }
.h-150 .ed-italic { font-size: 1.12em; letter-spacing: 0; }

@media (max-width: 767px) {
  .h-450 { font-size: 25.64vw; }
  .h-295 { font-size: 15.36vw; }
  .h-200 { font-size: 17.18vw; }
  .h-150 { font-size: 11.54vw; }
  .h-130 { font-size: 12.82vw; }
  .h-75 { font-size: 8.97vw; }
  .h-50 { font-size: 8.97vw; }
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, opacity .25s;
  opacity: 0;
  mix-blend-mode: difference;
}
body.cursor-on .cursor { opacity: 1; }
body.cursor-hover .cursor { width: 52px; height: 52px; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .52vw;
  background: var(--white);
  color: var(--black);
  min-width: 10.14vw;
  height: 3.22vw;
  min-height: 44px;
  padding: .78vw 1.56vw;
  font-family: var(--sans);
  font-size: clamp(13px, 1.04vw, 20px);
  letter-spacing: -.02em;
  border-radius: 100px;
  transition: background .35s, transform .35s;
}
.button:hover { background: var(--gold); }
.button .btn-arrow { transition: transform .35s; }
.button:hover .btn-arrow { transform: translateX(.3em); }
.button.full-w { align-self: flex-start; }

.dwnld_link { display: inline-flex; align-items: center; gap: .6em; transition: color .3s; }
.dwnld_link:hover { color: var(--gold); }
.dwnld_arrow { font-size: 1.1em; }

/* ---------- Header ---------- */
.header { pointer-events: none; }
.logo-link {
  pointer-events: auto;
  position: fixed;
  top: 1.5vw; right: 2.6vw;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: .9vw;
  transform-origin: top right;
  will-change: transform;
}
.logo { width: clamp(48px, 4.2vw, 80px); height: auto; }

.nav-toggle {
  pointer-events: auto;
  position: fixed;
  top: 2vw; left: 2.6vw;
  z-index: 700;
  display: grid;
  place-items: center;
  width: clamp(44px, 3.2vw, 58px);
  height: clamp(44px, 3.2vw, 58px);
  background: rgba(20, 20, 20, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 163, 78, .45);
  border-radius: 0;
  color: var(--gold);
  transition: background .35s, border-color .35s, color .35s;
}
.nav-toggle:hover { background: rgba(201, 163, 78, .12); border-color: var(--gold); }
.nav-toggle__icon {
  width: 52%;
  height: 52%;
  transition: transform .5s cubic-bezier(.6, 0, .2, 1);
}
.nav-toggle:hover .nav-toggle__icon { transform: rotate(45deg); }
.nav-toggle.open {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--black);
}
.nav-toggle.open .nav-toggle__icon { transform: rotate(90deg); }

.nav-card {
  pointer-events: none;
  position: fixed;
  top: 1.4vw; left: 2vw;
  z-index: 650;
  background: var(--white);
  border-radius: 1.5em;
  padding: 5.5em 4em 2.5em 2.4em;
  transform: scale(.2);
  transform-origin: 2em 2em;
  opacity: 0;
  transition: transform .55s cubic-bezier(.6, 0, .2, 1), opacity .4s;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}
.nav-card.open { pointer-events: auto; transform: scale(1); opacity: 1; }
.nav-card__ul { list-style: none; display: flex; flex-direction: column; gap: .35em; }
.nav-card__link {
  display: flex;
  color: #131313;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.25;
  transition: color .25s, transform .3s;
}
.nav-card__link:hover { color: var(--gold); font-style: italic; transform: translateX(.25em); }

@media (max-width: 767px) {
  .nav-toggle { top: 4vw; left: 4vw; }
  .logo-link { top: 3vw; right: 4vw; }
  .nav-card {
    top: 2.5vw; left: 2.5vw;
    width: calc(100vw - 5vw);
    padding: 18vw 8vw 9vw;
  }
  .nav-card__ul { gap: 2.5vw; }
  .nav-card__link { font-size: 8vw; padding: .5vw 0; }
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 2.6vw;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg__video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.55) 0%, rgba(20,20,20,.35) 45%, rgba(20,20,20,.85) 100%);
}
.hero_content { display: flex; flex-direction: column; gap: .52vw; width: 100vw; }
.hero_content-miniinfo {
  display: flex;
  justify-content: space-between;
  padding: 0 2.6vw 1.3vw;
}
.hero_content-bottom {
  display: flex;
  align-items: center;
  gap: 11.25vw;
  border-top: 1px solid var(--hairline);
  padding-top: 2.6vw;
  padding-left: 2.6vw;
}
.hero_content-bottom-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vw;
  width: 20.21vw;
  padding: 1.25vw 0;
}

@media (max-width: 767px) {
  .hero-section { padding-bottom: 7.69vw; }
  .hero_content-bottom { flex-direction: column; align-items: flex-start; gap: 8vw; padding: 7.69vw 5.13vw 0; }
  .hero_content-miniinfo { padding: 0 5.13vw 3vw; }
  .hero_content-bottom-cta { width: 100%; gap: 6vw; }
  .button { min-width: 44vw; height: 13.37vw; font-size: 4.1vw; }
}

/* ---------- About ---------- */
.about {
  position: relative;
  min-height: 100svh;
  padding: 14vw 2.6vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about_bg { position: absolute; inset: 0; z-index: 0; }
.about_bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.about_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 12%, rgba(20, 20, 20, .72) 45%, rgba(20, 20, 20, .18) 85%),
    linear-gradient(0deg, var(--black), transparent 18%),
    linear-gradient(180deg, var(--black), transparent 16%);
}
.about_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4vw;
  max-width: 62vw;
}
.highlight-text .word { opacity: .18; transition: opacity .45s; }
.highlight-text .word.lit { opacity: 1; }
.highlight-text .ed-italic .word { color: var(--gold); }
@media (max-width: 767px) {
  .about { padding: 24vw 5.13vw; }
  .about_content { max-width: 100%; gap: 9vw; }
  .about_bg::after {
    background:
      linear-gradient(180deg, var(--black) 4%, rgba(20, 20, 20, .7) 40%, rgba(20, 20, 20, .55) 100%);
  }
}

/* ---------- Projects ---------- */
.projects {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9vw 0;
  overflow: hidden;
}
.projects_bg { position: absolute; inset: 0; z-index: 0; }
.projects_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .38);
}
.band-fade { pointer-events: none; position: absolute; bottom: 0; left: 0; width: 100vw; height: 60vw; z-index: 1; }
.band-fade--left { background: linear-gradient(45deg, var(--black), transparent 50%); }
.band-fade--right { background: linear-gradient(315deg, var(--black), transparent 50%); }

.projects_content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 4.5vw;
  padding: 0 2.6vw;
  flex-wrap: wrap;
  width: 100%;
}
.projects_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 18.23vw;
  min-width: 240px;
  height: 35.42vw;
  min-height: 460px;
  padding: 1.04vw 1.04vw 1.4vw;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background: rgba(22, 21, 22, .2);
}
.projects_item > .p-20:first-child { align-self: flex-start; }
.projects_img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s, transform .9s cubic-bezier(.22,.8,.3,1);
}
.projects_item:hover .projects_img,
.projects_item:focus-visible .projects_img { opacity: 1; transform: scale(1); }
.projects_item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(0deg, rgba(20, 20, 20, .55), transparent);
  opacity: 0;
  transition: opacity .55s;
}
.projects_item:hover::after { opacity: 1; }
.projects_item .dim { text-align: center; position: relative; z-index: 1; }

@media (max-width: 767px) {
  .projects_content {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 5.13vw;
  }
  .projects_content::-webkit-scrollbar { display: none; }
  .projects_item { flex: none; width: 77.44vw; min-width: 0; height: 126.15vw; min-height: 0; padding: 4.62vw; scroll-snap-align: center; }
  .projects_img { opacity: 0; transform: none; transition: opacity .5s; }
  .projects_item.is-centered .projects_img { opacity: 1; }
  .projects_item.is-centered::after { opacity: 1; }
}

/* ---------- Offer (sticky features) ---------- */
.offer { position: relative; height: 450vh; background: var(--black); }
.offer_sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.offer_container {
  display: flex;
  gap: 9.68vw;
  align-items: stretch;
  width: 100%;
  max-width: 79.17vw;
  margin: 0 auto;
}
.offer_col { flex: 1; position: relative; }
.offer_frame {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}
.offer_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.offer_img:first-child { clip-path: inset(0); }
.offer_img.right-pos { object-position: 80% 50%; }
.offer_img.left-pos { object-position: 0% 50%; }
.offer_progress {
  position: absolute;
  left: 0; right: 0;
  bottom: -1.5vw;
  height: .25vw;
  min-height: 3px;
  background: rgba(237, 234, 227, .15);
}
.offer_progress-bar {
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.offer_col--txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vh 0 3vh;
}
.offer_head { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2vw; }
.offer_orn { width: 3vw; min-width: 34px; color: var(--gold); }
.offer_big { text-transform: uppercase; }
.offer_intro { max-width: 31vw; color: rgba(237, 234, 227, .78); }
.offer_texts { position: relative; min-height: 16vw; }
.offer_text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.3vw;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s, transform .5s;
  pointer-events: none;
}
.offer_text.is-active { opacity: 1; transform: none; pointer-events: auto; }
.offer_tag {
  font-family: var(--sans);
  font-size: clamp(13px, 1.04vw, 20px);
  color: var(--white);
  background: rgba(201, 163, 78, .16);
  padding: .55vw 1vw;
}
.offer_title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.4vw;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.offer_desc { color: rgba(237, 234, 227, .7); max-width: 30vw; font-size: clamp(14px, 1.15vw, 21px); }
.offer_text-img { display: none; }

@media (max-width: 860px) {
  .offer { height: auto; }
  .offer_sticky { position: static; height: auto; display: block; padding: 20vw 5.13vw 8vw; }
  .offer_container { flex-direction: column; max-width: none; gap: 10vw; }
  .offer_col--img { display: none; }
  .offer_col--txt { padding: 0; gap: 12vw; }
  .offer_head { gap: 4vw; }
  .offer_orn { width: 8vw; }
  .offer_intro { max-width: none; }
  .offer_texts {
    min-height: 0;
    display: flex;
    gap: 4vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -5.13vw;
    padding: 0 5.13vw 3vw;
  }
  .offer_texts::-webkit-scrollbar { display: none; }
  .offer_text {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex: none;
    width: 78vw;
    scroll-snap-align: center;
    justify-content: flex-start;
    gap: 3.5vw;
    background: rgba(237, 234, 227, .05);
    padding: 4.5vw 4.5vw 7vw;
  }
  .offer_text-img { display: block; width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; margin-bottom: 2vw; }
  .offer_title { font-size: 8vw; }
  .offer_desc { max-width: none; font-size: 4vw; }
  .offer_tag { padding: 1.5vw 2.5vw; }
}

/* ---------- Download strip ---------- */
.dwnld, .mediakit {
  padding: 12vw 2.6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.h-75.short { max-width: 60vw; }
@media (max-width: 767px) { .h-75.short { max-width: 90vw; } }

/* ---------- Process ---------- */
.process { padding-top: 10vw; border-top: 1px solid var(--hairline); }
.process_h-wrapper { position: relative; padding: 0 2.6vw; }
.process_note { position: absolute; right: 6vw; bottom: 1vw; color: var(--gold); font-size: clamp(14px, 1.4vw, 24px); }
@media (max-width: 767px) {
  .process_note { position: static; margin-top: 2vw; display: block; }
}
.timeline { position: relative; }
.timeline_progress {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--hairline);
  transform: translateX(-50%);
}
.timeline_progress-bar { width: 100%; height: 0%; background: var(--gold); }
.timeline_item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 36.98vw 1fr;
  align-content: start;
  padding: 12vw 2.6vw;
  min-height: 56vw;
  overflow: hidden;
}
.timeline_left, .timeline_centre, .timeline_right { position: relative; z-index: 2; grid-row: 1; }
.timeline_left { grid-column: 1; display: flex; justify-content: flex-end; }
.timeline_centre { grid-column: 2; }
.timeline_right { grid-column: 3; }
.timeline_item.alt .timeline_left { grid-column: 3; justify-content: flex-start; }
.timeline_item.alt .timeline_right { grid-column: 1; display: flex; justify-content: flex-end; }
.timeline_date-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 3.91vw;
  line-height: 1.1;
  letter-spacing: -.02em;
  position: sticky;
  top: 46vh;
  align-self: start;
}
.timeline_centre { display: flex; justify-content: center; }
.timeline_circle {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  position: sticky;
  top: 50vh;
  align-self: start;
}
.timeline_text {
  width: 24.79vw;
  font-size: clamp(15px, 1.56vw, 26px);
  line-height: 1.35;
  letter-spacing: -.02em;
  position: sticky;
  top: 48vh;
  align-self: start;
}
.timeline_img {
  position: absolute;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 65.1vw;
  height: 36.35vw;
  object-fit: cover;
  opacity: .5;
}
.timeline_img.left { left: 0; }
.timeline_img.right { right: 0; }
.overlay-fade-top, .overlay-fade-bottom {
  pointer-events: none;
  position: absolute;
  left: 0; right: 0;
  height: 18vw;
  z-index: 1;
}
.overlay-fade-top { top: 0; background: linear-gradient(180deg, var(--black), transparent); }
.overlay-fade-bottom { bottom: 0; background: linear-gradient(0deg, var(--black), transparent); }

@media (max-width: 767px) {
  .timeline_item { gap: 5vw; padding: 14vw 5.13vw 14vw 14vw; min-height: 0; display: flex; flex-direction: column; }
  .timeline_left { justify-content: flex-start; }
  .timeline_date-text { font-size: 9vw; position: static; }
  .timeline_centre { display: none; }
  .timeline_progress { left: 5.5vw; }
  .timeline_text { width: 100%; font-size: 4.4vw; position: static; }
  .timeline_img { position: static; transform: none; width: 100%; height: 54vw; margin: 0 0 4vw; opacity: 1; order: -1; }
  .overlay-fade-top, .overlay-fade-bottom { display: none; }
}

/* ---------- Portfolio ---------- */
.catalogs { padding: 12vw 2.6vw; border-top: 1px solid var(--hairline); }
.catalogs_heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 3vw;
  flex-wrap: wrap;
  margin-bottom: 4vw;
}
.catalogs_tabs-menu { display: flex; gap: 2.5vw; flex-wrap: wrap; margin-bottom: 3vw; }
.catalogs_tab-link {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 3rem);
  letter-spacing: -.01em;
  opacity: .4;
  transition: opacity .3s, color .3s;
}
.catalogs_tab-link:hover { opacity: .8; }
.catalogs_tab-link.is-active { opacity: 1; color: var(--gold); }
.masonry-wrap { display: none; columns: 4 240px; column-gap: 1em; }
.masonry-wrap.is-active { display: block; animation: paneIn .7s cubic-bezier(.22,.8,.3,1); }
@keyframes paneIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.masonry-item { break-inside: avoid; margin-bottom: 1em; overflow: hidden; }
.masonry-item img { width: 100%; transition: transform .7s cubic-bezier(.22,.8,.3,1), opacity .5s; }
.masonry-item:hover img { transform: scale(1.04); }

/* ---------- Team (flick cards) ---------- */
.artists { position: relative; padding: 6vw 0 10vw; border-top: 1px solid var(--hairline); overflow: hidden; }
.artists .h-450 { opacity: .92; }
.flick-group {
  position: relative;
  margin-top: -8vw;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.flick-card img { -webkit-user-drag: none; }
.flick-group.dragging { cursor: grabbing; }
.flick-track {
  display: flex;
  gap: 2vw;
  padding: 0 6vw;
  will-change: transform;
}
.flick-card { flex: none; width: 22vw; min-width: 250px; }
.flick-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; pointer-events: none; }
.flick-card figcaption { margin-top: .8em; opacity: .8; }
.abs_collaborate { position: absolute; right: 2.6vw; bottom: 4vw; }
@media (max-width: 767px) {
  .flick-group { margin-top: -4vw; }
  .flick-card { width: 66vw; }
  .abs_collaborate { position: static; margin: 8vw auto 0; display: flex; width: fit-content; }
}

/* ---------- Forms ---------- */
.cta { padding: 14vw 2.6vw; border-top: 1px solid var(--hairline); }
.cta_form-wrapper { max-width: 62vw; margin: 0 auto; display: flex; flex-direction: column; gap: 4vw; }
.cta_form { display: flex; flex-direction: column; gap: 3vw; }
.cta_form-inputs { display: flex; flex-direction: column; }
.cta_form-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 22px);
  letter-spacing: -.02em;
  padding: 2vw 0 1.2vw;
  outline: none;
  border-radius: 0;
  transition: border-color .3s;
}
.cta_form-input::placeholder { color: rgba(237, 234, 227, .4); }
.cta_form-input:focus { border-color: var(--gold); }
.cta_submit {
  align-self: flex-start;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(13px, 1.04vw, 20px);
  padding: 1vw 3vw;
  min-height: 44px;
  border-radius: 100px;
  transition: background .35s;
}
.cta_submit:hover { background: var(--white); }
.form-note { color: var(--gold); min-height: 1.4em; font-style: italic; font-family: var(--serif); font-size: clamp(15px, 1.2vw, 21px); }
@media (max-width: 767px) { .cta_form-wrapper { max-width: none; gap: 9vw; } .cta_form-input { padding: 5vw 0 3vw; font-size: 4.1vw; } .cta_submit { padding: 3.5vw 9vw; } }

/* ---------- Sectors / Milestones ---------- */
.press, .awards { padding: 10vw 2.6vw; border-top: 1px solid var(--hairline); }
.press_heading { display: flex; align-items: flex-start; gap: 2.5vw; margin-bottom: 4vw; }
.press_count { color: var(--gold); font-weight: 400; }
.press_content { display: flex; flex-direction: column; }
.press_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
  padding: 1.8vw .4vw;
  border-top: 1px solid var(--hairline);
  transition: padding-left .35s, color .35s;
}
.press_row:last-child { border-bottom: 1px solid var(--hairline); }
a.press_row:hover { padding-left: 1.6vw; color: var(--gold); }
.wh-arrow { font-size: 1.3em; }
.press_row.static { cursor: default; }
@media (max-width: 767px) { .press_row { padding: 4.5vw .4vw; } }

/* ---------- Start ---------- */
.start { padding: 12vw 2.6vw 10vw; border-top: 1px solid var(--hairline); }
.start_heading { position: relative; width: 74vw; margin: 0 auto 6vw; display: flex; flex-direction: column; gap: 3.13vw; }
.h-200.right-align { text-align: right; }
.start_abs-circle {
  position: absolute;
  left: 4.79vw; bottom: 2vw;
  width: 9.17vw; height: 9.17vw;
  min-width: 64px; min-height: 64px;
  border-radius: 50%;
  background: var(--royal);
}
.start_abs-circle.second { left: auto; right: 14vw; top: -1vw; bottom: auto; background: var(--gold); opacity: .9; }
.start_form { max-width: 62vw; margin: 0 auto; }
@media (max-width: 767px) {
  .start_heading { width: 100%; }
  .start_abs-circle { width: 15.38vw; height: 15.38vw; left: 8.46vw; }
  .start_form { max-width: none; }
}

/* ---------- Footer ---------- */
.footer { padding: 5vw 2.6vw 0; border-top: 1px solid var(--hairline); overflow: hidden; }
.footer__links-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4vw;
  min-height: 46vh;
  padding-bottom: 4vw;
}
.footer_col { display: flex; flex-direction: column; }
.footer_col--nav { gap: 1.05em; }
.footer_navlink {
  width: fit-content;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 1.66vw, 2rem);
  letter-spacing: -.02em;
  opacity: .92;
  transition: color .3s, opacity .3s;
}
.footer_navlink:hover { color: var(--gold); opacity: 1; }
.footer_col--mid { align-items: center; text-align: center; gap: 8vw; }
.footer_follow { display: flex; flex-direction: column; align-items: center; gap: 1.6vw; }
.footer_socials { display: flex; align-items: center; gap: 1.8vw; }
.footer_socials svg { width: clamp(28px, 2.2vw, 40px); height: auto; color: var(--white); transition: color .3s, transform .3s; }
.footer_socials a:hover svg { color: var(--gold); transform: translateY(-3px); }
.footer_region { display: flex; flex-direction: column; align-items: center; gap: .5vw; }
.footer_region-name {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.4vw, 1.7rem);
  letter-spacing: -.02em;
}
.footer_col--addr { align-items: flex-end; text-align: right; gap: 1vw; }
.footer_link { opacity: .85; transition: opacity .3s, color .3s; width: fit-content; }
.footer_link:hover { opacity: 1; color: var(--gold); }

.footer_base {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2vw;
  padding: 1vw 0 4vw;
}
.footer_base > .p-20 { font-size: clamp(11px, .83vw, 15px); }
.footer_base > a.p-20 { justify-self: end; }
.footer_mail { display: inline-flex; align-items: center; gap: .6em; transition: color .3s; justify-self: center; }
.footer_mail:hover { color: var(--gold); }
.footer_mail-arrow { font-size: 1.2em; }

.footer__logo-row {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 17.5vw;
  line-height: .78;
  letter-spacing: .02em;
  text-align: center;
  color: var(--gold);
  transform: translateY(.12em);
  user-select: none;
}
@media (max-width: 767px) {
  .footer__links-row { grid-template-columns: 1fr; min-height: 0; gap: 12vw; }
  .footer_col--mid { align-items: flex-start; text-align: left; gap: 8vw; }
  .footer_follow, .footer_region { align-items: flex-start; }
  .footer_socials { gap: 6vw; }
  .footer_socials svg { width: 9vw; }
  .footer_col--addr { align-items: flex-start; text-align: left; }
  .footer_base { grid-template-columns: 1fr; justify-items: start; gap: 4vw; padding: 4vw 0 8vw; }
  .footer_base > a.p-20, .footer_mail { justify-self: start; }
}

/* ---------- Reveal ---------- */
.reveal-el { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.22,.8,.3,1), transform 1s cubic-bezier(.22,.8,.3,1); }
.reveal-el.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-el, .offer_img, .offer_text { transition: none !important; opacity: 1 !important; transform: none !important; }
}
