:root {
  --asphalt: #171816;
  --asphalt-soft: #232421;
  --stone: #f1ede2;
  --paper: #faf8f2;
  --white: #ffffff;
  --amber: #f2a900;
  --amber-dark: #d89400;
  --muted: #8e918a;
  --line: rgba(23, 24, 22, 0.14);
  --container: 1180px;
  --radius: 3px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

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

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

body {
  margin: 0;
  color: var(--asphalt);
  background: var(--paper);
  font-family: "Heebo", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  color: var(--asphalt);
  background: var(--amber);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(23, 24, 22, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 102px;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.brand-symbol {
  display: grid;
  width: 96px;
  height: 76px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
}

.brand-symbol img {
  width: 96px;
  height: auto;
  object-fit: contain;
}

.brand-details {
  display: flex;
  height: 72px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--amber);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-phone {
  color: var(--white);
  direction: ltr;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
}

.main-nav {
  display: flex;
  margin-inline-start: auto;
  align-items: center;
  gap: 34px;
  font-size: 0.96rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scaleX(-1);
  transition: transform 180ms ease;
}

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

.button:hover svg,
.button:focus-visible svg {
  transform: scaleX(-1) translateX(-3px);
}

.button-amber {
  color: var(--asphalt);
  background: var(--amber);
  box-shadow: 0 10px 30px rgba(242, 169, 0, 0.16);
}

.button-amber:hover,
.button-amber:focus-visible {
  background: #ffb617;
  box-shadow: 0 14px 34px rgba(242, 169, 0, 0.23);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 850px;
  color: var(--white);
  background: var(--asphalt);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 48% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 17, 15, 0.15) 0%, rgba(16, 17, 15, 0.46) 43%, rgba(16, 17, 15, 0.94) 100%),
    linear-gradient(0deg, rgba(16, 17, 15, 0.64) 0%, transparent 34%);
}

.hero-layout {
  display: grid;
  min-height: 770px;
  padding-top: 140px;
  padding-bottom: 120px;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  color: var(--amber);
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: #a46f00;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
}

.hero h1 span {
  color: var(--amber);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
}

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

.text-link {
  display: inline-flex;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--amber);
  color: var(--amber);
}

.text-link-dark {
  border-color: rgba(23, 24, 22, 0.4);
}

.hero-note {
  position: relative;
  align-self: end;
  margin-bottom: 34px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(23, 24, 22, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
}

.hero-note-mark {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 54px;
  height: 4px;
  background: var(--amber);
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.hero-note strong {
  color: var(--white);
  font-size: 1.18rem;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(23, 24, 22, 0.62);
  backdrop-filter: blur(12px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid div {
  display: flex;
  min-height: 80px;
  padding: 18px 28px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  gap: 17px;
}

.proof-grid div:last-child {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid span {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
}

.proof-grid strong {
  font-size: 0.98rem;
}

.service-marquee {
  width: 100%;
  overflow: hidden;
  color: var(--asphalt);
  background: var(--amber);
}

.marquee-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 58px;
  padding-inline: 24px;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
}

.marquee-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--asphalt);
}

.section {
  padding-block: 128px;
}

.section-heading {
  display: grid;
  margin-bottom: 66px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.process h2,
.about h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: #646760;
  font-size: 1.08rem;
}

.services {
  background:
    linear-gradient(rgba(23, 24, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 22, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 50px 50px;
}

.services-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px 28px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: var(--asphalt);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-7px);
}

.service-number {
  color: #8d8f88;
  font-size: 0.76rem;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-top: 48px;
  border-radius: 50%;
  color: var(--asphalt);
  background: var(--amber);
  place-items: center;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 27px 0 13px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.95rem;
  transition: color 220ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.67);
}

.work {
  position: relative;
  color: var(--white);
  background: var(--asphalt);
}

.work::before {
  position: absolute;
  top: 0;
  right: max(20px, calc((100vw - var(--container)) / 2));
  width: 72px;
  height: 6px;
  background: var(--amber);
  content: "";
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.56);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--asphalt-soft);
  cursor: pointer;
  text-align: right;
  touch-action: manipulation;
}

.project-featured {
  grid-column: span 7;
  grid-row: 1 / span 2;
}

.project-card:nth-child(2),
.project-card:nth-child(3) {
  grid-column: span 5;
}

.project-card img,
.project-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

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

.project-overlay {
  background: linear-gradient(0deg, rgba(15, 16, 14, 0.88), transparent 65%);
  transition: background 250ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.project-copy {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
}

.project-copy p {
  margin: 0 0 4px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 800;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.project-media-count {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(23, 24, 22, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.project-link {
  display: inline-flex;
  margin-top: 11px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.project-link b {
  color: var(--amber);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.project-card:hover .project-link b,
.project-card:focus-visible .project-link b {
  transform: translateX(-4px);
}

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

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.1fr);
  gap: 9vw;
}

.process-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0;
  color: #62655f;
  font-size: 1.08rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 180px;
  padding: 39px 0;
  border-top: 1px solid rgba(23, 24, 22, 0.2);
  grid-template-columns: 68px 1fr;
  gap: 20px;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(23, 24, 22, 0.2);
}

.process-list > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--asphalt);
  background: var(--amber);
  place-items: center;
  font-size: 0.76rem;
  font-weight: 900;
}

.process-list h3 {
  margin: 2px 0 9px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.process-list p {
  max-width: 500px;
  margin: 0;
  color: #646760;
}

.about {
  color: var(--white);
  background: #242521;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 10vw;
}

.about-logo-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(12px, 2vw, 22px);
  background: transparent;
}

.about-logo-panel::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 6px;
  background: var(--amber);
  content: "";
}

.about-logo-panel img {
  width: 100%;
  height: auto;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
}

.check-list li::before {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--asphalt);
  background: var(--amber);
  content: "✓";
  place-items: center;
  font-size: 0.84rem;
  font-weight: 900;
}

.contact {
  position: relative;
  padding-block: 125px;
  color: var(--white);
  background: var(--asphalt);
  isolation: isolate;
}

.contact::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(242, 169, 0, 0.03) 48% 48.2%, transparent 48.2%),
    radial-gradient(circle at 18% 50%, rgba(242, 169, 0, 0.12), transparent 31%);
  content: "";
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 9vw;
}

.contact h2 {
  font-size: clamp(3rem, 5.8vw, 5.5rem);
}

.contact h2 span {
  color: var(--amber);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details > div {
  display: grid;
  padding-block: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 105px 1fr;
  gap: 20px;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
}

.contact-details a,
.contact-details strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.js-phone {
  direction: ltr;
  text-align: right;
  unicode-bidi: isolate;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--amber);
}

.contact-form {
  padding: clamp(28px, 4vw, 46px);
  color: var(--asphalt);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  margin-bottom: 19px;
  gap: 7px;
}

.contact-form label > span {
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 24, 22, 0.25);
  border-radius: 0;
  outline: 0;
  color: var(--asphalt);
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
}

.contact-form textarea {
  min-height: 110px;
  padding-block: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--amber-dark);
  background: rgba(242, 169, 0, 0.035);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94978f;
}

.form-note {
  min-height: 21px;
  margin: 12px 0 0;
  color: #777a73;
  font-size: 0.76rem;
  text-align: center;
}

.form-note.is-warning {
  color: #9b6400;
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #0d0e0c;
}

.footer-main {
  display: grid;
  min-height: 180px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-main nav {
  display: flex;
  gap: 28px;
  font-size: 0.91rem;
  font-weight: 600;
}

.footer-brand-block {
  justify-self: start;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible,
.brand-phone:hover,
.brand-phone:focus-visible,
.footer-call:hover,
.footer-call:focus-visible {
  color: var(--amber);
}

.footer-call {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 85;
  right: auto;
  bottom: 24px;
  left: 24px;
  display: grid;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 13px 35px rgba(0, 0, 0, 0.28);
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1fbd59;
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

body.gallery-open {
  overflow: hidden;
}

body.gallery-fallback-open::before {
  position: fixed;
  z-index: 299;
  inset: 0;
  background: rgba(6, 7, 6, 0.88);
  content: "";
  backdrop-filter: blur(7px);
}

.project-gallery {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: #11120f;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.project-gallery::backdrop {
  background: rgba(6, 7, 6, 0.88);
  backdrop-filter: blur(7px);
}

.project-gallery.is-fallback-open {
  position: fixed;
  z-index: 300;
  inset: auto;
  top: 50%;
  left: 50%;
  display: block;
  margin: 0;
  transform: translate(-50%, -50%);
}

.gallery-shell {
  position: relative;
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.gallery-toolbar {
  position: sticky;
  z-index: 6;
  top: 0;
  display: flex;
  min-height: 68px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #11120f;
}

.gallery-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 16, 14, 0.72);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-close:hover,
.gallery-close:focus-visible {
  background: var(--amber);
  transform: rotate(5deg);
}

.gallery-stage {
  position: relative;
  display: grid;
  min-height: min(66vh, 700px);
  background: #090a08;
  place-items: center;
}

.gallery-media {
  display: grid;
  width: 100%;
  min-height: min(66vh, 700px);
  place-items: center;
}

.gallery-media img,
.gallery-media video {
  width: 100%;
  height: min(66vh, 700px);
  object-fit: contain;
}

.gallery-media video {
  background: #000;
}

.gallery-nav {
  display: grid;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(15, 16, 14, 0.72);
  cursor: pointer;
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}

.gallery-nav svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  color: var(--asphalt);
  background: var(--amber);
}

.gallery-details {
  display: flex;
  min-height: 102px;
  padding: 20px 24px 16px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-category,
.gallery-counter {
  margin: 0;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
}

.gallery-details h2 {
  margin: 3px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.gallery-counter {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.6);
}

.gallery-thumbs {
  display: flex;
  padding: 0 24px 24px;
  overflow-x: auto;
  gap: 9px;
  scrollbar-color: var(--amber) rgba(255, 255, 255, 0.09);
}

.gallery-thumb {
  position: relative;
  width: 78px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: #242520;
  cursor: pointer;
  opacity: 0.58;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-active,
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: var(--amber);
  opacity: 1;
}

.gallery-video-mark {
  position: absolute;
  inset: 0;
  display: grid;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1.25rem;
  place-items: center;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 50%;
  bottom: 30px;
  max-width: min(92vw, 460px);
  padding: 12px 18px;
  border-right: 4px solid var(--amber);
  color: var(--white);
  background: #272824;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--white);
    background: rgba(23, 24, 22, 0.98);
    gap: 0;
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease;
  }

  .main-nav.open {
    max-height: calc(100vh - 78px);
    padding: 20px;
    opacity: 1;
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.15rem;
  }

  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

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

  .hero-note {
    display: none;
  }

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

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .project-card,
  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    grid-column: span 1;
    grid-row: auto;
  }

  .project-featured {
    grid-column: 1 / -1;
    min-height: 470px;
  }

  .process-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .process-intro {
    position: static;
  }

  .about-logo-panel {
    width: min(100%, 520px);
    justify-self: center;
  }

  .about-copy {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 92px;
  }

  .brand-symbol {
    width: 72px;
    height: 58px;
  }

  .brand-symbol img {
    width: 72px;
    height: auto;
  }

  .brand-lockup {
    gap: 12px;
  }

  .brand-details {
    height: 58px;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 0.67rem;
  }

  .brand-phone {
    font-size: 0.7rem;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 92px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 43% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 17, 15, 0.3), rgba(16, 17, 15, 0.82)),
      linear-gradient(0deg, rgba(16, 17, 15, 0.82), transparent 52%);
  }

  .hero-layout {
    min-height: 670px;
    padding-top: 125px;
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

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

  .proof-grid div {
    min-height: 68px;
    padding: 13px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-align: center;
  }

  .proof-grid span {
    font-size: 0.65rem;
  }

  .proof-grid strong {
    font-size: 0.72rem;
  }

  .marquee-track {
    animation: marquee 22s linear infinite;
    justify-content: flex-start;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading {
    margin-bottom: 45px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .process h2,
  .about h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

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

  .service-card {
    min-height: 310px;
  }

  .service-icon {
    margin-top: 32px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .project-card,
  .project-card:nth-child(2),
  .project-card:nth-child(3),
  .project-featured {
    min-height: 340px;
    grid-column: auto;
    grid-row: auto;
  }

  .project-featured {
    min-height: 430px;
  }

  .gallery-stage,
  .gallery-media {
    min-height: 56vh;
  }

  .gallery-media img,
  .gallery-media video {
    height: 56vh;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-details {
    padding-inline: 17px;
  }

  .gallery-thumbs {
    padding: 0 17px 19px;
  }

  .process-layout,
  .about-layout,
  .contact-layout {
    gap: 54px;
  }

  .process-list li {
    min-height: 158px;
    grid-template-columns: 58px 1fr;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-logo-panel {
    width: 100%;
  }

  .contact {
    padding-block: 92px;
  }

  .contact h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .contact-form {
    margin-inline: -5px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    padding-block: 44px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 28px;
  }

  .footer-main nav {
    flex-wrap: wrap;
    gap: 14px 23px;
  }

  .footer-bottom {
    min-height: 100px;
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .floating-whatsapp {
    right: auto;
    bottom: 17px;
    left: 17px;
    width: 52px;
    height: 52px;
  }
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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