/* Brittany & Francisco wedding site
   Editorial "old money" look: flat full-width bands that alternate cream and
   deep olive, tall uppercase serif headings with wide tracking, tiny tracked
   sans labels, hairline frames, and a cream envelope that holds the RSVP card.
   Palette: espresso, green olive, ivory. Change the values under :root to
   retheme the whole site. */

:root {
  --espresso:       #3b2419;   /* deep brown: text, headings, monogram lines */
  --espresso-soft:  #5a4638;   /* body text */
  --olive:          #6b7a3a;   /* green olive: buttons, links, accents */
  --olive-dark:     #55632d;   /* hover state */
  --olive-deep:     #3f4527;   /* the dark bands */
  --olive-light:    #d9dcc4;   /* hairlines and tints */
  --espresso-light: #d9cbbf;   /* espresso tint for ghost numerals and stripes */
  --espresso-deep:  #2e1b12;   /* the darkest bands (countdown) */
  --ivory:          #f5f1e6;   /* page background */
  --cream:          #fbf8f1;   /* the light bands and cards */
  --cream-dark:     #efe9da;   /* envelope shading */
  --error:          #9c3b2a;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Lato", "Segoe UI", Helvetica, Arial, sans-serif;
  --header-h: 72px;            /* site.js keeps this accurate */
}

* { box-sizing: border-box; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--espresso-soft);
  background: var(--ivory);
  line-height: 1.7;
}
a { color: var(--olive); }
a:hover { color: var(--olive-dark); }
h1, h2, h3 { font-family: var(--serif); color: var(--espresso); font-weight: 400; line-height: 1.1; margin: 0; }
p { margin: 0 0 1rem; }
.amp { font-family: var(--serif); font-style: italic; font-weight: 400; }
.small { font-size: .82rem; }
code { background: var(--cream-dark); padding: 0 .3em; border-radius: 2px; font-size: .85em; }
img { max-width: 100%; }

/* Every photo shows in black and white, whatever you upload.
   Remove these two lines (and the backdrop-filter on .band.photo::before)
   to go back to color. */
.gallery-item img, .couple-card img, .welcome-choice img, .parents-photo { filter: grayscale(1); }

/* Type helpers used all over the guest page */
.kicker {
  font-family: var(--sans); font-weight: 400;
  font-size: .64rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--olive); margin: 0 0 1.2rem;
}
.display {
  font-family: var(--serif); font-weight: 400;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.08;
}
.script { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: .02em; font-size: 1.4rem; color: var(--espresso); }
.fine {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; line-height: 2;
  font-weight: 400;
}

/* ---------- Header: sticky, minimal ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem 1.5rem;
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  background: var(--espresso);
  border-bottom: 1px solid rgba(251, 248, 241, .12);
}
.brand {
  font-family: var(--serif); font-size: 1rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ivory); text-decoration: none; white-space: nowrap;
}
.brand .amp { text-transform: none; letter-spacing: 0; color: var(--olive-light); }
.tabs { display: flex; flex-wrap: wrap; gap: 0 1.3rem; }
.tabs a {
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  color: var(--espresso-light); text-decoration: none; padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.tabs a:hover, .tabs a.active { color: var(--ivory); border-bottom-color: var(--olive-light); }
.lang-switch { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(251, 248, 241, .4); }
.lang-switch a { color: var(--espresso-light); text-decoration: none; padding: .2rem .25rem; }
.lang-switch a.active, .lang-switch a:hover { color: var(--ivory); }

/* ---------- Page shell (admin, 404, and the stack) ---------- */

.page { max-width: 1000px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }
.page.stack { max-width: none; padding: 0; }
.page-title { font-size: 2.4rem; text-align: center; margin: 0 0 .4rem; letter-spacing: .04em; }
.lede { text-align: center; max-width: 620px; margin: 0 auto 2rem; }

.site-footer {
  background: var(--espresso); color: var(--espresso-light);
  text-align: center; padding: 2.2rem 1rem;
  font-family: var(--serif); font-size: 1.05rem;
}
.site-footer p { margin: .2rem 0; }
.site-footer a { color: var(--ivory); }

/* ---------- Bands (the guest page) ---------- */

.band { padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 3rem); scroll-margin-top: var(--header-h); }
.band.cream { background: var(--cream); }
.band.ivory { background: var(--ivory); }
.band.dark  { background: var(--espresso-deep); color: var(--ivory); }
.band.dark h1, .band.dark h2, .band.dark h3, .band.dark .display, .band.dark .script { color: var(--ivory); }
.band.dark .kicker { color: var(--olive-light); }
.band.espresso { background: var(--espresso); color: var(--ivory); }
.band.espresso h1, .band.espresso h2, .band.espresso h3, .band.espresso .display, .band.espresso .script { color: var(--ivory); }
.band.espresso .kicker { color: var(--espresso-light); }
.band.photo { position: relative; background-size: cover; background-position: center; color: var(--ivory); }
.band.photo::before { content: ""; position: absolute; inset: 0; background: rgba(59, 36, 25, .62); backdrop-filter: grayscale(1); -webkit-backdrop-filter: grayscale(1); }
.band.photo > * { position: relative; }
.band.photo h1, .band.photo h2, .band.photo .display { color: var(--ivory); }
.band.photo .kicker { color: var(--olive-light); }
.inner { max-width: 880px; margin: 0 auto; text-align: center; }
.inner.wide { max-width: 1040px; }

.stripes {
  height: 22px;
  background: repeating-linear-gradient(90deg, var(--espresso) 0 2px, transparent 2px 9px);
  opacity: .5;
}

/* Opening band: monogram + stacked names */
.monogram {
  width: 92px; height: 118px; margin: 0 auto 2rem;
  border: 1px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--espresso);
}
.couple { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3rem); flex-wrap: wrap; }
.couple-card { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.couple-card img, .couple-placeholder {
  width: clamp(160px, 24vw, 240px); height: clamp(200px, 30vw, 300px); object-fit: cover; display: block;
  padding: 6px; background: var(--cream); border: 1px solid var(--espresso);
}
.couple-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--espresso); color: var(--ivory);
  font-family: var(--serif); font-style: italic; font-size: 5rem;
}
.couple-card h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); text-transform: uppercase; letter-spacing: .2em; font-weight: 400; }
.couple-amp { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--olive); line-height: 1; }
.tagline { margin-top: 1.4rem; }

/* "Celebrate with us" band */
.invite-line { max-width: 520px; margin: 1.6rem auto; }
.date-line { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 1rem 0 .4rem; }
.events { display: flex; justify-content: center; gap: clamp(2rem, 8vw, 6rem); flex-wrap: wrap; margin-top: 2rem; }
.event { max-width: 320px; }
.event .kicker { margin-bottom: .4rem; }
.event-time { font-family: var(--serif); font-size: 2rem; line-height: 1; margin: 0 0 .6rem; }
.event .fine { margin: 0; }

/* Countdown */
.clock {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 6.2rem); letter-spacing: .06em; line-height: 1;
  display: flex; justify-content: center; align-items: baseline; gap: .1em;
  margin: .5rem 0 .6rem;
}
.clock .sep { opacity: .55; font-size: .85em; }
.clock-labels {
  display: flex; justify-content: center; gap: clamp(1.2rem, 6vw, 3.4rem);
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; opacity: .85;
}
.count-done { font-family: var(--serif); font-style: italic; font-size: 2rem; }

/* The big day: ghost numerals + schedule */
.bigday { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; text-align: left; }
.bigday-numerals {
  font-family: var(--serif); font-weight: 400; line-height: .85;
  font-size: clamp(5rem, 14vw, 10rem); color: var(--espresso-light);
  display: flex; flex-direction: column; align-items: flex-end; padding-right: 1rem;
  border-right: 1px solid var(--espresso-light);
}
.bigday-numerals span:nth-child(2) { margin-right: 1.2em; }
.bigday-numerals span:nth-child(3) { margin-right: 2.4em; }
.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--espresso-light); }
.schedule li:last-child { border-bottom: 0; }
.schedule .time { font-size: .7rem; letter-spacing: .16em; font-weight: 700; color: var(--espresso); padding-top: .35rem; }
.schedule .what { font-family: var(--serif); font-size: 1.35rem; color: var(--espresso); }
.bigday .display { margin-bottom: 1.4rem; }

/* Our story */
.story-text { max-width: 560px; margin: 0 auto; }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--espresso); margin-top: .2rem; }

/* Photos */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.4rem; text-align: left; }
.gallery-item { display: block; aspect-ratio: 4 / 5; padding: 6px; background: var(--cream); border: 1px solid var(--espresso); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Registry */
.registry-list { list-style: none; margin: 0 auto; padding: 0; max-width: 640px; border-top: 1px solid var(--espresso-light); text-align: left; }
.registry-list a, .registry-plain {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid var(--espresso-light); text-decoration: none; color: var(--espresso-soft);
}
.registry-list strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--espresso); }
.registry-list .go { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive); white-space: nowrap; }
.registry-list a:hover strong { color: var(--olive); }

/* Padrinos */
.padrinos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; text-align: left; max-width: 900px; margin: 0 auto; }
.padrino-card { padding: 1.3rem 0; border-bottom: 1px solid var(--espresso-light); }
.padrino-card p { margin: 0; }
.padrino-role { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--olive); font-weight: 400; margin-bottom: .3rem; }
.padrino-names { font-family: var(--serif); font-size: 1.55rem; color: var(--espresso); line-height: 1.15; }
.padrino-names.tbd { font-style: italic; color: var(--espresso-soft); opacity: .75; }
.padrino-desc { font-size: .85rem; margin-top: .45rem; }

/* ---------- The RSVP envelope ---------- */

.envelope-scene {
  position: relative; max-width: 640px; margin: 2.5rem auto 0;
  padding-top: 120px; padding-bottom: 190px;
}
.env-flap {
  position: absolute; left: 0; right: 0; top: 0; height: 130px;
  background: var(--cream-dark);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  z-index: 1;
}
.env-flap::after {                          /* striped liner */
  content: ""; position: absolute; inset: 14px 18px 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: repeating-linear-gradient(90deg, var(--olive-light) 0 1px, transparent 1px 8px);
  opacity: .9;
}
.env-back { position: absolute; left: 0; right: 0; top: 120px; bottom: 0; background: var(--cream-dark); z-index: 0; }
.env-card {
  position: relative; z-index: 2;
  margin: 0 5%; background: var(--cream); border: 1px solid var(--espresso-light);
  padding: 2.4rem clamp(1.1rem, 4vw, 2.6rem) 200px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  text-align: center;
  color: var(--espresso-soft);
  transform: translateY(150px); opacity: 0;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1) .2s, opacity .6s ease .2s;
}
.env-card h2, .env-card h3 { color: var(--espresso); }
.env-pocket {
  position: absolute; left: 0; right: 0; bottom: 0; height: 200px; z-index: 3;
  background: var(--cream);
  clip-path: polygon(0 0, 50% 46%, 100% 0, 100% 100%, 0 100%);
}
.env-mono {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 4;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--espresso);
}
.env-card .page-title { font-size: 2.6rem; text-transform: uppercase; letter-spacing: .18em; }
.envelope-scene.open .env-card { transform: translateY(0); opacity: 1; }
.envelope-scene.no-anim .env-card { transition: none; }
@media (prefers-reduced-motion: reduce) { .env-card { transition: none !important; } }

/* ---------- Forms ---------- */

.form { max-width: 560px; margin: 0 auto; text-align: left; }
.form.narrow { max-width: 360px; }
.form label {
  display: block; margin-bottom: 1.3rem;
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 400; color: var(--espresso);
}
.form input[type=text], .form input[type=email], .form input[type=tel],
.form input[type=number], .form input[type=password], .form textarea {
  display: block; width: 100%; margin-top: .35rem;
  padding: .55rem 0; font: inherit; font-size: 1rem; letter-spacing: 0; text-transform: none;
  color: var(--espresso); background: transparent;
  border: 0; border-bottom: 1px solid var(--espresso-soft); border-radius: 0;
}
.form input:focus, .form textarea:focus { outline: none; border-bottom: 1px solid var(--olive); box-shadow: 0 1px 0 var(--olive); }
.form textarea { resize: vertical; }
.form .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form .three-col { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.4rem; }
.choice { border: 0; padding: 0; margin: 0 0 1.3rem; }
.choice legend { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--espresso); margin-bottom: .5rem; }
.choice .radio { display: inline-flex; align-items: center; gap: .45rem; margin: 0 1.6rem .3rem 0; letter-spacing: 0; text-transform: none; font-family: var(--serif); font-size: 1.15rem; }
.choice input { accent-color: var(--olive); }

.btn {
  display: inline-block; background: var(--espresso); color: var(--ivory);
  border: 1px solid var(--espresso); padding: .85rem 2rem;
  font: inherit; font-weight: 400; font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; border-radius: 0;
  transition: background .2s ease, color .2s ease;
}
.btn:hover { background: transparent; color: var(--espresso); }
.band.dark .btn, .band.photo .btn, .band.espresso .btn { background: var(--ivory); color: var(--espresso); border-color: var(--ivory); }
.band.dark .btn:hover, .band.photo .btn:hover, .band.espresso .btn:hover { background: transparent; color: var(--ivory); }
.env-card .btn { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.env-card .btn:hover { background: transparent; color: var(--espresso); }

.flash { list-style: none; padding: 0; max-width: 560px; margin: 0 auto 1.4rem; text-align: left; }
.flash li { padding: .6rem .9rem; border-left: 2px solid var(--olive); background: var(--cream-dark); margin-bottom: .4rem; font-size: .9rem; }
.flash li.error { border-left-color: var(--error); color: var(--error); }

.thanks { text-align: center; max-width: 520px; margin: 1rem auto; }
.thanks h3 { font-size: 2.2rem; font-style: italic; margin-bottom: .6rem; }
.empty { text-align: center; padding: 2rem 1rem; font-style: italic; font-family: var(--serif); font-size: 1.2rem; }

/* ---------- Welcome screen ---------- */

.welcome-body { display: flex; min-height: 100vh; flex-direction: column; background: var(--cream); }
.welcome { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1.25rem; max-width: 960px; margin: 0 auto; width: 100%; }
.welcome .names { font-size: clamp(2.2rem, 7vw, 4.2rem); text-transform: uppercase; letter-spacing: .2em; margin: 0; }
.welcome-date { margin: 1rem 0 2.6rem; }
.welcome-prompt { margin-bottom: 2.4rem; }
.welcome-prompt .sep { margin: 0 .6rem; color: var(--olive); }
.welcome-choices { display: flex; justify-content: center; gap: clamp(1.5rem, 6vw, 4rem); flex-wrap: wrap; }
.welcome-choice { display: flex; flex-direction: column; align-items: center; gap: .25rem; text-decoration: none; color: var(--espresso-soft); }
.welcome-choice img, .welcome-placeholder {
  width: 200px; height: 250px; object-fit: cover; display: block;
  padding: 6px; background: var(--cream); border: 1px solid var(--espresso);
  margin-bottom: .9rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.welcome-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--espresso); color: var(--ivory);
  font-family: var(--serif); font-style: italic; font-size: 5rem;
}
.welcome-choice:hover img, .welcome-choice:hover .welcome-placeholder { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(59, 36, 25, .18); }
.welcome-choice strong { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--espresso); }
.welcome-choice span:last-child { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--olive); }

/* ---------- Admin ---------- */

.admin-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem 1rem;
  background: var(--espresso-deep); color: var(--ivory);
  padding: .5rem 1rem; font-size: .72rem; letter-spacing: .08em; font-weight: 400;
}
.admin-bar-label { text-transform: uppercase; letter-spacing: .16em; font-size: .64rem; }
.admin-bar-links { display: flex; align-items: center; gap: .2rem; }
.admin-bar-links a, .admin-bar-logout {
  color: var(--ivory); text-decoration: none; padding: .3rem .7rem;
  font: inherit; background: none; border: 1px solid transparent; cursor: pointer; text-transform: uppercase; letter-spacing: .14em; font-size: .64rem;
}
.admin-bar-links a:hover { background: var(--espresso); }
.admin-bar-links a.active { background: var(--olive); }
.admin-bar-logout { border-color: var(--ivory); margin-left: .4rem; }
.admin-bar-logout:hover { background: var(--ivory); color: var(--espresso); }
.inline { display: inline; }
button.link { background: none; border: 0; font: inherit; color: var(--olive); cursor: pointer; padding: 0; }
button.link.danger { color: var(--error); font-size: .85rem; }

.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; background: var(--cream); }
table.data th, table.data td { padding: .6rem .7rem; border-bottom: 1px solid var(--olive-light); text-align: left; vertical-align: top; }
table.data th { color: var(--espresso); font-weight: 400; font-size: .64rem; text-transform: uppercase; letter-spacing: .2em; }
table.data tr.no td { color: #8a8070; }
.nowrap { white-space: nowrap; }

/* ---------- Small screens ---------- */

@media (max-width: 720px) {
  html { font-size: 16px; }
  .site-header { justify-content: center; text-align: center; padding: .7rem 1rem; }
  .brand { width: 100%; }
  .tabs { justify-content: center; gap: 0 .9rem; }
  .tabs a { font-size: .6rem; letter-spacing: .16em; }
  .lang-switch { width: 100%; text-align: center; }
  .bigday { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .bigday-numerals { align-items: center; border-right: 0; padding-right: 0; border-bottom: 1px solid var(--espresso-light); padding-bottom: 1rem; }
  .bigday-numerals span:nth-child(2), .bigday-numerals span:nth-child(3) { margin-right: 0; }
  .schedule li { grid-template-columns: 4.5rem 1fr; text-align: left; }
  .padrinos-grid { grid-template-columns: 1fr; }
  .form .two-col, .form .three-col { grid-template-columns: 1fr; gap: 0; }
  .envelope-scene { padding-top: 80px; padding-bottom: 130px; }
  .env-flap { height: 90px; }
  .env-back { top: 80px; }
  .env-pocket { height: 140px; }
  .env-card { padding-bottom: 150px; margin: 0 3%; }
  .welcome-choice img, .welcome-placeholder { width: 140px; height: 176px; }
  .welcome-placeholder { font-size: 3.4rem; }
  .welcome-prompt span { display: block; }
  .welcome-prompt .sep { display: none; }
}

/* Places to visit */
.places-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 3rem; text-align: left; max-width: 960px; margin: 0 auto; }
.place-card { padding: 1.3rem 0; border-bottom: 1px solid var(--espresso-light); }
.place-card p { margin: 0; }
.place-cat { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--olive); font-weight: 400; margin-bottom: .3rem; }
.place-name { font-family: var(--serif); font-size: 1.55rem; color: var(--espresso); line-height: 1.15; }
.place-desc { font-size: .88rem; margin-top: .4rem; }
.place-addr { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .4rem; color: var(--espresso-soft); }
.place-link { display: inline-block; margin-top: .5rem; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; text-decoration: none; }

/* Parents block at the top of the Padrinos section */
.parents { max-width: 760px; margin: 0 auto 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--espresso-light); }
.parents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.parents-card p { margin: 0; }
.parents-card .padrino-names { font-size: 1.7rem; }
@media (max-width: 720px) { .parents-grid { grid-template-columns: 1fr; gap: 1.4rem; } }
.parents-photo {
  /* wide frame: the whole picture shows at its own proportions, nothing cropped */
  width: 100%; max-width: 400px; height: auto; display: block;
  margin: 0 auto 1rem; padding: 6px; background: var(--cream); border: 1px solid var(--espresso);
}

/* 404 page */
.notfound { text-align: center; max-width: 720px; margin: 0 auto; }
.notfound-photo {
  width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto 2rem;
  padding: 6px; background: var(--cream); border: 1px solid var(--espresso); filter: grayscale(1);
}
.notfound .display { margin-bottom: 1rem; }
