:root {
  --bg-dark: #13232b;
  --bg-deep: #19323c;
  --bg-light: #f7f8f4;
  --surface: #ffffff;
  --surface-alt: #f6f7f5;
  --text-dark: #0d1b22;
  --text-light: #f8fbfe;
  --muted: #3c4d58;
  --accent: #f07f45;
  --accent-strong: #dc6532;
  --accent-soft: rgba(240, 127, 69, 0.24);
  --line: rgba(13, 27, 34, 0.12);
  --shadow-strong: 0 26px 60px rgba(9, 16, 22, 0.25);
  --shadow-soft: 0 18px 40px rgba(9, 16, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(240, 127, 69, 0.2), transparent 60%),
    radial-gradient(700px 520px at 90% 6%, rgba(94, 172, 219, 0.2), transparent 62%),
    linear-gradient(180deg, #f9faf7 0%, #f3f6f4 55%, #eef2f4 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.landing-header {
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 250, 0.76));
  border-bottom: 1px solid rgba(13, 27, 34, 0.14);
  box-shadow: 0 12px 24px rgba(12, 20, 28, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  overflow: visible;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.brand img {
  height: 56px;
  width: auto;
  margin-top: -10px;
  margin-bottom: -6px;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.landing-nav a {
  color: rgba(13, 27, 34, 0.72);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

.landing-nav a:hover {
  color: var(--text-dark);
}

.auth-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logout-form {
  margin: 0;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 34, 0.2);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.login-button:hover {
  border-color: rgba(13, 27, 34, 0.4);
  color: var(--accent-strong);
}

.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 36px 24px 90px;
}

.hero-stage {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(140deg, #162935 0%, #1c3644 52%, #14232e 100%);
  color: var(--text-light);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px 280px at 10% 0%, rgba(243, 106, 61, 0.25), transparent 65%),
    radial-gradient(240px 240px at 88% 18%, rgba(68, 140, 202, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 106, 61, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-stage__content,
.hero-stage__media {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 12px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: rgba(238, 244, 247, 0.7);
  font-weight: 600;
}

.kicker--dark {
  color: var(--muted);
}

.hero-stage h1 {
  margin: 0 0 16px 0;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.05;
}

.lead {
  margin: 0 0 22px 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(238, 244, 247, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  appearance: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--surface);
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.35);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-meta__item {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 4px;
}

.hero-meta__item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(238, 244, 247, 0.65);
}

.hero-meta__item strong {
  font-size: 14px;
  color: var(--text-light);
}

.hero-stage__media {
  display: grid;
  gap: 16px;
}

.hero-media__frame {
  position: relative;
  --hero-fade: 0.6s;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  height: 240px;
  background: #0b131a;
  background-image: url("/static/core/img/schaeferhund-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 22, 0.14), rgba(11, 17, 22, 0.62));
  pointer-events: none;
}

.hero-media__slides {
  position: absolute;
  inset: 0;
}

.hero-media__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 24s infinite;
  animation-timing-function: ease-in-out;
}

.hero-media__slide--1 {
  animation-delay: 0s;
}

.hero-media__slide--2 {
  animation-delay: 8s;
}

.hero-media__slide--3 {
  animation-delay: 16s;
}

@keyframes heroSlide {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media__slide {
    animation: none;
    opacity: 0;
  }

  .hero-media__slide--1 {
    opacity: 1;
  }
}

.hero-media__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 18, 24, 0.75);
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-media__panel {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media__panel h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: var(--text-light);
}

.hero-media__panel ul {
  margin: 0 0 10px 0;
  padding-left: 18px;
  color: rgba(238, 244, 247, 0.76);
  line-height: 1.6;
}

.hero-media__note {
  margin: 0;
  color: rgba(238, 244, 247, 0.7);
  font-size: 14px;
}

.value-strip {
  width: min(100%, 1160px);
  margin: -24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e1e5e1;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
}

.value-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 14px;
}

.value-card h3 {
  margin: 0;
  font-size: 16px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

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

.section-heading h2 {
  margin: 0 0 10px 0;
  font-size: clamp(24px, 3.2vw, 36px);
  color: var(--text-dark);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section--grid {
  gap: 26px;
  padding-bottom: 18px;
}

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

.feature-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e1e5e1;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-dark);
}

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

.feature-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.section--updates {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(243, 106, 61, 0.08), rgba(68, 140, 202, 0.12));
  border: 1px solid rgba(15, 24, 32, 0.08);
}

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

.update-card {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e1e5e1;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.update-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(243, 106, 61, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.update-card:hover::after {
  opacity: 1;
}

.update-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.update-card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-dark);
}

.update-card p {
  margin: 0;
  color: var(--muted);
}

.update-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.update-card--accent {
  background: linear-gradient(140deg, #0f1b24 0%, #142733 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.update-card--accent::after {
  opacity: 1;
  background: radial-gradient(circle, rgba(68, 140, 202, 0.26), transparent 70%);
}

.update-card--accent h3 {
  color: var(--text-light);
}

.update-card--accent p,
.update-card--accent ul {
  color: rgba(238, 244, 247, 0.75);
}

.update-card--accent .update-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.section--gallery {
  gap: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.shot-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #0b1116;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  animation: floatCard 12s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition: box-shadow 0.3s ease, transform 0.35s ease;
  transform-origin: center;
  will-change: transform;
}

.shot-card:hover {
  animation: none;
  transform: scale(var(--hover-scale, 1.2));
  box-shadow: 0 22px 50px rgba(6, 12, 18, 0.28);
  z-index: 2;
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.shot-card:hover img {
  transform: scale(1.08);
}

.shot-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
  background: linear-gradient(180deg, rgba(11, 17, 22, 0), rgba(11, 17, 22, 0.78));
  color: var(--text-light);
}

.shot-title {
  font-weight: 600;
  font-size: 14px;
}

.shot-subtitle {
  font-size: 12px;
  color: rgba(238, 244, 247, 0.75);
}

.shot-card--wide {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

.shot-card--tall {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

.split-copy h2 {
  margin: 0 0 12px 0;
  color: var(--text-dark);
  font-size: clamp(24px, 3.2vw, 36px);
}

.split-copy p {
  margin: 0 0 16px 0;
  color: var(--muted);
}

.step-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.split-card {
  border-radius: 20px;
  padding: 24px;
  background: var(--bg-deep);
  color: var(--text-light);
  box-shadow: var(--shadow-strong);
}

.split-card__inner h3 {
  margin: 0 0 10px 0;
  color: var(--text-light);
}

.mini-metrics {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.mini-metrics div {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-weight: 600;
}

.metric-label {
  color: rgba(238, 244, 247, 0.65);
  font-weight: 500;
}

.section--trust {
  gap: 22px;
}

.section--about {
  gap: 22px;
}

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

.about-card {
  background: var(--surface);
  border: 1px solid #e1e5e1;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
  display: grid;
  gap: 12px;
}

.about-card--list {
  background: linear-gradient(140deg, #fff7f0, #ffffff);
  border-color: rgba(243, 106, 61, 0.2);
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-lead {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.about-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.about-list > li {
  position: relative;
  padding: 12px 16px 12px 36px;
  border-radius: 14px;
  border: 1px solid rgba(15, 24, 32, 0.08);
  background: #ffffff;
}

.about-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.about-list strong {
  display: inline-block;
  margin-bottom: 4px;
}

.about-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
  list-style: disc;
  display: grid;
  gap: 6px;
}

.about-list strong {
  color: var(--text-dark);
}

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

.trust-card {
  border-radius: 18px;
  padding: 20px;
  background: var(--surface-alt);
  border: 1px solid #dde1dd;
  display: grid;
  gap: 6px;
}

.trust-card h3 {
  margin: 0;
  font-size: 17px;
  color: var(--text-dark);
}

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

.section--contact {
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  background: var(--surface);
  border: 1px solid #e1e5e1;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

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

.contact-status {
  display: grid;
  gap: 8px;
}

.contact-status__item {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #cfe6db;
  background: #eef6f3;
  color: #0c5c3e;
}

.contact-status__item.error {
  border-color: #f5c2c2;
  background: #fdecec;
  color: #9f1c12;
}

.contact-status__item.success {
  border-color: #cfe6db;
  background: #eef6f3;
  color: #0c5c3e;
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed #d5dbd6;
  background: #f7f8f6;
}

.form-check label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.form-check a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5dbd6;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  color: var(--text-dark);
}

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

.form-hint {
  margin: 0;
  color: #b42318;
  font-size: 12px;
}

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

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

.contact-info h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text-dark);
}

.contact-info__list {
  display: grid;
  gap: 12px;
}

.contact-info__item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e1e5e1;
  background: #ffffff;
}

.contact-info__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 12px;
}

.contact-info__item a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
}

.contact-info__item a:hover {
  text-decoration: underline;
}

.contact-badges {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243, 106, 61, 0.14);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
}

.contact-note {
  margin: 0;
  color: var(--muted);
}

.section--cta {
  width: min(100%, 980px);
}

.cta-panel {
  border-radius: 22px;
  padding: 28px 32px;
  background: linear-gradient(120deg, #0e1c25, #102330);
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-strong);
}

.cta-panel h2 {
  margin: 0 0 8px 0;
  color: var(--text-light);
}

.cta-panel p {
  margin: 0;
  color: rgba(238, 244, 247, 0.75);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  animation: riseIn 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }

  .shot-card {
    animation: none;
  }
}

.landing-footer {
  border-top: 1px solid #e1e5e1;
  background: var(--surface);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.landing-footer a {
  color: var(--muted);
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: #ffffff;
  border: 1px solid #e1e5e1;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-notice a {
  color: var(--accent-strong);
}

.cookie-notice button {
  border: 1px solid #e1e5e1;
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-notice button:hover {
  background: var(--accent-strong);
}

.cookie-notice[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-stage {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .hero-stage__media {
    order: -1;
  }

  .value-strip,
  .feature-grid,
  .updates-grid,
  .trust-grid,
  .section--split,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .shot-card,
  .shot-card--wide,
  .shot-card--tall {
    grid-column: span 6;
    aspect-ratio: 16 / 9;
  }

  .section--split {
    gap: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-header {
    height: auto;
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .brand img {
    height: 44px;
    margin-top: -6px;
    margin-bottom: -4px;
  }

  .landing-nav {
    width: 100%;
    margin-left: 0;
    order: 3;
    flex-wrap: wrap;
    gap: 12px;
  }

  .landing-main {
    padding: 28px 16px 70px;
  }

  .hero-stage {
    padding: 26px;
  }

  .hero-media__frame {
    height: 200px;
  }

  .value-strip {
    margin-top: 0;
  }

  .section--updates {
    padding: 22px;
  }

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

  .shot-card,
  .shot-card--wide,
  .shot-card--tall {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }
}
