:root {
  --navy: #1B2A4A;
  --teal: #2A7F7F;
  --cream: #F4F0E9;
  --ink: #22304a;
  --rule: #d8d2c6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

header {
  background: var(--navy);
  color: #fff;
}
.headrow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em;
}
header nav a {
  color: #e9e5da;
  text-decoration: none;
  margin-left: 1.1rem;
  font-size: .95rem;
}
header nav a:hover { color: #fff; text-decoration: underline; }

main { padding: 2.25rem 1.25rem 3rem; }

h1, h2, h3 {
  font-family: "EB Garamond", Garamond, Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: 2.1rem; margin: 0 0 .5rem; }
h2 { font-size: 1.45rem; margin-top: 2.2rem; }
h3 { font-size: 1.15rem; margin: 0 0 .35rem; }

.stand {
  font-size: 1.15rem;
  color: #4a5670;
  font-style: italic;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  margin-top: 0;
}

a { color: var(--teal); }
a:hover { color: var(--navy); }

.hero { padding: .5rem 0 .25rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
}
.card p { margin: 0; font-size: .97rem; color: #4a5670; }
.card:hover { border-top-color: var(--navy); }
.card:hover h3 { text-decoration: underline; }

.shopstrip {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
}
.shopstrip h2 { margin-top: 0; }

.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover { background: var(--navy); color: #fff; }

table.listings {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--rule);
  font-size: .97rem;
  margin-top: 1rem;
}
table.listings th, table.listings td {
  text-align: left;
  padding: .55rem .75rem;
  border-bottom: 1px solid var(--rule);
}
table.listings th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}
table.listings tr:last-child td { border-bottom: none; }

footer {
  background: var(--navy);
  color: #cfd6e4;
  padding: 2rem 0 2.25rem;
  margin-top: 2rem;
}
footer a { color: #9fd0d0; }

.contact { margin: 0; color: #fff; }

.fineprint { font-size: .85rem; margin-top: 1.25rem; }

@media (max-width: 560px) {
  h1 { font-size: 1.7rem; }
  header nav a { margin-left: .8rem; }
}

.badge { width: 26px; height: 26px; vertical-align: -6px; margin-right: .5rem; border-radius: 50%; }
.lockup { margin: 0 0 1rem; }
.lockup img { max-width: 100%; height: auto; }
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.product {
  display: block;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: .8rem;
  text-decoration: none;
  color: var(--ink);
}
.product img { width: 100%; height: auto; border-radius: 4px; display: block; }
.product h3 { font-size: 1rem; margin: .6rem 0 .25rem; }
.product .meta { margin: 0; font-size: .88rem; color: #4a5670; }
.product:hover { border-color: var(--teal); }
.product:hover h3 { text-decoration: underline; }
