/* ==========================================================================
   Daniel B. Garrie — speaker site
   Visual system: silkscreen. Flat plates of unmodulated colour, a true black
   key plate, hard edges, no gradients, no soft shadows. The portrait grid is
   the only loud element on the page; everything else is disciplined.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
    /* Ground and key plate */
    --paper: #ffffff;
    --ink: #000000;
    --ink-60: rgba(0, 0, 0, 0.6);
    --ink-40: rgba(0, 0, 0, 0.4);
    --ink-12: rgba(0, 0, 0, 0.12);

    /* Pop plates. Each talk is assigned one, so colour identifies content. */
    --plate-pink: #ff1f8f;
    --plate-yellow: #ffd400;
    --plate-cyan: #00c2e0;
    --plate-orange: #ff5a1f;
    --plate-violet: #7b4dff;

    /* Reserved for actions only. Blue on this page always means "click". */
    --action: #2d5bff;
    --action-deep: #1c3fcc;

    /* Type */
    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Measure and rhythm */
    --measure: 34rem;
    --gutter: clamp(1.25rem, 5vw, 4.5rem);
    --band: clamp(4rem, 9vw, 8rem);

    --rule: 2px solid var(--ink);
    --rule-hair: 1px solid var(--ink-12);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 700;
    text-wrap: balance;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:focus-visible {
    outline: 3px solid var(--action);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Duotone filter definitions live in an SVG that must not occupy space. */
.filter-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
    width: 100%;
    max-width: 78rem;
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.band {
    padding-block: var(--band);
}

.band--ruled {
    border-top: var(--rule);
}

.band__head {
    max-width: var(--measure);
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.band__title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.band__intro {
    margin-top: 1rem;
    color: var(--ink-60);
    font-size: 1.0625rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: var(--rule);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: 78rem;
    margin: 0 auto;
    padding: 0.9rem var(--gutter);
}

.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav__logo-mark {
    width: 0.85rem;
    height: 0.85rem;
    background: var(--plate-pink);
    border-radius: 50%;
    flex: none;
    transform: translateY(-0.05em);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
}

.nav__links a {
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding-block: 0.35rem;
    border-bottom: 2px solid transparent;
}

.nav__links a:hover {
    border-bottom-color: var(--ink);
}

.nav__cta,
.nav__links a.nav__cta {
    padding: 0.6rem 1.15rem;
    background: var(--action);
    color: var(--paper);
    font-weight: 600;
    border-bottom: none;
}

.nav__links a.nav__cta:hover {
    background: var(--action-deep);
    border-bottom-color: transparent;
}

.nav__toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    background: none;
    border: var(--rule);
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 1.15rem;
    height: 2px;
    margin: 0.24rem auto;
    background: var(--ink);
}

/* --------------------------------------------------------------------------
   5. Hero — the silkscreen grid
   -------------------------------------------------------------------------- */

.hero {
    padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem);
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: var(--rule);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.plate {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-right: var(--rule);
}

.plate:last-child {
    border-right: none;
}

.plate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
}

/* Each panel prints from a different plate. */
.plate--pink { background: var(--plate-pink); }
.plate--pink img { filter: url(#duo-pink); }

.plate--yellow { background: var(--plate-yellow); }
.plate--yellow img { filter: url(#duo-yellow); }

.plate--cyan { background: var(--plate-cyan); }
.plate--cyan img { filter: url(#duo-cyan); }

.plate--violet { background: var(--plate-violet); }
.plate--violet img { filter: url(#duo-violet); }

.hero__lede {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: end;
}

.hero__title {
    font-family: var(--sans);
    font-size: clamp(2.6rem, 8.4vw, 6.75rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero__aside {
    padding-bottom: 0.4rem;
}

.hero__standfirst {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    line-height: 1.5;
    color: var(--ink);
}

.hero__name {
    margin-bottom: 1.15rem;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid var(--action);
    background: var(--action);
    color: var(--paper);
    cursor: pointer;
}

.btn:hover {
    background: var(--action-deep);
    border-color: var(--action-deep);
}

.btn--ghost {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn--ghost:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.btn--block {
    width: 100%;
    text-align: center;
}

/* --------------------------------------------------------------------------
   7. Credential strip
   -------------------------------------------------------------------------- */

.credentials {
    background: var(--ink);
    color: var(--paper);
}

.credentials__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-width: 78rem;
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.credentials__item {
    padding: 1.65rem 1rem 1.65rem 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 1.15rem;
}

.credentials__item:first-child {
    border-left: none;
    padding-left: 0;
}

.credentials__fact {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.credentials__note {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.68);
}

/* --------------------------------------------------------------------------
   8. Watch
   -------------------------------------------------------------------------- */

.watch__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.watch__feature {
    display: block;
    text-decoration: none;
    border: var(--rule);
}

.watch__frame {
    position: relative;
    background: var(--ink);
}

.watch__frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: url(#duo-pink);
}

.watch__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.watch__play span {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--paper);
    border: var(--rule);
    font-size: 1.35rem;
    line-height: 1;
    padding-left: 0.25rem;
}

.watch__caption {
    padding: 1.35rem 1.5rem 1.5rem;
    border-top: var(--rule);
}

.watch__kicker {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--action);
}

.watch__headline {
    margin-top: 0.35rem;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.15;
}

.watch__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.watch__item {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: var(--rule-hair);
    text-decoration: none;
}

.watch__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.watch__item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--ink);
    filter: grayscale(1) contrast(1.15);
}

.watch__item:hover img {
    filter: none;
}

.watch__item h3 {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.25;
}

.watch__item p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--ink-60);
}

/* --------------------------------------------------------------------------
   9. Talks — the page spine
   -------------------------------------------------------------------------- */

.talks {
    border-top: var(--rule);
    background: var(--paper);
}

.talks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    border-top: var(--rule);
    border-left: var(--rule);
}

.talk {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-right: var(--rule);
    border-bottom: var(--rule);
    background: var(--paper);
}

.talk__plate {
    height: 0.75rem;
}

.talk--pink .talk__plate { background: var(--plate-pink); }
.talk--yellow .talk__plate { background: var(--plate-yellow); }
.talk--cyan .talk__plate { background: var(--plate-cyan); }
.talk--orange .talk__plate { background: var(--plate-orange); }
.talk--violet .talk__plate { background: var(--plate-violet); }

.talk__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.65rem 1.5rem 1.75rem;
}

.talk__audience {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-60);
}

.talk__title {
    margin-top: 0.5rem;
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.talk__pitch {
    margin-top: 0.85rem;
    font-size: 0.9688rem;
    line-height: 1.6;
    color: var(--ink-60);
}

.talk__takeaways {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: var(--rule-hair);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.talk__takeaways li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.talk__takeaways li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    background: currentColor;
}

.talk__formats {
    margin-top: auto;
    padding-top: 1.35rem;
    font-size: 0.8125rem;
    color: var(--ink-40);
}

/* --------------------------------------------------------------------------
   10. Placeholder blocks — content Daniel still needs to supply
   -------------------------------------------------------------------------- */

.pending {
    border: 2px dashed var(--ink-12);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--paper);
}

.pending__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--action);
}

.pending__text {
    margin-top: 0.5rem;
    max-width: var(--measure);
    color: var(--ink-60);
    font-size: 0.9688rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. About
   -------------------------------------------------------------------------- */

.about__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: start;
}

.about__portrait {
    border: var(--rule);
    background: var(--plate-yellow);
}

.about__portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 20%;
    filter: url(#duo-yellow);
}

.about__prose p + p {
    margin-top: 1.15rem;
}

.about__prose p {
    max-width: var(--measure);
    line-height: 1.7;
}

.about__facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 1.25rem 1.75rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: var(--rule);
}

.about__fact h3 {
    font-size: 0.875rem;
    font-weight: 700;
}

.about__fact p {
    margin-top: 0.3rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--ink-60);
}

/* --------------------------------------------------------------------------
   12. Other work
   -------------------------------------------------------------------------- */

.work__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    border-top: var(--rule);
    border-left: var(--rule);
}

.work__card {
    display: flex;
    flex-direction: column;
    padding: 1.65rem 1.5rem 1.75rem;
    border-right: var(--rule);
    border-bottom: var(--rule);
    text-decoration: none;
    background: var(--paper);
}

.work__card:hover {
    background: var(--ink);
    color: var(--paper);
}

.work__card h3 {
    font-family: var(--serif);
    font-size: 1.3125rem;
    line-height: 1.2;
}

.work__card p {
    margin-top: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--ink-60);
}

.work__card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

.work__go {
    margin-top: 1.5rem;
    padding-top: 0.9rem;
    border-top: var(--rule-hair);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--action);
}

.work__card:hover .work__go {
    color: var(--paper);
}

/* --------------------------------------------------------------------------
   13. Press
   -------------------------------------------------------------------------- */

.press {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: var(--rule);
}

.press img {
    height: 1.75rem;
    width: auto;
    filter: grayscale(1);
    opacity: 0.55;
}

/* --------------------------------------------------------------------------
   14. Booking
   -------------------------------------------------------------------------- */

.booking {
    background: var(--ink);
    color: var(--paper);
    border-top: var(--rule);
}

.booking__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.booking__title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.08;
}

.booking__note {
    margin-top: 1.15rem;
    max-width: 26rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.booking__direct {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.72);
}

.booking__direct a {
    color: var(--paper);
    font-weight: 600;
}

.form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
}

.form__row + .form__row {
    margin-top: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field label {
    font-size: 0.875rem;
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--paper);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
}

.field textarea {
    min-height: 7rem;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--paper);
    outline-offset: 1px;
}

.field select option {
    color: var(--ink);
}

/* Honeypot. Hidden from people, reachable by naive bots. */
.field--trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form__submit {
    margin-top: 1.5rem;
}

.form__status {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.form__status:empty {
    margin-top: 0;
}

.form__status[data-state='error'] {
    color: var(--plate-yellow);
}

.form__status[data-state='ok'] {
    color: var(--paper);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-block: 2.5rem;
    font-size: 0.875rem;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   16. Speaker kit page
   -------------------------------------------------------------------------- */

.kit__hero {
    padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
    border-bottom: var(--rule);
}

.kit__title {
    font-family: var(--sans);
    font-size: clamp(2.25rem, 6.5vw, 4.5rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.kit__strap {
    margin-top: 1.15rem;
    max-width: var(--measure);
    color: var(--ink-60);
    line-height: 1.65;
}

.bio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    border-top: var(--rule);
    border-left: var(--rule);
}

.bio__item {
    padding: 1.5rem;
    border-right: var(--rule);
    border-bottom: var(--rule);
}

.bio__length {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--action);
}

.bio__text {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.assets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1.5rem;
}

.asset {
    border: var(--rule);
}

.asset img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 50% 20%;
}

.asset__meta {
    padding: 0.9rem 1rem;
    border-top: var(--rule);
    font-size: 0.875rem;
}

.asset__meta a {
    font-weight: 600;
    color: var(--action);
}

.spec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem 2.5rem;
}

.spec h3 {
    padding-bottom: 0.5rem;
    border-bottom: var(--rule);
    font-size: 0.9375rem;
}

.spec ul {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.spec li {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--ink-60);
}

.intro-script {
    max-width: 44rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border: var(--rule);
    border-left: 0.75rem solid var(--plate-pink);
    font-family: var(--serif);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 60rem) {
    .credentials__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .credentials__item:nth-child(4) {
        border-left: none;
        padding-left: 0;
    }

    .watch__layout,
    .about__layout,
    .booking__layout,
    .hero__lede {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero__lede {
        gap: 1.5rem;
    }
}

@media (max-width: 46rem) {
    .nav__toggle {
        display: block;
    }

    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem var(--gutter) 1.25rem;
        background: var(--paper);
        border-bottom: var(--rule);
    }

    .nav__links.is-open {
        display: flex;
    }

    .nav__links a {
        padding-block: 0.85rem;
        border-bottom: var(--rule-hair);
    }

    .nav__links a.nav__cta {
        margin-top: 0.85rem;
        text-align: center;
    }

    .hero__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plate:nth-child(2) {
        border-right: none;
    }

    .plate:nth-child(1),
    .plate:nth-child(2) {
        border-bottom: var(--rule);
    }

    .credentials__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials__item:nth-child(odd) {
        border-left: none;
        padding-left: 0;
    }

    .credentials__item:nth-child(even) {
        padding-left: 1.15rem;
    }

    .watch__item {
        grid-template-columns: 5rem minmax(0, 1fr);
    }
}

/* --------------------------------------------------------------------------
   18. Motion and print
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .nav,
    .booking,
    .hero__actions {
        display: none;
    }

    body {
        color: #000;
    }
}
