:root {
  --paper: #efebe1;
  --ink: #0e0e0e;
  --ink-muted: #635e52;
  --paper-sunk: #e7e2d4;
  --rule: rgba(14, 14, 14, 0.14);
}

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

body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 40px 20px 32px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sheet {
  width: 100%;
  max-width: 440px;
}

.mark {
  display: block;
  width: clamp(150px, 44vw, 200px);
  height: auto;
  margin: 0 auto;
}

h1 {
  margin: 4px 0 0;
  font-family: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  font-size: clamp(2rem, 9vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
}

.tagline {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-title {
  margin: 40px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 12px 10px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.16s ease, padding-left 0.16s ease;
}

.row:hover {
  background: var(--paper-sunk);
  padding-left: 16px;
}

.row:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.row__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.row__label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.row__meta {
  font-size: 0.76rem;
  color: var(--ink-muted);
}

.row__arrow {
  color: var(--ink-muted);
  font-size: 0.95rem;
  flex: none;
  transition: transform 0.16s ease;
}

.row:hover .row__arrow { transform: translate(2px, -2px); }

.row__icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: var(--ink);
}

.bookings {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  padding: 20px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: opacity 0.16s ease;
}

.bookings:hover { opacity: 0.86; }

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

.bookings__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.bookings__address {
  font-family: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

footer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

@media (min-width: 560px) {
  body { padding: 64px 24px 48px; }
  .row { padding: 14px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .row,
  .row__arrow,
  .bookings {
    transition: none;
  }
  .row:hover { padding-left: 10px; }
  .row:hover .row__arrow { transform: none; }
}
