:root {
  --ink: #071525;
  --ink-2: #0b2139;
  --paper: #f4f7f8;
  --white: #ffffff;
  --muted: #586879;
  --line: #d7e0e5;
  --aqua: #12c8bd;
  --aqua-dark: #07958e;
  --lime: #d9fb62;
  --orange: #ff9d58;
  --shadow: 0 24px 70px rgba(7, 21, 37, 0.12);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

.section-title,
.hero h1,
.page-hero h1,
.contact-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.section-title {
  max-width: 780px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.section-title span,
.hero h1 span,
.page-hero h1 span,
.contact-copy h2 span {
  color: var(--aqua);
}

.section-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(217, 251, 98, 0.18);
}

.btn-primary:hover {
  background: #ebff9e;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: var(--aqua);
  background: rgba(18, 200, 189, 0.14);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(7, 21, 37, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 15px 15px 15px 4px;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

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

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: #a9bac7;
  font-size: 0.66rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-nav a {
  position: relative;
  padding: 10px 13px;
  color: #d8e2e9;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.header-contact {
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--aqua);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: 82px 0 0;
  display: none;
  padding: 28px 20px;
  color: var(--white);
  background: var(--ink);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
}

.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 23%, rgba(18, 200, 189, 0.23), transparent 29%),
    radial-gradient(circle at 70% 90%, rgba(217, 251, 98, 0.12), transparent 24%),
    var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 50%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: 720px;
  padding-block: 92px 120px;
  gap: 78px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 8.7vw, 8.4rem);
}

.hero-copy > p {
  max-width: 670px;
  margin: 30px 0 0;
  color: #c8d5de;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  color: #aebdc8;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-trust span::before {
  margin-right: 8px;
  color: var(--aqua);
  content: "✓";
}

.hero-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 5px 20px;
  color: #b9c7d0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(217, 251, 98, 0.12);
}

.hero-service-list {
  display: grid;
  gap: 10px;
}

.hero-service {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 12px 15px;
  gap: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
}

.hero-service:nth-child(2) {
  margin-left: 22px;
}

.hero-service:nth-child(3) {
  margin-left: 44px;
}

.hero-service:nth-child(4) {
  margin-left: 66px;
}

.hero-service .number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--aqua-dark);
  background: #e1f9f7;
  border-radius: 14px;
  font-weight: 900;
}

.hero-service strong {
  font-size: 0.9rem;
}

.hero-service small {
  color: var(--muted);
}

.hero-service .arrow {
  color: var(--aqua-dark);
  font-weight: 900;
}

.service-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
}

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

.strip-track span {
  display: flex;
  align-items: center;
  min-height: 64px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.strip-track span::after {
  margin-inline: 24px;
  color: var(--aqua-dark);
  content: "✦";
}

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

.services,
.process,
.region,
.gallery-section,
.legal-content {
  padding-block: 110px;
}

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

.section-head .section-intro {
  max-width: 430px;
  margin-bottom: 4px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(7, 21, 37, 0.06);
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  background: radial-gradient(circle, rgba(18, 200, 189, 0.23), rgba(18, 200, 189, 0));
  border-radius: 50%;
}

.service-card:nth-child(2)::after,
.service-card:nth-child(4)::after {
  background: radial-gradient(circle, rgba(217, 251, 98, 0.55), rgba(217, 251, 98, 0));
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--aqua-dark);
  background: #e5fbf9;
  border-radius: 15px;
  font-weight: 900;
}

.service-card h3 {
  max-width: 430px;
  margin: 38px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.tag-list,
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list {
  margin-top: 24px;
}

.tag-list span,
.city-list span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.process {
  color: var(--white);
  background: var(--ink);
}

.process .section-intro {
  color: #b8c7d1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  gap: 16px;
}

.process-step {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 24px;
}

.process-step small {
  color: var(--aqua);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 42px 0 12px;
  font-size: 1.45rem;
}

.process-step p {
  margin: 0;
  color: #b8c7d1;
}

.region-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  min-height: 460px;
  color: var(--white);
  background: var(--ink-2);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.region-visual {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(217, 251, 98, 0.8) 0 4%, transparent 4.5%),
    linear-gradient(140deg, rgba(18, 200, 189, 0.9), rgba(7, 21, 37, 0.92));
}

.region-visual::before,
.region-visual::after {
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
  transform: rotate(45deg);
}

.region-visual::after {
  width: 250px;
  height: 250px;
}

.region-visual strong {
  position: relative;
  z-index: 1;
  max-width: 310px;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-align: center;
}

.region-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.region-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.region-copy p {
  margin: 22px 0;
  color: #c4d1da;
}

.region-copy .city-list span {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.06);
}

.contact {
  padding-block: 110px;
  color: var(--white);
  background: linear-gradient(135deg, #0b2139, #071525 65%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 72px;
}

.contact-copy h2 {
  max-width: 620px;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
}

.contact-copy > p {
  max-width: 570px;
  color: #b9c8d2;
}

.direct-contact {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.direct-contact a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  padding: 16px 0;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.direct-contact small {
  color: #98a9b6;
}

.direct-contact strong {
  overflow-wrap: anywhere;
}

.direct-contact span {
  color: var(--aqua);
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.contact-form > p {
  margin-top: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd7de;
  color: var(--ink);
  background: #f8fafb;
  border-radius: 12px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--aqua-dark);
  outline: 3px solid rgba(18, 200, 189, 0.14);
}

.contact-form .btn {
  width: 100%;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.form-error {
  display: none;
  margin: 14px 0 0 !important;
  padding: 10px 12px;
  color: #8c2a1b !important;
  background: #fff0ec;
  border-radius: 10px;
  font-size: 0.84rem;
}

.form-error.is-visible {
  display: block;
}

.form-note {
  margin: 12px 0 0 !important;
  font-size: 0.76rem;
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 200, 189, 0.25), transparent 26%),
    var(--ink);
}

.page-hero::after {
  position: absolute;
  right: 8%;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  transform: rotate(34deg);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.9rem, 9vw, 8rem);
}

.page-hero p {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c4d1da;
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  color: var(--white);
  background: var(--ink-2);
  border-radius: 26px;
}

.gallery-card::before,
.gallery-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.gallery-card::before {
  inset: 0;
  opacity: 0.9;
  background:
    linear-gradient(0deg, rgba(7, 21, 37, 0.94), rgba(7, 21, 37, 0.08) 75%),
    radial-gradient(circle at 75% 25%, var(--card-accent, var(--aqua)), transparent 30%);
}

.gallery-card::after {
  top: 32px;
  right: 32px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.gallery-card:nth-child(2) { --card-accent: var(--lime); }
.gallery-card:nth-child(3) { --card-accent: var(--orange); }
.gallery-card:nth-child(4) { --card-accent: #7f9dff; }
.gallery-card:nth-child(5) { --card-accent: #e374b6; }
.gallery-card:nth-child(6) { --card-accent: var(--aqua); }

.gallery-card small,
.gallery-card h2,
.gallery-card p {
  position: relative;
  z-index: 1;
}

.gallery-card small {
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-card h2 {
  margin: 12px 0 8px;
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-card p {
  margin: 0;
  color: #c2d0da;
  font-size: 0.9rem;
}

.gallery-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
  gap: 30px;
  color: var(--white);
  background: var(--aqua-dark);
  border-radius: 26px;
}

.gallery-note h2 {
  margin: 0;
  font-size: 1.7rem;
}

.gallery-note p {
  margin: 7px 0 0;
  color: #d6fffb;
}

.legal-content .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 70px;
}

.legal-copy {
  max-width: 800px;
}

.legal-copy h2 {
  margin: 52px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 32px 0 10px;
  font-size: 1.15rem;
}

.legal-copy p,
.legal-copy li {
  color: #435466;
}

.legal-copy a {
  color: #056e69;
}

.legal-copy address {
  color: #435466;
  font-style: normal;
}

.legal-copy ul {
  padding-left: 20px;
}

.legal-warning {
  padding: 18px 20px;
  color: #6a3d00;
  background: #fff2cd;
  border: 1px solid #efcf75;
  border-radius: 15px;
}

.legal-warning strong {
  display: block;
  margin-bottom: 4px;
}

.placeholder {
  display: inline;
  padding: 1px 5px;
  color: #7c2d12;
  background: #ffedd5;
  border-radius: 5px;
  font-weight: 800;
}

.legal-nav {
  position: sticky;
  top: 108px;
  display: grid;
  padding: 18px;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(7, 21, 37, 0.06);
}

.legal-nav strong {
  padding: 8px 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 9px 10px;
  color: var(--muted);
  border-radius: 9px;
  font-size: 0.84rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--ink);
  background: var(--paper);
}

.site-footer {
  padding-block: 72px 26px;
  color: var(--white);
  background: #04101d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 450px;
  color: #9fb0bd;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col small {
  margin-bottom: 8px;
  color: var(--aqua);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: #c4d0d9;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 22px;
  gap: 20px;
  color: #8598a6;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #c7d3dc;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.error-page strong {
  display: block;
  color: var(--aqua);
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.8;
}

.error-page h1 {
  margin: 24px 0 10px;
  font-size: clamp(2rem, 6vw, 4rem);
}

.error-page p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #b8c7d1;
}

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

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

@media (max-width: 1020px) {
  .primary-nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 60px;
  }

  .hero-panel {
    max-width: 690px;
  }

  .section-head {
    display: block;
  }

  .section-head .section-intro {
    max-width: 650px;
  }

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

  .region-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .region-visual {
    min-height: 330px;
  }

  .contact-form {
    max-width: 780px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius: 22px;
  }

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

  .brand-copy small {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 72px;
  }

  .hero-layout {
    padding-block: 68px 80px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.3rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-service {
    grid-template-columns: 42px 1fr auto;
  }

  .hero-service:nth-child(n) {
    margin-left: 0;
  }

  .services,
  .process,
  .region,
  .gallery-section,
  .legal-content,
  .contact {
    padding-block: 76px;
  }

  .service-grid,
  .process-grid,
  .gallery-grid,
  .footer-grid,
  .legal-content .shell {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .process-step h3 {
    margin-top: 28px;
  }

  .region-copy {
    padding: 34px 26px;
  }

  .contact-grid {
    gap: 44px;
  }

  .contact-form {
    padding: 25px 20px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .direct-contact a {
    grid-template-columns: 72px 1fr auto;
    font-size: 0.84rem;
  }

  .page-hero {
    padding-block: 74px;
  }

  .gallery-card {
    min-height: 320px;
  }

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

  .gallery-note .btn {
    width: 100%;
  }

  .legal-nav {
    position: static;
    grid-row: 1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }
}
