@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/geist-400.woff2") format("woff2");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/geist-600.woff2") format("woff2");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/geist-700.woff2") format("woff2");
}

:root,
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d0d0d;
  --elev: #121212;
  --text: #fafafa;
  --muted: #c2c2c2;
  --faint: #fafafa59;
  --line: #2b2b2b;
  --accent: #fabf00;
  --accent-soft: #fabf004d;
  --photo-radius: 6px;
  --page: 800px;
  --gutter: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 58px;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f3efe6;
  --elev: #fffdf8;
  --text: #161512;
  --muted: #5c5850;
  --faint: #16151266;
  --line: #ddd6c8;
  --accent: #9a7200;
  --accent-soft: #9a720033;
}

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

html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: Geist, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: var(--gutter);
  top: -40px;
  z-index: 30;
  background: var(--elev);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 4px;
}

.skip:focus,
.skip:focus-visible {
  top: 8px;
}

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

.site-header {
  min-height: var(--header);
  padding: 12px 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
}

.mark {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--accent);
  flex: 0 0 auto;
}

.mark:hover {
  color: var(--accent);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  flex: 1 1 auto;
}

.nav-links a {
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--muted);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--accent);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  padding: 0;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  color: var(--accent);
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

main {
  padding-bottom: 12vh;
}

.hero {
  padding-top: 28px;
}

.hero-home {
  padding-top: 36px;
}

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.loc {
  color: var(--muted);
  font-size: 18px;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(50px, 8.4vw, 100px);
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--text);
  margin: 8px 0 0;
}

.page-title {
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 8px 0 20px;
}

.hero-photo,
.frame {
  margin-top: 28px;
  border-radius: var(--photo-radius);
  overflow: hidden;
  background: var(--elev);
}

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

.hero-photo {
  aspect-ratio: 800 / 440;
}

.copy {
  max-width: 800px;
  margin-top: 48px;
  color: var(--muted);
}

.copy p {
  margin: 0 0 1.15em;
}

.copy p:last-child {
  margin-bottom: 0;
}

.copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  margin-top: 72px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 55%, var(--line));
}

.section-head h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-head a {
  color: var(--muted);
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
}

.card {
  min-width: 0;
}

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

.card h3 {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin: 12px 0 2px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.card-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--photo-radius);
  overflow: hidden;
  background: var(--elev);
  width: 100%;
}

.card:hover h3 {
  color: var(--accent);
}

.card-photo img {
  transition: transform 0.6s var(--ease);
}

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

.crumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 16px;
  margin: 18px 0 10px;
}

.crumb a:hover,
.crumb [aria-current="page"] {
  color: var(--accent);
}

.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 42em;
}

.collection-copy {
  margin: 0 0 48px;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 8px;
}

.shot {
  width: min(100%, 800px);
  margin: 0;
  background: var(--elev);
  cursor: zoom-in;
}

.shot picture,
.shot img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.shot img {
  background: var(--c, var(--elev));
}

/* Only fade in when the boot script ran. If JavaScript is off or throws,
   photographs must still be visible. */
[data-js] picture img {
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}

[data-js] picture img.is-in,
[data-js] picture img[data-in] {
  opacity: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 16px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy p {
  margin: 0;
}

.footer-copy p + p {
  margin-top: 4px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, black);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1600px);
  max-height: 88dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 80px #0008;
}

.lightbox-bar {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-nav.prev {
  left: 12px;
}

.lightbox-nav.next {
  right: 12px;
}

.minted {
  margin-top: 56px;
  padding: 24px 24px 20px 26px;
  background: var(--elev);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--photo-radius) var(--photo-radius) 0;
}

.minted h2 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--text);
}

.minted p {
  margin: 0;
  color: var(--muted);
}

.minted p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.minted-photo {
  display: block;
  margin-top: 20px;
  color: inherit;
  text-decoration: none;
}

.minted-photo picture,
.minted-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--photo-radius);
}

.minted-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 12px;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.link-arrow {
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}

a:hover .link-arrow {
  transform: translateX(3px);
}

.shot picture {
  aspect-ratio: var(--w) / var(--h);
  background: var(--c, var(--elev));
}

.ph {
  aspect-ratio: 4 / 3;
  background: var(--elev);
}

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

.not-found {
  padding: 12vh 0;
}

.inquire,
.faq {
  margin-top: 56px;
  scroll-margin-top: 80px;
}

.inquire h2,
.faq h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.inquire-intro {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 42em;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  max-width: 800px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--elev);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.contact-form .hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #14110a;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 10px 18px;
  cursor: pointer;
}

.submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.form-status.is-ok {
  color: var(--accent);
}

.form-status.is-error {
  color: #d96b6b;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.packages {
  margin: 40px 0 72px;
  padding: 4px 4px 8px 22px;
  border-left: 2px solid var(--accent);
}

.packages h2 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.package {
  border-top: 1px solid var(--line);
}

.package:last-child {
  border-bottom: 1px solid var(--line);
}

.package summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 14px 40px 14px 0;
  position: relative;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

.package summary::-webkit-details-marker,
.package summary::marker {
  display: none;
  content: "";
}

.package summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
}

.package[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.package-price {
  color: var(--accent);
  font-weight: 600;
  flex: 0 0 auto;
}

.package ul {
  margin: 0 0 16px;
  padding: 0 28px 0 1.1em;
  color: var(--muted);
}

.package li + li {
  margin-top: 6px;
}

.inquire-cta {
  margin: 48px 0 0;
  font-size: 18px;
}

.inquire-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--accent);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

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

  h1,
  .page-title {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.05em;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .cards,
  .cards.two {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .cards,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    order: 3;
    gap: 6px 16px;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .gallery {
    gap: 20px;
  }

  .footer-row {
    flex-direction: column;
    gap: 16px;
  }

  .section {
    margin-top: 48px;
  }

  .copy {
    margin-top: 32px;
  }

  .minted {
    margin-top: 40px;
    padding: 20px 16px 16px 18px;
  }

  .packages {
    margin: 32px 0 48px;
    padding-left: 16px;
  }
}

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

  picture img,
  .card-photo img {
    opacity: 1;
    transform: none;
  }
}
