:root {
  --bg: #f6fbff;
  --bg-soft: #edf6fd;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: rgba(10, 24, 38, 0.72);
  --text: #102030;
  --muted: #5e7387;
  --line: rgba(126, 165, 194, 0.22);
  --ice: #8fd9ff;
  --ice-strong: #36b9ff;
  --navy: #0a1d2f;
  --shadow: 0 24px 80px rgba(35, 75, 108, 0.12);
  --shadow-soft: 0 14px 36px rgba(38, 73, 102, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --header-offset: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(143, 217, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, #f6fbff 46%, #f1f8fd 100%);
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 120;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(143, 217, 255, 0.22), transparent 36%),
    rgba(246, 251, 255, 0.98);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

body.is-loaded .loader-screen {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loader-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.loader-ring {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(54, 185, 255, 0.18);
  border-top-color: var(--ice-strong);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 16px 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

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

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #102f48, #41c0ff);
  box-shadow: 0 10px 24px rgba(44, 150, 214, 0.22);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--ice-strong), transparent);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.header-cta,
.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #163754, #35bbff);
  box-shadow: 0 14px 28px rgba(32, 116, 165, 0.24);
}

.header-cta:hover,
.button:hover,
.portfolio-card:hover,
.feature-card:hover,
.whatsapp-float:hover {
  transform: translateY(-4px);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.button--light {
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 17, 27, 0.18);
}

.hero {
  position: relative;
  min-height: 100svh;
  margin-top: calc(var(--header-offset) * -1);
  padding: calc(var(--header-offset) + 96px) 0 82px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(6, 17, 28, 0.78), rgba(6, 17, 28, 0.34) 48%, rgba(8, 26, 39, 0.64)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 32px;
}

.hero-copy {
  max-width: 720px;
  color: #f6fbff;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.cta-shell h2 {
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: rgba(246, 251, 255, 0.82);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 251, 255, 0.92);
  font-size: 0.92rem;
  backdrop-filter: blur(18px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 52px rgba(4, 14, 24, 0.16);
}

.hero-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #f6fbff;
}

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

.hero-panel__label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(246, 251, 255, 0.72);
}

.hero-panel__status {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(143, 217, 255, 0.12);
  border: 1px solid rgba(143, 217, 255, 0.2);
  font-size: 0.84rem;
}

.hero-panel__grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.hero-panel__grid div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel__grid strong {
  font-size: 1rem;
}

.hero-panel__grid span {
  color: rgba(246, 251, 255, 0.78);
  font-size: 0.92rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  transform: translateX(-50%);
  width: 34px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: #ffffff;
  animation: float-down 1.6s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading--compact {
  max-width: 540px;
}

.section-heading h2,
.experience-copy h2,
.cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.experience-copy p,
.cta-shell p,
.site-footer p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-tag {
  margin-bottom: 14px;
  background: rgba(143, 217, 255, 0.11);
  border: 1px solid rgba(143, 217, 255, 0.18);
  color: #165a84;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #d7ebf8;
  box-shadow: var(--shadow);
  cursor: pointer;
  min-height: 360px;
  text-align: left;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.portfolio-card--featured {
  grid-column: span 7;
  min-height: 520px;
}

.portfolio-card--tall {
  grid-column: span 5;
  min-height: 520px;
}

.portfolio-card--wide {
  grid-column: span 12;
  min-height: 380px;
}

.portfolio-card__media,
.portfolio-card__media img,
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.portfolio-card__overlay {
  background:
    linear-gradient(180deg, rgba(7, 17, 27, 0.04), rgba(9, 22, 35, 0.78)),
    linear-gradient(90deg, rgba(15, 30, 44, 0.12), transparent 48%);
}

.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:focus-visible .portfolio-card__media img {
  transform: scale(1.08);
  filter: blur(2px);
}

.portfolio-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.portfolio-card__label,
.modal-badge {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
}

.portfolio-card__copy {
  max-width: min(100%, 360px);
  color: #ffffff;
  transform: translateY(24px);
  opacity: 0.82;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-card__copy,
.portfolio-card:focus-visible .portfolio-card__copy {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-card__copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}

.portfolio-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.portfolio-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

.portfolio-card__meta::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.trust-section {
  padding-top: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.trust-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(143, 217, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.trust-card--accent {
  background:
    linear-gradient(135deg, rgba(16, 32, 48, 0.98), rgba(22, 66, 98, 0.94));
  color: #ffffff;
}

.trust-card--accent p,
.trust-card--accent h3 {
  color: inherit;
}

.trust-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #10314c;
}

.trust-card--accent .trust-value {
  color: #ffffff;
}

.trust-value strong,
.trust-value--text {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 700;
}

.trust-value em {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}

.trust-card h3,
.feature-card h3,
.modal-description h4,
.modal-gallery h4 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.trust-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
}

.trust-card--accent h3,
.trust-card--accent p {
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(143, 217, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 255, 0.84));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(54, 185, 255, 0.28);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(143, 217, 255, 0.16), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(143, 217, 255, 0.18);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #165a84;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
  align-items: center;
}

.experience-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 30px;
  background: #dceefa;
  box-shadow: var(--shadow);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-media__badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  color: #ffffff;
}

.experience-media__badge strong,
.experience-list strong,
.footer-meta strong {
  display: block;
  font-size: 1rem;
}

.experience-media__badge span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.experience-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.experience-list div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(143, 217, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.experience-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.cta-section {
  padding-top: 48px;
}

.cta-shell {
  padding: 54px min(5vw, 56px);
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(143, 217, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #091521 0%, #14324c 46%, #1f6090 100%);
  box-shadow: 0 32px 80px rgba(10, 24, 38, 0.22);
}

.cta-shell p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-shell .button {
  margin-top: 30px;
}

.site-footer {
  padding: 36px 0 28px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(143, 217, 255, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.footer-brand h2 {
  margin: 0;
  font-size: 1.8rem;
}

.footer-meta,
.footer-social {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-list a,
.footer-meta a {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(143, 217, 255, 0.11);
  border: 1px solid rgba(143, 217, 255, 0.16);
  color: #165a84;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 18px;
  color: var(--muted);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10a85b, #31d77b);
  color: #ffffff;
  box-shadow: 0 22px 38px rgba(16, 168, 91, 0.28);
}

.whatsapp-float__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.whatsapp-float__label {
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 27, 0.62);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border-radius: 30px;
  background: rgba(248, 252, 255, 0.96);
  box-shadow: 0 34px 90px rgba(5, 18, 29, 0.24);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 23px;
  height: 2px;
  background: #ffffff;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-hero {
  position: relative;
  min-height: 360px;
}

.modal-hero img,
.modal-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.modal-hero img {
  object-fit: cover;
}

.modal-hero__overlay {
  background:
    linear-gradient(180deg, rgba(5, 15, 24, 0.1), rgba(8, 22, 35, 0.84)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 48%);
}

.modal-hero__copy {
  position: absolute;
  left: 32px;
  right: 90px;
  bottom: 32px;
  z-index: 1;
  color: #ffffff;
}

.modal-hero__copy h3 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.modal-hero__copy p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.modal-body {
  padding: 30px 32px 36px;
}

.modal-meta,
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-meta {
  margin-bottom: 22px;
}

.modal-meta span,
.modal-tags span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(143, 217, 255, 0.12);
  border: 1px solid rgba(143, 217, 255, 0.18);
  color: #165a84;
  font-weight: 600;
}

.modal-description p {
  margin: 0;
  color: var(--muted);
}

.modal-gallery {
  margin-top: 28px;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(143, 217, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card figcaption,
.gallery-card__video-copy {
  padding: 16px;
  color: var(--muted);
}

.gallery-card__video {
  position: relative;
  min-height: 220px;
}

.gallery-card__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 27, 0.08), rgba(7, 17, 27, 0.68)),
    var(--video-poster) center / cover no-repeat;
}

.gallery-card__video-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: #ffffff;
}

.gallery-card__video-copy strong {
  display: block;
  margin-bottom: 4px;
}

.gallery-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
}

.gallery-card__play::before {
  content: "";
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #ffffff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-down {
  0%,
  100% {
    transform: translateY(-4px);
    opacity: 0.8;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero-content,
  .experience-shell,
  .footer-shell,
  .trust-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card--featured,
  .portfolio-card--tall,
  .portfolio-card--wide {
    grid-column: span 12;
    min-height: 420px;
  }

  .footer-shell {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 82px;
  }

  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    padding: 12px 14px;
    border-radius: 26px;
  }

  .brand__text small,
  .header-cta,
  .hero-panel,
  .whatsapp-float__label {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-offset) + 74px);
  }

  .hero-copy {
    max-width: 100%;
  }

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

  .section {
    padding: 88px 0;
  }

  .portfolio-card {
    padding: 20px;
    min-height: 360px;
  }

  .portfolio-card__copy h3 {
    font-size: 1.55rem;
  }

  .trust-card,
  .feature-card,
  .cta-shell,
  .footer-shell,
  .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .experience-media {
    min-height: 420px;
  }

  .modal {
    padding: 12px;
  }

  .modal-dialog {
    border-radius: 24px;
  }

  .modal-hero {
    min-height: 280px;
  }

  .modal-hero__copy {
    left: 20px;
    right: 72px;
    bottom: 20px;
  }

  .modal-gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .gallery-card__video {
    min-height: 200px;
    height: 200px;
  }

  .whatsapp-float {
    padding: 14px;
  }
}

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

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