:root {
  --ink: #0b0d0f;
  --graphite: #15181b;
  --steel: #23272b;
  --slate: #3a3f44;
  --fog: #eef1f3;
  --mist: #d0d5d9;
  --sage: #6f8050;
  --sage-bright: #8ea465;
  --accent: #a7b46b;
  --accent-strong: #6f8050;
  --accent-soft: #b7c67a;
  --khaki: #3a4034;
  --card: rgba(22, 25, 28, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(167, 180, 107, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--fog);
  background: radial-gradient(circle at top left, #1d2327 0%, #0b0d0f 45%, #060708 100%);
  min-height: 100vh;
  font-weight: 300;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(167, 180, 107, 0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(111, 128, 80, 0.15), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 6vw;
  min-height: 72px;
  background: var(--khaki);
  backdrop-filter: blur(18px);
  border-bottom: none;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 16, 0.05) 0%, rgba(12, 14, 16, 0.75) 100%);
  z-index: -1;
  pointer-events: none;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.35rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.brand-mark img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: none;
  color: #fff;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--fog);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-weight: 500;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 18px rgba(167, 180, 107, 0.35),
    0 0 36px rgba(167, 180, 107, 0.2);
}

.lang-toggle {
  display: flex;
  gap: 0.5rem;
  background: var(--steel);
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--fog);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-soft));
  color: var(--ink);
}

.hero {
  --hero-bleed: 96px;
  --hero-drop: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  padding: 4.5rem 6vw 3rem;
  position: relative;
  z-index: 1;
  overflow: visible;
  animation: fadeUp 0.8s ease both;
  background: rgba(12, 14, 16, 0.85);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  top: calc(var(--hero-bleed) * -1);
  height: calc(100% + var(--hero-bleed) + var(--hero-drop));
  background-image:
    linear-gradient(120deg, rgba(167, 180, 107, 0.16), transparent 35%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 45px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 45px
    );
  mix-blend-mode: screen;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  top: calc(var(--hero-bleed) * -1);
  height: calc(100% + var(--hero-bleed) + var(--hero-drop));
  width: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(0.6) contrast(1.1);
  z-index: 0;
  pointer-events: none;
}

.hero-video.is-scroll {
  transform: translateY(var(--scroll-shift, 0px)) scale(var(--scroll-scale, 1));
  filter: grayscale(0.6) contrast(1.1) blur(var(--scroll-blur, 0px));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  top: calc(var(--hero-bleed) * -1);
  height: calc(100% + var(--hero-bleed) + var(--hero-drop));
  background: linear-gradient(
    180deg,
    rgba(12, 14, 16, 0.75) 0%,
    rgba(6, 7, 8, 0.5) 35%,
    rgba(6, 7, 8, 0.15) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero h1 {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  margin: 1rem 0 1.2rem;
  color: var(--fog);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(238, 241, 243, 0.9);
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: rgba(20, 23, 26, 0.65);
  border: 1px solid rgba(167, 180, 107, 0.3);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.metric-card span {
  font-size: 0.72rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--accent);
}

.metric-card strong {
  font-size: 1.1rem;
  color: var(--fog);
}

.metric-card:hover {
  border-color: rgba(167, 180, 107, 0.45);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 22px rgba(167, 180, 107, 0.3),
    0 0 60px rgba(167, 180, 107, 0.18);
  transform: translateY(-4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-soft));
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(167, 180, 107, 0.3);
}

.btn.ghost {
  background: linear-gradient(135deg, rgba(111, 128, 80, 0.25), rgba(183, 198, 122, 0.15));
  border: 1px solid rgba(167, 180, 107, 0.35);
  color: var(--fog);
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.9s ease both 0.15s;
  position: relative;
  z-index: 1;
  justify-self: end;
}

.panel-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.panel-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.panel-card ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--mist);
  line-height: 1.6;
}

.panel-card:hover {
  border-color: rgba(167, 180, 107, 0.45);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 22px rgba(167, 180, 107, 0.3),
    0 0 60px rgba(167, 180, 107, 0.18);
  transform: translateY(-4px);
}

.section {
  padding: 3.5rem 6vw;
  position: relative;
  z-index: 1;
}

#fleet {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 16, 0.35) 0%,
    rgba(12, 14, 16, 0.6) 30%,
    rgba(10, 11, 13, 0.85) 55%,
    rgba(8, 9, 11, 0.98) 100%
  );
}

#fleet > * {
  position: relative;
  z-index: 1;
}

/* Fleet section inherits base section styling */

/* section separators removed */

#fleet::before {
  display: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  color: rgba(238, 241, 243, 0.88);
  line-height: 1.7;
  font-weight: 400;
}

.section-cta {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.detail .section-cta {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(167, 180, 107, 0.25);
  background: rgba(12, 14, 16, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.vehicle-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--border);
  background: var(--steel);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: rise 0.6s ease both;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 24px rgba(167, 180, 107, 0.35),
    0 0 60px rgba(167, 180, 107, 0.2);
}

.vehicle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 13, 15, 0.2) 0%, rgba(11, 13, 15, 0.9) 70%);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(6, 7, 8, 0.7);
  color: var(--fog);
  font-size: 0.7rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  border: 1px solid rgba(167, 180, 107, 0.4);
  z-index: 1;
}

.vehicle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.vehicle-card:hover img {
  transform: scale(1.05) translateY(-4px);
  filter: saturate(1.2) contrast(1.1);
}

.vehicle-micro {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, -6px);
  display: flex;
  gap: 0.6rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(6, 7, 8, 0.7);
  border: 1px solid rgba(167, 180, 107, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.vehicle-micro span {
  font-size: 0.65rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: var(--mist);
}

.vehicle-micro .micro-dot {
  width: 6px;
  height: 6px;
  align-self: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(167, 180, 107, 0.6);
  animation: pulse 1.6s ease infinite;
}

.vehicle-card:hover .vehicle-micro {
  opacity: 1;
  transform: translate(-50%, 0);
}

.vehicle-card:hover .vehicle-badge {
  opacity: 0;
}

.vehicle-info {
  position: absolute;
  inset: 0;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  z-index: 1;
}

.vehicle-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--fog);
}

.vehicle-info p {
  margin: 0;
  color: var(--mist);
  font-size: 0.9rem;
}

.vehicle-info span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--accent);
}

.detail {
  border-top: none;
  border-bottom: none;
  background: rgba(9, 10, 12, 0.95);
  padding-bottom: 2.5rem;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.detail-media-column {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.detail-content {
  background: rgba(20, 23, 26, 0.6);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.detail-content:hover {
  border-color: rgba(167, 180, 107, 0.45);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 22px rgba(167, 180, 107, 0.3),
    0 0 60px rgba(167, 180, 107, 0.18);
  transform: translateY(-4px);
}

.detail-content h3 {
  margin-top: 0;
  font-size: 2rem;
}

.detail-status {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.detail-tag {
  color: var(--accent);
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.detail-intro {
  color: var(--mist);
  line-height: 1.7;
  font-weight: 300;
}

.specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  margin: 1rem 0 0;
}

.specs dt {
  color: var(--mist);
  font-weight: 600;
}

.specs dd {
  margin: 0;
  color: var(--fog);
  text-align: right;
}

.media-info {
  margin-top: 1.5rem;
}

.media-info a {
  color: var(--accent);
  text-decoration: none;
}

.media-info a:hover {
  text-decoration: underline;
}

.media-info video {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #000;
}

#video-links {
  margin-top: 1rem;
}

.detail-gallery {
  background: rgba(20, 23, 26, 0.6);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  align-self: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.detail-gallery.single-image .gallery-thumbs {
  display: none;
}

.detail-gallery.single-image .gallery-main img {
  height: 440px;
  object-fit: contain;
  background: rgba(8, 10, 12, 0.9);
}

.detail-video {
  background: rgba(20, 23, 26, 0.6);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.detail-gallery:hover,
.detail-video:hover {
  border-color: rgba(167, 180, 107, 0.45);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 22px rgba(167, 180, 107, 0.3),
    0 0 60px rgba(167, 180, 107, 0.18);
  transform: translateY(-4px);
}

.video-player {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(8, 10, 12, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.video-player video {
  width: 100%;
  height: 320px;
  display: block;
  background: #000;
  cursor: pointer;
}

.video-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.video-thumbs button {
  border: none;
  padding: 0;
  width: clamp(96px, 11vw, 140px);
  height: clamp(54px, 7vw, 84px);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  border: 1px solid transparent;
}

.video-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(167, 180, 107, 0.2);
}

.video-thumbs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  background: rgba(8, 10, 12, 0.9);
}

.gallery-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.75);
  color: var(--mist);
  font-size: 0.75rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-main img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.gallery-thumbs button {
  border: none;
  padding: 0;
  width: clamp(64px, 8vw, 90px);
  height: clamp(56px, 7vw, 72px);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  border: 1px solid transparent;
}

.gallery-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(167, 180, 107, 0.2);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capabilities {
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.95) 0%, var(--khaki) 100%);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.cap-card {
  background: rgba(20, 23, 26, 0.7);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  color: var(--mist);
  line-height: 1.6;
  animation: fadeUp 0.7s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cap-card:hover {
  color: var(--fog);
  border-color: rgba(167, 180, 107, 0.45);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 22px rgba(167, 180, 107, 0.3),
    0 0 60px rgba(167, 180, 107, 0.18);
  transform: translateY(-4px);
}

.contact {
  background: var(--khaki);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  background: rgba(20, 23, 26, 0.7);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.contact-card:hover {
  border-color: rgba(167, 180, 107, 0.45);
  box-shadow:
    0 0 0 1px rgba(167, 180, 107, 0.25),
    0 0 22px rgba(167, 180, 107, 0.3),
    0 0 60px rgba(167, 180, 107, 0.18);
  transform: translateY(-4px);
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-value {
  margin: 0;
  color: var(--mist);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-logo {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  pointer-events: none;
}

.contact-logo img {
  width: 330px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.contact-spacer {
  height: 0.75rem;
}

.contact-value a {
  color: var(--fog);
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--accent);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: rgba(167, 180, 107, 0.15);
  border: 1px solid rgba(167, 180, 107, 0.35);
}

.contact-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(20, 23, 26, 0.6);
  color: var(--fog);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 180, 107, 0.6);
}

.social-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--fog);
}

.social-inline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  width: fit-content;
  height: auto;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--fog);
  text-decoration: none;
}

.social-inline svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--accent);
}

.social-inline span {
  font-size: 0.85rem;
  letter-spacing: 0.03rem;
  color: var(--mist);
}

.contact-social-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding-top: 0.05rem;
}

.contact-lines {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: start;
  gap: 0.4rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}


.site-footer {
  padding: 2rem 6vw;
  border-top: none;
  text-align: center;
  color: var(--mist);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  background: var(--khaki);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .detail-shell {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-panel {
    justify-self: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.85rem 5vw;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand . lang"
      "nav nav nav";
    align-items: center;
    gap: 0.6rem 0.8rem;
  }

  .brand {
    grid-area: brand;
  }

  .nav {
    grid-area: nav;
    flex-wrap: nowrap;
    gap: 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.06rem;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .lang-toggle {
    grid-area: lang;
    margin-left: auto;
    padding: 0.25rem;
  }

  .lang-btn {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 3.5rem 5vw 2.5rem;
    --hero-bleed: 110px;
    --hero-drop: 200px;
  }

  .section {
    padding: 3rem 5vw;
  }

  .contact-logo {
    left: auto;
    right: 1.2rem;
    top: 1.2rem;
    bottom: auto;
  }

  .contact-logo img {
    width: 180px;
  }


  .gallery-main img {
    height: 280px;
  }

  .detail-gallery.single-image .gallery-main img {
    height: 320px;
    object-fit: contain;
  }


  .video-player video {
    height: 220px;
  }
}
