@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 800;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/source-sans-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/source-sans-semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/source-sans-bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --ink: #161414;
  --muted: #776766;
  --rose: #a88f8f;
  --line: #e5dfdd;
  --paper: #fdfcfc;
  --wash: #f1edeb;
  --panel: #f3efed;
  --content: 936px;
  --wide: 1060px;
  color-scheme: light;
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  min-height: 39px;
  padding: 0.4rem 1rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.announcement::before,
.announcement::after {
  content: "✣";
  font-size: 1rem;
}

.site-header {
  min-height: 222px;
  padding: 3.5rem 1.25rem 2.5rem;
  background: #fefdfd;
  text-align: center;
}

.brand {
  display: inline-block;
}

.brand img {
  width: 337px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-close {
  display: none;
}

.site-nav {
  margin-top: 1.7rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-block;
  padding: 0.25rem 0 0.42rem;
  border-bottom: 1px solid transparent;
  font-family: "Work Sans", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--rose);
  color: #413737;
}

.page-main {
  border-top: 1px solid #faf8f8;
}

.section {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: 3.1rem;
}

.section-kicker {
  margin: 0 0 2rem;
  color: var(--muted);
  font-family: "Work Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.hero-art {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 3rem 2.5rem;
  background: var(--wash);
  text-align: center;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 28ch;
  margin: 1.8rem 0 2rem;
  color: #6a5753;
  font-family: "Work Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-width: 168px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--ink);
}

.home-gallery {
  padding-top: 3.4rem;
  padding-bottom: 4.3rem;
}

.gallery-shell {
  width: min(780px, 100%);
}

.gallery-stage {
  position: relative;
  aspect-ratio: 1.9 / 1;
  overflow: hidden;
  background: #eee9e7;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(20, 18, 18, 0.62);
  color: #fff;
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--ink);
}

.gallery-arrow.prev {
  left: 1rem;
}

.gallery-arrow.next {
  right: 1rem;
}

.gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.95rem;
  overflow-x: auto;
  padding: 0 0 0.35rem;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb[aria-current="true"] {
  border-color: var(--rose);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-section {
  padding-top: 0.9rem;
  padding-bottom: 3.8rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  padding: 1.2rem 0 0;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  transition: transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
}

.social-link svg {
  width: 31px;
  height: 31px;
}

.facebook {
  color: #2286e6;
}

.instagram {
  color: #d62d70;
}

.menu-section {
  width: min(var(--wide), calc(100% - 2rem));
  padding-bottom: 3.8rem;
}

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

.photo-grid + .section-kicker {
  margin-top: 7.5rem;
}

.photo-card {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #eee9e7;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.photo-card:hover img {
  transform: scale(1.025);
}

.faq-wrap {
  width: min(620px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.7rem 0 5rem;
}

.faq-wrap .section-kicker {
  width: min(var(--wide), calc(100vw - 2rem));
  margin-left: calc((100% - min(var(--content), calc(100vw - 2rem))) / 2);
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.015em;
  list-style: none;
}

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

.faq-item summary::after {
  content: "▾";
  flex: 0 0 auto;
  color: var(--rose);
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-width: 58ch;
  padding: 0 2.25rem 1.75rem 0;
  color: #5f5552;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}

.about-section {
  padding-bottom: 4rem;
}

.about-feature,
.about-card {
  background: var(--panel);
}

.about-feature img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.about-copy {
  padding: 1.8rem clamp(1.5rem, 6vw, 4rem) 2.2rem;
  text-align: center;
}

.about-copy h1,
.about-copy h2 {
  margin: 0 0 0.35rem;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.about-copy p {
  margin: 0;
  color: #5f5653;
  line-height: 1.55;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.about-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.about-card .about-copy {
  min-height: 178px;
  padding: 1.75rem 2rem 2rem;
}

.instagram-section {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(780px, 100%);
  margin-inline: auto;
}

.instagram-grid a {
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 160ms ease, transform 300ms ease;
}

.instagram-grid a:hover img,
.instagram-grid a:focus-visible img {
  filter: brightness(0.88);
  transform: scale(1.03);
}

.instagram-follow {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  color: var(--muted);
  text-decoration: none;
}

.instagram-follow::after {
  content: "  ›";
  color: var(--rose);
}

.site-footer {
  min-height: 280px;
  padding: 4.6rem 1rem 3.2rem;
  background: #fbfafa;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #5c5350;
  font-family: "Work Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .tagline {
  margin-top: 3rem;
}

.cookie-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  width: min(400px, calc(100% - 3rem));
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid #dedada;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 12px rgba(27, 23, 23, 0.17);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 0.75rem;
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.cookie-banner p {
  margin: 0 0 1.4rem;
  color: #655b58;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner button {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.error-page {
  display: grid;
  min-height: 50vh;
  padding: 5rem 1rem;
  text-align: center;
  place-content: center;
}

.error-page h1 {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
}

.error-page p {
  color: var(--muted);
}

@media (max-width: 800px) {
  .announcement {
    gap: 1rem;
    font-size: 0.7rem;
  }

  .site-header {
    min-height: 190px;
    padding-top: 2.8rem;
  }

  .brand img {
    width: min(290px, 75vw);
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(620px, calc(100% - 2rem));
  }

  .hero-art {
    min-height: 0;
  }

  .hero-copy {
    min-height: 360px;
  }

  .photo-grid {
    gap: 2rem;
  }

  .about-cards {
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .announcement {
    min-height: 44px;
    padding-inline: 0.8rem;
    font-size: 0.61rem;
    letter-spacing: 0.13em;
  }

  .announcement::before,
  .announcement::after {
    display: none;
  }

  .site-header {
    position: relative;
    min-height: 128px;
    padding: 2.2rem 1rem 1.5rem;
  }

  .brand img {
    width: min(245px, 70vw);
  }

  .nav-toggle {
    position: absolute;
    right: 1rem;
    bottom: 0.55rem;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
  }

  .nav-toggle-lines {
    position: relative;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .nav-toggle-lines::before {
    top: -7px;
  }

  .nav-toggle-lines::after {
    top: 7px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: grid;
    margin: 0;
    background: rgba(253, 252, 252, 0.98);
    opacity: 0;
    place-content: center;
    pointer-events: none;
    transition: opacity 170ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1.6rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .nav-close {
    position: absolute;
    right: 1.4rem;
    top: 1.2rem;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.8rem;
  }

  .section {
    width: min(100% - 2rem, var(--wide));
    padding-block: 2.5rem;
  }

  .section-kicker {
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
  }

  .hero {
    width: 100%;
    padding: 0;
  }

  .hero-copy {
    min-height: 315px;
    padding: 2.5rem 1.25rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .home-gallery {
    padding-top: 2.6rem;
  }

  .gallery-stage {
    aspect-ratio: 1.25 / 1;
  }

  .gallery-thumbs {
    gap: 0.5rem;
  }

  .gallery-thumb {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .photo-grid,
  .about-cards {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .photo-grid + .section-kicker {
    margin-top: 4rem;
  }

  .photo-card {
    aspect-ratio: 1.05 / 1;
  }

  .faq-wrap {
    padding-top: 1.25rem;
  }

  .faq-list {
    margin-top: 1.25rem;
  }

  .faq-item summary {
    min-height: 68px;
    gap: 1rem;
    font-size: 1rem;
  }

  .about-feature img,
  .about-card img {
    aspect-ratio: 1.5 / 1;
  }

  .about-card .about-copy {
    min-height: auto;
  }

  .instagram-grid {
    gap: 0.35rem;
  }

  .site-footer {
    min-height: 230px;
    padding-top: 3.6rem;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
