:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(10, 10, 10, 0.76);
  --panel-strong: rgba(10, 10, 10, 0.86);
  --border: rgba(212, 175, 55, 0.18);
  --border-soft: rgba(212, 175, 55, 0.12);
  --gold: #d4af37;
  --gold-soft: #f0d77d;
  --gold-bright: #ffd700;
  --text: #f5f1e6;
  --muted: rgba(245, 241, 230, 0.72);
  --muted-dark: rgba(245, 241, 230, 0.56);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.08), transparent 22%),
    radial-gradient(circle at top left, rgba(193, 18, 31, 0.12), transparent 26%),
    linear-gradient(180deg, #040404 0%, #090909 45%, #0b0b0b 100%);
}

.home-page-body {
  position: relative;
}

.home-page-body::before,
.home-page-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.home-page-body::before {
  z-index: 0;
  background:
    url('assets/site-background-collage.jpg') center top / cover no-repeat,
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  opacity: 0.26;
}

.home-page-body::after {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.92)),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.06), transparent 34%);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - clamp(14px, 2.2vw, 28px)));
  margin: 0 auto;
  padding: clamp(12px, 1.8vw, 18px) 0 clamp(18px, 2.4vw, 28px);
}

.topbar,
.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
}

.brand-link {
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 164px;
  max-width: 42vw;
  display: block;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a,
.contact-links a {
  color: var(--text);
  text-decoration: none;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav a:hover,
.contact-links a:hover {
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.landing-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.panel {
  border-radius: 28px;
}

.hero-shell,
.services,
.gallery,
.gallery-page-hero,
.gallery-browser,
.apply-card,
.contact-card {
  padding: clamp(16px, 2vw, 24px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(14px, 1.8vw, 18px);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.offer-label,
.slideshow-kicker {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero-copy h1,
.section-head h1,
.section-head h2,
.offer-card h3,
.full-gallery-counter {
  margin: 8px 0 12px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--gold-soft);
}

.hero-lead,
.section-head p,
.offer-card p,
.contact-note,
.contact-checklist li,
.form-message,
.full-gallery-meta,
.contact-links a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-lead {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin: 18px 0 18px;
  flex-wrap: wrap;
}

.btn,
.service-cta,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn:hover,
.service-cta:hover,
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28);
}

.btn:active,
.service-cta:active,
.submit-btn:active {
  transform: translateY(-1px);
}

.btn-gold,
.service-cta,
.submit-btn {
  color: #111;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-outline {
  color: var(--text);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.035);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.hero-points li,
.contact-note {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-card,
.contact-links a {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
}

.hero-points li {
  padding: 13px 15px;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.hero-points li:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  display: flex;
}

.slideshow-card {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: var(--shadow-soft);
}

.slideshow-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  pointer-events: none;
  z-index: 2;
}

.slideshow-track {
  position: absolute;
  inset: 0;
  cursor: grab;
  touch-action: pan-y;
}

.slideshow-track.is-dragging {
  cursor: grabbing;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 4s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slideshow-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.46)),
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.12), transparent 30%);
}

.slide-arrow,
.gallery-arrow,
.full-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.4);
  color: var(--gold-soft);
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.slide-arrow:hover,
.gallery-arrow:hover,
.full-gallery-arrow:hover {
  background: rgba(8, 8, 8, 0.6);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.slide-arrow-prev,
.gallery-arrow-prev,
.full-gallery-prev {
  left: 14px;
}

.slide-arrow-next,
.gallery-arrow-next,
.full-gallery-next {
  right: 14px;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 90px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slide-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 241, 230, 0.34);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slide-dot:hover {
  background: rgba(245, 241, 230, 0.56);
  transform: scale(1.2);
}

.slide-dot.is-active {
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.slideshow-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(8, 8, 8, 0.36);
  backdrop-filter: blur(12px);
}

.slideshow-badge strong {
  display: block;
  margin-top: 4px;
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: 1rem;
}

.compact-head {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.offer-card:hover {
  border-color: rgba(212, 175, 55, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 42%, rgba(255, 138, 0, 0.05));
  pointer-events: none;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  font-weight: 700;
}

.offer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.offer-brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: cover;
}

.offer-brand-name {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.offer-brand-multi .offer-brand-logo {
  width: 24px;
  height: 24px;
}

.offer-brand-large {
  gap: 12px;
  padding: 10px 14px;
}

.offer-brand-logo-large {
  width: 42px;
  height: 42px;
}

.offer-card h3 {
  font-size: 1.12rem;
  color: var(--gold-soft);
  line-height: 1.3;
}

.gallery-carousel {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 52px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
  scroll-behavior: smooth;
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.34);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-card {
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  border-radius: 20px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  border-color: rgba(212, 175, 55, 0.2);
}

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

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.apply-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(14px, 1.8vw, 16px);
}

.application-form {
  display: grid;
  gap: 16px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label span,
.file-field small,
.form-message,
.contact-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input[type="file"] {
  padding: 10px 12px;
}

.consent-field {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 0;
}

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

.form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-message.is-success {
  border-color: rgba(180, 217, 143, 0.34);
  color: #dff0c8;
}

.form-message.is-error {
  border-color: rgba(255, 138, 138, 0.3);
  color: #ffd0d0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-checklist {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-note {
  margin: 0;
  padding: 14px;
  border-radius: 16px;
}

.footer {
  margin-top: 16px;
}

.footer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  margin-bottom: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery-page-body .site-shell {
  width: min(1320px, calc(100% - 28px));
}

.gallery-page-topbar {
  margin-bottom: 14px;
}

.full-gallery-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.full-gallery-frame {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: #050505;
}

.full-gallery-frame img {
  display: block;
  width: 100%;
  height: 70vh;
  object-fit: contain;
  object-position: center center;
  background: #050505;
}

.full-gallery-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

#fullGalleryCounter {
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

#fullGalleryName {
  overflow-wrap: anywhere;
  text-align: right;
}

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

.thumb-button {
  padding: 0;
  border: 2px solid rgba(212, 175, 55, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thumb-button:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.thumb-button.is-active {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2), 0 8px 24px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.thumb-button img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.float-card {
  animation: floatCard 7s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-auto-columns: minmax(220px, 44vw);
  }

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

@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-width: 0;
  }

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

@media (max-width: 780px) {
  .site-shell,
  .gallery-page-body .site-shell {
    width: min(100% - 16px, 1320px);
    padding-top: 12px;
  }

  .topbar {
    position: static;
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
    padding: 12px;
  }

  .brand-mark {
    justify-content: center;
    padding: 8px 0;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .nav a {
    min-height: 44px;
  }

  .hero-copy h1,
  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn,
  .submit-btn,
  .service-cta {
    width: 100%;
    min-height: 50px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .slideshow-card {
    min-height: 320px;
  }

  .slide-dots {
    bottom: 84px;
  }

  .gallery-grid {
    grid-auto-columns: minmax(200px, 72vw);
    padding: 4px 42px;
  }

  .full-gallery-viewer,
  .full-gallery-frame,
  .full-gallery-frame img {
    min-height: 52vh;
    height: 52vh;
  }

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

  .footer-content,
  .full-gallery-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  #fullGalleryName {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-shell,
  .services,
  .gallery,
  .gallery-page-hero,
  .gallery-browser,
  .apply-card,
  .contact-card {
    padding: 18px;
  }

  .site-shell,
  .gallery-page-body .site-shell {
    width: min(100% - 16px, 1320px);
    padding: 10px 0 24px;
  }

  .brand-logo {
    width: 140px;
  }

  .hero-copy h1,
  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-points li,
  .contact-note {
    font-size: 0.86rem;
  }

  .offer-card {
    padding: 20px;
  }

  .contact-links a {
    font-size: 0.9rem;
    padding: 0 14px;
  }

  .slide-arrow,
  .gallery-arrow,
  .full-gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .slide-arrow-prev,
  .gallery-arrow-prev,
  .full-gallery-prev {
    left: 10px;
  }

  .slide-arrow-next,
  .gallery-arrow-next,
  .full-gallery-next {
    right: 10px;
  }

  .slideshow-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .slide-dots {
    bottom: 78px;
  }

  .gallery-grid {
    grid-auto-columns: minmax(160px, 70vw);
    gap: 12px;
    padding: 6px 40px;
  }

  .full-gallery-viewer,
  .full-gallery-frame,
  .full-gallery-frame img {
    min-height: 44vh;
    height: 44vh;
  }

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

  .contact-links {
    gap: 10px;
  }

  .form-grid {
    gap: 12px;
  }

  input,
  select,
  textarea {
    min-height: 46px;
  }

  .contact-checklist {
    padding-left: 20px;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .float-card,
  .slide,
  .btn,
  .service-cta,
  .submit-btn,
  .thumb-button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
