:root {
  --navy-950: #06111d;
  --navy-900: #0a1d31;
  --navy-800: #123452;
  --navy-700: #1b4f7d;
  --blue-500: #2f7de1;
  --blue-300: #9cc6ff;
  --orange-500: #ff6b21;
  --orange-300: #ffb184;
  --sand-50: #fff8f1;
  --sand-100: #f8efe4;
  --slate-100: #dde6f0;
  --slate-200: #c6d3e2;
  --ink: #0b1725;
  --ink-soft: #546679;
  --white: #ffffff;
  --line: rgba(11, 23, 37, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --shadow-xl: 0 34px 70px rgba(8, 19, 33, 0.16);
  --shadow-lg: 0 22px 48px rgba(8, 19, 33, 0.12);
  --shadow-soft: 0 14px 30px rgba(8, 19, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 15% 0%, rgba(47, 125, 225, 0.18) 0%, rgba(47, 125, 225, 0) 32%),
    radial-gradient(circle at 100% 8%, rgba(255, 107, 33, 0.18) 0%, rgba(255, 107, 33, 0) 28%),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 24%, #fff7ef 100%);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(11, 23, 37, 0.06);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  width: clamp(12rem, 19vw, 15.5rem);
  max-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 18px rgba(19, 56, 94, 0.12));
}

.brand-lockup {
  min-width: 0;
  display: grid;
}

.brand-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--navy-700);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0.32rem 0;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.8rem 0 3.4rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 38rem;
  height: 38rem;
  left: -16rem;
  top: -18rem;
  background: radial-gradient(circle, rgba(47, 125, 225, 0.2) 0%, rgba(47, 125, 225, 0) 72%);
}

.hero::after {
  width: 34rem;
  height: 34rem;
  right: -12rem;
  bottom: -14rem;
  background: radial-gradient(circle, rgba(255, 107, 33, 0.2) 0%, rgba(255, 107, 33, 0) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--orange-500);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 107, 33, 0.18);
}

.section-kicker {
  color: var(--blue-500);
  background: rgba(47, 125, 225, 0.08);
  border: 1px solid rgba(47, 125, 225, 0.14);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5vw, 5.6rem);
  max-width: 14ch;
}

.hero-title {
  text-wrap: balance;
}

.hero-title-accent,
.hero-title-cool,
.hero-title-warm {
  display: inline;
}

.hero-title-accent {
  color: var(--orange-500);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 26%, var(--blue-500) 76%, var(--navy-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title-accent {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.hero-title-cool {
  color: var(--blue-500);
}

.hero-title-warm {
  color: var(--orange-500);
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.7rem;
}

.hero-copy,
.section-copy {
  margin: 0;
  color: var(--ink-soft);
}

.hero-copy {
  max-width: 62ch;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions > .whatsapp-card {
  flex: 1 1 15rem;
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500) 0%, #ff8747 45%, var(--blue-500) 100%);
  box-shadow: 0 20px 34px rgba(17, 75, 150, 0.2);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(11, 23, 37, 0.08);
}

.btn-tertiary {
  color: var(--blue-500);
  background: rgba(47, 125, 225, 0.08);
  border-color: rgba(47, 125, 225, 0.12);
}

.btn-block {
  width: 100%;
}

.hero-pills {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-pills span,
.strip-card span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 23, 37, 0.08);
}

.hero-stats {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-stat {
  padding: 1rem;
  border: 1px solid rgba(11, 23, 37, 0.08);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 251, 255, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
}

.hero-photo,
.hero-note,
.service-card,
.feature-card,
.visit-card,
.contact-card,
.contact-form,
.strip-card,
.gallery-card {
  border: 1px solid rgba(11, 23, 37, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 1.8rem;
}

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

.hero-photo figcaption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  background: linear-gradient(180deg, rgba(6, 17, 29, 0.08) 0%, rgba(6, 17, 29, 0.78) 100%);
}

.hero-photo-main {
  inset: 0 2rem 6.5rem 0;
  transform: rotate(-3deg);
}

.hero-photo-accent {
  width: 44%;
  height: 48%;
  right: 0;
  bottom: 3rem;
  transform: rotate(5deg);
}

.hero-note {
  position: absolute;
  left: 2rem;
  right: 20%;
  bottom: 0;
  padding: 1.05rem 1.15rem;
  border-radius: 1.4rem;
}

.hero-note p {
  margin: 0;
}

.hero-note-label {
  margin-bottom: 0.3rem;
  color: var(--orange-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 2.5rem 0;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 1.7rem;
}

.strip-section {
  padding-top: 0;
}

.strip-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 1.6rem;
}

.strip-card span {
  background: rgba(11, 23, 37, 0.04);
}

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

.service-card {
  padding: 1.35rem;
  border-radius: 1.45rem;
}

.service-card p,
.feature-card p,
.visit-card p,
.contact-card p,
.hours-row span,
.detail-value,
.contact-point span {
  margin: 0;
  color: var(--ink-soft);
}

.section-accent {
  margin-top: 0.8rem;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 125, 225, 0.24) 0%, rgba(47, 125, 225, 0) 28%),
    radial-gradient(circle at 100% 16%, rgba(255, 107, 33, 0.22) 0%, rgba(255, 107, 33, 0) 24%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.section-accent .section-copy,
.section-accent .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.section-accent .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.gallery-shell {
  display: grid;
  gap: 1.4rem;
}

.gallery-card {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.gallery-viewport {
  position: relative;
  height: clamp(26rem, 72vh, 46rem);
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  background: var(--bg-deep);
  user-select: none;
  -webkit-user-select: none;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
  z-index: 0;
}

.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.gallery-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 18, 31, 0.82) 0%,
    rgba(7, 18, 31, 0.36) 35%,
    rgba(7, 18, 31, 0.04) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 2.2rem 2.6rem;
  pointer-events: none;
}

.gallery-tag {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.65rem;
  color: var(--white);
  background: rgba(255, 107, 33, 0.72);
  border-radius: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.gallery-caption-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.18;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: opacity 260ms ease, background-color 200ms ease, transform 200ms ease;
}

.gallery-viewport:hover .gallery-arrow,
.gallery-viewport:focus-within .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow-prev { left: 0.9rem; }
.gallery-arrow-next { right: 0.9rem; }

.gallery-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 1.2rem;
  pointer-events: none;
}

.gallery-counter {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.gallery-dots {
  display: flex;
  gap: 0.45rem;
  pointer-events: auto;
}

.gallery-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 260ms ease, background-color 260ms ease;
}

.gallery-dot.is-active {
  width: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.gallery-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.55);
}

.feature-grid,
.visit-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.feature-panel-intro,
.feature-stack {
  height: 100%;
}

.feature-panel-intro {
  padding: 1.45rem;
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.visit-card,
.contact-card,
.contact-form {
  padding: 1.35rem;
  border-radius: 1.45rem;
}

.visit-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(10, 29, 49, 0.03) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.detail-list,
.hours-list {
  display: grid;
  gap: 0.85rem;
}

.detail-row,
.hours-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(11, 23, 37, 0.08);
}

.detail-row:last-child,
.hours-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-label {
  font-weight: 800;
}

.detail-value a {
  color: var(--blue-500);
  text-decoration: none;
}

.hours-card h3 {
  margin-bottom: 1rem;
}

.hours-row span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.hours-row.is-closed span:last-child {
  color: #b14b2c;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.contact-point {
  display: grid;
  gap: 0.18rem;
}

.contact-point strong {
  font-weight: 800;
}

.contact-point a {
  color: var(--blue-500);
  text-decoration: none;
}

.whatsapp-card {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1.25rem;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.whatsapp-card:hover,
.whatsapp-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(31, 157, 85, 0.12);
  border-color: rgba(37, 211, 102, 0.28);
}

.whatsapp-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #1f9d55;
  background: rgba(255, 255, 255, 0.95);
}

.whatsapp-copy {
  display: grid;
  gap: 0.1rem;
}

.whatsapp-copy span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.whatsapp-copy strong {
  color: var(--ink);
}

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

.field-group {
  display: grid;
  gap: 0.42rem;
}

.field-group-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(11, 23, 37, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0.88rem 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(47, 125, 225, 0.25);
  border-color: rgba(47, 125, 225, 0.38);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2rem 0 1.2rem;
}

.footer-title {
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-bottom a {
  color: var(--orange-300);
  text-decoration: none;
}

.footer-bottom {
  padding: 0.95rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .visit-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 36rem;
    max-width: 42rem;
    width: 100%;
    margin: 0 auto;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 14rem;
    padding: 0.85rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(11, 23, 37, 0.08);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-xl);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.4rem 0;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 3.8rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .hero-stats,
  .service-grid,
  .feature-stack,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 33rem;
  }

  .hero-photo-main {
    inset: 0 0.8rem 7.25rem 0;
  }

  .hero-photo-accent {
    width: 47%;
    height: 43%;
  }

  .hero-note {
    left: 0.75rem;
    right: 0.75rem;
  }

  .detail-row,
  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .gallery-viewport {
    height: min(64vh, 30rem);
  }

  .gallery-caption {
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100vw - 1.2rem, 100%);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: auto;
    height: auto;
  }

  .section {
    padding: 2rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-actions > .whatsapp-card {
    flex: none;
    width: 100%;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    border-radius: 1.1rem;
  }

  .hero-actions > .whatsapp-card .whatsapp-icon {
    width: 2.45rem;
    height: 2.45rem;
    flex-shrink: 0;
  }

  .hero-actions > .whatsapp-card .whatsapp-copy span {
    font-size: 0.78rem;
  }

  .hero-actions > .whatsapp-card .whatsapp-copy strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: min(12.25rem, calc(100vw - 5.75rem));
  }

  .brand-lockup {
    display: none;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .hero-photo-main {
    inset: 0 0 7rem 0;
    transform: rotate(-2deg);
  }

  .hero-photo-accent {
    width: 50%;
    height: 41%;
    bottom: 3.5rem;
  }

  .gallery-card {
    border-radius: 1rem;
  }

  .gallery-viewport {
    height: min(56vh, 26rem);
  }

  .gallery-arrow {
    width: 2.2rem;
    height: 2.2rem;
    opacity: 1;
  }

  .gallery-arrow-prev { left: 0.5rem; }
  .gallery-arrow-next { right: 0.5rem; }

  .gallery-caption {
    padding: 1.2rem 1rem;
  }

  .gallery-caption-title {
    font-size: 1.15rem;
  }
}

@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;
  }
}
