:root {
  --bg-dark: #101213;
  --bg-dark-2: #003049;
  --primary: #5B1111;
  --primary-hover: #4a0e0e;
  --secondary: #5B1111;
  --secondary-hover: #4a0e0e;
  --gold: #FDF0D5;
  --text-light: #fff8ec;
  --text-soft: #e5d7c3;
  --text-dark: #101213;
  --text-muted: #5f5549;
  --section-bg: #5B1111;
  --white: #f8f3eb;
  --border-soft: #ffffff1f;
  --line: #10121324;
  --shadow-soft: 0 20px 60px #10121345;
  --shadow-card: 0 20px 52px #10121318;
  --header-height: 106px;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
  min-width: 320px;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform .2s;
}

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

.container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: #003049f2;
  padding: 16px 0;
  transition: background-color .35s, box-shadow .35s, padding .35s;
  box-shadow: 0 18px 50px #10121324;
}

.header.is-compact,
.header.is-open {
  background: #003049fa;
  box-shadow: 0 18px 50px #1012133d;
}

.header-container {
  min-height: calc(var(--header-height) - 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height .35s;
}

.header.is-compact {
  padding: 10px 0;
}

.header.is-compact .header-container {
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
}

.header.is-compact .brand-logo {
  width: 44px;
  height: 44px;
}

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

.brand-copy strong {
  font-size: 1.52rem;
  line-height: .96;
}

.brand-copy span {
  color: #d8c7ad;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.nav a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: #5B1111;
  transform: scaleX(0);
  transform-origin: 0;
  transition: transform .28s;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff2b;
  border-radius: 14px;
  background: #003049d9;
  color: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 5px 0;
}

.hero,
.page-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-hero {
  min-height: 68svh;
}

.contact-hero {
  align-items: center;
  min-height: 56svh;
}

.contact-hero .page-hero-container {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(900px, 100% - 48px);
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--header-height) + 12px);
  padding-bottom: 104px;
}

.contact-hero .hero-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(2.65rem, 5vw, 4.15rem);
  line-height: 1.08;
}

.contact-hero .hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.contact-hero .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .42;
  background-image:
    linear-gradient(#ffffff14 1px, transparent 1px),
    linear-gradient(90deg, #ffffff14 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06);
}

.hero-container,
.page-hero-container {
  max-width: 900px;
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
}

.page-hero-container {
  padding-bottom: 70px;
}

.hero-badge {
  display: inline-block;
  color: #fff;
  background: rgba(161, 133, 91, .95);
  border: 1px solid #ffffff30;
  border-radius: 999px;
  margin-bottom: 22px;
  padding: 10px 18px;
  font-size: .92rem;
  font-weight: 800;
}

.hero-title {
  color: var(--text-light);
  letter-spacing: 0;
  margin: 0 0 20px;
  max-width: 16ch;
  font-size: clamp(2.7rem, 5.2vw, 4.2rem);
  line-height: 1.03;
}

.page-hero .hero-title {
  max-width: 13.8ch;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
}

.hero-text {
  color: var(--text-soft);
  max-width: 760px;
  margin: 0;
  font-size: 1.17rem;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 14px;
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, filter .3s, background-color .3s;
}

.btn:hover {
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1.01);
}

.btn-primary {
  color: var(--white);
  background: #8f744b;
  box-shadow: 0 16px 34px rgba(16, 18, 19, .26);
}

.btn-primary:hover {
  background: #7e623c;
}

.btn-secondary {
  color: var(--white);
  background: var(--secondary);
}

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

.btn-ghost {
  color: var(--white);
  background: rgba(116, 91, 56, .78);
  border: 1px solid rgba(248, 243, 235, .58);
  box-shadow: 0 14px 30px rgba(16, 18, 19, .2);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  color: #fff;
  background: rgba(116, 91, 56, .82);
  border: 1px solid rgba(248, 243, 235, .54);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(16, 18, 19, .2);
}

.section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 96px 0;
}

.section[id],
#formulario {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: none;
}

.side-panel-section {
  background: #f8f3eb;
  padding-top: 112px;
  padding-bottom: 56px;
}

.side-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: stretch;
}

.side-panel-layout-left {
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
}

.side-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-panel-heading,
.section-heading {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 22px;
}

.side-panel-heading {
  border-bottom: 1px solid var(--line);
}

.side-panel-heading::after,
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: #5B1111;
}

.section-heading::after {
  height: 5px;
  bottom: -3px;
}

.centered {
  text-align: center;
}

.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.side-panel-kicker,
.section-kicker {
  display: inline-block;
  color: var(--primary);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: .76rem;
  font-weight: 900;
}

.side-panel-heading h2,
.section-heading h2,
.contact-band h2,
.contact-copy h2 {
  color: #101213;
  letter-spacing: 0;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.side-panel-heading h2 {
  max-width: 11.2ch;
}

.section-heading h2 {
  max-width: 12.8ch;
}

.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.areas-section .section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.areas-section .section-heading h2,
.areas-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.areas-section .section-heading h2.two-line-title {
  width: min(920px, 100%);
  max-width: none;
}

.section-heading h2.wide-two-line-title {
  width: min(980px, 100%);
  max-width: none;
}

.areas-section .section-heading p {
  width: min(760px, 100%);
}

.side-panel-lead,
.section-heading p,
.contact-band p,
.contact-copy p {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.78;
}

.side-panel-text-grid,
.side-panel-service-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.side-panel-text-block,
.side-panel-service-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0 20px;
}

.side-panel-service-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

.side-panel-label,
.area-index,
.contact-label {
  display: inline-block;
  color: #7d6749;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: .74rem;
  font-weight: 800;
}

.side-panel-text-block p,
.side-panel-service-item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.68;
}

.side-panel-index {
  color: #5B1111eb;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 900;
}

.side-panel-service-item h3 {
  color: var(--text-dark);
  letter-spacing: 0;
  margin: 0 0 6px;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.18;
}

.side-panel-media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
}

.side-panel-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.side-panel-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.02);
}

.section-divider {
  background: var(--white);
  padding: 2px 0 12px;
}

.section-divider span {
  display: block;
  width: 100%;
  height: 1px;
  background: #5B111133;
}

.areas-section,
.cases-section {
  background: var(--white);
}

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

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tech-grid .case-item {
  grid-column: span 2;
}

.tech-grid .case-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.tech-grid .case-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.area-card,
.case-item,
.process-item,
.contact-card,
.contact-note {
  position: relative;
  background: #f8f3eb;
  border: 1px solid #10121318;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}

.area-card:hover,
.case-item:hover,
.process-item:hover,
.contact-card:hover {
  border-color: #5B111166;
  transform: translateY(-5px);
  box-shadow: 0 24px 56px #10121326;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  min-height: 0;
}

.area-card h3,
.case-item h3,
.process-item h3,
.contact-note h3 {
  color: #101213;
  letter-spacing: 0;
  margin: 0 0 12px;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.15;
}

.area-card p,
.case-item p,
.process-item p,
.contact-note li {
  color: var(--text-muted);
  line-height: 1.68;
}

.area-card p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: #5B1111;
  font-weight: 900;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
}

.process-section {
  background: #101213 url("../img/1558518.jpg") center / cover no-repeat;
}

.process-section::before {
  display: block;
  background: rgba(0, 0, 0, .55);
}

.process-section .section-kicker {
  color: var(--gold);
}

.process-section .section-heading h2 {
  color: #fff8ec;
}

.process-section .section-heading p {
  color: #fff8ec;
}

.process-section .section-heading::after {
  background: #f0dcc0;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
}

.process-item span,
.case-item span {
  color: var(--primary);
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
}

.process-item span {
  align-self: center;
  justify-self: center;
  font-size: 1.28rem;
  letter-spacing: .14em;
  line-height: 1;
}

.process-item p,
.case-item p {
  margin: 0;
}

.case-item {
  padding: 26px 24px;
  min-height: 210px;
}

.contact-band {
  color: var(--white);
  background: #003049;
  padding: 70px 0;
}

.contact-band::before {
  background: none;
}

.contact-band-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.contact-band h2,
.contact-band p {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.contact-band p {
  color: #e5d7c3;
  max-width: 58ch;
}

.contact-band .contact-actions {
  justify-content: center;
  margin-top: 0;
}

.contact-band .btn {
  min-width: 204px;
}

.contact-band .section-kicker {
  color: #f0dcc0;
}

.contact-section {
  background: #f8f3eb;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 104px;
  overflow: visible;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.contact-box-simple {
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  max-width: 1080px;
}

.contact-left-stack {
  display: grid;
  gap: 18px;
}

.contact-box-simple .contact-note,
.contact-box-simple .contact-form-panel {
  margin-top: 0;
}

.contact-right-panel,
.contact-form {
  min-width: 0;
}

.contact-right-panel {
  display: grid;
  gap: 18px;
}

.contact-copy {
  position: sticky;
  top: 132px;
  align-self: start;
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-copy p {
  max-width: 42ch;
}

.contact-info-group + .contact-info-group {
  margin-top: 42px;
}

.contact-info-group h2,
.contact-form h2 {
  color: #101213;
  margin: 0 0 14px;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.contact-info-group p {
  color: #2f3134;
  margin: 0 0 8px;
  font-size: .98rem;
  line-height: 1.65;
}

.contact-info-group a {
  color: #5B1111;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form-panel {
  background: #fff8ec;
  border: 1px solid #10121318;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  margin-top: 10px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

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

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

.contact-form label > span {
  color: #101213;
  font-size: .84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #101213;
  background: #ece9e3;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #5B1111;
  box-shadow: 0 0 0 4px #5B11111a;
}

.form-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.form-check input {
  width: 18px;
  height: 18px;
  accent-color: #5B1111;
}

.form-check span {
  color: #4b4034;
  font-size: .9rem;
  font-weight: 700;
}

.form-submit {
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 2px;
  box-shadow: none;
}

.form-note {
  color: #5f5549;
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
}

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

.contact-card {
  color: var(--text-dark);
  padding: 24px;
  min-height: 242px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.contact-card small {
  display: block;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: #5B1111;
  border-radius: 16px;
  margin-bottom: 18px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card:first-child .contact-icon {
  background: #5B1111;
}

.contact-note {
  background: #fff8ec;
  padding: 30px;
}

.contact-note ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding-left: 20px;
}

.contact-info-card {
  display: grid;
  gap: 18px;
}

.contact-detail-list {
  display: grid;
  gap: 15px;
}

.contact-detail {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.contact-detail > span {
  display: block;
  color: #8f744b;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  color: #101213;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
}

.contact-detail a {
  text-decoration: none;
}

.contact-detail a:hover {
  color: #5B1111;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2px;
}

.contact-social-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #10121318;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(16, 18, 19, .08);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.contact-social-link:hover {
  border-color: #8f744b80;
  box-shadow: 0 16px 28px rgba(16, 18, 19, .13);
  transform: translateY(-2px);
}

.contact-social-mail {
  color: #fff;
  background: #8f744b;
}

.contact-social-mail:hover {
  border-color: #8f744b;
  background: #7e623c;
}

.contact-social-mail svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social-link img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer {
  background: var(--bg-dark);
  border-top: 1px solid #ffffff0f;
  padding: 22px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer p,
.footer a {
  color: #e5d7c3;
  margin: 0;
  font-size: .95rem;
}

.reveal-ready .reveal,
.reveal-ready .reveal-media {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-ready .reveal-media {
  transform: translateY(20px) scale(.985);
}

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

@media (max-width: 1120px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-grid .case-item,
  .tech-grid .case-item:nth-child(4),
  .tech-grid .case-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .header {
    padding: 12px 0;
  }

  .header-container {
    min-height: 64px;
  }

  .nav {
    gap: 18px;
  }

  .hero-container,
  .page-hero-container {
    padding-top: 142px;
  }

  .side-panel-layout,
  .side-panel-layout-left,
  .process-layout,
  .contact-band-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .side-panel-layout-left .side-panel-media {
    order: 2;
  }

  .side-panel-heading h2,
  .section-heading h2 {
    max-width: none;
  }

  .side-panel-text-grid,
  .side-panel-service-list,
  .contact-grid,
  .case-grid,
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .header.is-open {
    background: #003049fa;
  }

  .header-container {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

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

  .brand-copy span {
    font-size: .74rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 0 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .header.is-open .nav {
    display: flex;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-container,
  .page-hero-container {
    padding-top: 126px;
    padding-bottom: 48px;
  }

  .hero-title,
  .page-hero .hero-title {
    max-width: none;
    font-size: 2.35rem;
    letter-spacing: 0;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    margin-top: 26px;
  }

  .hero-proof {
    display: none;
  }

  .section,
  .side-panel-section {
    padding: 72px 0;
  }

  .side-panel-text-grid,
  .side-panel-service-list,
  .area-grid,
  .case-grid,
  .tech-grid,
  .contact-grid,
  .contact-note ul,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin-top: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-box {
    gap: 28px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-info-group + .contact-info-group {
    margin-top: 28px;
  }

  .side-panel-media {
    border-radius: 20px;
  }

  .side-panel-image {
    min-height: 240px;
  }

  .area-card,
  .case-item,
  .contact-note {
    padding: 24px 22px;
  }

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

  .process-item span {
    justify-self: start;
    font-size: 1.05rem;
  }

  .contact-actions {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal-ready .reveal,
  .reveal-ready .reveal-media {
    opacity: 1;
    transform: none;
  }
}
