:root {
  --black: #08090b;
  --graphite: #12151a;
  --charcoal: #1d222a;
  --steel: #8f98a3;
  --silver: #d7dbe0;
  --ice: #f7f8fa;
  --red: #b1121b;
  --red-dark: #6f0b11;
  --red-soft: rgba(177, 18, 27, 0.14);
  --sand: #c9b79c;
  --ink: #141820;
  --muted: #5f6874;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(18, 21, 26, 0.12);
  --shadow-dark: 0 26px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 42px rgba(16, 20, 28, 0.10);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ice);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(177, 18, 27, 0.65);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1100;
  transform: translateY(-140%);
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

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

section[id] {
  scroll-margin-top: 98px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.nav-is-open {
  background: rgba(8, 9, 11, 0.92);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}

.brand small {
  color: rgba(247, 248, 250, 0.68);
  font-size: 12px;
  font-weight: 700;
}

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

.main-nav > a:not(.btn) {
  color: rgba(247, 248, 250, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav > a:not(.btn):hover {
  color: #fff;
}

.main-nav--simple {
  gap: 28px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(177, 18, 27, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 38px rgba(177, 18, 27, 0.28);
}

.btn--outline {
  border-color: rgba(247, 248, 250, 0.36);
  color: #fff;
  background: rgba(247, 248, 250, 0.04);
}

.btn--outline:hover {
  border-color: rgba(247, 248, 250, 0.66);
  background: rgba(247, 248, 250, 0.08);
}

.btn--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn--lg {
  min-height: 54px;
  padding: 15px 22px;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.18), rgba(8, 9, 11, 0.04)),
    url("../assets/hero-serralheria.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 183, 156, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.70) 34%, rgba(8, 9, 11, 0.34) 62%, rgba(8, 9, 11, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.44) 0%, rgba(8, 9, 11, 0.24) 48%, rgba(8, 9, 11, 0.72) 100%);
}

.hero__content {
  padding-top: 100px;
  max-width: var(--max);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  line-height: 1.08;
  font-weight: 700;
}

h1 {
  max-width: 740px;
  color: #fff;
  font-size: 66px;
}

h2 {
  color: var(--ink);
  font-size: 44px;
}

h3 {
  color: var(--ink);
  font-size: 24px;
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(247, 248, 250, 0.88);
  font-size: 20px;
}

.hero__support {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(215, 219, 224, 0.78);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(247, 248, 250, 0.16);
  border-radius: 999px;
  background: rgba(247, 248, 250, 0.06);
  color: rgba(247, 248, 250, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.hero__badges i {
  color: var(--sand);
  font-size: 18px;
}

.credibility {
  position: relative;
  z-index: 3;
  margin-top: -72px;
}

.credibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(247, 248, 250, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(18, 21, 26, 0.94);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.stat-card {
  min-height: 146px;
  padding: 24px;
  border-right: 1px solid rgba(247, 248, 250, 0.10);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(215, 219, 224, 0.74);
  font-weight: 600;
}

.section {
  padding: 104px 0;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(18, 21, 26, 0.04), transparent 42%),
    var(--ice);
}

.about,
.projects,
.tips {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.media-card {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.media-card img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.58));
  pointer-events: none;
}

.media-card--offset::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(201, 183, 156, 0.55);
  border-radius: 10px;
  z-index: -1;
}

.section-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.mini-features span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  background: var(--ice);
  color: var(--ink);
  font-weight: 800;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 15px;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(18, 21, 26, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 20, 28, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 18, 27, 0.32);
  box-shadow: 0 18px 42px rgba(16, 20, 28, 0.10);
}

.service-card > i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(177, 18, 27, 0.20);
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 26px;
}

.service-card h3 {
  font-size: 24px;
}

.service-card p {
  flex: 1;
  margin-top: 13px;
  color: var(--muted);
}

.service-card a,
.portfolio-card a,
.blog-card button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  color: var(--red);
  font-weight: 900;
  border: 0;
  border-bottom: 2px solid rgba(177, 18, 27, 0.32);
  background: transparent;
  padding: 0;
}

.service-card a:hover,
.portfolio-card a:hover,
.blog-card button:hover {
  color: var(--red-dark);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: rgba(177, 18, 27, 0.38);
  background: var(--red-soft);
  color: var(--red-dark);
}

.portfolio-status {
  margin: -12px 0 26px;
  color: var(--muted);
  font-weight: 700;
}

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

.portfolio-card {
  min-width: 0;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--charcoal);
}

.portfolio-card__image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--charcoal);
  overflow: hidden;
}

.portfolio-card__image-button img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.portfolio-card__image-button:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.portfolio-card__body {
  padding: 22px;
}

.portfolio-card span,
.blog-card span {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-top: 8px;
  font-size: 25px;
}

.portfolio-card p {
  margin-top: 10px;
  color: var(--muted);
}

.portfolio-card__action {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
}

.portfolio-grid--gallery .portfolio-card__body {
  min-height: 174px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(10px);
}

.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  border: 1px solid rgba(247, 248, 250, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: var(--graphite);
  box-shadow: var(--shadow-dark);
}

.gallery-lightbox figure {
  margin: 0;
}

.gallery-lightbox img {
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  background: #050505;
}

.gallery-lightbox figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 22px;
  color: #fff;
}

.gallery-lightbox figcaption span,
.gallery-lightbox figcaption small {
  color: rgba(215, 219, 224, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 248, 250, 0.18);
  background: rgba(8, 9, 11, 0.76);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: rgba(177, 18, 27, 0.86);
}

.gallery-lightbox__close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 62px;
  transform: translateY(-50%);
  font-size: 26px;
}

.gallery-lightbox__nav--prev {
  left: 14px;
  border-radius: 999px;
}

.gallery-lightbox__nav--next {
  right: 14px;
  border-radius: 999px;
}

.photo-cta {
  background:
    linear-gradient(135deg, rgba(201, 183, 156, 0.09), transparent 48%),
    var(--graphite);
}

.photo-cta h2,
.photo-cta p {
  color: #fff;
}

.photo-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(247, 248, 250, 0.14);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  background: rgba(8, 9, 11, 0.36);
  box-shadow: var(--shadow-dark);
}

.photo-cta__box p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(247, 248, 250, 0.78);
}

.careers {
  background:
    linear-gradient(135deg, rgba(201, 183, 156, 0.13), transparent 44%),
    var(--ice);
}

.careers__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(18, 21, 26, 0.12);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.careers__copy h2 {
  max-width: 760px;
}

.careers__copy p:not(.eyebrow) {
  max-width: 840px;
  margin-top: 14px;
  color: var(--muted);
}

.careers__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.careers__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(18, 21, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
}

.why {
  background: var(--ice);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 20, 28, 0.06);
}

.why-grid i {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 32px;
}

.why-grid h3 {
  font-size: 22px;
}

.why-grid p {
  margin-top: 12px;
  color: var(--muted);
}

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

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

.process .section-heading p:not(.eyebrow) {
  color: rgba(247, 248, 250, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-grid article {
  position: relative;
  min-height: 270px;
  padding: 28px 22px;
  border: 1px solid rgba(247, 248, 250, 0.12);
  border-top: 3px solid var(--sand);
  border-radius: 10px;
  background: var(--graphite);
}

.process-grid span {
  color: rgba(247, 248, 250, 0.22);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
}

.process-grid h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 22px;
}

.process-grid p {
  margin-top: 12px;
  color: rgba(215, 219, 224, 0.78);
}

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

.blog-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--ice);
}

.blog-card h3 {
  margin-top: 10px;
  font-size: 22px;
}

.blog-card p {
  flex: 1;
  margin-top: 12px;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(180deg, rgba(18, 21, 26, 0.04), transparent 42%),
    var(--ice);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: start;
}

.contact__copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.contact__copy .btn {
  margin-top: 28px;
}

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

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 600;
}

.contact-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--red);
  font-size: 22px;
}

.contact-list a:hover,
.site-footer a:hover,
.privacy-content a:hover {
  color: var(--red);
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(18, 21, 26, 0.16);
  border-radius: 7px;
  background: var(--ice);
  color: var(--ink);
  padding: 13px 14px;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(95, 104, 116, 0.74);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.map-section {
  padding: 0 0 92px;
  background: var(--ice);
}

.map-frame {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  min-height: 380px;
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 132px;
  padding: 0 10px 10px;
  color: var(--black);
  text-align: center;
  transform: translate(-50%, -74%);
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(8, 9, 11, 0.26));
}

.map-pin span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 27px;
}

.map-pin span::after {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background: var(--red);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.map-pin strong,
.map-pin small {
  position: relative;
  z-index: 1;
  display: block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(8, 9, 11, 0.14);
}

.map-pin strong {
  margin-top: 8px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.map-pin small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.map-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 3px solid var(--red);
  background: var(--black);
  color: rgba(215, 219, 224, 0.76);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 42px;
  padding: 54px 0 38px;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin-bottom: 8px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  background: #1fad56;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.floating-whatsapp i {
  font-size: 28px;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.78);
}

.modal__panel {
  position: relative;
  width: min(100%, 620px);
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-dark);
}

.modal__panel p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.modal__panel .btn {
  margin-top: 24px;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  background: var(--ice);
  color: var(--ink);
  font-size: 20px;
}

.simple-page {
  min-height: 100vh;
  background: var(--ice);
}

.simple-page .site-header {
  background: rgba(8, 9, 11, 0.94);
  border-bottom-color: var(--line-dark);
}

.confirmation,
.privacy-page {
  padding: 150px 0 80px;
}

.confirmation {
  min-height: calc(100vh - 160px);
  display: grid;
  align-items: center;
}

.confirmation__box {
  max-width: 780px;
  padding: 54px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.confirmation__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(31, 173, 86, 0.13);
  color: #1fad56;
  font-size: 34px;
}

.confirmation h1 {
  color: var(--ink);
  font-size: 54px;
}

.confirmation p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.confirmation .btn--outline {
  border-color: var(--line-light);
  color: var(--ink);
  background: #fff;
}

.privacy-content {
  max-width: 860px;
  padding: 42px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.privacy-content h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 54px;
}

.privacy-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 30px;
}

.privacy-content p {
  margin-top: 14px;
  color: var(--muted);
}

.privacy-content a {
  color: var(--red);
  text-decoration: underline;
}

.privacy-content .btn {
  margin-top: 34px;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav > a:not(.btn) {
    font-size: 13px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 39px;
  }

  .portfolio-grid,
  .why-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 24px;
    background: rgba(8, 9, 11, 0.97);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open,
  .main-nav--simple {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav .btn {
    margin-top: 14px;
  }

  .main-nav--simple {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .main-nav--simple a {
    border: 0;
    padding: 0;
  }

  .hero {
    min-height: 710px;
  }

  .credibility {
    margin-top: 0;
    padding-top: 18px;
    background: var(--black);
  }

  .credibility__grid,
  .split,
  .photo-cta__box,
  .careers__box,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 248, 250, 0.10);
  }

  .stat-card:nth-child(odd) {
    border-right: 1px solid rgba(247, 248, 250, 0.10);
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: 0;
  }

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

  .split,
  .contact__grid {
    gap: 42px;
  }

  .photo-cta__box .btn {
    width: fit-content;
  }

  .careers__box .btn {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 11px;
  }

  .main-nav {
    top: 74px;
  }

  .main-nav--simple {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding-top: 92px;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    overflow-wrap: break-word;
  }

  h2,
  .privacy-content h1,
  .confirmation h1 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .hero__lead,
  .section-heading p:not(.eyebrow),
  .confirmation p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero__support {
    font-size: 15px;
  }

  .hero__actions,
  .confirmation__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn,
  .photo-cta__box .btn,
  .careers__box .btn {
    width: 100%;
  }

  .btn--lg {
    padding-inline: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .credibility__grid,
  .services-grid,
  .portfolio-grid,
  .why-grid,
  .process-grid,
  .blog-grid,
  .mini-features {
    grid-template-columns: 1fr;
  }

  .stat-card:nth-child(odd),
  .stat-card:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 248, 250, 0.10);
  }

  .stat-card:nth-child(4) {
    border-bottom: 0;
  }

  .service-card,
  .why-grid article,
  .process-grid article,
  .blog-card {
    min-height: auto;
  }

  .photo-cta__box,
  .careers__box,
  .contact-form,
  .confirmation__box,
  .privacy-content,
  .modal__panel {
    padding: 24px;
  }

  .careers__tags span {
    min-height: 34px;
    font-size: 12px;
  }

  .map-frame iframe {
    min-height: 330px;
  }

  .map-pin {
    left: 54%;
    top: 51%;
    transform: translate(-50%, -70%) scale(0.9);
  }

  .footer__grid,
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    gap: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .privacy-content h2 {
    font-size: 25px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox img {
    max-height: 68vh;
  }

  .gallery-lightbox figcaption {
    padding: 14px 16px;
  }

  .gallery-lightbox figcaption strong {
    font-size: 23px;
  }

  .gallery-lightbox__nav {
    width: 42px;
    height: 52px;
    font-size: 22px;
  }

  .gallery-lightbox__nav--prev {
    left: 8px;
  }

  .gallery-lightbox__nav--next {
    right: 8px;
  }

  .gallery-lightbox__close {
    top: 8px;
    right: 8px;
  }
}

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