/* ============ Tokens ============ */
:root{
  --ink:#2B1B12;
  --cream:#FBF3DC;
  --cream-2:#F6ECC8;
  --paper:#FFFDF7;
  --bg2:#F6ECC8;
  --maroon:#4A1210;
  --maroon-d:#320B0A;
  --gold:#EFC13A;
  --gold-d:#D9A916;
  --muted:rgba(43,27,18,.62);
  --border:rgba(43,27,18,.14);
  --nav-h:4.5rem;
  --gutter:clamp(1.25rem,5vw,5rem);
  --radius:16px;
  --radius-sm:12px;
  --section-pad:6rem;
  --gap-lg:2rem;
  --gap-md:1.5rem;
  --gap-sm:1rem;
  --font-h:'Fraunces',serif;
  --font-b:'Inter',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-b);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3{font-family:var(--font-h);margin:0 0 0.75rem;line-height:1.1;}
p{margin:0 0 1rem;}
ul{margin:0;padding:0;list-style:none;}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  font-weight:600;
  color:var(--maroon);
  margin-bottom:0.75rem;
}
.center{text-align:center;}
.center.eyebrow{display:block;}

/* ============ Scroll-reveal & floating animation ============ */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
  transition-delay:calc(var(--i,0) * 90ms);
}
.reveal.in-view{opacity:1;transform:translateY(0);}

.hero__title .word{
  display:inline-block;
  opacity:0;
  transform:translateY(28px);
  animation:wordFloat .8s cubic-bezier(.16,.8,.24,1) forwards;
  animation-delay:calc(var(--i,0) * 90ms + .15s);
}
@keyframes wordFloat{to{opacity:1;transform:translateY(0);}}

.float{animation:floaty 6s ease-in-out infinite;}
.leaf--right{animation-delay:1.4s;animation-duration:7s;}
@keyframes floaty{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-14px) rotate(5deg);}
}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1!important;transform:none!important;transition:none!important;}
  .hero__title .word{opacity:1!important;transform:none!important;animation:none!important;}
  .float{animation:none!important;}
  .ticker__track{animation:none!important;}
  .steam{animation:none!important;}
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.85rem 1.6rem;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn--primary{background:var(--maroon);color:var(--cream);}
.btn--primary:hover{background:var(--maroon-d);}
.btn--ghost{background:transparent;border-color:var(--ink);color:var(--ink);}
.btn--ghost:hover{background:var(--gold);color:var(--cream);}
.btn--sm{padding:.55rem 1.1rem;font-size:.85rem;color:var(--cream);}
.btn--lg{padding:1rem 2rem;font-size:1rem;}

.link-arrow{font-weight:600;font-size:.9rem;color:var(--maroon);}
.link-arrow:hover{text-decoration:underline;}

.round-btn{
  width:42px;height:42px;border-radius:50%;
  border:1px solid var(--border);background:var(--paper);color:var(--ink);
  font-size:1.2rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .18s ease, color .18s ease;
}
.round-btn:hover{background:var(--maroon);color:var(--cream);border-color:var(--maroon);}

/* ============ Cookie banner ============ */
.cookie-banner{
  position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:200;
  max-width:640px;margin:0 auto;
  background:var(--ink);color:var(--cream);
  border-radius:var(--radius);
  padding:1.25rem 1.5rem;
  display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between;
  box-shadow:0 20px 50px rgba(0,0,0,.3);
  transform:translateY(150%);
  transition:transform .4s ease;
}
.cookie-banner.show{transform:translateY(0);}
.cookie-banner p{margin:0;font-size:.85rem;flex:1 1 240px;}
.cookie-banner a{text-decoration:underline;}
.cookie-actions{display:flex;gap:.5rem;flex-wrap:wrap;}
.cookie-banner .btn--ghost{border-color:var(--cream);color:var(--cream);}

/* ============ Nav ============ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 var(--gutter);
  background:transparent;
  transition:background .3s ease, box-shadow .3s ease;
}
.nav.scrolled{
  background:rgba(251,243,220,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 var(--border);
}
.nav__logo{
  font-family:var(--font-h);font-size:1.3rem;font-weight:700;color:var(--ink);
  display:flex;align-items:center;gap:.6rem;
}
.nav__logo-mark{
  width:32px;height: 25px;;border-radius:100%;color:var(--gold);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.nav__links{display:flex;align-items:center;gap:2rem;}
.nav__links a:not(.btn){font-size:.9rem;font-weight:500;color:var(--ink);opacity:.85;}
.nav__links a:not(.btn):hover{opacity:1;}
.nav__burger{
  display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem;
}
.nav__burger span{width:22px;height:2px;background:var(--ink);}

@media(max-width:860px){
  .nav__links{
    position:fixed;top:var(--nav-h);left:0;right:0;
    background:var(--cream);
    flex-direction:column;align-items:flex-start;
    padding:1.5rem var(--gutter);gap:1.25rem;
    transform:translateY(-130%);
    transition:transform .3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
  }
  .nav__links.open{transform:translateY(0);}
  .nav__burger{display:flex;}
}

/* ============ Hero ============ */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding:calc(var(--nav-h) + 1.5rem) var(--gutter) 3rem;
  overflow:hidden;
}
.hero__bg{
  position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(circle at 20% 20%, rgba(239,193,58,.22), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(74,18,16,.16), transparent 45%),
    linear-gradient(180deg,var(--cream),var(--cream-2));
}
.leaf{position:absolute;top:6.5rem;z-index:1;opacity:.9;}
.leaf--left{left:clamp(.5rem,4vw,3rem);}
.leaf--right{right:clamp(.5rem,4vw,3rem);transform:scaleX(-1);}
.hero__content{max-width:760px;padding-bottom: 20px;}
.hero__title{font-size:clamp(2.6rem,6vw,4.5rem);}
.hero__title em{font-style:italic;color:var(--maroon);}
.hero__lede{font-size:1.15rem;color:var(--muted);max-width:460px;margin:1rem auto 2rem;}
.hero__cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:1.5rem;}
.hero__trust{font-size:.85rem;color:var(--muted);display:flex;gap:.5rem;justify-content:center;}
.hero__scroll{
  position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);
  font-size:1.4rem;color:var(--maroon);
  animation:bounce 2s infinite;
}
@keyframes bounce{0%,100%{transform:translate(-50%,0);}50%{transform:translate(-50%,8px);}}

.hero__media{
  position:relative;max-width:920px;margin:3rem auto 0;border-radius:var(--radius);
  overflow:hidden;aspect-ratio:16/9;
  background:
    radial-gradient(circle at 30% 20%, rgba(239,193,58,.35), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(74,18,16,.5), transparent 55%),
    linear-gradient(160deg,#EADFC0,#C9A227 60%,#4A1210);
  box-shadow:0 30px 60px -20px rgba(43,27,18,.35);
}
.hero__scene{position:absolute;inset:0;}
.hero__scene video{width:100%;height:100%;object-fit:cover;display:block;}
.steam{
  position:absolute;bottom:38%;width:10px;height:70px;border-radius:50%;
  background:rgba(255,255,255,.55);filter:blur(6px);
  animation:steam 4s ease-in-out infinite;
}
.steam.s1{left:44%;animation-delay:0s;}
.steam.s2{left:50%;animation-delay:1.1s;}
.steam.s3{left:56%;animation-delay:2.2s;}
@keyframes steam{
  0%{transform:translateY(0) scaleX(1);opacity:0;}
  20%{opacity:.7;}
  100%{transform:translateY(-90px) scaleX(1.6);opacity:0;}
}
.hero__scene.paused .steam{animation-play-state:paused;}
.hero__playbtn{
  position:absolute;right:1.25rem;bottom:1.25rem;
  width:42px;height:42px;border-radius:50%;
  background:rgba(251,243,220,.92);color:var(--maroon);
  display:flex;align-items:center;justify-content:center;
  border:none;cursor:pointer;box-shadow:0 8px 20px rgba(0,0,0,.2);
}

/* ============ Quote band ============ */
.quote{
  text-align:center;padding:var(--section-pad) var(--gutter);
  background:var(--maroon);color:var(--cream);
  display:flex;flex-direction:column;align-items:center;
}
.quote__text{
  font-family:var(--font-h);font-size:clamp(1.4rem,3vw,2.1rem);max-width:780px;
  margin:1rem 0 1rem;line-height:1.35;
}
.pill{
  display:inline-flex;background:var(--gold);color:var(--maroon-d);
  padding:.15em .6em;border-radius:999px;font-style:normal;font-weight:600;
}
.quote__sub{color:rgba(251,243,220,.75);font-size:.95rem;max-width:520px;}

/* ============ Ticker ============ */
.ticker{
  background:var(--gold);color:var(--maroon-d);
  overflow:hidden;white-space:nowrap;padding:.9rem 0;font-weight:600;font-size:.85rem;
}
.ticker__track{display:inline-flex;animation:ticker 30s linear infinite;}
.ticker__track span{padding:0 2rem;position:relative;}
.ticker__track span::after{content:"☕";position:absolute;right:-.2rem;opacity:.6;}
@keyframes ticker{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ============ Menu ============ */
.menu{padding:var(--section-pad) var(--gutter);}
.menu__card{
  max-width:1100px;margin:0 auto;background:var(--cream-2);
  border-radius:calc(var(--radius) * 1.5);padding:clamp(2rem,5vw,4rem);
  display:flex;flex-direction:column;align-items:center;
}
.menu .bean-icon--sm{margin-bottom:.5rem;}
.menu__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:var(--gap-md) var(--gap-lg);
  max-width:900px;margin:2rem auto 0;width:100%;
}
.menu-card{display:flex;gap:1rem;align-items:flex-start;padding:1rem 0;border-bottom:1px dashed var(--border);}
.menu-card__icon{
  width:40px;height:40px;border-radius:50%;flex-shrink:0;
  background:var(--maroon);color:var(--gold);
  display:flex;align-items:center;justify-content:center;
}
.menu-card__icon--food{background:var(--gold);color:var(--maroon);}
.menu-card__body{display:flex;flex-direction:column;gap:.15rem;flex:1;}
.menu-card__top{display:flex;justify-content:space-between;gap:1rem;font-weight:600;}
.menu-card__price{color:var(--maroon);white-space:nowrap;}
.menu-card__desc{font-size:.85rem;color:var(--muted);}
@media(max-width:700px){.menu__grid{grid-template-columns:1fr;}}

/* ============ About ============ */
.about{
  display:grid;grid-template-columns:1fr 1fr;gap:var(--gap-lg);
  align-items:center;
  padding:var(--section-pad) var(--gutter);
  max-width:1200px;margin:0 auto;
}
.about__media{
  aspect-ratio:4/5;
  border-radius:var(--radius);
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  background:repeating-linear-gradient(135deg, var(--gold) 0 18px, var(--cream-2) 18px 36px);
}
.event-card__media-img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  border-radius:var(--radius-sm);
  margin-bottom:1rem;
  object-fit:cover;
  object-position:center;
}
.about__facts li{
  position:relative;padding-left:1.5rem;margin-bottom:.5rem;color:var(--muted);
}
.about__facts li::before{content:"";position:absolute;left:0;top:.55em;width:7px;height:7px;border-radius:50%;background:var(--maroon);}
@media(max-width:860px){.about{grid-template-columns:1fr;}}

/* ============ Events ============ */
.events{padding:var(--section-pad) var(--gutter);background:var(--cream-2);}
.events__head{
  display:flex;justify-content:space-between;align-items:flex-end;
  max-width:1200px;margin:0 auto 2.5rem;gap:1rem;flex-wrap:wrap;
}
.events__nav{display:flex;gap:.6rem;}
.events__track{
  display:grid;grid-template-columns:repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap:var(--gap-md);max-width:1320px;margin:0 auto;overflow:visible;
  scrollbar-width:none;
}
.events__track::-webkit-scrollbar{display:none;}
.event-card{
  scroll-snap-align:start;min-width:0;
  background:var(--paper);border-radius:var(--radius);padding:var(--gap-md);
  border:1px solid var(--border);
}
.event-card__media{
  aspect-ratio:4/3;border-radius:var(--radius-sm);margin-bottom:1rem;
  background:linear-gradient(135deg,#4A1210,#EFC13A);
}
.event-card__media--b{background:linear-gradient(135deg,#2B1B12,#4A1210);}
.event-card__media--c{background:linear-gradient(135deg,#EFC13A,#F6ECC8);}
.event-card__date{font-size:.8rem;color:var(--maroon);font-weight:600;margin-bottom:5rem;}
.event-card h3{font-size:1.1rem;}
.event-card p{font-size:.9rem;color:var(--muted);}

.stats{
  display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(4rem,8vw,8rem);
  max-width:1200px;margin:3.5rem auto 0;padding-top:10rem;border-top:1px solid var(--border);
}
.stats__item{text-align:center;}
.stats__item strong{display:block;font-family:var(--font-h);font-size:2rem;color:var(--maroon);}
.stats__counter{display:block;font-family:var(--font-h);font-size:2rem;color:var(--maroon);}
.stats__counter.animate{animation:countUp 2.5s ease-out forwards;}
@keyframes countUp{from{content:'0';}to{content:attr(data-target);}}
.stats__item span{font-size:.85rem;color:var(--muted);}

/* ============ Gallery ============ */
.gallery{padding:var(--section-pad) var(--gutter);max-width:1300px;margin:0 auto;}
.gallery__row{
  display:grid;grid-template-columns:repeat(5,1fr);gap:var(--gap-sm);
  margin-top:3rem;
}
.gallery__item{
  aspect-ratio:3/4;
  border-radius:var(--radius);
  transition:transform .35s ease;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.gallery__item:hover{transform:translateY(-6px);}
.gallery__item--a{background:linear-gradient(160deg,#4A1210,#8a3a2a);}
.gallery__item--b{background:linear-gradient(160deg,#EFC13A,#D9A916);}
.gallery__item--c{background:linear-gradient(160deg,#2B1B12,#4A1210);}
.gallery__item--d{background:linear-gradient(160deg,#F6ECC8,#EFC13A);}
.gallery__item--e{background:linear-gradient(160deg,#8a3a2a,#2B1B12);}
@media(max-width:860px){
  .gallery__row{grid-template-columns:repeat(3,1fr);}
  .gallery__item--d,.gallery__item--e{display:none;}
}
@media(max-width:520px){
  .gallery__row{grid-template-columns:repeat(2,1fr);}
}

/* ============ Testimonials ============ */
.reviews {
  padding: var(--section-pad) var(--gutter);
  background: var(--maroon);
  color: var(--cream);
}

.reviews .eyebrow {
  color: var(--gold);
}

.reviews h2 {
  color: var(--cream);
}

.testimonial {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  max-width: 760px;
  margin: 3rem auto 0;
}

.testimonial__body {
  text-align: center;
  flex: 1;
  
  /* THE NUCLEAR OPTION: Lock every height property */
  height: 220px !important; 
  min-height: 220px !important;
  max-height: 220px !important;
  
  /* Prevent larger quotes from stretching the box */
  overflow: hidden !important; 
  
  /* Keep the text perfectly centered inside the locked box */
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  transition: opacity .25s ease;
}

.testimonial__name {
  font-weight: 600;
  transition: opacity .25s ease;
  margin-top: 0.5rem; /* Adds a clean gap below the quote */
}

.testimonial__role {
  color: rgba(251,243,220,.65);
  font-size: .85rem;
}

.reviews .round-btn {
  background: transparent;
  border-color: rgba(251,243,220,.3);
  color: var(--cream);
  flex-shrink: 0;
}

.reviews .round-btn:hover {
  background: var(--gold);
  color: var(--maroon-d);
  border-color: var(--gold);
}

@media (max-width: 600px) {
  .testimonial {
    gap: .75rem;
  }
  
  .testimonial__body {
    /* Adjusts the fixed size slightly for smaller screens/mobile fonts */
    min-height: 180px; 
  }
  
  .testimonial__quote {
    font-size: 1.05rem;
  }
}

/* ============ Discover coffee ============ */
.discover{
  display:grid;grid-template-columns:1fr 1fr;gap:var(--gap-lg);align-items:center;
  max-width:1200px;margin:0 auto;padding:var(--section-pad) var(--gutter);
}
.discover__media{
  aspect-ratio:4/5;border-radius:var(--radius);
  background:linear-gradient(160deg,#2B1B12,#4A1210 55%,#EFC13A);
}
.discover__text{
  display:flex;flex-direction:column;
}
.feature-list{margin:1.5rem 0;}
.feature-list li{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.5rem;}
.feature-list__icon{
  width:38px;height:38px;border-radius:50%;background:var(--cream-2);color:var(--maroon);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.discover__cta{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;margin-top:1.5rem;}

/* ============ Reservation / contact ============ */
.contact{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:1200px;margin:0 auto;padding:var(--section-pad) var(--gutter);gap:var(--gap-lg);align-items:center;
}
.contact__media{
  aspect-ratio:4/5;border-radius:var(--radius);
  background:linear-gradient(160deg,#4A1210,#2B1B12);
}
.contact__form-wrap{
  display:flex;flex-direction:column;
}
.contact__form{display:flex;flex-direction:column;gap:1.1rem;margin-top:1.5rem;}
.field-row{display:flex;gap:1rem;flex-wrap:wrap;}
.field-row label,.field-full{flex:1 1 160px;display:flex;flex-direction:column;gap:.4rem;font-size:.85rem;font-weight:600;color:var(--muted);}
input,textarea{
  font-family:var(--font-b);font-size:.95rem;
  padding:.7rem .9rem;border:1px solid var(--border);border-radius:8px;
  background:var(--paper);color:var(--ink);
}
input:focus,textarea:focus{outline:2px solid var(--maroon);outline-offset:1px;}
.consent{display:flex;align-items:flex-start;gap:.5rem;font-size:.8rem;color:var(--muted);}
.consent input{width:auto;margin-top:.2rem;}
.consent a{text-decoration:underline;}
.form__status{font-size:.85rem;color:var(--maroon);min-height:1.2em;}

@media(max-width:860px){
  .discover{grid-template-columns:1fr;}
  .contact{grid-template-columns:1fr;}
}

/* ============ Shop / signature items ============ */
.shop{padding:var(--section-pad) var(--gutter);background:var(--cream-2);}
.shop__grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gap-md);
  max-width:1200px;margin:3rem auto 0;
}
.shop-card__media{
  position:relative;aspect-ratio:1;border-radius:var(--radius);margin-bottom:1rem;
  background:linear-gradient(160deg,#4A1210,#8a3a2a);overflow:hidden;
}
.shop-card__media img{
  display:block;width:100%;height:100%;object-fit:cover;object-position:center;
}
.shop-card__media--b{background:linear-gradient(160deg,#2B1B12,#4A1210);}
.shop-card__media--c{background:linear-gradient(160deg,#8a3a2a,#EFC13A);}
.shop-card__media--d{background:linear-gradient(160deg,#EFC13A,#D9A916);}
.shop-card h3{font-size:1rem;}
.shop-card__price{font-weight:600;color:var(--maroon);}
.shop-card__price .was{text-decoration:line-through;color:var(--muted);font-weight:400;margin-right:.4em;}
.badge{
  position:absolute;top:.75rem;left:.75rem;background:var(--maroon);color:var(--cream);
  font-size:.7rem;font-weight:700;padding:.3em .7em;border-radius:999px;
}
.badge--gold{background:var(--gold);color:var(--maroon-d);}
@media(max-width:860px){.shop__grid{grid-template-columns:repeat(2,1fr);}}

/* ============ Location ============ */
.location{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:1200px;margin:0 auto;padding:var(--section-pad) var(--gutter);gap:var(--gap-lg);align-items:center;
}
.location__address{font-size:1.1rem;font-weight:600;}
.hours{border-collapse:collapse;margin:1rem 0 1.5rem;width:100%;max-width:360px;}
.hours td{padding:.5rem 0;border-bottom:1px dashed var(--border);font-size:.9rem;}
.hours td:last-child{text-align:right;color:var(--muted);}
.location__actions{display:flex;gap:1rem;flex-wrap:wrap;}
.location__map iframe{width:100%;height:360px;border:0;border-radius:var(--radius);}
@media(max-width:860px){.location{grid-template-columns:1fr;}}

/* ============ Newsletter ============ */
.newsletter{
  text-align:center;padding:var(--section-pad) var(--gutter);
  background:linear-gradient(135deg,var(--maroon),var(--maroon-d));
  color:var(--cream);
  display:flex;flex-direction:column;align-items:center;
}
.newsletter h2{color:var(--cream);font-size:clamp(1.4rem,3vw,2rem);max-width:640px;margin:0 auto 1.5rem;}
.newsletter__form{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;max-width:420px;margin:0 auto;}
.newsletter__form input{flex:1;min-width:200px;}

/* ============ Footer ============ */
.footer{
  background:var(--cream-2);
  padding:var(--section-pad) var(--gutter) 3rem;
  display:grid;grid-template-columns:1fr 2fr;gap:var(--gap-lg);
  width:100%;
}
.footer__card{border-radius:var(--radius);padding:2.25rem;}
.footer__card--cream{background:var(--paper);border:1px solid var(--border);}
.footer__card--maroon{
  background:var(--maroon);color:var(--cream);position:relative;overflow:hidden;
  display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap-md);
}
.footer__logo{font-family:var(--font-h);font-size:1.3rem;font-weight:700;}
.footer__heading{font-weight:600;color:var(--gold);font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.75rem;}
.footer__card--maroon a{opacity:.85;}
.footer__card--maroon a:hover{opacity:1;text-decoration:underline;}
.footer__card--maroon p{margin-bottom:.5rem;}
.footer__map-deco{position:absolute;top:1.25rem;right:1.25rem;opacity:.9;}
.hours--mini{margin:.75rem 0;max-width:none;}
.hours--mini td{font-size:.85rem;}
.footer__social{display:flex;gap:1rem;margin:.5rem 0 1rem;}
.footer__social a{font-size:.85rem;font-weight:600;color:var(--maroon);}
.footer__credit{font-size:.8rem;color:var(--muted);margin:0;}
.footer__bottom{
  grid-column:1/-1;text-align:center;
  padding-top:1.5rem;margin-top:1rem;font-size:.8rem;color:var(--muted);
}
@media(max-width:900px){
  .footer{grid-template-columns:1fr;}
  .footer__card--maroon{grid-template-columns:1fr 1fr;}
}
@media(max-width:520px){
  .footer__card--maroon{grid-template-columns:1fr;}
}
