/* Pousada Sítio Mãe Natureza · Design System & Estilos Aprimorados
   Identidade: serenidade natural, hospitalidade serrana e ritmo editorial equilibrado.
   Tipografia: EB Garamond (Display) + Cabin (Corpo).
   Acessibilidade e Contraste auditados conforme docs/contraste.json. Sem SVGs.
*/

@font-face {
  font-family: 'EB Garamond';
  src: local('EB Garamond');
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: 'Cabin';
  src: local('Cabin');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  /* Cores canônicas auditadas */
  --paper: #f9f8f3;
  --white: #fffefb;
  --sage: #eef1e7;
  --sand: #f0ece2;
  --brand: #344d38;
  --brand-hover: #233c28;
  --brand-light: #eaf0e6;
  --ink: #26392c;
  --muted: #53604e;
  --line: #d4d9cd;
  --line-soft: #e2e6dc;
  --focus: #846128;
  --sun: #b87825;
  --sun-soft: #ead7b9;

  /* Tipografia */
  --display: 'EB Garamond', Georgia, serif;
  --body: 'Cabin', Verdana, sans-serif;

  /* Layout e Espaçamento */
  --container: 1200px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --space-section: clamp(64px, 7vw, 100px);

  /* Elevação e Moldura */
  --radius-sm: 4px;
  --radius-md: 7px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 8px rgba(38, 57, 44, 0.05);
  --shadow-md: 0 10px 28px -6px rgba(38, 57, 44, 0.1);
  --shadow-lg: 0 18px 44px -10px rgba(38, 57, 44, 0.14);

  /* Transição e Z-index */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-menu: 20;
  --z-skip: 100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  scrollbar-color: #87917e var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ink);
  background: #d9e2cc;
}

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

figure, h1, h2, h3, p {
  margin: 0;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h1 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
}

h3 {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

p {
  max-width: 66ch;
}

button, a, summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  outline-offset: 5px;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

button:disabled {
  cursor: default;
  opacity: 0.45;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
}

section:focus, main:focus {
  outline: none;
}

.container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

[hidden] {
  display: none !important;
}

/* Acessibilidade: Skip Link */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link:focus-visible {
  position: fixed !important;
  inset: 16px auto auto 16px !important;
  z-index: var(--z-skip);
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 12px 20px !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: visible !important;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--brand) !important;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(38, 57, 44, 0.15);
}

/* Botões e Ações */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.action span[aria-hidden] {
  font-size: 17px;
  line-height: 1;
}

.action-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: 0 3px 10px rgba(52, 77, 56, 0.16);
}

.action-primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  box-shadow: 0 6px 16px rgba(52, 77, 56, 0.24);
}

.action-secondary {
  background: var(--white);
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.action-secondary:hover {
  background: var(--sage);
  border-color: var(--brand-hover);
  color: var(--brand-hover);
}

.action:active {
  transform: scale(0.98);
  filter: brightness(0.96);
}

/* Cabeçalho */
.site-header {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: var(--z-menu);
}

.header-inner {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

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

.main-nav {
  display: flex;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: center;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.main-nav a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 76px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 span {
  display: block;
}

.hero-copy > p:first-of-type {
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.6;
  color: var(--ink);
  margin-top: 22px;
}

.hero-copy .hero-place {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
}

.hero .actions {
  margin-top: 32px;
}

.hero-figure {
  position: relative;
}

.hero-figure img {
  border-radius: var(--radius-md);
  aspect-ratio: 1.18;
  object-position: center 52%;
  border: 1px solid rgba(52, 77, 56, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-figure figcaption {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-figure figcaption::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
}

.hero + section {
  border-top: 1px solid var(--line);
}

/* Cabeçalhos de Seção Compartilhados */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-heading h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.section-heading p + p {
  margin-top: 12px;
}

/* Pares de Fotografias */
.photo-pair {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(24px, 3vw, 36px);
}

.photo-pair figure {
  display: flex;
  flex-direction: column;
}

.photo-pair img {
  border-radius: var(--radius-md);
  aspect-ratio: 1.36;
  object-position: center 50%;
  border: 1px solid rgba(52, 77, 56, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}

.photo-pair figure:hover img {
  transform: translateY(-2px);
}

.photo-pair figcaption {
  padding-top: 16px;
  display: grid;
  gap: 4px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.photo-pair figcaption strong {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

/* Bloco de Lazer */
.leisure-band {
  background: var(--sage);
  padding-block: var(--space-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leisure-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.leisure-photo img {
  border-radius: var(--radius-md);
  aspect-ratio: 1.18;
  object-position: 45% center;
  border: 1px solid rgba(52, 77, 56, 0.08);
  box-shadow: var(--shadow-lg);
}

.leisure-photo figcaption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 12px;
}

.leisure-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.leisure-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.leisure-list > div {
  border-top: 1px solid rgba(52, 77, 56, 0.18);
  padding: 16px 0 2px;
}

.leisure-list > div:hover {
  border-color: rgba(52, 77, 56, 0.38);
}

.leisure-list h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 10px;
}

.leisure-list h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
}

.leisure-list p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 6px;
  max-width: 52ch;
}

/* Acomodações */
.rooms-pair img {
  aspect-ratio: 1.36;
  object-position: center 55%;
}

.rooms-pair {
  grid-template-columns: 0.92fr 1.08fr;
}

.section-action {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex;
  justify-content: center;
}

/* Galeria */
.gallery-section {
  padding-block: var(--space-section);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-heading {
  margin-bottom: 28px;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  padding-bottom: 10px;
}

.gallery-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-filters a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  transition: all 0.2s var(--ease);
}

.gallery-filters a:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--sage);
}

.gallery-filters a[aria-current="true"] {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(52, 77, 56, 0.2);
}

.gallery-status {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.gallery-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.photo-button {
  display: block;
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--sage);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(52, 77, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.photo-button:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.photo-button img {
  aspect-ratio: 1.25;
  object-position: center 51%;
  transition: transform 0.45s var(--ease);
}

.photo-button:hover img {
  transform: scale(1.03);
}

.photo-button:focus-visible {
  outline-offset: 4px;
}

.photo-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: var(--ink);
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(52, 77, 56, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.photo-button:hover .photo-hint,
.photo-button:focus-visible .photo-hint {
  opacity: 1;
  background: var(--white);
  transform: scale(1.03);
}

.gallery-item figcaption {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
  color: var(--ink);
}

.noscript-note {
  font-size: 14px;
  margin-top: 20px;
}

/* Localização */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.location-copy h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.location-copy > p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 20px;
}

.location-copy address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.75;
  margin-top: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 440px;
}

.location-copy .actions {
  margin-top: 26px;
}

.location-copy .action {
  font-size: 14px;
  padding-inline: 22px;
}

.location-photo img {
  border-radius: var(--radius-md);
  aspect-ratio: 1.25;
  object-position: center;
  border: 1px solid rgba(52, 77, 56, 0.08);
  box-shadow: var(--shadow-lg);
}

.location-photo figcaption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 12px;
}

.location-copy .copy-status {
  margin-top: 10px;
  font-size: 14px;
  min-height: 24px;
  line-height: 1.5;
  color: var(--brand);
  font-weight: 500;
}

/* Contato */
.contact-band {
  background: var(--sand);
  padding-block: clamp(48px, 6vw, 76px);
  border-top: 1px solid #e0ddd2;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.contact-inner h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.15;
}

.contact-inner > div > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.contact-action {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-action .action {
  min-height: 56px;
  padding: 14px 32px;
  font-size: 16px;
}

.contact-action > p {
  font-size: 13px !important;
  margin: 0 !important;
  line-height: 1.55;
  color: var(--muted);
}

/* Rodapé */
.site-footer {
  background: var(--paper);
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-main {
  padding-block: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.footer-main nav {
  display: flex;
  gap: 26px;
}

.footer-main nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-main nav a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.privacy {
  display: contents;
}

.privacy summary {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--muted);
}

.privacy summary::-webkit-details-marker {
  display: none;
}

.privacy > div {
  flex-basis: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 14px;
}

.privacy:not([open]) > div {
  display: none;
}

/* Lightbox Modal */
.lightbox {
  width: min(980px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(20, 36, 25, 0.32);
}

.lightbox::backdrop {
  background: rgba(23, 39, 28, 0.85);
  backdrop-filter: blur(6px);
}

.lightbox-toolbar, .lightbox-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  background: var(--white);
}

.lightbox-toolbar {
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
}

.lightbox .action {
  min-height: 44px;
  padding: 8px 20px;
  font-size: 14px;
}

.lightbox-image {
  width: 100%;
  height: min(65dvh, 640px);
  object-fit: contain;
  background: #17271c;
}

.lightbox-bottom {
  min-height: 80px;
  border-top: 1px solid var(--line);
}

.lightbox-bottom p {
  font-size: 16px;
  font-weight: 500;
}

.lightbox-bottom .lightbox-counter {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

.photo-error {
  padding: 16px 24px;
  color: #792c28;
  font-size: 14px;
}

.dialog-open {
  overflow: hidden;
}

/* Quebras editoriais controladas */
.mobile-break {
  display: none;
}

/* MEDIA QUERIES ORDENADAS */

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .section-heading {
    gap: 40px;
  }
  .leisure-grid, .location-grid {
    gap: 44px;
  }
  .main-nav {
    gap: 20px;
  }
  .contact-inner {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 28px;
  }
  .header-inner {
    height: 88px;
  }
  .brand img {
    width: 68px;
    height: 70px;
  }
  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    padding: 8px 20px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(38, 57, 44, 0.08);
  }
  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
  }
  .main-nav a {
    min-height: 48px;
    font-size: 16px;
    border-bottom-color: var(--line-soft);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-main {
    justify-content: flex-start;
    column-gap: 28px;
  }
  .footer-main > p {
    flex-basis: 100%;
  }
  .privacy > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 24px;
    --space-section: 56px;
  }
  .mobile-break {
    display: inline;
  }
  .desktop-break {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 36px 48px;
  }
  .hero-figure img {
    aspect-ratio: 1.28;
  }
  .photo-pair {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .leisure-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .leisure-copy {
    grid-row: 1;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gallery-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gallery-filters {
    width: 100%;
  }
  .footer-main nav {
    gap: 20px;
  }
}

@media (max-width: 580px) {
  :root {
    --gutter: 20px;
  }
  .mobile-break {
    display: block;
  }
  .hero h1 {
    font-size: clamp(38px, 10.5vw, 54px);
  }
  .section-heading h2, .leisure-copy h2, .location-copy h2, .contact-inner h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .photo-pair {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .photo-pair img, .rooms-pair img {
    aspect-ratio: 1.36;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-copy address {
    max-width: 100%;
  }
  .contact-inner h2 {
    max-width: 100%;
  }
  .lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }
  .lightbox-toolbar, .lightbox-bottom {
    padding: 12px 16px;
  }
  .lightbox-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .lightbox-bottom .actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 360px) {
  .hero .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .action {
    justify-content: center;
  }
  .location-copy .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .location-copy .action {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .photo-button:hover img {
    transform: none;
  }
  .photo-pair figure:hover img {
    transform: none;
  }
}

@media print {
  .site-header {
    position: static;
  }
  .menu-toggle, .gallery-filters, .gallery-status, .actions, .section-action, .contact-action, .privacy, .photo-hint {
    display: none !important;
  }
  .main-nav {
    display: none;
  }
  .section, .gallery-section, .leisure-band {
    padding-block: 20px;
  }
  .hero {
    padding-block: 20px;
  }
  .contact-band {
    padding-block: 20px;
  }
  .gallery-item[hidden] {
    display: block !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-pair {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox {
    display: none;
  }
  body {
    font-size: 12px;
  }
  h2 {
    font-size: 26px !important;
  }
}
