/* Coffee Luxe — Premium Coffee Theme (Bootstrap-friendly)
   Dark + warm tones, glassmorphism, micro-interactions, CSS-only animations.
*/

:root{
  /* Brand palette (requested) */
  --coffee-primary:#E5DBBB; /* primary */
  --coffee-accent:#C59C6D;
  --coffee-dark:#59371E;

  /* RGB helpers (for rgba()) */
  --coffee-primary-rgb: 229,219,187;
  --coffee-accent-rgb: 197,156,109;
  --coffee-dark-rgb: 89,55,30;

  /* Dark theme steps derived from coffee-dark */
  --coffee-950:#1a120c;
  --coffee-900:#21150d;
  --coffee-850:#2a1a10;
  --coffee-800:#352012;
  --coffee-700:#402715;
  --coffee-600:#4a2e19;

  /* Backward-compat aliases used throughout the theme */
  --coffee-brown: var(--coffee-dark);
  --coffee-caramel: var(--coffee-accent);
  /* Used for icon + highlight accents */
  --coffee-gold: var(--coffee-accent);
  --coffee-cream: var(--coffee-primary);

  /* Light background => dark text */
  --text: rgba(var(--coffee-dark-rgb), .92);
  --text-dim: rgba(var(--coffee-dark-rgb), .68);

  /* Glass surfaces tuned for light background */
  --surface: rgba(255,255,255,.55);
  --surface-2: rgba(255,255,255,.70);
  --stroke: rgba(var(--coffee-accent-rgb), .30);
  --stroke-2: rgba(var(--coffee-dark-rgb), .12);

  --radius:18px;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --shadow-soft:0 10px 30px rgba(0,0,0,.35);

  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

/* Prevent accidental horizontal scroll on small screens (iOS/Android)
   - Some browsers ignore body overflow-x unless html is also constrained
*/
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip){
  html, body{ overflow-x: clip; }
}

/* Custom cursor (coffee) */
html, body{
  cursor: url('/images/cursor/coffee-cursor-48.png') 8 8, url('/images/cursor/coffee-cursor.png') 8 8, auto;
}
a, button, [role="button"], input[type="button"], input[type="submit"], input[type="reset"], label, select, summary{
  cursor: pointer;
}

body.coffee-theme{
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(1100px 650px at 10% 10%, rgba(var(--coffee-accent-rgb), .20), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(var(--coffee-dark-rgb), .10), transparent 55%),
    radial-gradient(900px 650px at 45% 110%, rgba(var(--coffee-accent-rgb), .14), transparent 55%),
    linear-gradient(180deg,
      rgba(var(--coffee-primary-rgb), 1) 0%,
      rgba(var(--coffee-primary-rgb), .96) 55%,
      rgba(var(--coffee-accent-rgb), .22) 100%);
  overflow-x:hidden;
}

/* Keyboard accessibility */
.skip-link{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(var(--coffee-accent-rgb), .35);
  color: rgba(var(--coffee-dark-rgb), .92);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transform: translateY(-140%);
  transition: transform .2s var(--ease);
}
.skip-link:focus{
  transform: translateY(0);
}

:where(a,button,[role="button"],input,select,textarea,summary):focus-visible{
  outline: 3px solid rgba(var(--coffee-accent-rgb), .55);
  outline-offset: 3px;
}

/* Font switching for Arabic */
html[dir="rtl"] body.coffee-theme{font-family:'Cairo', system-ui, -apple-system, Segoe UI, sans-serif}
html[dir="ltr"] body.coffee-theme{font-family:'Poppins', system-ui, -apple-system, Segoe UI, sans-serif}

/* Ensure content isn't hidden under fixed navbar */
.main-content{padding-top:58px}

/* Links */
a{color:inherit;text-decoration:none}
a:hover{color:inherit}

/* ---------------------------
   Site Loader (2s, no JS)
   - Shows on every page load
   - Auto-hides after 2 seconds
   - Pure CSS animations (steam + coffee fill + bean)
---------------------------- */
.site-loader{
  --loader-coffee: #6F4E37;
  --loader-cream: #F5E6D3;
  --loader-bg: rgba(11,9,7,.55);
  --loader-shadow: rgba(0,0,0,.28);

  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(700px 420px at 30% 25%, rgba(245,230,211,.10), transparent 60%),
    radial-gradient(600px 380px at 70% 15%, rgba(111,78,55,.18), transparent 55%),
    linear-gradient(180deg, rgba(11,9,7,.62) 0%, rgba(11,9,7,.72) 100%);
  /* Opaque base so the page never shows through (must come after background shorthand) */
  background-color: #0b0907;

  animation: siteLoaderAutoHide 2s var(--ease) forwards;
}

.site-loader__panel{
  width: min(560px, 92vw);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,230,211,.18);
  box-shadow: 0 24px 70px var(--loader-shadow);
  backdrop-filter: blur(10px);
}

.site-loader__scene{
  --scene: clamp(200px, 55vw, 320px);
  --cup-w: calc(var(--scene) * 0.42);
  --cup-h: calc(var(--scene) * 0.30);

  width: var(--scene);
  max-width: 100%;
  height: calc(var(--scene) * 0.62);
  position: relative;
  display: grid;
  place-items: end center;
  isolation: isolate;
}

.site-loader__text{
  margin: 0;
  letter-spacing: .2px;
  color: rgba(245,230,211,.88);
  font-weight: 650;
  font-size: 14px;
}

@keyframes siteLoaderAutoHide{
  0%, 80%{opacity: 1; transform: translateY(0)}
  100%{opacity: 0; transform: translateY(-8px); pointer-events: none; visibility: hidden}
}

/* Steam */
.site-loader__steam{
  position: absolute;
  bottom: calc(var(--cup-h) + 18px);
  left: 50%;
  width: calc(var(--cup-w) * 0.9);
  height: calc(var(--cup-h) * 1.25);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  filter: blur(.1px);
}
.site-loader__steam::before,
.site-loader__steam::after{
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .85;
}
.site-loader__steam::before{
  background-image:
    radial-gradient(circle at 18% 72%, rgba(245,230,211,.45) 0 10%, transparent 11% 100%),
    radial-gradient(circle at 46% 56%, rgba(245,230,211,.36) 0 9%,  transparent 10% 100%),
    radial-gradient(circle at 74% 70%, rgba(245,230,211,.40) 0 11%, transparent 12% 100%),
    radial-gradient(circle at 62% 38%, rgba(245,230,211,.26) 0 8%,  transparent 9% 100%),
    radial-gradient(circle at 30% 32%, rgba(245,230,211,.22) 0 7%,  transparent 8% 100%);
}
.site-loader__steam::after{
  background-image:
    radial-gradient(50% 40% at 50% 85%, rgba(245,230,211,.20), transparent 70%),
    radial-gradient(45% 35% at 50% 30%, rgba(245,230,211,.14), transparent 70%);
}
.site-loader__steam--1{ animation: siteSteamRise 2.8s var(--ease) infinite; }
.site-loader__steam--2{ animation: siteSteamRise 2.94s var(--ease) infinite; opacity: .7; transform: translateX(-50%) scale(.92); }
.site-loader__steam--3{ animation: siteSteamRise 3.14s var(--ease) infinite; opacity: .55; transform: translateX(-50%) scale(.85); }
@keyframes siteSteamRise{
  0%{transform: translateX(-50%) translateY(10px) scale(.92); opacity: 0;}
  12%{opacity: .85;}
  50%{transform: translateX(-50%) translateY(-10px) scale(1); opacity: .78;}
  100%{transform: translateX(-50%) translateY(-34px) scale(1.06); opacity: 0;}
}

/* Cup */
.site-loader__cup{
  width: var(--cup-w);
  height: var(--cup-h);
  position: relative;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(245,230,211,.92) 0%, rgba(245,230,211,.70) 100%);
  border: 1px solid rgba(111,78,55,.20);
  box-shadow: 0 18px 42px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.35);
  z-index: 2;
}
.site-loader__rim{
  position: absolute;
  left: 50%;
  top: -10px;
  width: 100%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245,230,211,.95), rgba(245,230,211,.75));
  border: 1px solid rgba(111,78,55,.18);
}
.site-loader__coffee{
  position: absolute;
  left: clamp(8px, calc(var(--cup-w) * 0.07), 14px);
  right: clamp(8px, calc(var(--cup-w) * 0.07), 14px);
  top: clamp(6px, calc(var(--cup-h) * 0.10), 12px);
  bottom: clamp(8px, calc(var(--cup-h) * 0.12), 14px);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
.site-loader__coffee::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: linear-gradient(180deg, rgba(111,78,55,.92) 0%, rgba(84,57,41,.98) 100%);
  animation: siteCoffeeFill 2.8s var(--ease) infinite;
  box-shadow: inset 0 8px 18px rgba(0,0,0,.22);
}
.site-loader__coffee::after{
  content: "";
  position: absolute;
  left: -30%;
  width: 40%;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(245,230,211,.16), transparent);
  transform: skewX(-12deg);
  animation: siteCoffeeShine 2.8s linear infinite;
  opacity: .55;
}
.site-loader__foam{
  position: absolute;
  left: clamp(8px, calc(var(--cup-w) * 0.07), 14px);
  right: clamp(8px, calc(var(--cup-w) * 0.07), 14px);
  top: clamp(1px, calc(var(--cup-h) * 0.02), 4px);
  height: clamp(14px, calc(var(--cup-h) * 0.20), 18px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 60%, rgba(245,230,211,.55), transparent 60%),
    radial-gradient(circle at 55% 40%, rgba(245,230,211,.45), transparent 62%),
    radial-gradient(circle at 82% 70%, rgba(245,230,211,.50), transparent 65%);
  filter: blur(.3px);
  opacity: 0;
  animation: siteFoamPop 2.8s var(--ease) infinite;
}
@keyframes siteCoffeeFill{
  0%,12%{height: 0%;}
  55%,80%{height: 82%;}
  100%{height: 0%;}
}
@keyframes siteCoffeeShine{
  0%{transform: translateX(-20%) skewX(-12deg); opacity: 0;}
  25%{opacity: .55;}
  55%{opacity: .35;}
  100%{transform: translateX(240%) skewX(-12deg); opacity: 0;}
}
@keyframes siteFoamPop{
  0%,18%{opacity: 0; transform: translateY(2px) scale(.98);}
  45%{opacity: .9; transform: translateY(0) scale(1);}
  80%{opacity: .55;}
  100%{opacity: 0;}
}

.site-loader__shine{
  position: absolute;
  inset: 10px auto 12px 14px;
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.45), transparent);
  opacity: .6;
}

.site-loader__handle{
  position: absolute;
  right: calc(var(--cup-w) * -0.26);
  top: calc(var(--cup-h) * 0.04);
  width: calc(var(--cup-w) * 0.56);
  height: calc(var(--cup-w) * 0.56);
  border-radius: 999px;
  border-width: clamp(7px, calc(var(--cup-w) * 0.075), 11px);
  border-style: solid;
  border-color: rgba(245,230,211,.78);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(47deg);
  /* box-shadow: 0 10px 22px rgba(0,0,0,.14); */
}

.site-loader__saucer{
  width: calc(var(--cup-w) * 1.18);
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245,230,211,.65), rgba(245,230,211,.35));
  border: 1px solid rgba(111,78,55,.18);
  box-shadow: 0 20px 48px rgba(0,0,0,.30);
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.site-loader__bean{
  position: absolute;
  top: 18px;
  right: 22px;
  width: 18px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(111,78,55,1), rgba(84,57,41,1));
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transform-origin: center;
  animation: siteBeanSpin 3.36s linear infinite;
  opacity: .85;
}
.site-loader__bean::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: 2px;
  height: 80%;
  transform: translateX(-50%);
  background: rgba(245,230,211,.18);
  border-radius: 999px;
}
@keyframes siteBeanSpin{
  0%{ transform: rotate(0deg) translateY(0); }
  50%{ transform: rotate(180deg) translateY(1px); }
  100%{ transform: rotate(360deg) translateY(0); }
}

/* Mobile incl. iPhone 14 Pro Max (430px): tighten spacing */
@media (max-width: 480px){
  .site-loader__panel{ width: 94vw; padding: 18px 14px; border-radius: 18px; }
  .site-loader__text{ font-size: 13px; }
  .site-loader__bean{ display:none; }
  .site-loader__steam{ filter: blur(0); }
}

@media (prefers-reduced-motion: reduce){
  .site-loader{ animation-duration: .01ms; animation-iteration-count: 1; }
  .site-loader *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; }

  /* Still respect the 2s requirement but remove movement */
  body.coffee-theme > :not(.site-loader){
    transform: none;
  }
}

/* Glass surface */
@media (min-width: 1024px) {
  .franchise-form{
      width: 70%;
  }
  
  .form-cadre{
      display: flex;
      justify-content: center;
  }
}


.glass-effect{
  background:var(--surface);
  border:1px solid var(--stroke-2);
  border-radius:var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.glass-effect:hover{
  background:var(--surface-2);
  border-color:var(--stroke);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

/* Logo image (navbar/footer) */
.site-logo{
  height: 34px;
  width: 80px;
  display: inline-block;
  vertical-align: middle;
  object-fit: cover;
}
.site-logo--footer{
  height: 90px;
  width: 95px;
  object-fit: cover;
}

@media (max-width: 480px){
  .site-logo{ height: 30px; }
  .site-logo--footer{ height: 54px; }
}

/* Navbar */
.coffee-navbar{
  background: rgba(11,9,7,.55) !important;
  border-bottom: 1px solid rgba(var(--coffee-accent-rgb), .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.coffee-navbar.is-scrolled{
  background: rgba(11,9,7,.78) !important;
  border-bottom-color: rgba(var(--coffee-accent-rgb), .28);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

/* RTL navbar layout: logo stays right, menu group moves left (desktop). */
@media (min-width: 992px){
  html[dir="rtl"] .coffee-navbar .navbar-collapse{ justify-content: flex-end; }
}
.navbar-brand{
  letter-spacing:.4px;
  font-weight:800;
  color: var(--coffee-gold) !important;
}
.navbar-brand i{color: var(--coffee-gold)}

.nav-link{
  color: rgba(244,240,234,.82) !important;
  font-weight:600;
  position:relative;
  padding:.55rem .85rem !important;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.nav-link:hover{color: var(--coffee-gold) !important; transform: translateY(-1px)}
.nav-link.active{color: var(--coffee-gold) !important}
.nav-link.active::after,
.nav-link:hover::after{
  content:"";
  position:absolute;
  inset:auto .85rem -.2rem .85rem;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--coffee-gold), transparent);
  border-radius:999px;
}

.dropdown-menu{
  background: rgba(11,9,7,.88);
  border:1px solid rgba(var(--coffee-accent-rgb), .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.dropdown-item{color: rgba(244,240,234,.85)}
.dropdown-item:hover{background: rgba(var(--coffee-accent-rgb), .14); color: var(--coffee-gold)}
.dropdown-item.active{background: rgba(var(--coffee-accent-rgb), .18)}

/* Buttons */
.btn-primary{
  /* Primary is a light tone => dark text */
  --bs-btn-bg: var(--coffee-primary);
  --bs-btn-border-color: rgba(var(--coffee-accent-rgb), .35);
  --bs-btn-hover-bg: var(--coffee-accent);
  --bs-btn-hover-border-color: rgba(var(--coffee-accent-rgb), .55);
  --bs-btn-active-bg: var(--coffee-dark);
  --bs-btn-active-border-color: rgba(var(--coffee-accent-rgb), .65);
  --bs-btn-color: var(--coffee-dark);
  box-shadow: 0 16px 40px rgba(var(--coffee-dark-rgb), .25);
}
.btn-outline-light{
  --bs-btn-color: rgba(244,240,234,.92);
  --bs-btn-border-color: rgba(244,240,234,.35);
  --bs-btn-hover-bg: rgba(244,240,234,.1);
  --bs-btn-hover-border-color: rgba(var(--coffee-accent-rgb), .45);
}
.btn-outline-primary{
  --bs-btn-color: var(--coffee-dark);
  --bs-btn-border-color: rgba(var(--coffee-accent-rgb), .45);
  --bs-btn-hover-bg: rgba(var(--coffee-accent-rgb), .16);
  --bs-btn-hover-border-color: rgba(var(--coffee-accent-rgb), .65);
}
.btn-hover-lift{transition: transform .25s var(--ease), box-shadow .25s var(--ease)}
.btn-hover-lift:hover{transform: translateY(-3px)}

/* Page Titles */
.page-title,
.section-title{
  color: var(--text);
  letter-spacing: .2px;
}
.page-subtitle,
.section-text{color: var(--text-dim)}

/* Home page (mobile): tighten section spacing */
@media (max-width: 480px){
  /* Reduce the big gap between feature cards and the CTA image */
  .features-section.py-5{ padding-top: 1.75rem !important; padding-bottom: .75rem !important; }
  .features-section .row.py-5{ padding-top: 1rem !important; padding-bottom: 0 !important; }
  .cta-section.py-5{ padding-top: 1.25rem !important; padding-bottom: 1.75rem !important; }

  /* When columns stack, add space between image and heading */
  .cta-section .row.align-items-center > div:first-child{ margin-bottom: 12px; }
  .cta-section .section-title{ margin-bottom: .75rem !important; }
}

/* Hero */
.hero-section{
  position:relative;
  max-height: calc(100vh - 58px);
  min-height: calc(100vh - 58px);
  overflow:hidden;
}
.hero-background{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(var(--coffee-primary-rgb), .20), transparent 35%),
    radial-gradient(circle at 70% 10%, rgba(var(--coffee-accent-rgb), .22), transparent 40%),
    url('https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.05);
  animation: heroFloat 12s var(--ease) infinite;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,9,7,.82) 0%, rgba(11,9,7,.68) 45%, rgba(11,9,7,.92) 100%);
}
.hero-content{position:relative; z-index:2}

.hero-title{
  background: linear-gradient(180deg, #fff 0%, rgba(var(--coffee-primary-rgb), .92) 52%, rgba(var(--coffee-accent-rgb), .92) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hero-subtitle{color: rgba(244,240,234,.82)}

@keyframes heroFloat{
  0%,100%{transform: scale(1.05) translateY(0)}
  50%{transform: scale(1.07) translateY(-10px)}
}

/* Scroll indicator */
.scroll-indicator{position:absolute; left:0; right:0; bottom:22px; z-index:2; display:flex; justify-content:center}
.scroll-indicator .mouse{
  width:28px; height:44px;
  border-radius:999px;
  border:1px solid rgba(244,240,234,.35);
  display:inline-flex;
  justify-content:center;
  padding-top:8px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
.scroll-indicator .mouse span{
  width:4px; height:10px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--coffee-primary), rgba(var(--coffee-accent-rgb), .25));
  animation: wheel 1.3s ease-in-out infinite;
}
@keyframes wheel{0%{transform: translateY(0);opacity:.95}100%{transform: translateY(10px);opacity:.2}}

/* Feature cards */
.feature-card{padding:28px; height:100%}
.feature-icon{
  width:56px;height:56px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(var(--coffee-accent-rgb), .14);
  border:1px solid rgba(var(--coffee-accent-rgb), .22);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  margin-bottom:14px;
}
.feature-icon i{font-size:1.4rem; color: var(--coffee-gold)}
.feature-title{color: var(--text); font-weight:800}
.feature-text{color: var(--text-dim)}

/* Lists */
.feature-list{padding-left:0; margin: 0}
.feature-list li{list-style:none; color: var(--text); margin: 10px 0}
.feature-list i{color: var(--coffee-accent); margin-inline-end:10px}

/* Cards: Products / Locations / etc */
.product-card,
.location-card,
.benefit-card,
.cta-box,
.contact-form-box,
.contact-info,
.mission-box{transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease)}

.product-image-wrapper{position:relative; overflow:hidden; border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0}
.product-image{width:100%; height:260px; object-fit:cover; transform: scale(1.02); transition: transform .6s var(--ease), filter .6s var(--ease)}
.product-overlay{position:absolute; inset:0; display:flex; align-items:end; justify-content:center; padding:18px;
  background: linear-gradient(180deg, transparent 40%, rgba(11,9,7,.8) 100%);
  opacity:0; transition: opacity .35s var(--ease)
}
.product-card:hover .product-overlay{opacity:1}
.product-card:hover .product-image{transform: scale(1.08); filter: saturate(1.08) contrast(1.05)}
.product-name{color: var(--text); font-weight:800}
.product-description{color: var(--text-dim)}
.product-rating i{color: var(--coffee-gold)}
.product-price{color: var(--coffee-cream); font-weight:800}

.location-map-wrapper{border-radius: calc(var(--radius) - 2px); overflow:hidden; border:1px solid rgba(255,255,255,.12)}
.location-map{width:100%; height:260px; border:0; filter: saturate(.9) contrast(1.05)}
.location-title{color: var(--text); font-weight:900}
.location-details p{color: var(--text-dim)}
.location-details i{color: var(--coffee-gold); margin-inline-end:10px}

/* Forms */
.form-control{
  /* Light glass cards need higher-contrast inputs */
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(var(--coffee-dark-rgb), .18);
  color: var(--text);
}
.form-control::placeholder{
  color: rgba(var(--coffee-dark-rgb), .45);
  opacity: 1;
}
.form-control:focus{
  background: rgba(255,255,255,.90);
  border-color: rgba(var(--coffee-accent-rgb), .75);
  box-shadow: 0 0 0 .25rem rgba(var(--coffee-accent-rgb), .14);
  color: var(--text);
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus{
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0px 1000px rgba(255,255,255,.92) inset;
  transition: background-color 9999s ease-out;
}

.form-label{color: rgba(var(--coffee-dark-rgb), .88); font-weight:600}

/* Footer */
.coffee-footer{
  border-top: 1px solid rgba(var(--coffee-accent-rgb), .18);
  /* background: rgba(11,9,7,.55); */
  background-color: #805230;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.footer-title{color: var(--coffee-gold); font-weight:900}
.footer-text,.footer-copyright{color: #c3b599;}
.footer-link{color: rgba(244,240,234,.78); display:inline-block; padding:6px 0; transition: color .25s var(--ease), transform .25s var(--ease)}
.footer-link:hover{color: var(--coffee-gold); transform: translateX(2px)}
.footer-divider{border-color: rgba(255,255,255,.08)}
.social-icon{width:36px;height:36px;border-radius:12px; display:inline-flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  color: rgba(244,240,234,.85);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.social-icon:hover{transform: translateY(-2px); border-color: rgba(var(--coffee-accent-rgb), .45); background: rgba(var(--coffee-accent-rgb), .14); color: var(--coffee-gold)}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .hero-background{animation:none}
  .scroll-indicator .mouse span{animation:none}
}
