/* Senast uppdaterad: 2026-07-24 09:30 | av: KlⒶssⓔ & Ⓐberg */

:root {
  --cream: #fff8ee;
  --cream-2: #f7e8d4;
  --paper: rgba(255, 255, 255, .86);
  --ink: #332821;
  --muted: #74645a;
  --peach: #ef8f72;
  --peach-dark: #c76048;
  --rose: #f6b6b8;
  --sage: #9ab89a;
  --yellow: #f6d783;
  --brown: #79594a;
  --line: rgba(87, 59, 45, .15);
  --shadow: 0 24px 70px rgba(78, 52, 38, .16);
  --shadow-soft: 0 14px 36px rgba(78, 52, 38, .11);
}

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

html {
  scroll-behavior: smooth;
  background: #ead8c3;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 7%, rgba(246, 215, 131, .38), transparent 25rem),
    radial-gradient(circle at 94% 18%, rgba(246, 182, 184, .34), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, var(--cream) 55%, #f8ead8 100%);
  font: 16px/1.6 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .12;
  background-image: radial-gradient(circle, var(--brown) 1.2px, transparent 1.3px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background-color: rgba(255, 248, 238, .94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.035em;
}

.brand-label {
  display: block;
}

.menu-toggle {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #fff;
  background: var(--ink);
  font: 800 1.3rem/1 system-ui;
  cursor: pointer;
}

.nav-links,
.bottom-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.bottom-menu a {
  text-decoration: none;
  font-weight: 900;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.bottom-menu a:hover,
.bottom-menu a:focus-visible,
.bottom-menu a[aria-current="page"] {
  color: #fff;
  background: var(--peach-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .38rem .68rem;
  border: 1px solid rgba(199, 96, 72, .22);
  border-radius: 999px;
  color: var(--peach-dark);
  background: rgba(255, 255, 255, .82);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.lead,
.section-heading p,
.album-copy p,
.intro {
  color: var(--muted);
}

.image-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.album-cover-link {
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.album-cover-link:focus-visible {
  outline: 4px solid var(--peach-dark);
  outline-offset: -4px;
}

.about-card,
.album-card {
  overflow: hidden;
  border: 1px solid var(--peach-dark);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.album-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.about-card > .image-open img,
.album-card .album-cover-link img,
.schedule-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.album-card .album-cover-link img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.facts {
  display: grid;
}

.fact {
  border-radius: 16px;
  background: rgba(247, 232, 212, .82);
}

.fact:nth-child(2n) {
  background: rgba(246, 182, 184, .3);
}

.fact span,
.fact strong,
.schedule strong,
.schedule span {
  display: block;
}

.fact span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.album-grid {
  display: grid;
  grid-auto-rows: 1fr;
}

.tag {
  display: inline-flex;
  padding: .32rem .56rem;
  border-radius: 999px;
  color: var(--peach-dark);
  background: var(--cream-2);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule li {
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.schedule li:nth-child(even) {
  border-left-color: var(--rose);
}

.schedule time {
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--peach-dark);
  background: var(--cream-2);
  font-weight: 900;
}

.schedule span {
  color: var(--muted);
}

.bottom-menu {
  display: flex;
}

.latest-photos {
  margin-bottom: 1.25rem;
}

.latest-photos-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .7rem;
}

.latest-photos-heading h2 {
  margin: 0;
  font-size: 1.2rem;
}

.latest-photos-heading a {
  color: var(--peach-dark);
  font-size: .82rem;
  font-weight: 900;
}

.latest-photos-grid {
  display: grid;
  gap: .55rem;
}

.latest-photos-grid a {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 14px;
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
}

.latest-photos-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .2s ease;
}

.latest-photos-grid a:hover img,
.latest-photos-grid a:focus-visible img {
  transform: scale(1.06);
}

.site-footer {
  color: var(--muted);
}

.site-footer p {
  margin: .25rem 0;
}

.album-videos {
  margin-top: clamp(2rem, 6vw, 4rem);
}

.album-videos > h2 {
  margin-bottom: 1rem;
}

.video-grid {
  display: grid;
  gap: 1.25rem;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.video-card video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: #211b17;
}

.video-caption {
  padding: 1rem 1.1rem 1.2rem;
}

.video-caption h3,
.video-caption p {
  margin: 0;
}

.video-caption p {
  margin-top: .45rem;
  color: var(--muted);
  white-space: pre-line;
}

.media-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  margin-top: .85rem;
  padding: .45rem .85rem;
  border: 1px solid var(--peach-dark);
  border-radius: 999px;
  color: var(--peach-dark);
  background: #fff8ee;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
}

.media-share-link:hover,
.media-share-link:focus-visible {
  color: #fff;
  background: var(--peach-dark);
}

.album-copy .media-share-link {
  width: fit-content;
  margin-top: auto;
}

.album-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin: 0 0 2.5rem;
}

.album-actions .album-meta,
.album-actions .media-share-link {
  margin: 0;
}

.gallery-item {
  position: relative;
  min-width: 0;
}

.gallery-share-link {
  position: absolute;
  top: .7rem;
  right: .7rem;
  z-index: 2;
  min-height: 2rem;
  margin: 0;
  padding: .35rem .7rem;
  box-shadow: 0 4px 12px rgba(33, 27, 23, .2);
}

.modal-bar .media-share-link {
  min-height: 0;
  margin-top: 0;
  padding: 0;
}

.admin-paw-link {
  color: inherit;
  text-decoration: none;
}

.image-modal {
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #211b17;
}

.image-modal[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.image-modal::backdrop {
  background: rgba(20, 13, 9, .84);
  backdrop-filter: blur(4px);
}

.modal-close,
.modal-bar button,
.modal-bar a {
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #211b17;
  background: #fff;
  text-decoration: none;
  font: 900 1.35rem/1 system-ui;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  z-index: 2;
}

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.modal-caption {
  overflow-y: auto;
}

.modal-caption strong,
.modal-caption span {
  display: block;
}

.modal-caption .modal-meta {
  margin-bottom: .2rem;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.modal-caption span {
  color: rgba(255, 255, 255, .74);
}

.empty {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

:focus-visible {
  outline: 3px solid rgba(199, 96, 72, .48);
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
