:root {
  --paper: #f7f1e6;
  --paper-2: #fcf8f0;
  --paper-3: #efe7d6;
  --ink: #2b2620;
  --ink-soft: #4a4339;
  --ink-faint: #5c5446;
  --flame: #db8a2e;
  --flame-deep: #9a4f12;
  --flame-glow: #f2b45c;
  --sage: #5c6e58;
  --sage-deep: #43533f;
  --sky: #6e94a6;
  --rose: #c06b5a;
  --line: rgba(43, 38, 32, 0.14);
  --shadow: 20px 34px 68px -40px rgba(43, 38, 32, 0.32);
  --maxw: 1160px;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --btn: 'Outfit', system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Larger root size for comfortable reading (esp. older eyes). Most type is
     rem-based, so this enlarges the whole page proportionally. */
html {
  scroll-behavior: smooth;
  font-size: 112.5%;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- ACCESSIBILITY ---------- */
/* Visible keyboard focus for every interactive element */
:focus-visible {
  outline: 3px solid var(--flame-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Screen-reader-only text (visually hidden, still announced) */
.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;
}
/* Skip link — hidden until focused, then jumps to the main content */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--flame-deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame-deep);
}

/* ---------- PHOTO PLACEHOLDERS ----------
     TO ADD A REAL PHOTO: replace the whole <figure class="photo ..."> block with:
  <figure class="photo ratio-X"><img src="images/your-photo.jpg" alt="describe it"><figcaption>Your caption</figcaption></figure>
     (keep the same class so it stays sized/styled correctly)                          */
.photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(150deg, var(--paper-2), var(--paper-3));
  border: 1.5px dashed rgba(92, 110, 88, 0.45);
  color: var(--sage-deep);
  text-align: center;
  padding: 24px;
}
.photo .ph svg {
  width: 34px;
  height: 34px;
  stroke: var(--sage);
  opacity: 0.7;
}
.photo .ph b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
}
.photo .ph span {
  font-size: 0.82rem;
  color: var(--ink-faint);
  max-width: 24ch;
}
.photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 14px;
  font-size: 0.84rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(43, 38, 32, 0.72));
  font-weight: 500;
}
.ratio-wide {
  aspect-ratio: 16/10;
}
.ratio-tall {
  aspect-ratio: 3/4;
}
.ratio-sq {
  aspect-ratio: 1;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(247, 241, 230, 0.8);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 241, 230, 0.94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .mark {
  width: 30px;
  height: 38px;
  flex: none;
}
.brand .name b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.06rem;
  display: block;
  line-height: 1.1;
}
.brand .name span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--flame);
  transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  padding: clamp(54px, 7vw, 92px) 0 clamp(56px, 7vw, 90px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--flame-deep);
}
.hero .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-soft);
  margin: 24px 0 30px;
  max-width: 36ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--btn);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--flame-deep);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.hero-photo {
  min-height: 340px;
}

/* ---------- THIN NOTICE ---------- */
.notice {
  background: var(--sage-deep);
  color: var(--paper-2);
}
.notice .wrap {
  padding: 18px 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.96rem;
}
.notice svg {
  width: 20px;
  height: 20px;
  stroke: var(--flame-glow);
  flex: none;
}
.notice b {
  color: var(--flame-glow);
  font-weight: 600;
}
.notice a {
  color: var(--flame-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- SECTIONS ---------- */
section {
  padding: clamp(58px, 7vw, 96px) 0;
}
.sec-head {
  max-width: 56ch;
  margin-bottom: 44px;
}
.sec-head.center {
  margin-inline: auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 14px 0 14px;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* welcome */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-text p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin-bottom: 16px;
  max-width: 48ch;
}
.welcome-text .lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--ink);
  line-height: 1.28;
  margin-bottom: 22px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.pill {
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper-2);
}

/* sunday card */
.alt {
  background: linear-gradient(180deg, var(--paper), var(--paper-3));
}
.sunday {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
/* The right column has no eyebrow; reserve that one line above its heading
   so "Our Sunday" and "Our shared values" line up on desktop. */
.sunday > div:nth-child(2)::before {
  content: '';
  display: block;
  height: calc(0.84rem * 1.65); /* matches one .eyebrow line */
}
@media (max-width: 900px) {
  .sunday > div:nth-child(2)::before {
    display: none;
  }
}
.schedule {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.schedule li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.schedule li:first-child {
  border-top: none;
}
.schedule .when {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--flame-deep);
  flex: none;
  width: 120px;
}
.schedule .what b {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.schedule .what span {
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* values flower */
.flower-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.flower {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.values-img {
  width: min(100%, 430px);
  margin: 0 auto;
}
.values-img img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(43, 38, 32, 0.16));
}
.values-caption {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 36ch;
  margin-inline: auto;
}
.petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 144px;
  margin: -25px 0 0 -72px;
  transform-origin: 72px 25px;
}
.petal .chip {
  --c: var(--sage);
  background: var(--paper-2);
  border: 1.5px solid color-mix(in srgb, var(--c) 55%, transparent);
  border-radius: 100px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: 0 8px 20px -14px rgba(43, 38, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: rotate(var(--unrot));
  transition: transform 0.25s;
}
.petal .chip .d {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c);
  flex: none;
}
.petal:hover .chip {
  transform: rotate(var(--unrot)) translateY(-3px);
}
.petal.p0 {
  transform: rotate(0);
}
.petal.p0 .chip {
  --c: var(--flame);
  --unrot: 0deg;
}
.petal.p1 {
  transform: rotate(60deg);
}
.petal.p1 .chip {
  --c: var(--rose);
  --unrot: -60deg;
}
.petal.p2 {
  transform: rotate(120deg);
}
.petal.p2 .chip {
  --c: #7e5ea8;
  --unrot: -120deg;
}
.petal.p3 {
  transform: rotate(180deg);
}
.petal.p3 .chip {
  --c: var(--sky);
  --unrot: -180deg;
}
.petal.p4 {
  transform: rotate(240deg);
}
.petal.p4 .chip {
  --c: var(--sage);
  --unrot: -240deg;
}
.petal.p5 {
  transform: rotate(300deg);
}
.petal.p5 .chip {
  --c: #c9a227;
  --unrot: -300deg;
}
.flower-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  margin: -56px 0 0 -56px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 40%,
    var(--flame-glow),
    var(--flame-deep)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 9px rgba(219, 138, 46, 0.13);
  z-index: 3;
}
.flower-core .lab {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
}
.flower-core .sm {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}
.values-text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  margin-bottom: 14px;
  max-width: 46ch;
}
.vlist {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.vlist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.vlist .vd {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
  margin-top: 7px;
}
.vlist span {
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.vlist b {
  font-weight: 600;
  color: var(--ink);
}

/* generic card grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Highlighted "featured" card — lighter interior + soft rose glow */
.card-featured {
  background: linear-gradient(
    170deg,
    color-mix(in srgb, var(--rose) 12%, var(--paper-2)),
    var(--paper-2) 72%
  );
  border-color: color-mix(in srgb, var(--rose) 45%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--rose) 28%, transparent),
    0 16px 40px -20px color-mix(in srgb, var(--rose) 65%, transparent);
}
.card-featured .tag {
  color: var(--rose);
}
.card .tag {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--flame-deep);
  margin-bottom: 12px;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 14px;
}
.card .when {
  margin-top: auto;
  font-size: 0.92rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.card .when svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
}

/* food pantry feature */
.pantry {
  background: var(--sage-deep);
  color: var(--paper-2);
}
.pantry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pantry .eyebrow {
  color: var(--flame-glow);
}
.pantry h2 {
  color: var(--paper-2);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 14px 0 18px;
}
.pantry p {
  color: rgba(247, 241, 230, 0.94);
  font-size: 1.08rem;
  margin-bottom: 16px;
  max-width: 46ch;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 241, 230, 0.2);
  border-bottom: 1px solid rgba(247, 241, 230, 0.2);
}
.stat b {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--flame-glow);
  line-height: 1;
}
.stat span {
  color: rgba(247, 241, 230, 0.85);
}

/* rentals / use the space */
.use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.use {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.use .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(219, 138, 46, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.use .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--flame-deep);
}
.use h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.use h3 .price {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage);
  background: rgba(92, 110, 88, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}
.use p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.use ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
.use li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.use li svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage);
  flex: none;
  margin-top: 3px;
}

/* give / donations */
.give-addr {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--ink);
  margin-top: 4px;
}
.give-note {
  text-align: center;
  max-width: 60ch;
  margin: 38px auto 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

/* history */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.history-text p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin-bottom: 16px;
  max-width: 50ch;
}
.history-text .lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* contact */
.contact {
  background: var(--ink);
  color: var(--paper);
}
.contact .sec-head h2 {
  color: var(--paper);
}
.contact .sec-head p {
  color: rgba(247, 241, 230, 0.86);
}
.contact .eyebrow {
  color: var(--flame-glow);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(247, 241, 230, 0.16);
}
.info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.info-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(242, 180, 92, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.info-row .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--flame-glow);
}
.info-row h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.82);
  margin-bottom: 5px;
  font-weight: 700;
}
.info-row p {
  color: var(--paper);
  font-size: 1.04rem;
}
.info-row a {
  color: var(--flame-glow);
}
.info-row a:hover {
  text-decoration: underline;
}

/* footer */
footer {
  background: var(--paper-3);
  padding: 58px 0 34px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.foot-brand .mark {
  width: 30px;
  height: 38px;
}
.foot-brand b {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}
.foot-about p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 40ch;
}
.foot-col h5 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 700;
}
.foot-col a,
.foot-col p {
  display: block;
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--flame-deep);
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.foot-bottom a {
  color: var(--ink-soft);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .welcome,
  .sunday,
  .flower-wrap,
  .pantry-grid,
  .history-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-3,
  .grid-2,
  .use-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    order: -1;
  }
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper-2);
    padding: 22px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px -20px rgba(43, 38, 32, 0.3);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .foot-about {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .petal {
    width: 118px;
    margin: -22px 0 0 -59px;
    transform-origin: 59px 22px;
  }
  .petal .chip {
    font-size: 0.76rem;
    padding: 8px 6px;
  }
  .flower-core {
    width: 92px;
    height: 92px;
    margin: -46px 0 0 -46px;
  }
  .flower-core .lab {
    font-size: 1.15rem;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .schedule .when {
    width: 92px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
