/* ==========================================================================
   OJ'NOEL Catering
   Restraint over decoration. Big type, deep whitespace, one accent colour,
   and photographs given room to breathe. The layout is designed to look
   expensive without event photography, because there isn't any yet.
   ========================================================================== */

:root {
    /* Ink and paper. Both warm, so photographs of food sit comfortably. */
    --ink:        #171310;
    --ink-soft:   #4A423C;
    --ink-mute:   #7A6F66;
    --paper:      #FBF8F3;
    --paper-warm: #F3EDE4;
    --line:       #E2D9CC;

    /* One accent, a deep brick that agrees with the food. */
    --accent:     #9A3324;
    --accent-dk:  #7A2619;
    --gold:       #B98A44;

    --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --wrap:        1240px;
    --wrap-narrow: 760px;
    --gutter:      clamp(1.25rem, 4vw, 3rem);

    --space-section: clamp(4.5rem, 10vw, 9rem);

    --radius: 2px;
    --shadow: 0 1px 2px rgba(23, 19, 16, .04), 0 8px 32px rgba(23, 19, 16, .06);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   Reset and base
   -------------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 0;
    text-wrap: balance;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: -9999px;
    top: 0; z-index: 999;
    background: var(--ink); color: var(--paper);
    padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

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

.eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1.25rem;
}
.eyebrow--light { color: rgba(255, 255, 255, .82); }

.section-heading {
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    margin-bottom: 1.5rem;
}
.section-heading--center { text-align: center; }

.lede {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 62ch;
}
.lede--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); }

.btn--lg { padding: 1.1rem 2.25rem; font-size: .875rem; }
.btn--sm { padding: .65rem 1.15rem; font-size: .75rem; }

.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: #fff; }

.btn--on-dark { color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 248, 243, .93);
    backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease), border-color .3s var(--ease);
}

/* Over the hero the header sits transparent, then solidifies on scroll. */
.home .site-header:not(.is-stuck):not(.is-nav-open) {
    background: transparent;
    border-bottom-color: transparent;
    color: #fff;
}
.home .site-header:not(.is-stuck):not(.is-nav-open) .wordmark__rule { background: rgba(255, 255, 255, .5); }
.home .site-header:not(.is-stuck):not(.is-nav-open) .site-nav__list a::after { background: #fff; }
.home .site-header:not(.is-stuck):not(.is-nav-open) .btn--sm {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}
.home .site-header:not(.is-stuck):not(.is-nav-open) .btn--sm:hover { background: #fff; color: var(--ink); }
.home .site-header:not(.is-stuck):not(.is-nav-open) .nav-toggle__bar { background: #fff; }

/* Menu open. The panel behind the header is light, so every piece of header
   chrome is pinned to its dark values here rather than left to inherit. */
.site-header.is-nav-open {
    background: var(--paper);
    border-bottom-color: var(--line);
    color: var(--ink);
}
.site-header.is-nav-open .wordmark,
.site-header.is-nav-open .wordmark__name { color: var(--ink); }
.site-header.is-nav-open .wordmark__kicker { color: var(--ink-mute); }
.site-header.is-nav-open .wordmark__rule { background: var(--line); }
.site-header.is-nav-open .header-phone,
.site-header.is-nav-open .header-phone__icon { color: var(--accent); }
.site-header.is-nav-open .nav-toggle__bar { background: var(--ink); }

.site-header__inner {
    max-width: var(--wrap);
    margin-inline: auto;
    padding: 1.1rem var(--gutter);
    display: flex;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 62rem) { .site-header__inner { gap: 2rem; } }

.site-header__brand { flex: 0 0 auto; }
.site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 1rem; }

.wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: .6rem;
    text-decoration: none;
    color: inherit;
}
.wordmark__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
}
.wordmark__rule {
    width: 22px; height: 1px;
    background: var(--line);
    display: inline-block;
}
.wordmark__kicker {
    font-family: var(--font-body);
    font-size: .625rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.home .site-header:not(.is-stuck):not(.is-nav-open) .wordmark__kicker { color: rgba(255, 255, 255, .75); }

.site-nav { display: none; }
@media (min-width: 62rem) { .site-nav { display: block; } }

.site-nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav__list a {
    position: relative;
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding-block: .35rem;
}
.site-nav__list a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}
.site-nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

/* The phone is the most valuable control on a caterer's site, so on a small
   screen it stays as a tappable icon and it is the text button that gives way.
   Hiding the number on mobile, which is the usual default, has it backwards. */
.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 44px;
    min-height: 44px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .01em;
}
.header-phone__icon { display: inline-flex; color: var(--accent); }
.home .site-header:not(.is-stuck):not(.is-nav-open) .header-phone__icon { color: #fff; }

.header-phone__number { display: none; }
@media (min-width: 48rem) {
    .header-phone { min-width: 0; justify-content: flex-start; }
    .header-phone__number { display: inline; }
}

/* The Enquire button is redundant on mobile: the hamburger and the hero both
   carry the same action, and it is what pushes the header into overflow. */
.site-header__actions .btn--sm { display: none; }
@media (min-width: 48rem) { .site-header__actions .btn--sm { display: inline-flex; } }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
}
@media (min-width: 62rem) { .nav-toggle { display: none; } }
.nav-toggle__bar {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--paper);
    padding: 6rem var(--gutter) 3rem;
    overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__list { list-style: none; margin: 0 0 3rem; padding: 0; }
.mobile-nav__list a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-decoration: none;
}
.mobile-nav__contact { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav__phone { font-size: 1.125rem; font-weight: 600; text-decoration: none; color: var(--accent); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: clamp(32rem, 88vh, 54rem);
    display: flex;
    align-items: flex-end;
    margin-top: -84px;   /* pull under the transparent header */
    padding-top: 84px;
    overflow: hidden;
    isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Two layers. The horizontal one guarantees the text column stays readable no
   matter which photograph is loaded, which matters because the client will swap
   these. The vertical one darkens the top so the transparent header reads, and
   the bottom so the buttons sit on something solid. */
.hero__scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right,
            rgba(12, 9, 7, .88) 0%,
            rgba(12, 9, 7, .70) 30%,
            rgba(12, 9, 7, .30) 62%,
            rgba(12, 9, 7, .12) 100%),
        linear-gradient(to top,
            rgba(12, 9, 7, .60) 0%,
            rgba(12, 9, 7, .20) 35%,
            rgba(12, 9, 7, .14) 58%,
            rgba(12, 9, 7, .66) 100%);
}

.hero__content {
    padding-block: clamp(3rem, 8vw, 6rem);
    color: #fff;
}
.hero__heading {
    font-size: clamp(2.5rem, 7vw, 5.25rem);
    font-weight: 600;
    max-width: 16ch;
    margin-bottom: 1.5rem;
}
.hero__sub {
    font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, .88);
    max-width: 54ch;
    margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
/* Stacked buttons look untidy at ragged widths, so match them on small screens. */
@media (max-width: 30rem) {
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Facts
   -------------------------------------------------------------------------- */

.facts {
    background: var(--ink);
    color: var(--paper);
}
.facts__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
@media (min-width: 48rem) { .facts__list { grid-template-columns: repeat(4, 1fr); } }

.facts__item { display: flex; flex-direction: column; gap: .35rem; }
.facts__figure {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1;
    color: #fff;
}
.facts__label {
    font-size: .8125rem;
    letter-spacing: .04em;
    color: rgba(251, 248, 243, .62);
    max-width: 22ch;
}

/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */

.intro { padding-block: var(--space-section); text-align: center; }
.intro .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services { padding-bottom: var(--space-section); }
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 48rem)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem)  { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 1.75rem;
    background: var(--paper-warm);
}
.service__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.service:hover .service__media img { transform: scale(1.035); }

.service__title { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-bottom: .85rem; }
.service__body { color: var(--ink-soft); font-size: .9375rem; margin-bottom: 1.25rem; }

.service__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent);
}
.service__link span { transition: transform .3s var(--ease); }
.service__link:hover span { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Feature
   -------------------------------------------------------------------------- */

.feature { padding-block: var(--space-section); background: var(--paper-warm); }
.feature__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
@media (min-width: 56rem) { .feature__grid { grid-template-columns: 5fr 6fr; } }

.feature__media { aspect-ratio: 4 / 5; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Menu grid
   -------------------------------------------------------------------------- */

.menu-grid { padding-block: var(--space-section); }
.menu-grid__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(.75rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 56rem) { .menu-grid__list { grid-template-columns: repeat(3, 1fr); } }

.tile { margin: 0; position: relative; }
.tile__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper-warm); }
.tile__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.tile:hover .tile__media img { transform: scale(1.04); }

.tile__caption {
    margin-top: .85rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* --------------------------------------------------------------------------
   Full-width band
   -------------------------------------------------------------------------- */

.band {
    position: relative;
    min-height: clamp(20rem, 45vh, 32rem);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to right, rgba(12, 9, 7, .82) 0%, rgba(12, 9, 7, .55) 55%, rgba(12, 9, 7, .3) 100%);
}
.band__content { color: #fff; padding-block: clamp(3rem, 7vw, 5rem); }
.band__heading {
    font-size: clamp(1.85rem, 4.4vw, 3.25rem);
    max-width: 18ch;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about { padding-block: var(--space-section); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
@media (min-width: 56rem) { .about__grid { grid-template-columns: 6fr 5fr; } }

.about__media { aspect-ratio: 4 / 5; overflow: hidden; }
/* Crop from the top. These are photographs of people, shot on a phone in
   portrait, so a centred crop takes the middle of the frame and slices the
   tops of their heads off. */
.about__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about__strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(.75rem, 2vw, 1.5rem);
    list-style: none;
    margin: clamp(2.5rem, 5vw, 4rem) 0 0;
    padding: 0;
}
.about__strip li { aspect-ratio: 4 / 5; overflow: hidden; }
.about__strip img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Enquiry
   -------------------------------------------------------------------------- */

.cta { padding-block: var(--space-section); background: var(--paper-warm); scroll-margin-top: 5rem; }

.enquiry { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

.enquiry__hp {
    position: absolute !important;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

.enquiry__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 40rem) { .enquiry__grid { grid-template-columns: repeat(2, 1fr); } }

.field--wide { grid-column: 1 / -1; }

.field__label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}
.field__required { color: var(--accent); margin-left: .15rem; }

.field__input {
    width: 100%;
    padding: .85rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(154, 51, 36, .12);
}
textarea.field__input { resize: vertical; min-height: 7rem; }

.field__note { margin: .45rem 0 0; font-size: .8125rem; color: var(--ink-mute); }

.enquiry__submit {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}
.enquiry__reassure { margin: 0; font-size: .9375rem; color: var(--ink-soft); }
.enquiry__phone { color: var(--accent); font-weight: 600; text-decoration: none; }

.notice {
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-left: 3px solid;
    border-radius: var(--radius);
    font-size: .9375rem;
}
.notice--success { background: #EEF6EE; border-color: #3F7D46; color: #24512A; }
.notice--error   { background: #FBEFED; border-color: var(--accent); color: var(--accent-dk); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--ink);
    color: rgba(251, 248, 243, .72);
    padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
    font-size: .9375rem;
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 40rem) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; } }

.wordmark--footer { color: #fff; }
.wordmark--footer .wordmark__rule { background: rgba(255, 255, 255, .3); }
.wordmark--footer .wordmark__kicker { color: rgba(255, 255, 255, .6); }

.site-footer__tagline { margin-top: 1rem; max-width: 34ch; }

.site-footer__heading {
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin: 0 0 1rem;
}

.site-footer__list { list-style: none; margin: 0 0 .75rem; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.site-footer__list a { font-weight: 500; color: #fff; }

.site-footer__base {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: .8125rem;
    color: rgba(251, 248, 243, .5);
}
.site-footer__base p { margin: 0; }
.site-footer__credit a { color: rgba(251, 248, 243, .85); font-weight: 500; }
.site-footer__credit a:hover { color: #fff; }
.site-footer__nav { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   Interior pages
   -------------------------------------------------------------------------- */

.page-header { padding-block: clamp(4rem, 9vw, 7rem) clamp(2rem, 4vw, 3rem); }
.page-header__title { font-size: clamp(2.25rem, 5.5vw, 4rem); }

.entry-content { padding-bottom: var(--space-section); }
.entry-content > * { max-width: var(--wrap-narrow); }
.entry-content h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin: 2rem 0 .75rem; }
.entry-content img,
.entry-content .alignwide { max-width: 100%; }
.entry-content ul, .entry-content ol { padding-left: 1.25rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent);
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Scroll reveal. Opt-in, and a no-op when reduced motion is requested.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
    [data-reveal] {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    [data-reveal].is-visible { opacity: 1; transform: none; }
}
