/* The 5AM Cafe — kinetic concept. Ink night, saffron dawn, cream day. */

@font-face {
  font-family: "Ivy Ora Display";
  src: url("../assets/fonts/IvyOraDisplay-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #201b17;
  --ink-2: #16120f;
  --ink-text: #2b2825;
  --cream: #faf5ef;
  --cream-dim: #e9dcc9;
  --saffron: #d97200;
  --saffron-deep: #8a4a02;
  --ghee: #f0a94b;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Archivo", "Helvetica Neue", sans-serif;
  --accent-italic: "Ivy Ora Display", Georgia, serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: clip;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- schemes: each section owns its ground; the scroll is the day ---- */
.scheme-ink { background: var(--ink); color: var(--cream); }
.scheme-saffron { background: var(--saffron); color: var(--ink-2); }
.scheme-cream { background: var(--cream); color: var(--ink-text); }

section, footer.close { position: relative; }

/* ---- hour marks: the timestamp rail that paces the page ---- */
.hourmark {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 0;
  font-family: var(--body);
}
.hourmark__time {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--saffron);
}
.scheme-saffron .hourmark__time { color: var(--ink-2); }
.hourmark__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.hourmark::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
  align-self: center;
}

/* ---- top bar ---- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem var(--gutter);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(250, 245, 239, 0.12);
}
.topbar__brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.topbar__name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.mark {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: var(--cream);
  -webkit-mask: url("../assets/img/Rameshwaram-Cafe-Logo.svg") center / contain no-repeat;
  mask: url("../assets/img/Rameshwaram-Cafe-Logo.svg") center / contain no-repeat;
}
.topbar__status { display: flex; align-items: center; gap: 1.1rem; font-size: 0.85rem; }
.clock {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--ghee);
  min-width: 5.2ch;
  text-align: right;
}
.status { display: inline-flex; align-items: center; gap: 0.45rem; }
.status__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #58c470;
  box-shadow: 0 0 8px 1px rgba(88, 196, 112, 0.7);
}
.status.is-closed .status__dot { background: #d05b3c; box-shadow: 0 0 8px 1px rgba(208, 91, 60, 0.7); }
.topbar__call { text-decoration: none; font-weight: 600; color: var(--ghee); }
.topbar__call:hover { color: var(--cream); }
@media (max-width: 700px) {
  .topbar__call { display: none; }
  .topbar__name { display: none; }
}

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.btn--saffron { background: var(--saffron); color: #17110a; }
.btn--saffron:hover { background: var(--ghee); }
.btn--ghost { border-color: rgba(250, 245, 239, 0.4); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); }
.btn--ink { background: var(--ink-2); color: var(--cream); }
.btn--ink:hover { background: #000; }

/* ---- 05:00 hero ---- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 3.4rem;
}
.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: 1rem var(--gutter) 2rem;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.6rem, 10.5vw, 5.9rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; }
.hero__line--accent { color: var(--saffron); }
.hero__tag {
  font-family: var(--accent-italic);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--ghee);
  margin-top: 1.2rem;
}
.hero__sub {
  max-width: 46ch;
  margin-top: 1.1rem;
  color: var(--cream-dim);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}
.hero__actions { display: flex; gap: 0.9rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero__media { position: relative; align-self: stretch; display: flex; }
.hero__video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  clip-path: inset(0 round 2px);
  filter: saturate(1.08) contrast(1.03);
}
.hero__media-note {
  position: absolute;
  left: 0.9rem;
  bottom: 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: rgba(22, 18, 15, 0.55);
  padding: 0.3rem 0.6rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-height: 38svh; overflow: hidden; }
  .hero__video { min-height: 0; height: 38svh; }
}

/* ---- marquee ---- */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(250, 245, 239, 0.15);
  border-bottom: 1px solid rgba(250, 245, 239, 0.15);
  padding: 0.85rem 0;
  background: var(--ink-2);
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; }
.marquee__seq {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  padding-right: 0.5rem;
}
.marquee__seq em { font-style: normal; color: var(--saffron); padding: 0 0.7rem; }

/* ---- 06:00 ledger ---- */
.ledger { padding-bottom: clamp(4rem, 9vw, 8rem); }
.ledger__inner {
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 0;
  max-width: 68rem;
}
.ledger__sentence {
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--cream);
  max-width: 24em;
}
.ledger__sentence + .ledger__sentence { margin-top: clamp(1.6rem, 3vw, 2.6rem); }
.bignum {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1;
  vertical-align: -0.08em;
  padding-right: 0.08em;
  color: var(--ghee);
  font-variant-numeric: tabular-nums;
}
.bignum--accent { color: var(--saffron); }

/* ---- 07:00 dish rail ---- */
.rail { overflow: clip; }
.rail__pin { display: flex; flex-direction: column; min-height: 100svh; }
.rail__head { padding: clamp(1.5rem, 3.5vw, 3rem) var(--gutter) 0; }
.rail__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--ink-2);
}
.rail__track {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3.5rem) var(--gutter);
}
/* JS + desktop: the rail becomes a pinned horizontal train */
body.js .rail__track.is-rail { flex-wrap: nowrap; width: max-content; }
.dish {
  width: clamp(280px, 34vw, 420px);
  flex: none;
  display: flex;
  flex-direction: column;
}
.dish__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(63, 28, 0, 0.35));
}
.dish__tags {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--saffron-deep);
}
/* On the saffron ground, brown tints fall below 4.5:1 — deepen to near-ink */
.scheme-saffron .dish__tags,
.scheme-saffron .dish__desc,
.scheme-saffron .board__desc,
.scheme-saffron .formats__note { color: #33200a; }
.dish__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  margin-top: 0.35rem;
  color: var(--ink-2);
}
.dish__desc { margin-top: 0.6rem; color: #3a2410; max-width: 38ch; }
.dish--note {
  justify-content: center;
  background: var(--ink-2);
  color: var(--cream);
  padding: 2rem;
}
.dish--note .dish__desc { color: var(--cream-dim); margin-bottom: 1.4rem; }
.dish__note-big {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
  margin-bottom: 0.7rem;
}
.dish--note .btn--ink { background: var(--saffron); color: #17110a; align-self: flex-start; }
.dish--note .btn--ink:hover { background: var(--ghee); }
@media (max-width: 899px) {
  .rail__pin { min-height: 0; }
  .rail__track {
    width: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .dish { scroll-snap-align: start; width: min(78vw, 340px); }
}

/* ---- 13:00 manifesto ---- */
.manifesto { padding-bottom: clamp(4rem, 9vw, 8rem); }
.manifesto__inner {
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.manifesto__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 8.5vw, 6rem);
  line-height: 0.98;
  color: var(--ink-text);
  position: sticky;
  top: 5.5rem;
  align-self: start;
}
.manifesto__body p { font-size: clamp(1.02rem, 1.5vw, 1.15rem); max-width: 58ch; }
.manifesto__body p + p { margin-top: 1.4rem; }
.manifesto__pull {
  font-family: var(--accent-italic);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem) !important;
  line-height: 1.4;
  color: var(--saffron-deep);
  border-left: 1px solid var(--saffron);
  padding-left: 1.2rem;
}
.manifesto__facts { list-style: none; margin-top: 2rem; }
.manifesto__facts li {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(43, 40, 37, 0.18);
  max-width: 58ch;
}
.manifesto__facts li:last-child { border-bottom: 1px solid rgba(43, 40, 37, 0.18); }
.manifesto__facts strong { color: var(--saffron-deep); }
@media (max-width: 880px) {
  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto__title { position: static; }
}

/* ---- 16:00 voices ticker ---- */
.voices { padding-bottom: clamp(4rem, 8vw, 7rem); overflow: clip; }
.voices__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--ink-text);
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}
.ticker { overflow: hidden; padding: 0.7rem 0; }
.ticker__row { display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 0 var(--gutter); }
/* JS: rows become endless counter-scrolling trains */
body.js .ticker__row { flex-wrap: nowrap; width: max-content; padding: 0 0.7rem; }
.voice {
  width: clamp(300px, 36vw, 460px);
  flex: none;
  background: #fff;
  border: 1px solid rgba(43, 40, 37, 0.14);
  box-shadow: 0 10px 24px rgba(43, 40, 37, 0.08);
  padding: 1.4rem 1.5rem;
}
.voice p { font-size: 0.94rem; line-height: 1.55; color: var(--ink-text); }
.voice cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-deep);
}
.voices__source {
  padding: 2rem var(--gutter) 0;
  font-size: 0.85rem;
  color: rgba(43, 40, 37, 0.75);
}
@media (max-width: 700px) {
  .ticker { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .voice { width: min(80vw, 340px); }
}

/* ---- 20:00 where ---- */
.where { padding-bottom: clamp(4rem, 8vw, 7rem); }
.where__inner { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 0; }
.where__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: 1;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.where__feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.where__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.where__photos img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.where__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.05;
}
.where__meta { margin-top: 0.7rem; color: var(--ghee); font-weight: 600; }
.where__stars { letter-spacing: 0.1em; }
.where__addr { font-style: normal; margin-top: 1rem; color: var(--cream-dim); line-height: 1.7; }
.where__hours { margin-top: 0.8rem; font-weight: 600; }
.where__actions { display: flex; gap: 0.9rem; margin-top: 1.5rem; flex-wrap: wrap; }
.where__others { list-style: none; margin-top: clamp(2.5rem, 5vw, 4rem); }
.where__others li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(250, 245, 239, 0.16);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.where__others li:hover { transform: translateX(0.8rem); }
.where__others li:last-child { border-bottom: 1px solid rgba(250, 245, 239, 0.16); }
.where__oname { font-weight: 600; font-size: 1.05rem; }
.where__ocity { color: var(--cream-dim); font-size: 0.9rem; }
.where__oyear { font-family: var(--display); color: var(--saffron); font-size: 1.05rem; }
.where__note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--cream-dim); max-width: 60ch; }
@media (max-width: 880px) {
  .where__feature { grid-template-columns: 1fr; }
  .where__photos img { min-height: 180px; }
}

/* ---- 01:00 close ---- */
.close { background: var(--ink-2); }
.close__inner { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2.5rem; }
.close__line {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.05;
  max-width: 16em;
}
.close__cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(250, 245, 239, 0.14);
  padding-top: 2rem;
}
.close__franchise { max-width: 52ch; color: var(--cream-dim); }
.close__foot {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.mark--footer {
  width: 7rem;
  height: 5.4rem;
  background: var(--cream);
  -webkit-mask: url("../assets/img/Footer-logo.svg") center / contain no-repeat;
  mask: url("../assets/img/Footer-logo.svg") center / contain no-repeat;
}
.close__links { display: flex; gap: 1.8rem; flex-wrap: wrap; font-size: 0.92rem; }
.close__links a { color: var(--cream-dim); text-decoration: none; }
.close__links a:hover { color: var(--ghee); }
.close__legal {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(233, 220, 201, 0.65);
  border-top: 1px solid rgba(250, 245, 239, 0.1);
  padding-top: 1.2rem;
}

/* ================= multi-page additions ================= */

/* topbar nav */
.topbar__nav { display: flex; gap: 1.4rem; font-size: 0.88rem; }
.topbar__nav a {
  text-decoration: none;
  color: var(--cream-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.topbar__nav a:hover { color: var(--cream); }
.topbar__nav a[aria-current="page"] { color: var(--ghee); border-color: var(--saffron); }
@media (max-width: 860px) {
  .topbar { flex-wrap: wrap; gap: 0.5rem 1rem; }
  .topbar__nav { order: 3; width: 100%; justify-content: flex-start; gap: 1.1rem; overflow-x: auto; }
  .topbar__status { margin-left: auto; }
  .hero { padding-top: 7.5rem; }
}

/* page head (subpages) */
.pagehead { padding-top: 3.4rem; }
.pagehead__inner { padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(3rem, 6vw, 5rem); }
.pagehead__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
}
.pagehead__title .accent { color: var(--saffron); }
.pagehead__sub {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--cream-dim);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.pagehead .hero__actions { margin-top: 1.8rem; }
@media (max-width: 860px) { .pagehead { padding-top: 7.5rem; } }

.btn--outline { border-color: rgba(43, 40, 37, 0.4); color: var(--ink-text); }
.btn--outline:hover { border-color: var(--ink-text); }

/* menu boards */
.board { padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 6rem); }
.board__list { display: flex; flex-direction: column; }
.board__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 3rem) var(--gutter);
  border-top: 1px solid rgba(23, 17, 10, 0.18);
}
.board__item:nth-child(even) { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.board__item:nth-child(even) .board__img { order: 2; }
.board__img {
  width: min(100%, 30rem);
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 24px 32px rgba(63, 28, 0, 0.35));
}
.board__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1;
  margin-top: 0.4rem;
  color: var(--ink-2);
}
.board__desc { margin-top: 0.8rem; max-width: 48ch; color: #3a2410; font-size: clamp(1rem, 1.4vw, 1.1rem); }
@media (max-width: 760px) {
  .board__item, .board__item:nth-child(even) { grid-template-columns: 1fr; }
  .board__item:nth-child(even) .board__img { order: 0; }
}

/* about story rows */
.story { padding-bottom: clamp(3rem, 7vw, 6rem); }
.story__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem) var(--gutter);
  border-top: 1px solid rgba(250, 245, 239, 0.14);
}
.story__year {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--saffron);
  line-height: 1;
}
.story__h {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.05;
}
.story__copy p { margin-top: 0.6rem; color: var(--cream-dim); max-width: 44ch; }
.story__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.story__imgs img { width: 100%; height: clamp(9rem, 16vw, 13rem); object-fit: cover; }
@media (max-width: 860px) {
  .story__row { grid-template-columns: 1fr; gap: 1rem; }
}

/* founders on cream */
.crew { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.crew__card { border: 1px solid rgba(43, 40, 37, 0.18); padding: 1.4rem 1.5rem; background: #fff; }
.crew__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.05;
}
.crew__role {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin: 0.4rem 0 0.7rem;
}
@media (max-width: 700px) { .crew { grid-template-columns: 1fr; } }

/* press + awards on about */
.record-strip { padding-bottom: clamp(3rem, 7vw, 6rem); overflow: clip; }
.mentions { list-style: none; padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 0; }
.mentions__item {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(43, 40, 37, 0.16);
}
.mentions__item:last-child { border-bottom: 1px solid rgba(43, 40, 37, 0.16); }
.mentions__quote {
  font-family: var(--accent-italic);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--saffron-deep);
  line-height: 1.35;
}
.mentions__src {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(43, 40, 37, 0.7);
}
.awards-drift { margin-top: clamp(2rem, 4vw, 3rem); overflow: hidden; }
.awards-drift__row { display: flex; gap: 1.2rem; width: max-content; padding: 0 1.2rem; }
.awards-drift__row img { height: clamp(10rem, 20vw, 15rem); width: auto; }
body:not(.js) .awards-drift { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 700px) {
  .mentions__item { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* contact outposts */
.outposts { padding-bottom: clamp(3rem, 7vw, 6rem); }
.outposts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter) 0;
}
.outpost__blank,
.outpost img {
  width: 100%;
  height: clamp(11rem, 20vw, 15rem);
  object-fit: cover;
}
.outpost__blank { background: var(--ink); display: grid; place-items: center; }
.mark--blank {
  width: 3.4rem;
  height: 3.4rem;
  display: block;
  background: var(--saffron);
  -webkit-mask: url("../assets/img/Rameshwaram-Cafe-Logo.svg") center / contain no-repeat;
  mask: url("../assets/img/Rameshwaram-Cafe-Logo.svg") center / contain no-repeat;
}
.outpost__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-top: 0.8rem;
  color: var(--ink-text);
}
.outpost__meta { font-size: 0.86rem; color: rgba(43, 40, 37, 0.7); margin-top: 0.15rem; }
.outposts__note { padding: 2.2rem var(--gutter) 0; color: rgba(43, 40, 37, 0.85); }
.where__link { color: var(--saffron-deep); font-weight: 600; }
.scheme-ink .where__link { color: var(--ghee); }
@media (max-width: 860px) { .outposts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .outposts__grid { grid-template-columns: 1fr; } }

/* franchise formats */
.formats { padding-bottom: clamp(3rem, 7vw, 6rem); }
.formats__list { list-style: none; counter-reset: fmt; padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 0; }
.formats__item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: baseline;
  padding: clamp(1.2rem, 2.5vw, 2rem) 0;
  border-top: 1px solid rgba(23, 17, 10, 0.2);
}
.formats__item:last-child { border-bottom: 1px solid rgba(23, 17, 10, 0.2); }
.formats__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.02;
  color: var(--ink-2);
}
.formats__note { color: #3a2410; }
@media (max-width: 700px) {
  .formats__item { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* footer columns */
.close__cols { display: flex; flex-direction: column; gap: 0.7rem; }

/* ---- focus & motion safety ---- */
a:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }

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