/* ============================================================
   WILLOW & RYE — "Neighbourhood table"
   Cosy, hand-made, food-led café aesthetic:
   warm sage green + cream + terracotta/clay,
   Fraunces (soft serif) headings + Nunito (rounded humanist) body
   + Caveat script accents, rounded tactile cards, polaroid frames,
   a subtle linen texture, a food-photo-led hero.
   Design concept by Inxcept.
   ============================================================ */

:root {
  --cream:      #FBF5E9;   /* page background        */
  --cream-2:    #F3E8D3;   /* alternating panel      */
  --card:       #FFFDF7;   /* card surface           */
  --sage:       #5E6E45;   /* deep sage — primary    */
  --sage-2:     #77855A;
  --sage-soft:  #A9B48D;
  --clay:       #C05A34;   /* terracotta accent      */
  --clay-2:     #A4482A;
  --clay-soft:  #DE9576;
  --ink:        #35342A;   /* warm near-black text   */
  --ink-soft:   #6C6551;   /* muted body             */
  --ink-faint:  #928B77;   /* meta / captions        */
  --line:       rgba(53,52,42,0.14);
  --line-strong:rgba(53,52,42,0.26);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;
  --font-script:  'Caveat', 'Segoe Script', cursive;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -24px rgba(53,52,42,0.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.68;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* subtle linen/paper texture */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hide-mobile { display: none; }
@media (min-width: 901px) { .hide-mobile { display: inline-flex; } .hide-desktop { display: none; } }

.skip-link { position: absolute; left: 1rem; top: -3rem; background: var(--sage); color: var(--cream); padding: .6rem 1rem; border-radius: 999px; z-index: 200; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ----- typography ------------------------------------------ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); line-height: 1.08; letter-spacing: -0.01em; }
.script-label { font-family: var(--font-script); font-weight: 700; font-size: 1.7rem; line-height: 1; color: var(--clay); display: inline-block; }
.kinetic { font-family: var(--font-display); }
.stars { color: var(--clay); }

/* ----- buttons — warm pills --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-size: .98rem; font-weight: 700;
  letter-spacing: .01em; padding: .9rem 1.7rem; border-radius: 999px;
  border: 2px solid transparent; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn--primary { background: var(--clay); color: #fff; box-shadow: 0 10px 22px -12px rgba(192,90,52,.9); }
.btn--primary:hover { background: var(--clay-2); transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgba(192,90,52,.9); }
.btn--secondary { background: transparent; color: var(--sage); border-color: var(--sage-soft); }
.btn--secondary:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); transform: translateY(-2px); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ----- top bar --------------------------------------------- */
.top-bar { background: var(--sage); color: var(--cream); text-align: center; }
.top-bar p { padding: .6rem 1rem; font-size: .92rem; font-weight: 600; }
.top-bar__link { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--clay-soft); }
.top-bar__link:hover { text-decoration-color: #fff; }

/* ----- header ---------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,245,233,0); transition: background .35s, box-shadow .35s; }
.site-header.is-scrolled { background: rgba(251,245,233,.9); backdrop-filter: blur(12px); box-shadow: 0 6px 24px -18px rgba(53,52,42,.6); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.site-header__logo { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--ink); }
.site-header__nav ul { display: flex; gap: 2rem; }
.site-header__nav a { font-weight: 700; font-size: 1rem; color: var(--ink-soft); position: relative; padding: .3rem 0; transition: color .25s; }
.site-header__nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--clay); border-radius: 2px; transition: width .28s var(--ease); }
.site-header__nav a:hover { color: var(--ink); }
.site-header__nav a:hover::after { width: 100%; }
.site-header__actions { display: flex; align-items: center; gap: .8rem; }
.site-header__actions .btn { padding: .65rem 1.3rem; }

.menu-toggle { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-toggle__icon, .menu-toggle__icon::before, .menu-toggle__icon::after { content: ""; display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.menu-toggle__icon { position: relative; }
.menu-toggle__icon::before { position: absolute; top: -7px; left: 0; }
.menu-toggle__icon::after { position: absolute; top: 7px; left: 0; }
body.menu-open .menu-toggle__icon { background: transparent; }
body.menu-open .menu-toggle__icon::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle__icon::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--cream); padding: 7rem var(--gutter) 3rem; display: flex; flex-direction: column; gap: 1.6rem; transform: translateX(100%); transition: transform .4s var(--ease); }
.mobile-menu.is-open { transform: none; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); }

/* ============================================================
   HERO — centered masthead over cream + full-width food banner
   ============================================================ */
.hero { background: var(--cream-2); padding-top: clamp(2.5rem, 6vh, 4.5rem); overflow: hidden; }
.hero__inner { text-align: center; max-width: 44rem; margin-inline: auto; padding-bottom: clamp(2.2rem, 5vh, 3.5rem); }
.hero__script { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: .3rem; }
.hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.hero__sub { max-width: 38rem; margin: 1.4rem auto 0; font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.hero__trust { margin-top: 1.6rem; font-weight: 700; color: var(--ink-soft); font-size: .95rem; }
.hero__banner { width: 100%; }
.hero__banner img { width: 100%; height: clamp(280px, 46vh, 540px); object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; box-shadow: var(--shadow); }

/* ----- specials strip (static, replaces marquee) ----------- */
.specials-strip { background: var(--sage); color: var(--cream); }
.specials-strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem 1rem; padding: 1.2rem var(--gutter); }
.specials-strip__lead { font-family: var(--font-script); font-size: 1.5rem; color: #fff; margin-right: .4rem; }
.tag { display: inline-block; padding: .35rem 1rem; border-radius: 999px; background: rgba(251,245,233,.14); border: 1px solid rgba(251,245,233,.3); color: var(--cream); font-weight: 700; font-size: .88rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(4rem, 10vh, 8rem) 0; position: relative; }
.section--alt { background: var(--cream-2); }
.section-heading { max-width: 46rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading .script-label { margin-bottom: .2rem; }
.section-heading h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-top: .2rem; }
.section-heading p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ----- story — two column with polaroid ------------------- */
.story__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 901px) { .story__grid { grid-template-columns: 0.85fr 1.15fr; } }
.story__media { position: relative; background: var(--card); padding: .8rem .8rem 2.2rem; border-radius: var(--radius-sm); box-shadow: var(--shadow); transform: rotate(-2deg); }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }
.story__media::after { content: "hello from the corner"; position: absolute; left: 0; right: 0; bottom: .6rem; text-align: center; font-family: var(--font-script); font-size: 1.3rem; color: var(--ink-soft); }
.story__content .script-label { margin-bottom: .2rem; }
.story__content h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-top: .2rem; }
.story__content p { margin-top: 1.1rem; color: var(--ink-soft); }
.story__content .btn { margin-top: 1.8rem; }

/* ----- menu — grid centrepiece ----------------------------- */
.menu__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 3vw, 2rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 560px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .menu__grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -26px rgba(53,52,42,.55); }
.menu-card__media { overflow: hidden; }
.menu-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease); }
.menu-card:hover .menu-card__media img { transform: scale(1.05); }
.menu-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.menu-card__body h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: 1.3rem; color: var(--ink); }
.menu-card__body h3 span { font-family: var(--font-body); font-weight: 800; color: var(--clay); font-size: 1.05rem; white-space: nowrap; }
.menu-card__body p { margin-top: .5rem; font-size: .95rem; color: var(--ink-soft); }
.menu__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ----- coffee — two column --------------------------------- */
.coffee__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
@media (min-width: 901px) { .coffee__grid { grid-template-columns: 1.1fr 0.9fr; } }
.coffee__content h2 { font-size: clamp(2rem,4.4vw,3.1rem); margin-top: .2rem; }
.coffee__content p { margin-top: 1.1rem; color: var(--ink-soft); }
.coffee__media { background: var(--card); padding: .8rem; border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.coffee__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-sm); }

/* ----- our space — full-width feature ---------------------- */
.space__media { margin-top: clamp(2rem,4vw,3rem); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.space__media img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

/* ----- rails (gallery swipe) — polaroid frames ------------- */
.rail__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.rail__cue { font-weight: 700; color: var(--ink-faint); font-size: .95rem; }
.rail__cue span { color: var(--clay); }
.rail { margin-top: clamp(2rem,4vw,3rem); overflow: hidden; }
.rail__track { display: flex; gap: 1.4rem; overflow-x: auto; padding: .5rem var(--gutter) 1.5rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; }
.rail__track::-webkit-scrollbar { display: none; }
.rail__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery__item { flex: 0 0 auto; width: clamp(14rem, 28vw, 19rem); scroll-snap-align: center; background: var(--card); padding: .7rem .7rem 1.6rem; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.gallery__item:nth-child(odd) { transform: rotate(-1.5deg); }
.gallery__item:nth-child(even) { transform: rotate(1.5deg); }
.gallery__item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }

/* ----- reviews --------------------------------------------- */
.review-banner { display: inline-block; font-weight: 800; color: var(--clay); font-size: 1rem; }
.review-banner .stars { color: var(--clay); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: clamp(2.5rem,5vw,3.5rem) 0; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; background: var(--card); border-radius: var(--radius); padding: 1.6rem 1rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--sage); }
.stat__label { display: block; font-size: .9rem; font-weight: 700; color: var(--ink-soft); margin-top: .4rem; }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem,3vw,1.8rem); }
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
.review-card { background: var(--card); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.review-card .stars { font-size: 1rem; letter-spacing: .1em; }
.review-card p { font-size: 1.12rem; color: var(--ink); margin-top: .8rem; line-height: 1.55; }
.review-card footer { margin-top: 1.2rem; }
.review-card cite { display: block; font-style: normal; font-weight: 800; color: var(--ink); }
.review-card footer span { font-size: .85rem; color: var(--ink-faint); }

/* ----- visit ----------------------------------------------- */
.visit__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3.5rem); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (min-width: 901px) { .visit__grid { grid-template-columns: 1fr 1fr; } }
.visit__details { background: var(--card); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.visit__details h3 { font-family: var(--font-body); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); margin-top: 1.6rem; margin-bottom: .5rem; }
.visit__details h3:first-child { margin-top: 0; }
.visit__details p { color: var(--ink-soft); }
.visit__details a { color: var(--sage); font-weight: 700; }
.visit__details a:hover { color: var(--clay); }
.hours-table { width: 100%; max-width: 24rem; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .45rem 0; border-bottom: 1px dashed var(--line); font-weight: 600; }
.hours-table th { color: var(--ink); }
.hours-table td { color: var(--ink-soft); text-align: right; }
.visit__map { background: var(--card); border: 2px dashed var(--line-strong); border-radius: var(--radius); display: grid; place-items: center; min-height: 320px; text-align: center; padding: 2rem; }
.visit__map p { color: var(--ink-soft); font-weight: 700; }
.visit__map span { font-size: .85rem; color: var(--ink-faint); font-weight: 500; }

/* ----- newsletter ------------------------------------------ */
.newsletter { background: var(--sage); color: var(--cream); }
.newsletter__inner { text-align: center; max-width: 40rem; margin-inline: auto; }
.newsletter .script-label { color: var(--clay-soft); font-size: 1.9rem; }
.newsletter h2 { color: #fff; font-size: clamp(1.9rem,4.2vw,2.9rem); margin-top: .3rem; }
.newsletter p { color: rgba(251,245,233,.85); margin-top: 1rem; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }
.newsletter__form input { flex: 1 1 16rem; max-width: 22rem; background: rgba(251,245,233,.14); border: 1px solid rgba(251,245,233,.35); border-radius: 999px; color: #fff; padding: .9rem 1.3rem; font-family: var(--font-body); font-weight: 600; }
.newsletter__form input::placeholder { color: rgba(251,245,233,.7); }
.newsletter__form input:focus { outline: none; border-color: var(--clay-soft); background: rgba(251,245,233,.2); }
.newsletter__note { margin-top: 1.2rem; font-weight: 700; color: #fff; }

/* ----- booking --------------------------------------------- */
.booking { background: var(--cream-2); }
.booking__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem,5vw,4rem); align-items: start; }
@media (min-width: 901px) { .booking__grid { grid-template-columns: 1fr 1.05fr; } }
.booking__intro .script-label { margin-bottom: .2rem; }
.booking__intro h2 { font-size: clamp(2.2rem,5vw,3.4rem); margin-top: .2rem; }
.booking__intro p { color: var(--ink-soft); margin-top: 1rem; }
.booking__points { margin-top: 1.4rem; display: grid; gap: .7rem; }
.booking__points li { position: relative; padding-left: 1.9rem; color: var(--ink); font-weight: 600; }
.booking__points li::before { content: "☕"; position: absolute; left: 0; }
.booking__alt { margin-top: 1.4rem; font-size: .95rem; }
.booking__alt a { color: var(--clay); font-weight: 700; }
.booking__card { background: var(--card); border-radius: var(--radius); padding: clamp(1.6rem,3.5vw,2.4rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.booking__label { font-weight: 800; color: var(--ink); margin-bottom: 1.2rem; }
.booking__label span { font-weight: 500; color: var(--ink-faint); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: .4rem; font-size: .95rem; }
.field__optional { font-weight: 500; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--cream); border: 1.5px solid var(--line-strong); border-radius: 12px;
  color: var(--ink); padding: .8rem 1rem; font-family: var(--font-body); font-weight: 600; font-size: .98rem; transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); font-weight: 500; }
.field .is-invalid { border-color: var(--clay); background: #f7e6de; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--sage) 50%), linear-gradient(135deg, var(--sage) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.booking__form .btn { margin-top: .5rem; }
.booking__reassure { text-align: center; font-size: .88rem; color: var(--ink-faint); margin-top: .9rem; font-weight: 600; }
.booking__success { text-align: center; padding: 1rem; }
.booking__tick { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--sage); color: #fff; font-size: 1.7rem; margin-bottom: 1.1rem; }
.booking__success h3 { font-size: 1.6rem; color: var(--ink); }
.booking__success p { color: var(--ink-soft); margin-top: .9rem; }
.booking__demo-note { font-size: .88rem; color: var(--ink-faint); font-style: italic; }
.booking__success .btn { margin-top: 1.4rem; }

/* ----- footer ---------------------------------------------- */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(3.5rem,7vh,5rem) 0 2.5rem; }
.site-footer__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 760px) { .site-footer__top { grid-template-columns: 2fr 1fr 1.4fr 1.2fr; } }
.site-footer__logo { font-family: var(--font-display); font-size: 1.8rem; color: #fff; }
.site-footer__tagline { color: rgba(251,245,233,.6); margin-top: .5rem; font-family: var(--font-script); font-size: 1.4rem; }
.site-footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.site-footer__social span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(251,245,233,.25); font-size: .78rem; font-weight: 700; color: var(--cream); }
.site-footer h3 { font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-soft); margin-bottom: 1rem; }
.site-footer__nav a, .site-footer__contact a { color: rgba(251,245,233,.8); display: inline-block; padding: .2rem 0; font-weight: 600; transition: color .25s; }
.site-footer__nav a:hover, .site-footer__contact a:hover { color: #fff; }
.site-footer__contact p, .site-footer__hours p { color: rgba(251,245,233,.8); margin-bottom: .3rem; line-height: 1.7; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(251,245,233,.15); }
.site-footer__bottom p { font-size: .86rem; color: rgba(251,245,233,.6); }
.site-footer__credit strong { color: var(--clay-soft); }

/* ----- sticky mobile CTA ----------------------------------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; padding: .8rem var(--gutter) calc(.8rem + env(safe-area-inset-bottom)); background: rgba(251,245,233,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line); transition: transform .4s var(--ease); }
.sticky-cta.is-hidden { transform: translateY(120%); }
@media (max-width: 900px) { body { padding-bottom: 4.6rem; } }
@media (min-width: 901px) { .sticky-cta { display: none; } }

/* ----- scroll reveal --------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* ----- blur-up images -------------------------------------- */
img[data-blur] { filter: blur(14px); transition: filter .7s var(--ease); }
img[data-blur].is-loaded { filter: none; }
