:root {
  --navy: #163A5F;
  --navy-2: #0F2C49;
  --blue: #2674A8;
  --blue-light: #EDF6FB;
  --green: #28A96B;
  --green-dark: #168A52;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --soft: #F5F7F9;
  --line: #E4EAF0;
  --text: #1F2937;
  --muted: #64748B;
  --shadow: 0 12px 30px rgba(15, 44, 73, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 44, 73, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #10263D;
  --surface: #173552;
  --soft: #122D48;
  --line: #2A4B69;
  --text: #EFF6FF;
  --muted: #B6C6D6;
  --blue-light: #1E4669;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

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

body {
  font-family: "Prompt", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  transition: background 0.25s ease, color 0.25s ease;
}

body.menu-open,
body.modal-open,
body.promo-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

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

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  background: var(--blue-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.28;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: #FFFFFF;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p {
  margin-top: 13px;
  font-size: 1rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #FFFFFF;
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(38, 116, 168, 0.22);
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-line {
  color: #FFFFFF;
  background: var(--green);
  box-shadow: 0 9px 20px rgba(40, 169, 107, 0.2);
}

.btn-line:hover {
  background: var(--green-dark);
}

.btn-outline {
  color: var(--navy);
  border: 1px solid #C9D7E3;
  background: var(--surface);
}

[data-theme="dark"] .btn-outline {
  color: #FFFFFF;
  border-color: #477092;
}

.btn-white {
  color: var(--navy);
  background: #FFFFFF;
}

.icon {
  width: 19px;
  height: 19px;
}

/* NAVIGATION */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(38, 60, 151, 0.10);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 3px 16px rgba(15, 44, 73, 0.05);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.navbar.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(15, 44, 73, 0.07);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(16, 38, 61, 0.95);
}

[data-theme="dark"] .navbar {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(16, 38, 61, 0.86);
}

.nav-inner {
  height: 76px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-lockup {
  width: auto;
  height: 60px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-lockup img {
  width: auto;
  height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: filter 0.2s ease;
}

[data-theme="dark"] .brand-lockup img {
  filter: brightness(0) invert(1);
}

.brand-logo-frame {
  width: auto;
  height: 72px;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  flex-shrink: 0;
  background: transparent;
}

.brand-logo {
  width: auto;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

[data-theme="dark"] .brand {
  color: #FFFFFF;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  border-radius: 9px;
  background: var(--navy);
}

.brand-mark svg {
  width: 21px;
}

.brand span {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 21px;
  list-style: none;
}

.nav-menu a {
  color: #3E5265;
  font-size: 0.88rem;
  font-weight: 500;
}

[data-theme="dark"] .nav-menu a {
  color: #D8E5EF;
}

.nav-menu a:hover {
  color: var(--blue);
}

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

.nav-actions .btn {
  min-height: 43px;
  padding: 0 15px;
  font-size: 0.85rem;
}

.theme-toggle,
.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .menu-toggle {
  color: #FFFFFF;
}

.menu-toggle {
  display: none;
}

/* HERO */
.hero {
  padding: 142px 0 76px;
  background:
    linear-gradient(90deg, rgba(237, 246, 251, 0.96) 0%, rgba(237, 246, 251, 0.87) 48%, rgba(237, 246, 251, 0.12) 100%),
    url("../../img_home_artit/25773.jpg") center/cover;
}

[data-theme="dark"] .hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 61, 0.97) 0%, rgba(16, 38, 61, 0.9) 50%, rgba(16, 38, 61, 0.38) 100%),
    url("../../img_home_artit/25773.jpg") center/cover;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  max-width: 700px;
}

.hero h1 strong {
  color: var(--blue);
}

.hero h1 strong span {
  white-space: nowrap;
}

.hero-description {
  max-width: 610px;
  margin: 19px 0 15px;
  font-size: 1.07rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 27px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-note svg {
  width: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 30px;
  padding: 12px 15px;
  color: var(--navy);
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .hero-phone {
  color: #FFFFFF;
  background: rgba(23, 53, 82, 0.9);
}

.hero-phone span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-phone strong {
  font-size: 1.15rem;
}

/* TRUST BAR */
.trust-bar {
  margin-top: -1px;
  padding: 28px 0;
  color: #FFFFFF;
  background: var(--navy);
}

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 2px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border: 0;
}

.trust-icon {
  color: #7EE0A6;
}

.trust-icon svg {
  width: 23px;
}

.trust-item h4 {
  color: #FFFFFF;
  font-size: 0.96rem;
}

.trust-item p {
  margin-top: 2px;
  color: #C4D3E0;
  font-size: 0.78rem;
  line-height: 1.55;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  height: 175px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content p {
  min-height: 78px;
  margin: 9px 0 14px;
  font-size: 0.84rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 600;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  padding: 27px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.process-number {
  display: block;
  margin-bottom: 22px;
  color: #A9C8DC;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.87rem;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
}

.why-photo {
  min-height: 550px;
  overflow: hidden;
  border-radius: var(--radius);
  background: url("../../img_home_artit/25760.jpg") center/cover;
  box-shadow: var(--shadow-lg);
}

.why-content>p {
  margin: 15px 0 25px;
}

.reason-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.reason {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.reason-count {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}

.reason h4 {
  font-size: 0.94rem;
}

.reason p {
  margin-top: 3px;
  font-size: 0.77rem;
  line-height: 1.55;
}

/* PORTFOLIO */
.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 15px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  color: #FFFFFF;
  border-color: var(--blue);
  background: var(--blue);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
  min-height: 245px;
  border-radius: 12px;
  background: #D9E4EC;
  cursor: pointer;
}

.portfolio-item img {
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 17px 16px;
  color: #FFFFFF;
  background: linear-gradient(transparent, rgba(10, 35, 56, 0.88));
}

.portfolio-info h4 {
  color: #FFFFFF;
  font-size: 0.98rem;
}

.portfolio-info span {
  font-size: 0.75rem;
  opacity: 0.84;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-count {
  margin-top: -30px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pair-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 270px;
  background: var(--line);
}

.pair-shot {
  position: relative;
  overflow: hidden;
}

.pair-shot img {
  height: 100%;
  object-fit: cover;
}

.pair-shot span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 10px;
  color: #FFFFFF;
  border-radius: 999px;
  background: rgba(15, 44, 73, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
}

.pair-shot:last-child span {
  background: var(--green-dark);
}

.pair-caption {
  padding: 17px 19px 19px;
}

.pair-caption p {
  margin-top: 4px;
  font-size: 0.82rem;
}

/* BEFORE AFTER */
.comparison-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 50px;
}

.comparison-copy p {
  margin: 16px 0 24px;
}

.compare {
  height: 415px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
}

.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.compare-after {
  background-image: url("../../img_home_artit/25723.jpg");
}

.compare-before {
  width: 50%;
  overflow: hidden;
  border-right: 3px solid #FFFFFF;
}

.compare-before-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(49, 36, 24, 0.24), rgba(49, 36, 24, 0.24)),
    url("../../img_home_artit/25722.jpg") center/cover;
  filter: grayscale(0.85) brightness(0.65) sepia(0.18);
}

.compare-label {
  position: absolute;
  top: 17px;
  z-index: 3;
  padding: 6px 11px;
  color: #FFFFFF;
  border-radius: 5px;
  background: rgba(15, 44, 73, 0.8);
  font-size: 0.76rem;
  font-weight: 600;
}

.label-before {
  left: 17px;
}

.label-after {
  right: 17px;
  background: var(--green);
}

.compare-handle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  color: var(--navy);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo img {
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}

.check-list svg {
  width: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 3px;
  color: #F3B51B;
}

.stars svg {
  width: 17px;
  fill: currentColor;
}

.review-text {
  margin: 15px 0 20px;
  font-size: 0.91rem;
  line-height: 1.85;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 600;
}

.reviewer strong {
  display: block;
  font-size: 0.88rem;
}

.reviewer span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* PRICE CALCULATOR */
.calculator-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.calculator-form {
  padding: 36px;
}

.calculator-form h3 {
  margin-bottom: 20px;
}

.calculator-form .btn {
  width: 100%;
}

.service-area-strip {
  display: flex;
  align-items: center;
  max-width: 960px;
  margin: -12px auto 20px;
  overflow: hidden;
  color: var(--navy);
  border: 1px solid rgba(38, 116, 168, 0.18);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-area-title {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 11px 17px;
  color: #FFFFFF;
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-area-title svg {
  width: 16px;
}

.service-area-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.service-area-track {
  display: flex;
  width: max-content;
  animation: areaScroll 25s linear infinite;
}

.service-area-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.service-area-group span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.service-area-group span::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.range-control {
  padding: 13px 14px 11px;
  border: 1px solid rgba(38, 116, 168, 0.2);
  border-radius: 10px;
  background: var(--blue-light);
}

.range-control input[type="range"] {
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(90deg, var(--blue) var(--range-progress, 2%), #C5D1DC var(--range-progress, 2%));
  box-shadow: none;
  cursor: pointer;
}

.range-control input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  appearance: none;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 8px rgba(22, 82, 124, 0.28);
}

.range-control input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 8px rgba(22, 82, 124, 0.28);
}

.range-value {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.8rem;
}

.range-value strong {
  color: var(--blue);
  font-size: 1rem;
}

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

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  color: #FFFFFF;
  background: linear-gradient(145deg, var(--navy), var(--blue));
}

.calculator-label {
  color: #BFD6E8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-price {
  display: block;
  margin: 10px 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  white-space: nowrap;
}

.calculator-result p {
  color: #D8E5EF;
}

.calculator-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #BFD0DE !important;
  font-size: 0.76rem;
  line-height: 1.7;
}

.calculator-result .btn {
  align-self: flex-start;
  margin-top: 22px;
}

/* PROMOTION POPUP */
.promo-modal[hidden] {
  display: none;
}

.promo-modal {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 22px;
  background: rgba(6, 24, 40, 0.76);
  backdrop-filter: blur(8px);
  animation: promoBackdrop 0.35s ease both;
}

.promo-card {
  width: min(900px, 100%);
  max-height: min(680px, calc(100vh - 44px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 21, 39, 0.38);
  animation: promoEnter 0.55s cubic-bezier(0.2, 0.85, 0.3, 1.15) both;
}

.promo-card::after {
  width: 150px;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -40%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(20deg);
  animation: promoShine 1.2s 0.45s ease-out both;
}

.promo-image {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

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

.promo-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(7, 35, 58, 0.86));
}

.promo-image-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 600;
}

.promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  padding: 7px 12px;
  color: #08713A;
  border-radius: 999px;
  background: #DDF8E8;
  font-size: 0.76rem;
  font-weight: 700;
}

.promo-kicker svg {
  width: 15px;
}

.promo-content h2 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.promo-discount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 14px;
  color: var(--blue);
  font-weight: 700;
}

.promo-discount strong {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.promo-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0;
}

.promo-services span {
  padding: 6px 10px;
  color: var(--navy);
  border: 1px solid rgba(38, 116, 168, 0.2);
  border-radius: 7px;
  background: var(--blue-light);
  font-size: 0.76rem;
  font-weight: 600;
}

.promo-condition {
  padding: 12px 14px;
  color: var(--text);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: var(--soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.promo-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.promo-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.promo-close svg {
  width: 19px;
}

@keyframes promoBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes promoEnter {
  from { opacity: 0; transform: translateY(28px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes promoShine {
  from { left: -40%; }
  to { left: 125%; }
}

@media (max-width: 720px) {
  .promo-modal {
    padding: 10px;
  }

  .promo-card {
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .promo-image {
    min-height: 145px;
    max-height: 145px;
  }

  .promo-content {
    padding: 18px 20px 19px;
  }

  .promo-content h2 {
    margin-top: 9px;
    font-size: 1.45rem;
  }

  .promo-discount strong {
    font-size: 2.8rem;
  }

  .promo-discount {
    margin: 5px 0 9px;
  }

  .promo-services {
    margin: 10px 0;
  }

  .promo-condition {
    padding: 9px 11px;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .promo-actions {
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
  }

  .promo-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 720px) and (max-height: 700px) {
  .promo-image {
    min-height: 105px;
    max-height: 105px;
  }

  .promo-image-label {
    right: 14px;
    bottom: 10px;
    left: 14px;
    font-size: 0.72rem;
  }

  .promo-content {
    padding: 13px 17px 14px;
  }

  .promo-content h2 {
    margin-top: 6px;
    font-size: 1.25rem;
  }

  .promo-discount strong {
    font-size: 2.3rem;
  }

  .promo-services {
    margin: 7px 0;
  }

  .promo-actions {
    margin-top: 9px;
  }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-panel {
  padding: 35px;
  color: #FFFFFF;
  border-radius: var(--radius);
  background: var(--navy);
}

.contact-panel h2 {
  color: #FFFFFF;
  font-size: 2rem;
}

.contact-panel>p {
  margin-top: 12px;
  color: #C8D7E4;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item svg {
  width: 21px;
  flex-shrink: 0;
  margin-top: 4px;
  color: #75DC9D;
}

.contact-item span {
  display: block;
  color: #B7C9D8;
  font-size: 0.75rem;
}

.contact-item strong {
  color: #FFFFFF;
  font-size: 0.96rem;
}

.line-qr {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  padding: 14px;
  color: #FFFFFF;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

.line-qr img {
  width: 116px;
  height: 116px;
  flex-shrink: 0;
  border-radius: 8px;
}

.line-qr strong,
.line-qr span {
  display: block;
}

.line-qr span {
  margin-top: 4px;
  color: #C8D7E4;
  font-size: 0.78rem;
}

.contact-form {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--bg);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(38, 116, 168, 0.12);
}

textarea {
  min-height: 95px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

/* FINAL CTA */
.final-cta {
  padding: 95px 0;
  position: relative;
  text-align: center;
  background:
    linear-gradient(rgba(15, 44, 73, 0.87), rgba(15, 44, 73, 0.87)),
    url("../../img_home_artit/25755.jpg") center/cover;
}

.final-cta h2 {
  color: #FFFFFF;
}

.final-cta p {
  max-width: 700px;
  margin: 15px auto 27px;
  color: #D8E5EF;
  font-size: 1.04rem;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

/* FOOTER */
footer {
  padding: 60px 0 24px;
  color: #B8C9D7;
  background: var(--navy-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding-bottom: 42px;
}

footer .brand {
  color: #FFFFFF;
}

.footer-about {
  max-width: 310px;
  margin-top: 15px;
  color: #B8C9D7;
  font-size: 0.84rem;
}

footer h4 {
  margin-bottom: 15px;
  color: #FFFFFF;
  font-size: 0.96rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.83rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.75rem;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

/* FLOAT CONTACT */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.float-btn {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-line {
  background: #06C755;
}

.float-call {
  background: var(--blue);
}

.float-chat {
  background: #1684EE;
}

/* MOBILE CONTACT */
.mobile-bar {
  display: none;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 25px;
  background: rgba(5, 20, 33, 0.88);
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  width: auto;
  max-width: min(100%, 1000px);
  max-height: 84vh;
  border-radius: 8px;
}

.lightbox-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFFFFF;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

/* ── Tablet landscape ── */
@media (max-width: 1050px) {
  .nav-menu {
    gap: 13px;
  }

  .nav-menu a {
    font-size: 0.79rem;
  }

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

  .why-grid,
  .comparison-wrap,
  .about-grid,
  .calculator-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-photo {
    min-height: 380px;
  }

  .about-photo img {
    height: 360px;
  }

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

  .compare {
    height: 370px;
  }
}

/* ── Tablet portrait & small tablets ── */
@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .nav-menu {
    width: min(calc(100% - 30px), 440px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px;
    right: 15px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 10px;
    border-radius: 7px;
    font-size: 0.92rem;
  }

  .nav-menu a:hover {
    background: var(--blue-light);
  }

  .nav-actions .btn {
    display: none;
  }

  .brand-lockup,
  .brand-lockup img {
    width: auto;
    height: 46px;
    object-fit: contain;
  }

  .menu-toggle {
    display: grid;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border: 0;
  }

  .trust-item:nth-child(n+3) {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    gap: 32px;
  }

  .compare {
    height: 340px;
  }

  .reason-list {
    grid-template-columns: 1fr 1fr;
  }

  h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }

  .contact-panel h2 {
    font-size: 1.7rem;
  }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  body {
    padding-bottom: 62px;
    line-height: 1.65;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p {
    font-size: 0.9rem;
  }

  /* ─ Typography ─ */
  h1 {
    font-size: 1.85rem;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .eyebrow {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  /* ─ Navigation ─ */
  .nav-inner {
    height: 64px;
    min-height: 64px;
    gap: 8px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .brand-lockup {
    width: auto;
    height: 42px;
  }

  .brand-lockup img {
    width: auto;
    height: 42px;
    object-fit: contain;
  }

  .theme-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    top: 64px;
  }

  /* ─ Hero ─ */
  .hero {
    padding: 100px 0 48px;
    background:
      linear-gradient(rgba(237, 246, 251, 0.95), rgba(237, 246, 251, 0.92)),
      url("../../img_home_artit/25773.jpg") center/cover;
  }

  [data-theme="dark"] .hero {
    background:
      linear-gradient(rgba(16, 38, 61, 0.95), rgba(16, 38, 61, 0.92)),
      url("../../img_home_artit/25773.jpg") center/cover;
  }

  .hero-description {
    font-size: 0.93rem;
    margin: 14px 0 12px;
  }

  .hero-note {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
  }

  .hero-phone {
    width: 100%;
    margin-top: 20px;
    padding: 10px 13px;
  }

  .hero-phone strong {
    font-size: 1.05rem;
  }

  /* ─ Trust Bar ─ */
  .trust-bar {
    padding: 20px 0;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .reason-list,
  .portfolio-grid,
  .check-list,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-item:nth-child(n+3) {
    margin-top: 0;
    padding-top: 12px;
    border-top: 0;
  }

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

  .trust-item h4 {
    font-size: 0.88rem;
  }

  .trust-item p {
    font-size: 0.74rem;
  }

  /* ─ Services ─ */
  .service-grid {
    gap: 14px;
  }

  .service-card img {
    height: 180px;
  }

  .service-content {
    padding: 16px;
  }

  .service-content p {
    min-height: auto;
    margin: 7px 0 12px;
    font-size: 0.82rem;
  }

  .service-content h3 {
    font-size: 1.02rem;
  }

  /* ─ Process ─ */
  .process-grid {
    gap: 14px;
  }

  .process-card {
    padding: 20px 18px;
  }

  .process-number {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  .process-card p {
    font-size: 0.82rem;
  }

  /* ─ Why Us ─ */
  .why-grid {
    gap: 32px;
  }

  .why-photo {
    min-height: 260px;
    border-radius: var(--radius-sm);
  }

  .why-content>p {
    font-size: 0.9rem;
    margin: 10px 0 18px;
  }

  .reason-list {
    gap: 10px;
  }

  .reason {
    padding: 12px;
  }

  .reason h4 {
    font-size: 0.88rem;
  }

  .reason p {
    font-size: 0.75rem;
  }

  /* ─ Portfolio ─ */
  .filter-row {
    gap: 6px;
    margin-bottom: 20px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.76rem;
  }

  .portfolio-count {
    margin-top: -20px;
    margin-bottom: 18px;
    font-size: 0.76rem;
  }

  .portfolio-grid {
    gap: 10px;
  }

  .portfolio-item,
  .portfolio-item img {
    min-height: 200px;
  }

  .portfolio-info {
    padding: 28px 12px 12px;
  }

  .portfolio-info h4 {
    font-size: 0.88rem;
  }

  .portfolio-info span {
    font-size: 0.7rem;
  }

  /* ─ Before / After ─ */
  .before-after-grid {
    gap: 14px;
  }

  .pair-visual {
    height: 200px;
  }

  .pair-shot span {
    padding: 4px 8px;
    font-size: 0.66rem;
    left: 8px;
    bottom: 8px;
  }

  .pair-caption {
    padding: 14px 15px 16px;
  }

  .pair-caption h3 {
    font-size: 1rem;
  }

  .pair-caption p {
    font-size: 0.78rem;
  }

  /* ─ Comparison Slider ─ */
  .comparison-wrap {
    gap: 28px;
  }

  .comparison-copy p {
    font-size: 0.9rem;
  }

  .compare {
    height: 260px;
  }

  .compare-handle {
    width: 38px;
    height: 38px;
  }

  .compare-label {
    font-size: 0.68rem;
    padding: 4px 9px;
    top: 12px;
  }

  .label-before {
    left: 12px;
  }

  .label-after {
    right: 12px;
  }

  /* ─ About ─ */
  .about-grid {
    gap: 28px;
  }

  .about-photo img {
    height: 280px;
    border-radius: var(--radius-sm);
  }

  .check-list {
    gap: 8px;
    margin-top: 18px;
  }

  .check-list li {
    font-size: 0.82rem;
  }

  /* ─ Reviews ─ */
  .review-grid {
    gap: 12px;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 0.86rem;
    margin: 12px 0 16px;
    line-height: 1.75;
  }

  .reviewer strong {
    font-size: 0.84rem;
  }

  .avatar {
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }

  /* ─ Price calculator ─ */
  .calculator-form,
  .calculator-result {
    padding: 24px 18px;
  }

  .calculator-price {
    font-size: 1.9rem;
  }

  .calculator-result .btn {
    width: 100%;
  }

  /* ─ Contact ─ */
  .contact-grid {
    gap: 18px;
  }

  .contact-panel {
    padding: 24px 18px;
  }

  .contact-panel h2 {
    font-size: 1.4rem;
  }

  .contact-panel>p {
    font-size: 0.88rem;
    margin-top: 8px;
  }

  .contact-list {
    gap: 14px;
    margin: 20px 0;
  }

  .contact-item strong {
    font-size: 0.88rem;
  }

  .line-qr {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 14px;
  }

  .line-qr img {
    width: 110px;
    height: 110px;
  }

  .line-qr strong {
    font-size: 0.9rem;
  }

  .line-qr span {
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form h3 {
    margin-bottom: 16px;
    font-size: 1.08rem;
  }

  .form-group {
    margin-bottom: 12px;
  }

  label {
    font-size: 0.78rem;
    margin-bottom: 4px;
  }

  input,
  select,
  textarea {
    padding: 10px 11px;
    font-size: 0.88rem;
    border-radius: 7px;
  }

  textarea {
    min-height: 80px;
  }

  .form-note {
    font-size: 0.7rem;
  }

  /* ─ Final CTA ─ */
  .final-cta {
    padding: 52px 0;
  }

  .final-cta p {
    font-size: 0.9rem;
    margin: 10px auto 20px;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  /* ─ Footer ─ */
  .footer-grid {
    gap: 28px;
    padding-bottom: 28px;
  }

  footer {
    padding: 40px 0 20px;
  }

  footer .brand-logo-frame {
    width: auto;
    height: 52px;
  }

  footer .brand-logo {
    width: auto;
    height: 52px;
    object-fit: contain;
  }

  .footer-about {
    font-size: 0.8rem;
    margin-top: 10px;
  }

  footer h4 {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .footer-links li {
    margin-bottom: 6px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 16px;
    font-size: 0.7rem;
  }

  /* ─ Floating & Mobile Bar ─ */
  .floating-contact {
    display: none;
  }

  .mobile-bar {
    height: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1200;
    width: 100%;
    border-top: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 -5px 18px rgba(15, 44, 73, 0.1);
  }

  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--navy);
    border-right: 1px solid var(--line);
    font-size: 0.68rem;
    font-weight: 600;
  }

  [data-theme="dark"] .mobile-bar a {
    color: #FFFFFF;
  }

  .mobile-bar a:last-child {
    color: #FFFFFF;
    border: 0;
    background: var(--blue);
  }

  .mobile-bar svg {
    width: 18px;
  }

  /* ─ Lightbox ─ */
  .lightbox {
    padding: 12px;
  }

  .lightbox img {
    max-height: 78vh;
    border-radius: 6px;
  }

  .lightbox-close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }

  /* ─ Buttons ─ */
  .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.88rem;
    border-radius: 8px;
  }
}

/* ── Very small phones ── */
@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 18px), var(--container));
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.32rem;
  }

  .hero {
    padding: 92px 0 40px;
  }

  .hero-description {
    font-size: 0.86rem;
  }

  .hero-phone strong {
    font-size: 0.96rem;
  }

  .section {
    padding: 42px 0;
  }

  .service-card img {
    height: 160px;
  }

  .portfolio-item,
  .portfolio-item img {
    min-height: 180px;
  }

  .pair-visual {
    height: 170px;
  }

  .compare {
    height: 220px;
  }

  .about-photo img {
    height: 230px;
  }

  .why-photo {
    min-height: 210px;
  }

  .filter-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .contact-panel {
    padding: 20px 14px;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .contact-panel h2 {
    font-size: 1.25rem;
  }

  .line-qr img {
    width: 96px;
    height: 96px;
  }

  .final-cta {
    padding: 42px 0;
  }

  .mobile-bar {
    height: 56px;
  }

  body {
    padding-bottom: 56px;
  }

  .mobile-bar a {
    font-size: 0.64rem;
  }

  .mobile-bar svg {
    width: 16px;
  }

  .nav-inner {
    height: 58px;
    min-height: 58px;
  }

  .brand-lockup,
  .brand-lockup img {
    height: 36px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-menu {
    top: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

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