/*
 *  ╭──────────────────────────────────────────────────────────╮
 *  │  Casa Atempo · Main styles                               │
 *  │  Site developed by Leandro Vidal                         │
 *  │  https://www.linkedin.com/in/leandrovidal/               │
 *  ╰──────────────────────────────────────────────────────────╯
 */

@import './variables.css';

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Arapey', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 300;
  padding: 0.5rem 1rem;
  background: var(--orange);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

/* ─── NAV ─── */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 28px 60px;
  background: transparent;
  pointer-events: none;
  transition:
    background 0.4s,
    padding 0.4s;
}

#navbar > * {
  pointer-events: auto;
}

#navbar.scrolled {
  background: var(--navy);
  padding: 18px 60px;
}

.site-logo {
  position: fixed;
  z-index: 110;
  display: block;
  text-decoration: none;
  will-change: left, top, width;
}

.site-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-family: 'Arapey', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition:
    opacity 0.3s,
    color 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--orange-light);
}

.nav-social-group {
  display: flex;
  align-items: center;
}

.nav-social-group-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  opacity: 1;
}

.nav-social-link:hover {
  color: var(--orange);
}

.nav-social-icon {
  flex-shrink: 0;
}

#navbar .nav-links {
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: 1px solid rgba(212, 131, 42, 0.35);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-logo-slot {
  width: 220px;
  height: 220px;
  margin-bottom: 48px;
  flex-shrink: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fade-up 1.4s var(--ease-out) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(38px, 6vw, 72px);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fade-up 1.4s 0.25s var(--ease-out) both;
}

.hero-tagline em {
  color: var(--orange-light);
  font-style: inherit;
}

.hero-subtitle {
  font-family: 'Arapey', serif;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 64px;
  animation: fade-up 1.4s 0.38s var(--ease-out) both;
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(212, 131, 42, 0.5);
  color: var(--orange-light);
  text-decoration: none;
  font-family: 'Arapey', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
  animation: fade-up 1.4s 0.5s var(--ease-out) both;
}

.hero-cta:hover {
  background: rgba(212, 131, 42, 0.12);
  border-color: var(--orange);
  color: var(--orange);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  animation: fade-up 1.4s 0.7s var(--ease-out) both;
}

.scroll-arrow {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0.3;
  }
}

/* ─── SECTION BASE ─── */

section {
  padding: 120px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: 'Arapey', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 40px;
}

.section-title em {
  font-style: italic;
  color: var(--orange-light);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--orange);
  margin-bottom: 40px;
}

.section-intro {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
}

/* ─── GALLERY ─── */

.gallery-section {
  background: var(--navy);
  padding: 0;
}

.gallery-header {
  padding: 100px 60px 60px;
  max-width: 1160px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
  aspect-ratio: 16 / 9;
}

.gallery-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
  aspect-ratio: 3 / 4;
}

.gallery-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1;
}

.gallery-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
  aspect-ratio: 16 / 9;
}

.gallery-item:nth-child(5) {
  grid-column: 1 / 2;
  grid-row: 3;
  aspect-ratio: 3 / 4;
}

.gallery-item:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
  aspect-ratio: 1;
}

.gallery-item:nth-child(7) {
  grid-column: 3;
  grid-row: 3;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease-out),
    filter 0.5s;
  filter: brightness(0.88) saturate(0.9);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 16, 59, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

/* ─── MISION ─── */

.mision-section {
  background: var(--navy);
}

.mision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.mision-text p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.82);
  margin-bottom: 24px;
}

.mision-text p:last-child {
  margin-bottom: 0;
}

.mision-text .muted {
  color: var(--text-muted);
}

.mision-quote {
  border-left: 1px solid var(--orange);
  padding-left: 32px;
}

.mision-quote blockquote {
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.5;
  color: var(--cream);
}

.mision-quote blockquote em {
  color: var(--orange-light);
}

.mision-quote cite {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── VISION ─── */

.vision-section {
  background: var(--navy);
  text-align: center;
}

.vision-inner {
  max-width: 800px;
  margin: 0 auto;
}

.vision-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 48px;
}

.vision-inner .divider {
  margin: 0 auto 40px;
}

.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
  list-style: none;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.pillar-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── VALUES ─── */

.values-section {
  background: rgba(0, 10, 35, 0.6);
  border-top: 1px solid rgba(212, 131, 42, 0.12);
  border-bottom: 1px solid rgba(212, 131, 42, 0.12);
}

.values-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 131, 42, 0.08);
  border: 1px solid rgba(212, 131, 42, 0.08);
}

.values-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 131, 42, 0.08);
  border: 1px solid rgba(212, 131, 42, 0.08);
  border-top: none;
}

.value-card {
  background: var(--navy);
  padding: 52px 36px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover {
  background: rgba(0, 21, 80, 0.9);
}

.value-card:hover::before {
  opacity: 1;
}

.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(212, 131, 42, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.value-card:hover .value-num {
  color: rgba(212, 131, 42, 0.22);
}

.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.value-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── CONTACTO ─── */

.contact-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(212, 131, 42, 0.15);
  text-align: center;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-title em {
  font-style: inherit;
  color: var(--orange-light);
}

.contact-sub {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 60px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 18px 36px;
  background: var(--orange);
  color: var(--navy);
  text-decoration: none;
  font-family: 'Arapey', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.3s;
}

.contact-link:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.contact-link-icon {
  flex-shrink: 0;
}

/* ─── FOOTER ─── */

.site-footer {
  background: rgba(0, 6, 25, 0.95);
  border-top: 1px solid rgba(212, 131, 42, 0.08);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 60px 2rem;
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-legal-bar {
  position: static;
  width: 100%;
  padding: 1rem 60px 1.25rem;
  background: rgba(0, 6, 25, 0.98);
  border-top: 1px solid rgba(212, 131, 42, 0.12);
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-list li {
  display: inline-flex;
  align-items: center;
}

.footer-legal-list li:not(:last-child)::after {
  content: '·';
  margin: 0 0.85rem;
  color: rgba(212, 131, 42, 0.35);
  font-size: 12px;
  pointer-events: none;
}

.footer-legal-list a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal-list a:hover {
  color: var(--orange-light);
}

/* Language picker */

.lang-picker {
  position: relative;
  flex-shrink: 0;
}

.lang-picker-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 10.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(212, 131, 42, 0.28);
  border-radius: 3px;
  background: rgba(0, 16, 59, 0.6);
  color: var(--cream);
  font-family: 'Arapey', serif;
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.lang-picker-toggle:hover,
.lang-picker-toggle[aria-expanded='true'] {
  border-color: var(--orange);
  background: rgba(0, 21, 80, 0.85);
}

.lang-picker-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: left;
}

.lang-picker-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-picker-name {
  letter-spacing: 0.04em;
}

.lang-picker-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--orange-light);
  border-bottom: 1.5px solid var(--orange-light);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.lang-picker-toggle[aria-expanded='true'] .lang-picker-chevron {
  transform: rotate(-135deg) translateY(1px);
}

.lang-picker--nav .lang-picker-toggle {
  min-width: 9rem;
  padding: 0.45rem 0.75rem;
  font-size: 13px;
  background: rgba(0, 16, 59, 0.75);
}

.lang-picker--nav .lang-picker-name {
  font-size: 13px;
}

.lang-picker-menu {
  position: absolute;
  right: 0;
  z-index: 120;
  min-width: 100%;
  max-height: min(16rem, 50vh);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  overflow-y: auto;
  background: rgba(0, 10, 35, 0.98);
  border: 1px solid rgba(212, 131, 42, 0.25);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.lang-picker-menu.is-open {
  display: block;
}

.lang-picker--nav .lang-picker-menu {
  top: calc(100% + 6px);
  bottom: auto;
}

.lang-picker:not(.lang-picker--nav) .lang-picker-menu {
  bottom: calc(100% + 6px);
  top: auto;
}

.lang-picker-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.55rem 0.9rem;
  border: none;
  background: transparent;
  color: var(--cream);
  font-family: 'Arapey', serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-picker-option:hover,
.lang-picker-option.is-selected {
  background: rgba(212, 131, 42, 0.12);
}

.lang-picker-option.is-selected {
  color: var(--orange-light);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── SCROLL REVEAL ─── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

.reveal-delay-4 {
  transition-delay: 0.46s;
}

/* ─── LIGHTBOX ─── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 10, 35, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  animation: lb-in 0.3s ease;
}

@keyframes lb-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lb-close {
  position: absolute;
  top: 32px;
  right: 40px;
  padding: 0.25rem;
  border: none;
  background: none;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-close:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  #navbar {
    gap: 12px;
    padding: 20px 24px;
  }

  #navbar.scrolled {
    padding: 20px 24px;
  }

  .hero-logo-slot {
    width: min(220px, 55vw);
    height: min(220px, 55vw);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    gap: 0;
    padding: 5.5rem 1.5rem 1.5rem;
    background: rgba(0, 16, 59, 0.98);
    border-bottom: 1px solid rgba(212, 131, 42, 0.12);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s,
      opacity 0.3s;
  }

  .nav-links.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(212, 131, 42, 0.12);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    opacity: 1;
  }

  .nav-social-group {
    justify-content: center;
    padding: 1rem 0;
    border-bottom: none;
  }

  .nav-social-group-inner {
    justify-content: center;
    gap: 2rem;
  }

  .container,
  .values-wrap {
    padding: 0 24px;
  }

  .gallery-header {
    padding: 80px 24px 48px;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
    aspect-ratio: 16 / 9;
  }

  .gallery-item:nth-child(5) {
    grid-column: 1;
    grid-row: 4;
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(7) {
    display: none;
  }

  .mision-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid,
  .values-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    padding: 2rem 24px 1.5rem;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal-bar {
    padding: 1rem 24px 1.15rem;
  }

  .footer-legal-list {
    justify-content: center;
  }

  .lang-picker--nav .lang-picker-toggle {
    min-width: 8.5rem;
  }

  .lang-picker--nav .lang-picker-menu {
    right: 0;
    left: auto;
  }
}

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

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

  .site-logo {
    transition: none;
  }

  .hero-content,
  .hero-tagline,
  .hero-subtitle,
  .hero-cta,
  .hero-scroll,
  .scroll-arrow {
    animation: none;
  }

  .gallery-item img {
    transition: none;
  }
}
