/* sections + components */

/* about */
.about-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-text p { font-size: 18px; max-width: 520px; }
.about-text p + p { margin-top: 14px; }
.about-quote {
  margin-top: 32px; padding: 24px 28px;
  border-left: 3px solid var(--red);
  background: rgba(255, 250, 235, 0.6);
  border-radius: 0 14px 14px 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 22px; color: var(--ink);
}
.about-quote .who { display: block; margin-top: 10px; font-style: normal; font-family: "Manrope"; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--red); }

.about-visual {
  position: relative; aspect-ratio: 4 / 5; border-radius: 22px;
  background: var(--cream-light); overflow: hidden; box-shadow: var(--shadow-2);
  border: 1px solid rgba(43,26,19,.08);
}
.about-visual img { width: 100%; height: 100%; }
/* est. stamp removed */
.cup-stamp {
  position: absolute; top: -36px; right: -36px;
  width: 160px; opacity: .25; transform: rotate(12deg);
  pointer-events: none;
}

/* stat strip */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 64px; padding: 28px 32px;
  background: rgba(255, 250, 235, 0.55);
  border-radius: 18px;
  border: 1px solid rgba(43,26,19,.08);
}
.stats .stat { text-align: center; }
.stats .num { font-family: "Cormorant Garamond", serif; font-size: 38px; color: var(--red); font-weight: 700; }
.stats .label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 700px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* menu */
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px){ .menu-grid { grid-template-columns: 1fr; gap: 40px; } }
.menu-card {
  position: relative; display: block;
  aspect-ratio: 3 / 4; border-radius: 22px; overflow: hidden;
  background: linear-gradient(155deg, var(--cream-light) 0%, var(--cream-deep) 100%);
  box-shadow: var(--shadow-2);
  text-decoration: none; color: inherit;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(43,26,19,.08);
}
.menu-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 30px 80px rgba(43,26,19,.18); }
.menu-card img.cover {
  position: absolute; inset: 12% 8% 22%; width: 84%; height: auto; margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(192,35,27,.18));
}
.menu-card .badge {
  position: absolute; top: 22px; left: 22px;
  background: #fff; color: var(--red);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: .2em; font-weight: 700;
}
.menu-card .cta {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--red); color: #fff;
  border-radius: 14px; font-size: 14px; font-weight: 600; letter-spacing: .04em;
}
.menu-card .cta svg { transition: transform .25s; }
.menu-card:hover .cta svg { transform: translateX(6px); }
.menu-card .corner {
  position: absolute; top: 22px; right: 22px;
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 17px;
  color: var(--ink-soft);
}

.menu-highlights { }
.menu-highlights h2 { margin-bottom: 16px; }
.menu-highlights .lead { margin-bottom: 28px; max-width: 480px; }
.dish-list { list-style: none; padding: 0; margin: 0; }
.dish {
  display: flex; align-items: baseline; gap: 16px; padding: 16px 0;
  border-bottom: 1px dashed rgba(43,26,19,.18);
  transition: padding-left .25s ease;
}
.dish:hover { padding-left: 8px; }
.dish:hover .dish-name { color: var(--red); }
.dish-name {
  font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600;
  transition: color .2s ease;
}
.dish-desc { color: var(--ink-mute); font-size: 13px; font-style: italic; }
.dish-dots { flex: 1; border-bottom: 1px dotted rgba(43,26,19,.3); transform: translateY(-4px); }
.dish-price { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--red); font-weight: 600; white-space: nowrap; }

/* gallery */
.gallery-wrap { position: relative; }
.gallery-rail {
  display: flex; gap: 20px; padding: 8px 4px 28px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 auto; width: min(72vw, 420px);
  aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden;
  scroll-snap-align: start;
  background: var(--cream-light);
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(43,26,19,.08);
  transition: transform .35s ease;
  position: relative;
}
.gallery-card.tall { aspect-ratio: 3 / 5; }
.gallery-card.wide { aspect-ratio: 5 / 5; }
.gallery-card img { width:100%; height:100%; display:block; }
.gallery-card .gcap {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(43, 26, 19, 0.72); color: var(--cream-light);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-nav {
  position: absolute; top: -78px; right: 0;
  display: flex; gap: 10px;
}
.gallery-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-light); border: 1px solid rgba(43,26,19,.12);
  cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease; color: var(--ink);
}
.gallery-nav button:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.gallery-nav button:disabled { opacity: .35; cursor: not-allowed; transform: none; background: var(--cream-light); color: var(--ink); border-color: rgba(43,26,19,.12); }

/* events */
.events-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr; gap: 40px; } }
.event-list { list-style: none; padding: 0; margin: 24px 0 0; }
.event {
  display: grid; grid-template-columns: 88px 1fr auto; gap: 22px; align-items: center;
  padding: 22px 4px;
  border-top: 1px solid rgba(43,26,19,.12);
  cursor: pointer; transition: padding .25s, background .25s;
}
.event:last-child { border-bottom: 1px solid rgba(43,26,19,.12); }
.event:hover { padding-left: 14px; }
.event .date {
  text-align: center; padding: 8px 4px; border-radius: 12px;
  background: var(--red); color: #fff;
}
.event .date .d { font-family: "Cormorant Garamond"; font-weight: 700; font-size: 28px; line-height: 1; }
.event .date .m { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; margin-top: 4px; }
.event.past .date { background: var(--cream-deep); color: var(--ink-soft); }
.event .name { font-family: "Cormorant Garamond"; font-size: 22px; font-weight: 600; color: var(--ink); }
.event .meta { font-size: 13px; color: var(--ink-mute); margin-top: 2px; }
.event .pill {
  background: rgba(230,51,41,.12); color: var(--red);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase;
}
.event.past .pill { background: rgba(43,26,19,.08); color: var(--ink-mute); }

.events-aside {
  background: linear-gradient(160deg, var(--ink) 0%, #3d281e 100%);
  color: var(--cream-light);
  border-radius: 22px; padding: 40px;
  position: relative; overflow: hidden;
}
.events-aside::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/beans-bg.png") repeat;
  background-size: 380px;
  opacity: .08; mix-blend-mode: screen;
}
.events-aside h3 { color: var(--cream-light); font-size: 30px; margin-bottom: 14px; }
.events-aside p { color: rgba(250, 243, 226, .76); font-size: 16px; }
.events-aside .btn-primary { margin-top: 20px; }
.events-aside .splash-img {
  position: absolute; right: -40px; bottom: -50px;
  width: 240px; opacity: .85;
}

/* place / lokal */
.place-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
  margin-top: 40px;
}
.place-collage > * {
  border-radius: 16px; overflow: hidden;
  background: var(--cream-light);
  border: 1px solid rgba(43,26,19,.08);
  box-shadow: var(--shadow-1);
  position: relative;
}
.place-collage > * img { width:100%; height:100%; display:block; }
.tile-a { grid-column: span 4; grid-row: span 2; }
.tile-b { grid-column: span 2; grid-row: span 1; }
.tile-c { grid-column: span 2; grid-row: span 1; }
.tile-d { grid-column: span 3; grid-row: span 2; }
.tile-e { grid-column: span 3; grid-row: span 2; }
@media (max-width: 800px) {
  .place-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .tile-a, .tile-d, .tile-e, .tile-b, .tile-c { grid-column: span 2; grid-row: span 1; }
}

/* loyalty */
.loyalty {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: linear-gradient(140deg, var(--red) 0%, #b41d14 100%);
  color: #fff;
  border-radius: 28px; padding: 64px;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(192,35,27,.25);
}
.loyalty::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/beans-bg.png") repeat;
  background-size: 360px; opacity: .12; mix-blend-mode: screen;
}
.loyalty > * { position: relative; z-index: 1; }
.loyalty .eyebrow { color: #fdd; }
.loyalty .eyebrow::before { background: #fdd; }
.loyalty h2 { color: #fff; }
.loyalty p { color: rgba(255,255,255,.85); font-size: 18px; }
.loyalty .benefits { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.loyalty .benefits li { display: flex; gap: 12px; align-items: center; font-size: 16px; }
.loyalty .benefits .check {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: var(--red); display: grid; place-items: center;
  font-weight: 700;
}
.loyalty .signup {
  display: flex; gap: 0; max-width: 420px;
  background: rgba(255,255,255,.12); padding: 6px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
}
.loyalty .signup input {
  flex: 1; background: transparent; border: none; padding: 10px 18px;
  color: #fff; font-size: 14px; outline: none;
  font-family: "Manrope", sans-serif;
}
.loyalty .signup input::placeholder { color: rgba(255,255,255,.6); }
.loyalty .signup button {
  background: #fff; color: var(--red); border: none;
  padding: 12px 22px; border-radius: 999px; font-weight: 700;
  font-size: 13px; letter-spacing: .04em; cursor: pointer;
  transition: transform .2s;
}
.loyalty .signup button:hover { transform: translateY(-1px); }
.loyalty-card-art {
  position: relative;
  aspect-ratio: 1.6 / 1; max-width: 440px; margin: 0 auto;
  background: linear-gradient(140deg, #fff 0%, #faf3e2 100%);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  transform: rotate(-4deg);
  color: var(--ink);
}
.loyalty-card-art .lc-top { display: flex; justify-content: space-between; align-items: start;}
.loyalty-card-art .lc-top img { width: 56px; height: 56px; }
.loyalty-card-art .lc-name { font-family: "Cormorant Garamond"; font-size: 20px; font-weight: 700; }
.loyalty-card-art .lc-name span { display: block; font-size: 11px; letter-spacing: .22em; color: var(--ink-mute); margin-top: 2px; font-family: "Manrope"; font-weight: 600;}
.loyalty-card-art .stamps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 22px;
}
.loyalty-card-art .stamp {
  aspect-ratio: 1; border: 1.5px dashed var(--red); border-radius: 50%;
  display: grid; place-items: center; color: var(--red);
}
.loyalty-card-art .stamp.filled { background: var(--red); border-style: solid; color: #fff;}
.loyalty-card-art .lc-foot { margin-top: 14px; font-size: 11px; letter-spacing: .18em; color: var(--ink-mute); text-transform: uppercase; }

@media (max-width: 900px){
  .loyalty { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
  .loyalty-card-art { transform: rotate(-2deg); }
}

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.info-card {
  background: rgba(255, 250, 235, 0.6);
  border: 1px solid rgba(43,26,19,.1);
  border-radius: 20px; padding: 36px;
}
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px dashed rgba(43,26,19,.18);
  font-size: 16px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ink); font-weight: 500; }
.hours-list .today { color: var(--red); font-weight: 700; }
.hours-list .time { font-family: "Cormorant Garamond"; font-size: 19px; color: var(--ink-soft); }
.now-open {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: rgba(0, 128, 0, 0.08); color: #1f7a3a;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.now-open .dot { width: 8px; height: 8px; border-radius: 50%; background: #1f7a3a; box-shadow: 0 0 0 0 rgba(31,122,58,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,122,58,.4); } 100% { box-shadow: 0 0 0 14px rgba(31,122,58,0); } }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 16px; align-items: start; padding: 14px 0; border-bottom: 1px dashed rgba(43,26,19,.18); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(230,51,41,.12); color: var(--red);
  display: grid; place-items: center;
}
.contact-list .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.contact-list .val { font-family: "Cormorant Garamond"; font-size: 19px; color: var(--ink); font-weight: 600; display:block; margin-top: 2px;}
.contact-list .val a { text-decoration: none; }
.contact-list .val a:hover { color: var(--red); }

.map {
  margin-top: 40px;
  aspect-ratio: 16 / 6;
  border-radius: 20px; overflow: hidden;
  background: var(--cream-light);
  border: 1px solid rgba(43,26,19,.08);
  position: relative;
  display: grid; place-items: center;
}
.map svg { width: 100%; height: 100%; display: block; }
.map .pin {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 10px 16px 10px 12px; border-radius: 999px;
  box-shadow: var(--shadow-2);
  font-size: 13px; font-weight: 600;
}
.map .pin .red {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); display: grid; place-items: center;
  color: #fff;
}

/* footer */
.footer {
  background: var(--ink); color: rgba(250,243,226,.72);
  padding: 80px 0 32px; margin-top: 80px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/beans-bg.png") repeat;
  background-size: 400px; opacity: .06; mix-blend-mode: screen;
}
.footer > * { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  font-family: "Manrope"; font-size: 12px; letter-spacing: .22em;
  color: #fff; text-transform: uppercase; margin: 0 0 16px;
}
.footer-brand img { width: 80px; }
.footer-brand .ftxt { font-family: "Cormorant Garamond"; font-size: 26px; color: #fff; margin-top: 8px; font-weight: 700;}
.footer-brand .ftxt .accent { color: var(--red-soft); }
.footer-brand p { color: rgba(250,243,226,.55); font-size: 14px; max-width: 280px; margin-top: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { text-decoration: none; color: rgba(250,243,226,.72); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid rgba(250,243,226,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(250,243,226,.5);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(250,243,226,.08); transition: background .2s, transform .2s;
  text-decoration: none; color: rgba(250,243,226,.7);
}
.socials a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
