:root {
  --bg: #050606;
  --bg-soft: #101313;
  --paper: #f4efe5;
  --paper-dim: #c9c1b4;
  --ink: #111313;
  --teal: #26a4a8;
  --teal-dark: #12666a;
  --red: #e9413f;
  --line: rgba(244, 239, 229, 0.18);
  --header-h: 80px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

body.is-smooth .smooth {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--teal);
  color: var(--bg);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #010101;
  color: var(--paper);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1), opacity 700ms ease;
}

.loader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader__logo {
  width: 250px;
  aspect-ratio: 1;
  object-fit: contain;
}

.loader__bar {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 42px;
  height: 2px;
  overflow: hidden;
  background: rgba(244, 239, 229, 0.18);
}

.loader__bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--teal);
}

.loader__count {
  position: absolute;
  right: 32px;
  bottom: 58px;
  color: var(--paper-dim);
  font-size: 0.78rem;
}

.cursor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, opacity 180ms ease;
  mix-blend-mode: difference;
}

.cursor.is-active {
  width: 58px;
  height: 58px;
  background: rgba(38, 164, 168, 0.15);
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--teal);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 34px;
  color: var(--paper);
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 6, 6, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-size: 1rem;
  text-transform: uppercase;
}

.brand b {
  color: var(--teal);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(244, 239, 229, 0.76);
  font-size: 0.86rem;
}

.nav a {
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  position: relative;
  padding: 110px 34px;
}

.hero {
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 82px;
  overflow: hidden;
  background: var(--bg);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1100ms ease, transform 2200ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.94) contrast(1.05) brightness(0.7);
}

.hero__media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.88) 0%, rgba(5, 6, 6, 0.62) 42%, rgba(5, 6, 6, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.86) 0%, rgba(5, 6, 6, 0) 52%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  max-width: 920px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.2rem;
  line-height: 0.92;
  font-weight: 500;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.68);
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.08rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 0.88rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(244, 239, 229, 0.4);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button--outline-dark {
  color: var(--ink);
  border-color: rgba(17, 19, 19, 0.36);
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

.hero__meta {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 84px;
  display: grid;
  gap: 7px;
  color: rgba(244, 239, 229, 0.68);
  font-size: 0.84rem;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 239, 229, 0.72);
  font-size: 0.8rem;
}

.scroll-cue i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 239, 229, 0.32);
  border-radius: 999px;
  position: relative;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 1px;
  height: 12px;
  background: var(--teal);
  animation: cue 1200ms ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

.intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) minmax(0, 1.5fr);
  gap: 56px;
  min-height: 64vh;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.intro__number {
  color: var(--teal-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.intro h2,
.statement h2,
.section-head h2,
.footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 500;
}

.intro p:not(.eyebrow),
.statement p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(17, 19, 19, 0.72);
  font-size: 1.02rem;
}

.services {
  padding-top: 92px;
  padding-bottom: 0;
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.section-head h2 {
  max-width: 760px;
}

.service {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 0.22fr 0.8fr 0.98fr;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.service:last-child {
  border-bottom: 1px solid var(--line);
}

.service__index {
  color: var(--teal);
  font-size: 0.9rem;
}

.service__text h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  line-height: 0.95;
  font-weight: 500;
}

.service__text p {
  max-width: 430px;
  margin: 0;
  color: rgba(244, 239, 229, 0.72);
}

.service__media {
  justify-self: end;
  width: min(520px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.service__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: translateY(var(--shift, 0px));
}

.statement {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
  background: #0b0d0d;
}

.statement__image {
  min-height: 680px;
  overflow: hidden;
}

.statement__image img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  transform: translateY(var(--shift, 0px));
}

.statement__copy p:not(.eyebrow) {
  color: rgba(244, 239, 229, 0.7);
}

.local-services {
  background: #0f1515;
  color: var(--paper);
}

.local-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-service {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.local-service:last-child {
  border-right: 0;
}

.local-service span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.local-service h3 {
  margin: 70px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
}

.local-service p {
  margin: 0;
  color: rgba(244, 239, 229, 0.72);
}

.portfolio {
  background: var(--paper);
  color: var(--ink);
}

.portfolio .section-head {
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter {
  min-height: 38px;
  border: 1px solid rgba(17, 19, 19, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 15px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter.is-active,
.filter:hover,
.filter:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.gallery {
  column-count: 4;
  column-gap: 12px;
}

.work {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0 0 12px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  aspect-ratio: 1;
  transform: translateY(18px);
  opacity: 0;
  animation: itemIn 560ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  break-inside: avoid;
  page-break-inside: avoid;
}

.work.is-tall {
  aspect-ratio: 0.72;
}

.work.is-wide {
  aspect-ratio: 1.48;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
}

.work:hover img,
.work:focus-visible img {
  transform: scale(1.065);
  filter: brightness(0.72);
}

.work__caption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(0deg, rgba(5, 6, 6, 0.82), rgba(5, 6, 6, 0));
  transform: translateY(16px);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.work:hover .work__caption,
.work:focus-visible .work__caption {
  transform: translateY(0);
  opacity: 1;
}

.work__caption strong {
  font-size: 0.92rem;
}

.work__caption span {
  color: var(--teal);
  font-size: 0.72rem;
  text-transform: uppercase;
}

@keyframes itemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process {
  background: var(--bg);
}

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

.process-item {
  min-height: 320px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.process-item:last-child {
  border-right: 0;
}

.process-item span {
  color: var(--teal);
  font-size: 0.8rem;
}

.process-item h3 {
  margin: 78px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
}

.process-item p {
  margin: 0;
  max-width: 360px;
  color: rgba(244, 239, 229, 0.7);
}

.process__media {
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.78fr;
  gap: 12px;
  align-items: end;
  margin-top: 12px;
}

.process__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.process__media img:first-child,
.process__media img:last-child {
  height: 380px;
}

.talep {
  background: var(--paper);
  color: var(--ink);
}

.talep .eyebrow {
  color: var(--teal-dark);
}

.talep__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 44px;
  align-items: start;
}

.talep-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 2px;
}

.talep-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.talep-field--wide,
.talep-form__actions {
  grid-column: 1 / -1;
}

.talep-field span {
  color: rgba(17, 19, 19, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.talep-field input,
.talep-field select,
.talep-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(17, 19, 19, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  font: inherit;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.talep-field input,
.talep-field select {
  min-height: 50px;
  padding: 0 14px;
}

.talep-field textarea {
  min-height: 138px;
  resize: vertical;
  padding: 14px;
}

.talep-field input:focus,
.talep-field select:focus,
.talep-field textarea:focus {
  border-color: var(--teal-dark);
  background: #fffaf0;
}

.talep-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.talep__notes {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 19, 19, 0.18);
}

.talep-note {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.64fr) minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(17, 19, 19, 0.18);
}

.talep-note span {
  color: var(--teal-dark);
  font-size: 0.8rem;
}

.talep-note h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 500;
}

.talep-note p {
  margin: 0;
  color: rgba(17, 19, 19, 0.7);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--teal);
  color: var(--bg);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  display: block;
  padding: 22px 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  white-space: nowrap;
}

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

.footer {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 60px;
  align-items: center;
  background: #020202;
  padding-bottom: 64px;
}

.footer__brand img {
  width: min(420px, 100%);
  border: 1px solid rgba(244, 239, 229, 0.08);
}

.footer h2 {
  max-width: 820px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 36px;
}

.footer__links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: rgba(244, 239, 229, 0.8);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
}

.locations {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
  width: 100%;
  align-items: stretch;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.locations__map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 229, 0.12);
  background: var(--bg-soft);
}

.locations__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.08), rgba(5, 6, 6, 0.34)),
    linear-gradient(90deg, rgba(5, 6, 6, 0.18), rgba(5, 6, 6, 0));
  pointer-events: none;
}

.locations__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.82);
}

.map-label {
  position: absolute;
  z-index: 1;
  max-width: 180px;
  padding: 7px 9px;
  border: 1px solid rgba(244, 239, 229, 0.18);
  background: rgba(2, 2, 2, 0.78);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.15;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.map-label--bafra {
  left: 29%;
  top: 33%;
}

.map-label--samsun {
  left: 58%;
  top: 61%;
}

.locations__cards {
  display: grid;
  gap: 12px;
}

.location-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(244, 239, 229, 0.12);
  background: rgba(244, 239, 229, 0.035);
}

.location-card span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.02;
  font-weight: 500;
}

.location-card p {
  margin: 0;
  color: rgba(244, 239, 229, 0.68);
}

.direction-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: var(--teal);
  color: var(--bg);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.direction-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.direction-link:hover,
.direction-link:focus-visible {
  transform: translateY(-2px);
  background: var(--paper);
  border-color: var(--paper);
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: -18px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 229, 0.1);
}

.footer__fine {
  margin: 0;
  color: rgba(244, 239, 229, 0.52);
  font-size: 0.78rem;
}

.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(244, 239, 229, 0.12);
  border-radius: 3px;
  background: rgba(244, 239, 229, 0.035);
  color: rgba(244, 239, 229, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-credit::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(38, 164, 168, 0.55);
}

.site-credit:hover,
.site-credit:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(38, 164, 168, 0.55);
  background: rgba(38, 164, 168, 0.08);
  color: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(5, 6, 6, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(244, 239, 229, 0.14);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 239, 229, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox__caption {
  width: min(920px, 92vw);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  color: var(--paper);
}

.lightbox__caption span {
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hero__title {
    font-size: 5.2rem;
  }

  .intro h2,
  .statement h2,
  .section-head h2,
  .footer h2 {
    font-size: 3.5rem;
  }

  .service__text h3 {
    font-size: 4rem;
  }

  .gallery {
    column-count: 3;
  }
}

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

  .cursor {
    display: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 18px;
    gap: 10px;
  }

  .nav {
    display: flex;
    width: 100%;
    max-width: none;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 22px;
    font-size: 0.78rem;
  }

  .nav a {
    text-align: left;
  }

  .section {
    padding: 82px 18px;
  }

  .hero {
    min-height: 90svh;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 100px 18px 72px;
  }

  .hero__title {
    font-size: 3.55rem;
  }

  .hero__lead {
    font-size: 0.98rem;
    width: min(100%, 330px);
  }

  .hero__meta {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    text-align: left;
  }

  .scroll-cue {
    left: 18px;
  }

  .intro,
  .statement,
  .footer,
  .talep__layout,
  .locations {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro h2,
  .statement h2,
  .section-head h2,
  .footer h2 {
    font-size: 2.75rem;
  }

  .section-head {
    display: block;
  }

  .service {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 0;
  }

  .service__text h3 {
    font-size: 3.2rem;
  }

  .service__media {
    justify-self: stretch;
    width: 100%;
  }

  .statement__image,
  .statement__image img {
    min-height: 0;
    height: 560px;
  }

  .gallery {
    column-count: 2;
  }

  .process__grid,
  .process__media,
  .local-services__grid,
  .talep-form,
  .footer__links {
    grid-template-columns: 1fr;
  }

  .local-service {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .local-service:last-child {
    border-bottom: 0;
  }

  .local-service h3 {
    margin-top: 46px;
  }

  .talep-field--wide,
  .talep-form__actions {
    grid-column: auto;
  }

  .process-item {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .process-item h3 {
    margin-top: 46px;
  }

  .process__media img,
  .process__media img:first-child,
  .process__media img:last-child {
    height: 430px;
  }

  .talep-note {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .talep-note p {
    grid-column: 2;
  }

  .locations__map {
    min-height: 360px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0;
  }

  .marquee span {
    padding: 16px 26px;
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.85rem;
  }

  .nav {
    max-width: none;
    font-size: 0.72rem;
    gap: 16px;
  }

  .hero__title {
    font-size: 2.85rem;
  }

  .intro h2,
  .statement h2,
  .section-head h2,
  .footer h2 {
    font-size: 2.2rem;
  }

  .service__text h3 {
    font-size: 2.52rem;
  }

  .local-service h3 {
    font-size: 2rem;
  }

  .gallery {
    column-gap: 8px;
  }

  .work {
    margin-bottom: 8px;
  }

  .work__caption {
    display: none;
  }

  .talep-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .talep-note p {
    grid-column: auto;
  }

  .location-card {
    padding: 18px;
  }

  .location-card h3 {
    font-size: 1.62rem;
  }

  .locations__map {
    min-height: 300px;
  }

  .map-label {
    max-width: 138px;
    font-size: 0.68rem;
  }

  .lightbox {
    padding: 18px;
  }
}

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

  body.is-smooth .smooth {
    position: static;
    overflow: visible;
  }
}
