/* ==========================================================================
   Otterwell Goggle Works — site styles
   ========================================================================== */

:root {
  --ink:        #0c1c2c;
  --ink-2:      #16324f;
  --ink-soft:   #4a6076;
  --pool:       #1298b4;
  --pool-deep:  #06687e;
  --pool-light: #d7f0f5;
  --sun:        #f0a500;
  --coral:      #e2603c;
  --green:      #2f8f5b;
  --paper:      #f8f5ef;
  --card:       #ffffff;
  --line:       #e4ded2;
  --line-2:     #d2cabb;

  --shadow-sm: 0 1px 2px rgba(12, 28, 44, .06), 0 2px 8px rgba(12, 28, 44, .05);
  --shadow-md: 0 2px 4px rgba(12, 28, 44, .05), 0 12px 28px rgba(12, 28, 44, .09);
  --shadow-lg: 0 4px 8px rgba(12, 28, 44, .05), 0 24px 60px rgba(12, 28, 44, .14);

  --radius:    14px;
  --radius-lg: 24px;

  --wrap: 1180px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.06rem; font-family: var(--body); font-weight: 650; }

p { margin: 0 0 1.1em; }
a { color: var(--pool-deep); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pool-deep);
  margin: 0 0 .9em;
}
.lede { font-size: 1.17rem; color: var(--ink-soft); }

/* --------------------------------------------------------- announcement bar */
.tickerbar {
  background: var(--ink);
  color: #cfe6ec;
  font-size: .84rem;
  letter-spacing: .01em;
  padding: 9px 0;
}
.tickerbar .wrap {
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.tickerbar strong { color: #fff; font-weight: 600; }
.tickerbar a { color: var(--sun); text-decoration: none; font-weight: 600; }
.tickerbar a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 245, 239, .93);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap {
  display: flex; align-items: center; gap: 28px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand svg, .brand img { width: 42px; height: 42px; flex: none; }
.brand-name {
  font-family: var(--display); font-weight: 600; font-size: 1.22rem;
  color: var(--ink); line-height: 1.05; letter-spacing: -.02em; display: block;
}
.brand-sub {
  font-size: .66rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: .95rem;
  padding: 9px 14px; border-radius: 9px;
}
.nav a:hover { background: rgba(18, 152, 180, .1); color: var(--pool-deep); }
.nav a[aria-current="page"] { color: var(--pool-deep); font-weight: 650; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  border-radius: 9px; padding: 8px 11px; cursor: pointer; color: var(--ink);
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-family: var(--body); font-weight: 600; font-size: .97rem;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pool); color: #fff; box-shadow: 0 6px 18px rgba(18, 152, 180, .32); }
.btn-primary:hover { background: var(--pool-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-sun { background: var(--sun); color: #3a2800; box-shadow: 0 6px 18px rgba(240, 165, 0, .32); }
.btn-sun:hover { background: #dd9800; }
.btn-sm { padding: 9px 17px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled {
  background: #e8e3d9; color: #9a9285; box-shadow: none; cursor: not-allowed; transform: none;
}

/* -------------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(175deg, #062b3c 0%, #084a5e 52%, #0a6d80 100%); color: #eaf6f8; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 46c120-26 240-38 360-22s240 58 360 58 240-40 360-56 240-10 360 8v56H0z' fill='%23f8f5ef'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 78px 0 120px;
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: #7fdcec; }
.hero p.lede { color: #bfdfe6; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-facts {
  display: flex; gap: 34px; flex-wrap: wrap; margin-top: 44px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-facts div strong {
  display: block; font-family: var(--display); font-size: 1.85rem; color: #fff; line-height: 1;
}
.hero-facts div span { font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: #8fc3ce; }
.hero-art { position: relative; }
.hero-art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; bottom: -22px; left: -18px;
  background: var(--sun); color: #3a2800; border-radius: 999px;
  padding: 12px 22px; font-weight: 700; font-size: .92rem;
  box-shadow: var(--shadow-md); transform: rotate(-4deg);
}

/* -------------------------------------------------------------- page header */
.page-head { background: linear-gradient(170deg, #072f41, #0a6076); color: #eaf6f8; padding: 62px 0 68px; }
.page-head h1 { color: #fff; margin-bottom: .3em; }
.page-head p { color: #bfdfe6; max-width: 60ch; margin: 0; font-size: 1.1rem; }
.page-head .eyebrow { color: #79cfe0; }

/* ----------------------------------------------------------------- sections */
section { padding: 76px 0; }
section.tight { padding: 52px 0; }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.centre { margin-left: auto; margin-right: auto; text-align: center; }
.bg-white { background: #fff; }
.bg-ink { background: var(--ink); color: #c9dbe6; }
.bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-pool { background: var(--pool-light); }

/* -------------------------------------------------------------------- cards */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* asymmetric two-column layouts — these must still stack on small screens,
   which is why they are classes and not inline styles */
.grid-lead { grid-template-columns: 1.35fr 1fr; align-items: start; }
.grid-book { grid-template-columns: .9fr 1.1fr; align-items: start; }
.grid-top  { align-items: start; }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--pool-light);
  color: var(--pool-deep); font-weight: 700; display: grid; place-items: center;
  margin-bottom: 16px; font-size: .95rem;
}

/* ------------------------------------------------------------------ product */
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-shot { padding: 22px; background: linear-gradient(160deg, #eef7f9, #dfeff3); display: grid; place-items: center; }
.product-shot svg { width: 100%; height: auto; }
.product-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.16rem; margin-bottom: .2em; }
.product-meta { font-size: .84rem; color: var(--ink-soft); margin: 0 0 12px; }
.product-desc { font-size: .93rem; color: var(--ink-soft); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.price { font-family: var(--display); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.price small { font-size: .72rem; font-family: var(--body); color: var(--ink-soft); font-weight: 500; }

.tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.tag-sun { background: #fdf0d0; color: #8a5f00; }
.tag-pool { background: var(--pool-light); color: var(--pool-deep); }
.tag-green { background: #dcf0e4; color: #1e6b41; }
.tag-coral { background: #fbe2da; color: #9d3618; }
.tag-grey { background: #ece8df; color: #5f584c; }

/* ----------------------------------------------------------------- swatches */
.swatches { display: flex; gap: 7px; }
.swatch { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.12); }

/* ------------------------------------------------------------------ figures */
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.figure img { width: 100%; }
.figure figcaption {
  font-size: .85rem; color: var(--ink-soft); padding: 13px 18px; background: #fff;
  border-top: 1px solid var(--line);
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.flip .split-art { order: -1; }

/* ------------------------------------------------------------------ tickset */
.ticklist { list-style: none; padding: 0; margin: 0 0 1.2em; }
.ticklist li { position: relative; padding-left: 34px; margin-bottom: 11px; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--pool-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306687e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.bg-ink .ticklist li::before { background-color: rgba(127, 220, 236, .18); }

/* ---------------------------------------------------------------- timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--pool), var(--pool-light));
}
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before {
  content: ""; position: absolute; left: -32px; top: 6px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; border: 3px solid var(--pool);
}
.timeline-year {
  font-family: var(--display); font-size: 1.35rem; color: var(--pool-deep);
  font-weight: 600; display: block; line-height: 1;
  margin-bottom: 5px;
}
.timeline-item p { margin: 0; color: var(--ink-soft); }

/* ------------------------------------------------------------- tour board */
.board {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.board-head {
  background: var(--ink); color: #fff; padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.board-head h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.board-head .live {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem;
  color: #9fd7c4; letter-spacing: .04em;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #38d39f;
  box-shadow: 0 0 0 0 rgba(56, 211, 159, .7); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(56, 211, 159, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 211, 159, 0); }
}

.slot-table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.slot-table th {
  text-align: left; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700; padding: 14px 20px; background: #faf8f4;
  border-bottom: 1px solid var(--line);
}
.slot-table td { padding: 15px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.slot-table tr:last-child td { border-bottom: 0; }
.slot-table tr.is-highlight { background: #fffaeb; }
.slot-table tr.is-highlight td:first-child { box-shadow: inset 4px 0 0 var(--sun); }
.slot-date { font-weight: 650; color: var(--ink); }
.slot-date span { display: block; font-weight: 400; font-size: .84rem; color: var(--ink-soft); }
.pill {
  display: inline-block; font-size: .78rem; font-weight: 650; padding: 4px 11px; border-radius: 999px;
}
.pill-ok { background: #dcf0e4; color: #1e6b41; }
.pill-low { background: #fdeacb; color: #8a5f00; }
.pill-full { background: #eee9e0; color: #6b6355; }

/* -------------------------------------------------------- manifest / guests */
.manifest {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.manifest-head {
  padding: 22px 26px; border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, #fffdf6, #fdf4e0);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap;
}
.manifest-head h3 { margin: 0 0 3px; font-size: 1.3rem; }
.manifest-head p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.capacity { text-align: right; }
.capacity strong { font-family: var(--display); font-size: 1.7rem; color: var(--ink); display: block; line-height: 1; }
.capacity span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

.meter { height: 8px; border-radius: 999px; background: #ece7dc; overflow: hidden; margin-top: 10px; width: 190px; }
.meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--pool), var(--sun)); border-radius: 999px; }

.guest-list { list-style: none; margin: 0; padding: 10px 0; }
.guest-list li {
  display: flex; align-items: center; gap: 14px; padding: 11px 26px;
  border-bottom: 1px solid #f2eee5;
}
.guest-list li:last-child { border-bottom: 0; }
.guest-no { font-size: .78rem; color: #a49b8c; width: 20px; flex: none; font-variant-numeric: tabular-nums; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-weight: 700; font-size: .82rem; color: #fff; letter-spacing: .02em;
}
.guest-name { font-weight: 600; color: var(--ink); flex: 1; }
.guest-name small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .8rem; }
.guest-status { font-size: .76rem; font-weight: 650; padding: 3px 10px; border-radius: 999px; flex: none; }
.st-confirmed { background: #dcf0e4; color: #1e6b41; }
.st-paid { background: var(--pool-light); color: var(--pool-deep); }
.st-free { background: #eee9e0; color: #6b6355; }
.guest-list li.is-empty { color: #a49b8c; font-style: italic; }
.guest-list li.is-empty .avatar { background: #f0ece3; border: 1.5px dashed var(--line-2); color: #b6ad9d; }
.guest-list li.is-you { background: #fffaeb; }

/* ------------------------------------------------------------------- forms */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .84rem; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px; background: #fdfcfa;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--pool); box-shadow: 0 0 0 3px rgba(18, 152, 180, .16); background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.chooser { display: flex; flex-wrap: wrap; gap: 10px; }
.chooser input { position: absolute; opacity: 0; pointer-events: none; }
.chooser label {
  border: 1.5px solid var(--line-2); border-radius: 999px; padding: 8px 16px;
  cursor: pointer; font-size: .9rem; font-weight: 500; margin: 0; background: #fff;
}
.chooser input:checked + label { border-color: var(--pool); background: var(--pool-light); color: var(--pool-deep); font-weight: 650; }
.chooser input:focus-visible + label { box-shadow: 0 0 0 3px rgba(18, 152, 180, .22); }

.colour-chooser label {
  width: 38px; height: 38px; border-radius: 50%; padding: 0; border-width: 2px;
  border-color: rgba(0,0,0,.12); text-indent: -9999px; overflow: hidden;
}
.colour-chooser input:checked + label { border-color: var(--ink); box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--ink); }

.total-box {
  background: #faf8f4; border: 1px dashed var(--line-2); border-radius: 12px;
  padding: 16px 18px; margin: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.total-box span { font-size: .9rem; color: var(--ink-soft); }
.total-box strong { font-family: var(--display); font-size: 1.8rem; color: var(--ink); }
.formnote { font-size: .82rem; color: var(--ink-soft); margin: 14px 0 0; }

/* ---------------------------------------------------------------- reviews */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.stars { color: var(--sun); letter-spacing: 2px; font-size: .95rem; margin-bottom: 10px; }
.review p { font-size: .96rem; }
.review-by { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.review-by .avatar { width: 34px; height: 34px; font-size: .76rem; }
.review-by strong { font-size: .9rem; color: var(--ink); display: block; }
.review-by span { font-size: .8rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------- FAQ */
details.faq {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
details.faq summary {
  cursor: pointer; list-style: none; padding: 17px 34px 17px 0; position: relative;
  font-weight: 600; color: var(--ink); font-size: 1.03rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--pool); font-weight: 400; line-height: 1;
}
details.faq[open] summary::after { content: "\2212"; }
details.faq p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 17px; padding-right: 30px; }

/* --------------------------------------------------------------- callout */
.callout {
  background: linear-gradient(140deg, #0a6d80, #084a5e); color: #dff2f6;
  border-radius: var(--radius-lg); padding: 46px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.callout h2 { color: #fff; }
.callout p { max-width: 52ch; margin: 0 auto 26px; color: #bfdfe6; }

/* ---------------------------------------------------------------- footer */
.site-foot { background: var(--ink); color: #94adbc; padding: 62px 0 0; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 46px; }
.site-foot h4 { color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 16px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot a { color: #94adbc; text-decoration: none; }
.site-foot a:hover { color: #fff; }
.foot-brand svg, .foot-brand img { width: 46px; height: 46px; margin-bottom: 14px; }
.foot-brand p { max-width: 34ch; font-size: .9rem; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: #6f8798;
}
.foot-note { font-size: .72rem; color: #5b7183; padding-bottom: 26px; max-width: 76ch; line-height: 1.5; }

/* --------------------------------------------------------------- receipt */
.receipt {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--line);
}
.receipt-top {
  background: linear-gradient(140deg, #12744b, #0f5f3e); color: #fff; padding: 34px 34px 30px; text-align: center;
}
.receipt-top h1 { color: #fff; font-size: 2rem; margin-bottom: .2em; }
.receipt-top p { margin: 0; color: #b9e3cd; }
.receipt-tick { width: 58px; height: 58px; margin: 0 auto 16px; }
.receipt-body { padding: 32px 34px 34px; }
.receipt-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.receipt-row:last-of-type { border-bottom: 0; }
.receipt-row span { color: var(--ink-soft); }
.receipt-row strong { color: var(--ink); text-align: right; }
.receipt-ref {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: .06em; background: #f4f1ea; padding: 3px 9px; border-radius: 6px; font-size: .92rem;
}
.barcode { display: flex; gap: 2px; align-items: flex-end; height: 54px; margin: 26px 0 8px; justify-content: center; }
.barcode i { display: block; width: 3px; background: var(--ink); border-radius: 1px; }

/* ---------------------------------------------------------------- utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 22px; } .mt-3 { margin-top: 34px; }
.centre { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 42px; padding: 52px 0 100px; }
  .hero-art { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.flip .split-art { order: 0; }
  .grid-lead, .grid-book { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 16px; }
  .nav .btn { margin: 8px; justify-content: center; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .callout { padding: 32px 22px; }
  .form-card { padding: 24px 20px; }
  .hero-facts { gap: 24px; }
  .manifest-head { flex-direction: column; }
  .capacity { text-align: left; }
}
