/* DoubleHalf — the site wears the D10's orange faceplate, the same ramp
   the App Store screenshots run down, with the app's silver buttons and
   dot-matrix readouts. */
:root {
  --shell-light: #fdd098;
  --shell-mid: #f08630;
  --shell-deep: #92360a;
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.78);
  --glass: #060808;
  --osd: #ededed;
  --bolt: #ffe9a8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  background: var(--shell-mid);
  background-image:
    radial-gradient(520px circle at 22% 12%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 100%),
    linear-gradient(135deg, var(--shell-light) 0%, var(--shell-mid) 50%, var(--shell-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding: 48px 20px 80px;
  text-shadow: 0 1px 0 rgba(146, 54, 10, 0.45);
}
main { max-width: 900px; margin: 0 auto; }

/* Masthead */
.masthead { display: flex; align-items: center; gap: 22px; margin-bottom: 36px; flex-wrap: wrap; }
.icon {
  width: 96px; height: 96px; border-radius: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
h1 { font-size: 44px; font-weight: 900; letter-spacing: 1px; margin: 0; line-height: 1.05; }
h1 em { font-style: italic; font-weight: 700; font-size: 20px; letter-spacing: 0.5px; display: block; margin-top: 4px; }
h1 em a { color: var(--ink); }
.tagline { color: var(--ink-soft); font-size: 18px; margin: 0; }

/* The hero: the back of the camera, in a phone outline */
.hero {
  border-radius: 34px; overflow: hidden; display: block; width: 100%;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42), 0 0 0 3px rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
}
.caption { color: var(--ink-soft); font-size: 14px; text-align: center; margin: 0 0 44px; }

/* Readout-style section headings, like the lettering on the LCD */
h2 {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--osd); font-weight: 700;
  margin: 44px 0 12px; padding: 6px 12px;
  background: var(--glass); border-radius: 6px; display: inline-block;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 0 6px rgba(237, 237, 237, 0.35);
}
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 6px; }

/* Film stocks */
.stock { display: flex; gap: 12px; margin-bottom: 6px; align-items: baseline; }
.stock b {
  flex: 0 0 140px; font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700;
}
.stock span { color: var(--ink-soft); font-size: 15px; }

/* Gallery of finished pairs */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 18px 0 8px; }
.gallery img {
  width: 100%; height: auto; display: block; border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}
.gallery .wide { grid-column: 1 / -1; }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } }

/* Silver buttons, the metal of the beans */
.button {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  background: linear-gradient(180deg, #f7f7f7 0%, #d1d1d1 35%, #9e9e9e 80%, #bdbdbd 100%);
  color: #444; text-decoration: none; font-weight: 800; letter-spacing: 0.4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35), inset 0 1.5px 0 rgba(255, 255, 255, 0.95), inset 0 -2px 3px rgba(0, 0, 0, 0.18);
}
.button:hover { filter: brightness(1.04); }
.button:active { transform: scale(0.97); filter: brightness(0.94); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 8px; }

footer {
  margin-top: 56px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--ink-soft); font-size: 14px;
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: space-between;
}
footer p { margin: 0; }
a { color: var(--ink); }
a:hover { color: var(--bolt); }
.date { color: var(--ink-soft); font-size: 14px; margin: -6px 0 26px; }
