:root {
  --cocoa: #5a2a20;
  --cream: #fbf7e8;
  --cream-deep: #f3edd6;
  --sage-wash: #ecf0d8;
  --sage-card: #d6ddba;
  --sage-mid: #b4c09c;
  --sage: #a8bc90;
  --line: rgba(90, 42, 32, 0.16);
  --shadow: 0 10px 30px rgba(90, 42, 32, 0.08);
  --font: "Nunito", "Segoe UI", sans-serif;
  --script: "Caveat", "Segoe Script", cursive;
  --space: 1.25rem;
  --header: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--cocoa);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

h3 {
  font-size: 1.35rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  background: var(--cocoa);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.6rem;
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: var(--header);
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  font: inherit;
  font-weight: 800;
  color: var(--cream);
  background: var(--cocoa);
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
}

html.js .nav-toggle {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 1rem;
}

html.js .site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 1rem 1rem;
}

html.js .site-nav.is-open {
  display: flex;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
}

.site-nav a[aria-current="page"] {
  background: var(--sage-card);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--sage-wash);
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

main {
  display: block;
}

.hero,
.page-hero,
.band,
.section {
  padding: 2.5rem 0;
}

.hero {
  padding-top: 2rem;
}

.hero-grid,
.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-logo {
  width: min(240px, 70vw);
  margin-inline: auto;
  border-radius: 50%;
}

.eyebrow,
.script {
  font-family: var(--script);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.lede {
  font-size: 1.2rem;
  max-width: 40rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--cocoa);
  background: var(--cocoa);
  color: var(--cream);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-secondary {
  background: transparent;
  color: var(--cocoa);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.band {
  background: var(--sage-wash);
}

.band-deep {
  background: var(--sage-card);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card,
.panel,
.form-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card p + .button,
.panel .button {
  margin-top: 0.25rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.pills li {
  background: var(--sage-card);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 800;
}

.band .pills li,
.band-deep .pills li {
  background: var(--cream);
}

.check-list {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.photo-strip,
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.photo-strip a,
.shot {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--sage-mid);
  cursor: pointer;
}

.photo-strip img,
.shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.shot:focus-visible {
  outline: 3px solid var(--cocoa);
  outline-offset: 3px;
}

.form {
  display: grid;
  gap: 0.95rem;
}

.form label,
.field {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  font-weight: 600;
  color: var(--cocoa);
  background: #fff;
  border: 1.5px solid rgba(90, 42, 32, 0.28);
  border-radius: 0.85rem;
  padding: 0.75rem 0.9rem;
  width: 100%;
}

.form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid var(--sage);
  border-color: var(--cocoa);
}

.form label.check {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
}

.check {
  gap: 0.75rem;
}

.form label.check input {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.25rem;
  flex: 0 0 auto;
}

.form-card {
  max-width: 40rem;
  margin-inline: auto;
}

.section-follow {
  padding-top: 0;
}

.hint {
  font-weight: 600;
  font-size: 1rem;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--cocoa);
  color: var(--cream);
  padding: 2rem 0;
}

.site-footer a {
  color: var(--cream);
  font-weight: 800;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.2rem;
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(920px, 94vw);
  width: 100%;
}

dialog::backdrop {
  background: rgba(90, 42, 32, 0.86);
}

.lightbox-panel {
  background: var(--cream);
  border-radius: 1rem;
  padding: 0.85rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

#lightbox img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  margin-inline: auto;
}

.lightbox-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.lightbox-caption {
  text-align: center;
  font-weight: 700;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--cocoa);
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }

  .hero-logo {
    width: 280px;
    margin: 0;
  }

  .cards,
  .split,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-strip,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section,
  .band,
  .page-hero,
  .hero {
    padding: 3.5rem 0;
  }
}

@media (min-width: 900px) {
  html.js .nav-toggle {
    display: none;
  }

  html.js .site-nav,
  .site-nav {
    display: flex;
    position: static;
    flex-basis: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    margin-left: auto;
  }

  .brand {
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
