/* I Sogni di Minù — demo by Pharaon Labs.
   The brief was one word: buon gusto. So the page is mostly paper and air,
   the type does the work, and the colour comes from the clay and the blue
   she actually paints with. Nothing shouts. */

:root {
  --bone:  #FAF6F0;
  --paper: #FFFFFF;
  --sand:  #F1E9DE;
  --ink:   #221F1B;
  --muted: #6E655B;
  --clay:  #B4552F;
  --blue:  #2A4E72;
  --gold:  #B98B3C;
  --line:  rgba(34, 31, 27, .13);
  --line-2: rgba(34, 31, 27, .07);
  --wrap: 1140px;
  --nav: 68px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font: 400 17px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, .display {
  font-family: Fraunces, 'Iowan Old Style', Georgia, serif;
  font-weight: 400;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  letter-spacing: -.012em;
  line-height: 1.04;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.55rem); line-height: 1.2; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: 760px; }

.kicker {
  font: 500 11.5px/1 Inter, sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--clay); margin: 0 0 18px;
}
.kicker.blue { color: var(--blue); }
.lede { color: var(--muted); font-size: 18.5px; max-width: 62ch; margin: 18px 0 0; }
.lede.mid { margin-inline: auto; text-align: center; }
.small { font-size: 14px; color: var(--muted); }
.serif-it { font-family: Fraunces, Georgia, serif; font-style: italic; }

section { padding: clamp(64px, 9vw, 120px) 0; }
.rule { height: 1px; background: var(--line-2); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 22px; border-radius: 2px;
  font: 500 14.5px/1 Inter, sans-serif; letter-spacing: .005em;
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: #9E4826; }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: #3A352E; }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--bone); }
.btn-quiet { border-color: var(--line); color: var(--muted); background: transparent; }
.btn-quiet:hover { border-color: var(--ink); color: var(--ink); }
.btn.full { width: 100%; }
.btn.big { min-height: 54px; padding: 0 28px; font-size: 15.5px; }

.arrow { transition: transform .18s ease; }
.btn:hover .arrow, .lnk:hover .arrow { transform: translateX(3px); }

.lnk {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 14.5px/1 Inter, sans-serif;
  border-bottom: 1px solid var(--line); padding-bottom: 5px;
}
.lnk:hover { border-color: var(--ink); }

/* ---------- top bar ---------- */
.bar {
  position: sticky; top: var(--pl-demo-bar, 0); z-index: 40;
  height: var(--nav); display: flex; align-items: center; gap: 22px;
  padding-inline: 22px;
  background: rgba(250, 246, 240, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand b {
  font-family: Fraunces, Georgia, serif; font-weight: 400; font-size: 23px;
  font-variation-settings: 'SOFT' 60, 'WONK' 1; letter-spacing: -.01em;
}
.brand span { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.bar-nav { display: flex; gap: 26px; font-size: 14.5px; color: var(--muted); }
.bar-nav a { padding-block: 6px; border-bottom: 1px solid transparent; }
.bar-nav a:hover, .bar-nav a[aria-current] { color: var(--ink); border-color: var(--clay); }
@media (max-width: 880px) { .bar-nav { display: none; } }

/* ---------- phone menu ---------- */
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 2px; cursor: pointer; padding: 0; }
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); margin: 4px auto; transition: transform .2s ease, opacity .2s ease; }
.burger.x span:first-child { transform: translateY(2.75px) rotate(45deg); }
.burger.x span:last-child { transform: translateY(-2.75px) rotate(-45deg); }
@media (max-width: 880px) {
  .burger { display: block; }
  .bar-cta { display: none; }
}
.drawer {
  position: sticky; top: calc(var(--pl-demo-bar, 0px) + var(--nav)); z-index: 39;
  background: var(--bone); border-bottom: 1px solid var(--line-2);
  padding: 10px 22px 20px;
}
.drawer nav { display: grid; }
.drawer nav a { padding: 15px 0; border-bottom: 1px solid var(--line-2); font-size: 17px; }
.drawer .btn { margin-top: 18px; }
@media (min-width: 881px) { .drawer { display: none; } }

/* ---------- hero ---------- */
.hero { padding: clamp(46px, 7vw, 92px) 0 clamp(52px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { max-width: 13ch; }
.hero .lede { font-size: 19px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-shot { position: relative; }
.hero-shot img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 3px; }
.hero-shot::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid var(--line); border-radius: 3px;
}
@media (max-width: 900px) { .hero-shot::after { display: none; } }

/* the three numbers under the hero */
.proof {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 16px; padding-top: 30px; border-top: 1px solid var(--line-2);
}
@media (max-width: 900px) { .proof { margin-top: 34px; } }
@media (max-width: 680px) { .proof { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.proof div { min-width: 0; }
.proof .g { font-family: ui-sans-serif, system-ui, 'Apple Color Emoji', sans-serif; }
.proof b { display: block; font-family: Fraunces, Georgia, serif; font-weight: 400; font-size: 25px; line-height: 1; }
.proof span { display: block; font-size: 13px; color: var(--muted); margin-top: 7px; }

/* ---------- promise strip ---------- */
.promise { background: var(--sand); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 54px); }
@media (max-width: 820px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-grid h3 { margin-bottom: 10px; }
.promise-grid p { color: var(--muted); font-size: 16px; margin: 0; }
.promise-grid .n {
  font-family: Fraunces, Georgia, serif; font-size: 13px; color: var(--clay);
  letter-spacing: .16em; display: block; margin-bottom: 14px;
}

/* ---------- section heads ---------- */
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(30px, 4vw, 52px); }
.head .lede { margin-top: 14px; }
@media (max-width: 720px) { .head { flex-direction: column; align-items: flex-start; } }

/* ---------- catalogue ---------- */
.lines { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 30px); }
@media (max-width: 1040px) { .lines { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .lines { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .lines { grid-template-columns: 1fr; } }
.line { background: var(--paper); border: 1px solid var(--line-2); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease; }
.line:hover { border-color: var(--line); transform: translateY(-2px); }
.line-shot { position: relative; overflow: hidden; }
.line-shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.line:hover .line-shot img { transform: scale(1.035); }
.line-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(250, 246, 240, .94); color: var(--ink);
  font: 500 10.5px/1 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase;
  padding: 7px 10px; border-radius: 2px;
}
.line-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.line-body h3 { font-size: 1.35rem; }
.line-body p { color: var(--muted); font-size: 15px; margin: 10px 0 0; flex: 1; }
.line-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.price { font-family: Fraunces, Georgia, serif; font-size: 17px; }
.price i { font-style: normal; color: var(--muted); font-size: 13px; font-family: Inter, sans-serif; }

.add { border: 1px solid var(--line); background: transparent; border-radius: 2px; height: 38px; padding: 0 14px; font-size: 13.5px; cursor: pointer; transition: all .16s ease; }
.add:hover { border-color: var(--ink); }
.add[data-in] { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ---------- feature (saracene) ---------- */
.feature { background: var(--ink); color: var(--bone); }
.feature h2, .feature h3 { color: var(--bone); }
.feature .lede { color: rgba(250, 246, 240, .68); }
.feature .kicker { color: var(--gold); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature img { border-radius: 3px; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; padding: 0; list-style: none; }
.towns li { font-size: 13px; color: rgba(250, 246, 240, .74); border: 1px solid rgba(250, 246, 240, .2); border-radius: 999px; padding: 6px 13px; }
.pull {
  font-family: Fraunces, Georgia, serif; font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.35;
  margin: 0; max-width: 24ch;
}

/* ---------- courses ---------- */
.courses { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.2vw, 24px); }
@media (max-width: 1040px) { .courses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .courses { grid-template-columns: 1fr; } }
.course { background: var(--paper); border: 1px solid var(--line-2); border-radius: 3px; padding: 26px 24px 24px; display: flex; flex-direction: column; }
.course .meta { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.course p { color: var(--muted); font-size: 15px; margin: 12px 0 0; }
.course ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; flex: 1; }
.course li { font-size: 14.5px; color: var(--muted); padding-left: 20px; position: relative; }
.course li::before { content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 1px; background: var(--clay); }
.course-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-2); }

/* ---------- commission band ---------- */
.band { position: relative; padding: 0; }
.band img { width: 100%; height: clamp(300px, 46vw, 520px); object-fit: cover; }
.band-in {
  position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(34,31,27,.93) 0%, rgba(34,31,27,.82) 38%, rgba(34,31,27,.42) 72%, rgba(34,31,27,.22) 100%);
  color: var(--bone);
}
.band-in h2 { color: var(--bone); max-width: 16ch; }
.band-in .lede { color: rgba(250, 246, 240, .82); max-width: 44ch; }
.band-in .kicker { color: var(--gold); }

/* ---------- story ---------- */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
.story-grid img { border-radius: 3px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.story p { color: var(--muted); font-size: 17px; }
.story .big-quote {
  font-family: Fraunces, Georgia, serif; font-style: italic; color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem); line-height: 1.32;
  border-left: 2px solid var(--clay); padding-left: 22px; margin: 30px 0;
}
.story .big-quote cite { display: block; font: 500 12.5px/1 Inter, sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 16px; font-style: normal; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }
.rows { list-style: none; padding: 0; margin: 0; }
.rows li { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-2); font-size: 16px; }
.rows b { flex: 0 0 116px; font-weight: 500; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }

/* ---------- forms ---------- */
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: 400 16px/1.5 Inter, sans-serif; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: 12px 14px; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--clay); outline-offset: 1px; border-color: transparent; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .two { grid-template-columns: 1fr; } }

/* ---------- request tray ---------- */
.tray {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 150%);
  z-index: 60; width: min(560px, calc(100vw - 32px));
  background: var(--ink); color: var(--bone); border-radius: 3px;
  box-shadow: 0 18px 50px rgba(34, 31, 27, .3);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}
.tray[data-open] { transform: translate(-50%, 0); }
.tray-head { display: flex; align-items: center; gap: 14px; padding: 15px 18px; }
.tray-head b { font-family: Fraunces, Georgia, serif; font-weight: 400; font-size: 17px; }
.tray-head .n { background: var(--clay); color: #fff; border-radius: 999px; min-width: 22px; height: 22px; display: grid; place-items: center; font-size: 12px; padding-inline: 6px; }
.tray-head .btn { margin-left: auto; }
.tray-head .x { background: none; border: 0; color: rgba(250,246,240,.6); cursor: pointer; font-size: 20px; line-height: 1; padding: 4px; }
.tray-head .x:hover { color: var(--bone); }
.tray ul { list-style: none; margin: 0; padding: 0 18px 16px; display: grid; gap: 8px; max-height: 34vh; overflow-y: auto; }
.tray li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(250, 246, 240, .82); }
.tray li button { background: none; border: 0; color: rgba(250, 246, 240, .5); cursor: pointer; margin-left: auto; font-size: 13px; }
.tray li button:hover { color: #fff; }

/* ---------- notice ---------- */
.notice {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--sand); border-left: 2px solid var(--gold);
  padding: 16px 18px; border-radius: 2px; font-size: 14.5px; color: var(--muted);
  max-width: 68ch;
}
.notice b { color: var(--ink); font-weight: 500; }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: rgba(250, 246, 240, .62); padding: clamp(46px, 6vw, 72px) 0 40px; font-size: 14.5px; }
.foot a:hover { color: var(--bone); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }
.foot .brand b { color: var(--bone); font-size: 26px; }
.foot .brand span { color: rgba(250, 246, 240, .5); }
.foot h4 { font: 500 12px/1 Inter, sans-serif; letter-spacing: .16em; text-transform: uppercase; color: rgba(250, 246, 240, .45); margin: 0 0 16px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-end { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(250, 246, 240, .14); display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 13px; color: rgba(250, 246, 240, .45); }

/* ---------- reveal ---------- */
.rv { opacity: 0; }
.rv.in { animation: rv .6s cubic-bezier(.22, 1, .36, 1) both; }
.rv-2.in { animation-delay: .07s } .rv-3.in { animation-delay: .14s } .rv-4.in { animation-delay: .21s }
@keyframes rv { from { opacity: 0; translate: 0 16px; } to { opacity: 1; translate: 0 0; } }
.no-js .rv { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .rv, .rv.in { opacity: 1; animation: none !important; } }

/* ---------- basket button in the bar ---------- */
.cart-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 13px; border: 1px solid var(--line); border-radius: 2px;
  font: 500 13.5px/1 Inter, sans-serif; color: var(--ink);
  transition: border-color .16s ease;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-btn span { background: var(--clay); color: #fff; border-radius: 999px; min-width: 19px; height: 19px; display: grid; place-items: center; font-size: 11.5px; padding-inline: 5px; }

/* ---------- "added to the basket" strip ---------- */
.added {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 160%);
  z-index: 60; display: flex; align-items: center; gap: 16px;
  width: min(520px, calc(100vw - 32px));
  background: var(--ink); color: var(--bone); border-radius: 3px;
  padding: 13px 13px 13px 20px; font-size: 14.5px;
  box-shadow: 0 18px 50px rgba(34, 31, 27, .3);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}
.added[data-open] { transform: translate(-50%, 0); }
.added span { flex: 1; min-width: 0; }
.added .btn { flex: 0 0 auto; }

/* ---------- product card extras ---------- */
.made { font-size: 12.5px; letter-spacing: .04em; color: var(--clay); margin: 12px 0 0; }
.line-shot { display: block; }

/* ---------- seen on ---------- */
.seen { background: var(--paper); border-block: 1px solid var(--line-2); }
.seen-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4.5vw, 62px); align-items: center; }
@media (max-width: 900px) { .seen-grid { grid-template-columns: 1fr; } }
.seen-shot { position: relative; display: block; border-radius: 3px; overflow: hidden; background: #111; }
.seen-shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .3s ease; }
.seen-shot:hover img { transform: scale(1.02); opacity: .92; }
.seen-shot .play {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px;
  display: grid; place-items: center; border-radius: 999px;
  background: rgba(250, 246, 240, .94); color: var(--ink);
  transition: transform .2s ease;
}
.seen-shot:hover .play { transform: scale(1.06); }
.seen h2 { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.seen .outlet {
  font-family: Inter, sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--ink); color: var(--bone); border-radius: 2px;
  padding: 7px 11px; position: relative; top: -4px;
}
.press { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 1px; background: var(--line-2); border-block: 1px solid var(--line-2); }
.press li { background: var(--paper); }
.press a { display: flex; gap: 16px; align-items: baseline; padding: 14px 2px; }
.press b { flex: 0 0 132px; font-weight: 500; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); }
.press span { font-size: 15px; color: var(--muted); }
.press a:hover span { color: var(--ink); }
@media (max-width: 560px) { .press a { flex-direction: column; gap: 5px; } .press b { flex: none; } }

/* ---------- timetable ---------- */
.timetable {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--clay);
  border-radius: 3px; padding: 26px 28px;
}
.timetable .when { font-family: Fraunces, Georgia, serif; font-size: clamp(1.1rem, 2vw, 1.4rem); margin: 10px 0 0; }
.timetable .kicker { margin-bottom: 10px; }

/* ---------- course rows ---------- */
.course-list { display: grid; gap: clamp(22px, 3vw, 38px); }
.course-row {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(22px, 3vw, 40px);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 3px;
  padding: clamp(20px, 2.4vw, 28px); align-items: start;
}
.course-row:not(:has(.course-shot)) { grid-template-columns: 1fr; }
@media (max-width: 760px) { .course-row { grid-template-columns: 1fr; } }
.course-shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 2px; }
.course-main h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 6px; }
.course-main .meta { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); margin: 0 0 10px; }
.course-main .blurb { color: var(--muted); font-size: 16px; margin: 12px 0 0; max-width: 60ch; }
.course-main .small-when { font-family: Fraunces, Georgia, serif; font-size: 1.05rem; margin: 6px 0 0; }
.course-main ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.course-main li { font-size: 14.5px; color: var(--muted); padding-left: 20px; position: relative; }
.course-main li::before { content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 1px; background: var(--clay); }

/* ---------- basket page ---------- */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.empty { text-align: center; padding: 40px 0 10px; }
.checkout { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } }
table.cart { width: 100%; border-collapse: collapse; }
table.cart th {
  text-align: left; font: 500 12px/1 Inter, sans-serif; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); padding: 0 0 14px; border-bottom: 1px solid var(--line);
}
table.cart th:nth-child(2), table.cart th:nth-child(3) { text-align: right; }
table.cart td { padding: 18px 0; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
table.cart td b { font-family: Fraunces, Georgia, serif; font-weight: 400; font-size: 1.15rem; display: block; }
table.cart .unit { font-size: 13px; color: var(--muted); }
table.cart .num { text-align: right; font-family: Fraunces, Georgia, serif; font-size: 1.05rem; white-space: nowrap; }
table.cart td:last-child { text-align: right; width: 1%; padding-left: 14px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; float: right; }
.qty button { width: 34px; height: 34px; border: 0; background: transparent; cursor: pointer; font-size: 16px; line-height: 1; color: var(--muted); }
.qty button:hover { color: var(--ink); background: var(--sand); }
.qty span { min-width: 30px; text-align: center; font-size: 14.5px; }
.drop { border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.drop:hover { color: var(--clay); }
.sums { margin-top: 24px; }
.sums > div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.sums b { font-family: Fraunces, Georgia, serif; font-weight: 400; font-size: 1.7rem; }
.sums span { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
#order { background: var(--paper); border: 1px solid var(--line-2); border-radius: 3px; padding: clamp(22px, 2.6vw, 30px); }

/* ---------- the shirts ---------- */
.shirts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 860px) { .shirts { grid-template-columns: repeat(2, 1fr); } }
.shirts img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 3px; }
