/* Thassos two-port — ticket-stub / salt-kiosk. Not the Greece overview skin. */
:root {
  --ink: #1c1610;
  --paper: #f3e6c8;
  --stub: #fff8ea;
  --rust: #b2471a;
  --teal: #1f6a66;
  --pine: #24352c;
  --line: #c9b48a;
  --mute: #5c5346;
}
* { box-sizing: border-box; }
html { font-size: 18px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, #2a2218 0 12px, #231c14 12px 24px) 0 0 / 100% 8px no-repeat,
    var(--paper);
  font-family: "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
}
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .4rem; }
.wrap { max-width: 52rem; margin: 0 auto; padding: 0 1.1rem; }
.site-header {
  background: var(--pine);
  color: #f3e6c8;
  padding: 1rem 0 0;
  border-bottom: 6px solid var(--rust);
}
.site-header a { color: inherit; }
.brand { margin: 0; font-size: 1.35rem; letter-spacing: .04em; }
.brand a { text-decoration: none; }
.tag { margin: .2rem 0 0.8rem; font-size: .8rem; color: #d9c9a4; font-family: ui-sans-serif, system-ui, sans-serif; }
nav { display: flex; flex-wrap: wrap; gap: .35rem .9rem; padding-bottom: .85rem; font-family: ui-sans-serif, system-ui, sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
nav a { text-decoration: none; border-bottom: 1px solid transparent; }
nav a:hover, nav a[aria-current="page"] { border-bottom-color: #f3e6c8; }
main { padding: 1.6rem 0 3rem; }
h1 { font-size: 2rem; line-height: 1.15; margin: 0 0 .6rem; }
h2 { font-size: 1.25rem; margin: 1.6rem 0 .5rem; }
h3 { font-size: 1.05rem; margin: 1.1rem 0 .4rem; }
p, li { line-height: 1.45; }
.lede { font-size: 1.1rem; }
.note, .warn {
  background: var(--stub);
  border: 1px dashed var(--line);
  padding: .8rem 1rem;
  margin: 1rem 0;
}
.warn { border-color: var(--rust); border-style: solid; }
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.2rem 0;
}
.card {
  background: var(--stub);
  border: 2px solid var(--ink);
  padding: 1rem 1.05rem 1.1rem;
  position: relative;
}
.card::after {
  content: "";
  position: absolute; right: -7px; top: 18%;
  width: 14px; height: 64%;
  background: radial-gradient(circle at 0 8px, transparent 7px, var(--ink) 8px) 0 0 / 14px 16px repeat-y;
}
.card.rust { border-color: var(--rust); }
.card.teal { border-color: var(--teal); }
.card h2 { margin-top: 0; }
.kicker { font-family: ui-sans-serif, system-ui, sans-serif; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin: 0 0 .35rem; }
a { color: var(--teal); }
.card.rust a { color: var(--rust); }
ul.plain { padding-left: 1.1rem; }
footer.site-footer {
  background: var(--ink);
  color: #e8d7b5;
  padding: 1.4rem 0 2rem;
  font-size: .85rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
footer.site-footer a { color: #f3e6c8; }
form label { display: block; margin: .8rem 0 .25rem; }
input, textarea, button {
  font: inherit;
  width: 100%;
  max-width: 28rem;
  padding: .45rem .5rem;
}
button { width: auto; background: var(--pine); color: #f3e6c8; border: 0; padding: .5rem 1rem; cursor: pointer; }
.sources { font-size: .9rem; }
@media (max-width: 720px) { .pair { grid-template-columns: 1fr; } .card::after { display: none; } }
