:root {
  --cream: #fff7ea;
  --cream-2: #f6ead6;
  --ink: #17120d;
  --soft-ink: #4d4238;
  --gold: #c9994d;
  --gold-2: #f2d59a;
  --white: #ffffff;
  --rose: #f3d9cf;
  --shadow: 0 24px 70px rgba(32, 20, 10, .14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 213, 154, .45), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, #fff7ea 45%, #f5ead8 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.top-ribbon {
  overflow: hidden;
  background: #17120d;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.ticker {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 9px 0;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker span {
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #17120d, #4b3725);
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--soft-ink);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: .66rem;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(201,153,77,.18);
  box-shadow: 0 12px 40px rgba(75,55,37,.08);
}

.main-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--soft-ink);
  font-weight: 750;
  font-size: .9rem;
}

.main-nav a.active,
.main-nav a:hover {
  background: var(--ink);
  color: var(--cream);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: var(--ink);
  border-radius: 14px;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
  border-radius: 999px;
}

.hero {
  padding: 64px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(201,153,77,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--soft-ink);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .9;
  margin: 22px 0 18px;
  letter-spacing: -.055em;
}

h1 span,
.gold-text {
  color: var(--gold);
}

.lead {
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.72;
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(23,18,13,.12);
  cursor: pointer;
}

.btn.primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 16px 35px rgba(23,18,13,.18);
}

.btn.light {
  background: rgba(255,255,255,.78);
  color: var(--ink);
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(23,18,13,.08), rgba(255,255,255,.7)),
    url("/images/cheesecake-hero.jpg") center/cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.75);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(23,18,13,.74));
}

.floating-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,250,241,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.floating-panel h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.floating-panel p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.5;
}

.section {
  padding: 62px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .98;
  margin: 0;
  letter-spacing: -.04em;
}

.section-head p {
  max-width: 560px;
  color: var(--soft-ink);
  line-height: 1.65;
  margin: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-card,
.info-card,
.menu-card,
.form-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(201,153,77,.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(75,55,37,.08);
}

.location-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.location-img {
  height: 210px;
  background: linear-gradient(135deg, var(--cream-2), var(--rose));
  display: grid;
  place-items: center;
  color: rgba(23,18,13,.42);
  font-family: Georgia, serif;
  font-size: 2.7rem;
  font-weight: 900;
}

.location-card.built .location-img {
  background: url("/images/location-placeholder.jpg") center/cover;
}

.location-card.truck .location-img {
  background: url("/images/truck-placeholder.jpg") center/cover;
}

.location-body {
  padding: 22px;
}

.location-body h3 {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  margin: 0 0 8px;
}

.location-body p {
  color: var(--soft-ink);
  line-height: 1.55;
  margin: 0 0 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--soft-ink);
  border: 1px solid rgba(201,153,77,.2);
  font-size: .78rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
}

.info-card,
.form-card {
  padding: 24px;
}

.info-card h3,
.form-card h3,
.menu-card h3 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  margin: 0 0 10px;
}

.info-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.info-list div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,247,234,.74);
}

.info-list strong {
  display: block;
  margin-bottom: 4px;
}

.info-list span {
  color: var(--soft-ink);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-card {
  overflow: hidden;
}

.menu-img {
  height: 180px;
  background: linear-gradient(135deg, var(--rose), var(--cream-2));
}

.menu-card .content {
  padding: 20px;
}

.menu-card p {
  color: var(--soft-ink);
  line-height: 1.55;
}

.status-card {
  padding: 22px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.status-card h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  margin: 0 0 8px;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(242,213,154,.15);
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(23,18,13,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 22px;
  border-radius: 32px;
  background: var(--ink);
  color: var(--cream);
}

.site-footer h3,
.site-footer h4 {
  font-family: Georgia, serif;
  margin: 0 0 10px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,247,234,.76);
  line-height: 1.6;
}

.site-footer a {
  display: block;
  margin: 6px 0;
}

.preview-credit {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  margin: 0;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .hero-grid,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 390px;
  }

  .location-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }
}

.brand-hub {
  background: #f6efe4;
}

.hub-wrap {
  overflow: hidden;
}

.hub-hero {
  position: relative;
  min-height: 100vh;
  color: #fff7ea;
  background: #243342;
}

.hub-nav {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  min-height: 104px;
  padding: 22px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(45, 63, 80, .82);
  backdrop-filter: blur(12px);
}

.hub-logo {
  text-align: center;
  line-height: .9;
}

.hub-logo-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.hub-logo small {
  display: block;
  margin-top: 8px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .65rem;
}

.hub-nav-link {
  padding: 13px 18px;
  border-radius: 999px;
  background: #df765f;
  color: white;
  font-weight: 900;
}

.hub-hero-bg,
.hub-slide,
.hub-hero-overlay {
  position: absolute;
  inset: 0;
}

.hub-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: hubFade 18s infinite;
}

.slide-one {
  background-image: url("/images/jacksonville/ribboncut.jpg"), linear-gradient(135deg, #2d3f50, #17120d);
}

.slide-two {
  background-image: url("/images/jacksonville/variety.jpg"), linear-gradient(135deg, #2d3f50, #17120d);
  animation-delay: 6s;
}

.slide-three {
  background-image: url("/images/food-truck/firework.jpg"), linear-gradient(135deg, #2d3f50, #17120d);
  animation-delay: 12s;
}

@keyframes hubFade {
  0%, 100% { opacity: 0; transform: scale(1); }
  8%, 30% { opacity: 1; transform: scale(1.04); }
  38% { opacity: 0; transform: scale(1.07); }
}

.hub-hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 25, 31, .58), rgba(20, 25, 31, .18), rgba(20, 25, 31, .36)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
}

.hub-hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: min(960px, calc(100% - 34px));
  margin: 0 auto;
  padding-top: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hub-eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f3c9ba;
  font-weight: 900;
  font-size: .82rem;
}

.hub-hero h1 {
  max-width: 880px;
  color: white;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.hub-hero p {
  max-width: 690px;
  color: rgba(255,247,234,.86);
  font-size: 1.22rem;
  line-height: 1.75;
}

.hub-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hub-intro {
  padding: 72px 0;
  background: #fff7ea;
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.intro-grid h2,
.hub-showcase h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.05em;
  margin: 15px 0 0;
}

.intro-grid p,
.showcase-copy p {
  color: #4d4238;
  font-size: 1.12rem;
  line-height: 1.8;
}

.hub-locations {
  background:
    linear-gradient(180deg, #f6efe4, #fff7ea);
}

.hub-location-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.hub-location-card {
  grid-column: span 2;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(201,153,77,.18);
  box-shadow: 0 20px 55px rgba(34, 27, 20, .09);
}

.feature-card {
  grid-column: span 3;
}

.hub-card-image {
  min-height: 280px;
  background: linear-gradient(135deg, #e7d8c0, #fff7ea);
  background-size: cover;
  background-position: center;
}

.jax-card {
  background-image: linear-gradient(rgba(15,15,15,.18), rgba(15,15,15,.28)), url("/images/jacksonville/interior.jpg");
}

.truck-card-img {
  background-image: linear-gradient(rgba(15,15,15,.18), rgba(15,15,15,.35)), url("/images/food-truck/truck3.jpg");
}

.cleveland-card {
  background-image: linear-gradient(rgba(20,20,20,.08), rgba(20,20,20,.22)), url("/images/cleveland-logo.jpg");
}

.copperhill-card {
  background-image: linear-gradient(rgba(20,20,20,.12), rgba(20,20,20,.32)), url("/images/copperhill-logo.jpg");
}

.greenville-card {
  background-image: linear-gradient(rgba(20,20,20,.18), rgba(20,20,20,.32)), url("/images/greenville-logo.jpg");
}

.hub-card-content {
  padding: 24px;
}

.hub-card-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #df765f;
  color: white;
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hub-card-label.muted {
  background: #2d3f50;
}

.hub-card-content h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.hub-card-content p {
  color: #4d4238;
  line-height: 1.6;
  min-height: 52px;
}

.hub-card-content strong {
  color: #df765f;
}

.hub-showcase {
  background: #2d3f50;
  color: #fff7ea;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.showcase-copy p {
  color: rgba(255,247,234,.78);
}

.showcase-stack {
  display: grid;
  gap: 16px;
}

.mini-panel {
  padding: 24px;
  border-radius: 28px;
  background: #fff7ea;
  color: #17120d;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.mini-panel strong,
.mini-panel span {
  display: block;
}

.mini-panel strong {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.mini-panel span {
  color: #4d4238;
}

.mini-panel.dark {
  background: #17120d;
  color: #fff7ea;
}

.mini-panel.dark span {
  color: rgba(255,247,234,.74);
}

.mini-panel.coral {
  background: #df765f;
  color: white;
}

.mini-panel.coral span {
  color: rgba(255,255,255,.82);
}

.hub-footer {
  padding: 44px 0;
  background: #17120d;
  color: #fff7ea;
}

.hub-footer h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  margin: 0 0 8px;
}

.hub-footer p {
  margin: 0;
  color: rgba(255,247,234,.72);
}

@media (max-width: 900px) {
  .hub-nav {
    min-height: 82px;
    padding: 16px;
  }

  .hub-nav-link {
    font-size: .8rem;
    padding: 11px 13px;
  }

  .hub-hero-content {
    padding-top: 110px;
  }

  .intro-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hub-location-grid {
    grid-template-columns: 1fr;
  }

  .hub-location-card,
  .feature-card {
    grid-column: auto;
  }

  .hub-card-image {
    min-height: 230px;
  }
}


.hub-hero h1,
.hub-hero p {
  text-shadow: 0 4px 22px rgba(0,0,0,.72);
}

.hub-slide {
  filter: saturate(1.08) contrast(1.02) brightness(1.03);
}


.hub-hero-bg,
.hub-slide,
.hub-hero-overlay {
  height: 100%;
  min-height: 100vh;
}

.hub-hero-overlay {
  inset: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(20, 25, 31, .58), rgba(20, 25, 31, .16), rgba(20, 25, 31, .34)),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.18) 58%, rgba(0,0,0,.52) 100%);
}

.hub-hero {
  overflow: hidden;
  isolation: isolate;
}

.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,25,31,.55), rgba(20,25,31,.18), rgba(20,25,31,.35)),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 65%, rgba(0,0,0,.48) 100%);
  pointer-events: none;
}

.hub-hero-overlay {
  display: none;
}

.hub-hero-bg {
  z-index: 0;
}

.hub-nav,
.hub-hero-content {
  z-index: 3;
}

.hub-slide {
  height: 100%;
}


/* Clean food-only landing hero slideshow */
.brand-hub .slide-one {
  background-image: url("/images/jacksonville/cheesecake11.jpg") !important;
  animation-delay: 0s !important;
}

.brand-hub .slide-two {
  background-image: url("/images/jacksonville/cupcakes5.jpg") !important;
  animation-delay: 5s !important;
}

.brand-hub .slide-three {
  background-image: url("/images/jacksonville/variety.jpg") !important;
  animation-delay: 10s !important;
}

.brand-hub .slide-four {
  background-image: url("/images/jacksonville/cheesecake6.jpg") !important;
  animation-delay: 15s !important;
}

.brand-hub .hub-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: cleanHeroFade 20s infinite !important;
}

@keyframes cleanHeroFade {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1.02); }
  25% { opacity: 1; transform: scale(1.055); }
  32% { opacity: 0; transform: scale(1.075); }
  100% { opacity: 0; transform: scale(1.075); }
}


/* Final stable hero fix — no slideshow, no blank frames */
.brand-hub .hub-hero-bg.food-collage-hero {
  position: absolute;
  inset: 0;
  min-height: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(15,20,26,.42), rgba(15,20,26,.12), rgba(15,20,26,.28)),
    url("/images/jacksonville/cheesecake11.jpg") left center / 34% 100% no-repeat,
    url("/images/jacksonville/cupcakes5.jpg") center center / 36% 100% no-repeat,
    url("/images/jacksonville/variety.jpg") right center / 34% 100% no-repeat,
    #243342;
  filter: saturate(1.08) contrast(1.04);
}

.brand-hub .hub-slide {
  display: none !important;
  animation: none !important;
}

.brand-hub .hub-hero-overlay {
  display: none !important;
}

.brand-hub .hub-hero::before {
  background:
    linear-gradient(90deg, rgba(20,25,31,.62), rgba(20,25,31,.2), rgba(20,25,31,.36)),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.42) 100%);
}

.brand-hub .hub-hero {
  min-height: 88vh;
}

.brand-hub .hub-hero-content {
  min-height: 88vh;
}

.brand-hub .hub-hero-bg.food-collage-hero {
  filter: saturate(1.12) contrast(1.03) brightness(1.12);
}

.brand-hub .hub-hero::before {
  background:
    linear-gradient(90deg, rgba(20,25,31,.50), rgba(20,25,31,.14), rgba(20,25,31,.26)),
    linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.14) 62%, rgba(0,0,0,.34) 100%);
}

.brand-hub .hub-nav {
  background: rgba(45,63,80,.9);
}

/* Restore clean hero slideshow */
.brand-hub .hub-hero-bg.food-collage-hero {
  background: none !important;
  filter: none !important;
}

.brand-hub .hub-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #243342;
}

.brand-hub .hub-slide {
  display: block !important;
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: smoothHeroSlide 24s infinite !important;
  filter: saturate(1.1) contrast(1.04) brightness(1.08);
}

.brand-hub .slide-one {
  background-image: url("/images/jacksonville/cheesecake11.jpg") !important;
  animation-delay: 0s !important;
}

.brand-hub .slide-two {
  background-image: url("/images/jacksonville/cupcakes5.jpg") !important;
  animation-delay: 6s !important;
}

.brand-hub .slide-three {
  background-image: url("/images/jacksonville/variety.jpg") !important;
  animation-delay: 12s !important;
}

.brand-hub .slide-four {
  background-image: url("/images/jacksonville/cheesecake6.jpg") !important;
  animation-delay: 18s !important;
}

@keyframes smoothHeroSlide {
  0% { opacity: 0; transform: scale(1); }
  4% { opacity: 1; transform: scale(1.015); }
  27% { opacity: 1; transform: scale(1.055); }
  33% { opacity: 0; transform: scale(1.075); }
  100% { opacity: 0; transform: scale(1.075); }
}


.hub-brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.35));
}

@media (max-width: 768px) {
  .hub-brand img {
    width: 145px;
  }
}


.hub-brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.35));
}

@media (max-width: 768px) {
  .hub-brand img {
    width: 145px;
  }
}

.hub-logo img {
  width: 190px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.28));
}

.hub-logo .hub-logo-mark,
.hub-logo small {
  display: none !important;
}

.hub-logo img {
  width: 115px !important;
}

@media (max-width: 768px) {
  .hub-logo img {
    width: 92px !important;
  }
}

.hub-logo img {
  width: 88px !important;
}

@media (max-width: 768px) {
  .hub-logo img {
    width: 74px !important;
  }
}

/* Sweet Emmaline brand color correction */
:root {
  --se-slate: #43586a;
  --se-slate-dark: #263746;
  --se-coral: #df765f;
  --se-coral-soft: #ee9a86;
  --se-cream: #f7efe4;
  --se-white: #ffffff;
  --se-ink: #1f2830;
}

.brand-hub {
  background: var(--se-cream) !important;
  color: var(--se-ink);
}

.brand-hub .hub-nav {
  background: rgba(67, 88, 106, .96) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-hub .hub-hero {
  background: var(--se-slate-dark) !important;
}

.brand-hub .hub-eyebrow,
.brand-hub .eyebrow {
  color: #f4b7a7 !important;
}

.brand-hub .hub-nav-link,
.brand-hub .hub-card-label,
.brand-hub .btn.primary {
  background: var(--se-coral) !important;
  color: white !important;
}

.brand-hub .btn.primary:hover,
.brand-hub .hub-nav-link:hover {
  background: #c9604d !important;
}

.brand-hub .btn.light {
  background: rgba(255,255,255,.88) !important;
  color: var(--se-ink) !important;
}

.brand-hub .hub-intro {
  background:
    linear-gradient(180deg, #fbf7ef, #f7efe4) !important;
}

.brand-hub .hub-locations {
  background:
    linear-gradient(180deg, #f7efe4, #ffffff 50%, #f7efe4) !important;
}

.brand-hub .hub-showcase {
  background: var(--se-slate) !important;
}

.brand-hub .hub-card-content strong {
  color: var(--se-coral) !important;
}

.brand-hub .hub-card-label.muted {
  background: var(--se-slate) !important;
}

.brand-hub .mini-panel.coral {
  background: var(--se-coral) !important;
}

.brand-hub .hub-footer {
  background: var(--se-slate-dark) !important;
}

.brand-hub .section h2,
.brand-hub .intro-grid h2,
.brand-hub .hub-showcase h2 {
  color: var(--se-slate-dark);
}

.brand-hub .hub-showcase h2 {
  color: var(--se-white);
}

.brand-hub .hub-hero::before {
  background:
    linear-gradient(90deg, rgba(38,55,70,.66), rgba(38,55,70,.24), rgba(38,55,70,.42)),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.16) 62%, rgba(0,0,0,.38) 100%) !important;
}

/* Zoom hero slideshow images out slightly */
.brand-hub .hub-slide {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #243342;
}

.brand-hub .slide-one {
  background-size: 92% auto !important;
}

.brand-hub .slide-two {
  background-size: 88% auto !important;
}

.brand-hub .slide-three {
  background-size: 92% auto !important;
}

.brand-hub .slide-four {
  background-size: 90% auto !important;
}

/* Jacksonville site should match the main hub brand system */
.jax-site {
  background: var(--se-cream) !important;
  color: var(--se-ink);
}

.jax-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  padding: 16px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(67, 88, 106, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.jax-brand img {
  width: 88px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.28));
}

.jax-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jax-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #fff7ea;
  font-weight: 850;
  font-size: .92rem;
}

.jax-nav a:hover {
  background: rgba(255,255,255,.15);
}

.jax-nav a[href="/jacksonville/menu.html"] {
  background: var(--se-coral);
  color: white;
}

.jax-hero {
  background: var(--se-slate-dark);
}

.jax-hero-content .eyebrow {
  color: #f4b7a7 !important;
}

.jax-hero h1 {
  color: white;
}

.jax-hero p {
  color: rgba(255,247,234,.88);
}

.jax-story,
.jax-featured,
.jax-location-strip {
  background: var(--se-cream);
}

.jax-featured .section-head h2,
.jax-story h2,
.jax-location-strip h2 {
  color: var(--se-slate-dark);
}

.jax-footer {
  background: var(--se-slate-dark);
  color: #fff7ea;
}

@media (max-width: 900px) {
  .jax-header {
    padding: 14px 16px;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .jax-brand img {
    width: 74px;
  }

  .jax-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .jax-nav a {
    white-space: nowrap;
    font-size: .82rem;
    padding: 10px 12px;
  }
}

/* FIX BROKEN JACKSONVILLE HERO */
.jax-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(67,88,106,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.jax-top-inner {
  max-width: 1380px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jax-logo-wrap img {
  width: 92px !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.jax-nav-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jax-nav-v2 a {
  color: #fff7ea;
  font-weight: 800;
  font-size: .92rem;
  padding: 11px 15px;
  border-radius: 999px;
}

.jax-nav-v2 a:hover {
  background: rgba(255,255,255,.12);
}

.jax-nav-v2 a[href*="menu"] {
  background: var(--se-coral);
  color: white;
}

.jax-hero-v2 {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: #243342;
}

.jax-hero-slides {
  position: absolute;
  inset: 0;
}

.jax-slide-v2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: jaxHeroRotate 24s infinite;
  background-size: cover !important;
  background-position: center center !important;
}

.slide-a {
  background: url('/images/jacksonville/cupcakes2.jpg') center/cover no-repeat;
  animation-delay: 0s;
}

.slide-b {
  background: url('/images/jacksonville/cheesecake10.jpg') center/cover no-repeat;
  animation-delay: 8s;
}

.slide-c {
  background: url('/images/jacksonville/cheesecake8.jpg') center/cover no-repeat;
  animation-delay: 16s;
}

@keyframes jaxHeroRotate {
  0% { opacity: 0; }
  8% { opacity: 1; }
  30% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.jax-hero-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15,18,23,.72) 0%,
      rgba(15,18,23,.46) 40%,
      rgba(15,18,23,.24) 100%
    );
}

.jax-hero-content-v2 {
  position: relative;
  z-index: 5;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0;
}

.jax-hero-content-v2 h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .92;
  margin-bottom: 24px;
}

.jax-hero-content-v2 p {
  max-width: 640px;
  color: rgba(255,247,234,.92);
  font-size: 1.22rem;
  line-height: 1.7;
}

@media (max-width: 900px) {

  .jax-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .jax-nav-v2 {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .jax-nav-v2 a {
    white-space: nowrap;
  }

  .jax-hero-content-v2 {
    min-height: 78vh;
    padding: 80px 0;
  }

  .jax-hero-content-v2 h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

}


/* JACKSONVILLE CONTENT FIXES */

.jax-page section:not(.jax-hero-v2) {
  padding: 90px 0;
}

.jax-page .container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.jax-page img {
  max-width: 100%;
  display: block;
}

.jax-page .story-image,
.jax-page .menu-card img,
.jax-page .location-image,
.jax-page .about-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
}

.jax-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 38px;
  margin-top: 48px;
}

.jax-menu-card {
  background: #f7f1e7;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.jax-menu-card-content {
  padding: 28px;
}

.jax-menu-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #172635;
}

.jax-menu-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4f5c67;
}

.jax-location-box {
  background: #43586a;
  color: white;
  border-radius: 34px;
  padding: 48px;
}

.jax-location-box h2,
.jax-location-box p,
.jax-location-box a {
  color: white;
}

.jax-location-box .btn.light {
  background: white;
  color: #172635;
}

@media (max-width: 900px) {

  .jax-menu-grid {
    grid-template-columns: 1fr;
  }

  .jax-page .story-image,
  .jax-page .menu-card img,
  .jax-page .location-image,
  .jax-page .about-image {
    height: 260px;
  }

}

/* ============================= */
/* JACKSONVILLE FULL STRUCTURE FIX */
/* ============================= */

.jax-v2 * {
  box-sizing: border-box;
}

.jax-v2 {
  background: #f7efe4 !important;
  overflow-x: hidden;
}

.jax-v2 img {
  max-width: 100%;
  display: block;
}

.jax-v2 section:not(.jax-hero-v2) {
  padding: 84px 0;
}

.jax-v2 .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* STORY */

.story-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.story-copy-v2 h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: .95;
  margin: 18px 0;
  color: #263746;
}

.story-copy-v2 p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4c5a64;
  max-width: 580px;
}

.story-photo-v2 {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.story-photo-v2 img {
  width: 100%;
  height: 520px !important;
  object-fit: cover;
}

/* FEATURED */

.jax-feature-v2 {
  background: linear-gradient(180deg,#fff8ef,#f7efe4);
}

.dessert-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  margin-top: 42px;
}

.dessert-card-v2 {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  transition: transform .25s ease;
}

.dessert-card-v2:hover {
  transform: translateY(-6px);
}

.dessert-card-v2 img {
  width: 100%;
  height: 280px !important;
  object-fit: cover;
}

.dessert-info-v2 {
  padding: 28px;
}

.dessert-info-v2 h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  color: #243342;
}

.dessert-info-v2 p {
  margin: 0;
  color: #57636d;
  line-height: 1.7;
}

/* LOCATION BAND */

.jax-location-band {
  background: #43586a;
  color: white;
}

.jax-location-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.jax-location-inner h2 {
  font-size: clamp(2.4rem,5vw,4rem);
  line-height: .95;
  margin: 14px 0;
  color: white;
}

.jax-location-inner p {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.location-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* GALLERY */

.jax-gallery-v2 {
  padding-top: 36px !important;
}

.gallery-row-v2 {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.gallery-row-v2 img {
  width: 100%;
  height: 260px !important;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

/* FOOTER */

.jax-footer-v2 {
  background: #243342;
  padding: 72px 0;
  color: #fff7ea;
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr;
  gap: 42px;
}

.footer-grid-v2 img {
  width: 120px;
  margin-bottom: 18px;
}

.footer-grid-v2 h4 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.footer-grid-v2 a,
.footer-grid-v2 p {
  display: block;
  color: rgba(255,247,234,.76);
  line-height: 1.9;
  margin: 0;
}

/* MOBILE */

@media (max-width: 900px) {

  .story-grid-v2,
  .dessert-grid-v2,
  .footer-grid-v2,
  .gallery-row-v2 {
    grid-template-columns: 1fr;
  }

  .jax-location-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-photo-v2 img {
    height: 340px !important;
  }

  .dessert-card-v2 img {
    height: 240px !important;
  }

  .gallery-row-v2 img {
    height: 220px !important;
  }

}

/* Jacksonville eyebrow visibility fix */

.jax-v2 .hub-eyebrow {
  color: #d97d67 !important;
  font-weight: 900;
  letter-spacing: .18em;
  text-shadow: none;
}

.jax-story-v2 .hub-eyebrow,
.jax-feature-v2 .hub-eyebrow,
.jax-location-band .hub-eyebrow {
  color: #f0a28f !important;
}

.jax-location-band .hub-eyebrow {
  color: #ffd6ca !important;
}


/* =========================================================
   SWEET EMMALINE MASTER DESIGN SYSTEM
   Shared across ALL locations + hub
========================================================= */

:root {
  --se-navy: #43586a;
  --se-navy-dark: #243342;
  --se-coral: #df7b64;
  --se-coral-light: #f3c2b4;
  --se-cream: #f7efe4;
  --se-cream-2: #fff8ef;
  --se-text: #2a2a2a;
  --se-soft: #5f6b74;
  --se-radius: 34px;
  --se-shadow: 0 22px 60px rgba(0,0,0,.10);
}

/* RESET */

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--se-cream);
  color: var(--se-text);
  font-family: Inter, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4 {
  font-family: Georgia, serif;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: .9;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
}

p {
  line-height: 1.8;
}

/* SHARED EYEBROW */

.hub-eyebrow {
  display: inline-block;
  color: var(--se-coral-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  font-weight: 900;
}

/* =========================================================
   MASTER HEADER
========================================================= */

.jax-topbar,
.hub-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 92px;
  background: rgba(67,88,106,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.jax-top-inner,
.hub-nav {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.jax-logo-wrap img,
.hub-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.jax-nav-v2,
.hub-nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jax-nav-v2 a,
.hub-nav-link {
  color: white;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 999px;
  transition: .25s ease;
}

.jax-nav-v2 a:hover,
.jax-nav-v2 a.active,
.hub-nav-link:hover {
  background: var(--se-coral);
  color: white;
}

/* =========================================================
   MASTER HERO
========================================================= */

.jax-hero-v2,
.hub-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--se-navy-dark);
  color: white;
}

.jax-hero-content-v2,
.hub-hero-content {
  position: relative;
  z-index: 5;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.jax-hero-content-v2 p,
.hub-hero p {
  max-width: 700px;
  font-size: 1.15rem;
  color: rgba(255,255,255,.84);
}

.jax-hero-dark,
.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(15,22,28,.64),
      rgba(15,22,28,.18),
      rgba(15,22,28,.36)
    ),
    linear-gradient(180deg,
      rgba(0,0,0,.08),
      rgba(0,0,0,.28)
    );
  z-index: 2;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
}

.btn.primary {
  background: var(--se-coral);
  color: white;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.light {
  background: rgba(255,255,255,.88);
  color: var(--se-navy-dark);
}

/* =========================================================
   SHARED CARD SYSTEM
========================================================= */

.dessert-card-v2,
.hub-location-card,
.feature-card {
  background: white;
  border-radius: var(--se-radius);
  overflow: hidden;
  box-shadow: var(--se-shadow);
}

.dessert-card-v2 img,
.gallery-row-v2 img,
.story-photo-v2 img {
  width: 100%;
  object-fit: cover;
}

.dessert-card-v2 img {
  height: 280px;
}

.gallery-row-v2 img {
  height: 260px;
}

.story-photo-v2 img {
  height: 520px;
}

.dessert-info-v2,
.hub-card-content {
  padding: 28px;
}

/* =========================================================
   LOCATION BANDS
========================================================= */

.jax-location-band,
.hub-showcase {
  background: var(--se-navy);
  color: white;
}

/* =========================================================
   FOOTER
========================================================= */

.jax-footer-v2,
.hub-footer {
  background: var(--se-navy-dark);
  color: white;
  padding: 72px 0;
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer-grid-v2 img {
  width: 120px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .jax-top-inner,
  .hub-nav {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .jax-nav-v2,
  .hub-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .story-grid-v2,
  .dessert-grid-v2,
  .footer-grid-v2,
  .gallery-row-v2,
  .hub-location-grid {
    grid-template-columns: 1fr !important;
  }

  .story-photo-v2 img {
    height: 340px;
  }

  .dessert-card-v2 img,
  .gallery-row-v2 img {
    height: 220px;
  }

  .jax-hero-v2,
  .hub-hero {
    min-height: auto;
  }

  .jax-hero-content-v2,
  .hub-hero-content {
    min-height: auto;
    padding: 140px 0 80px;
  }

}


/* =========================================================
   JACKSONVILLE HARD OVERRIDES
   Kills old broken giant-image layout
========================================================= */

.jax-v2 img {
  max-width: 100%;
}

.jax-story-v2,
.jax-feature-v2,
.jax-gallery-v2,
.jax-location-band {
  padding: 110px 0;
}

.story-grid-v2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.story-photo-v2 {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

.story-photo-v2 img {
  width: 100%;
  height: 540px !important;
  object-fit: cover !important;
}

.dessert-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 34px;
  margin-top: 60px;
}

.dessert-card-v2 {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.08);
}

.dessert-card-v2 img {
  width: 100%;
  height: 270px !important;
  object-fit: cover !important;
}

.dessert-info-v2 {
  padding: 26px;
}

.dessert-info-v2 h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.jax-location-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.location-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-row-v2 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.gallery-row-v2 img {
  width: 100%;
  height: 240px !important;
  object-fit: cover !important;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}

.footer-grid-v2 a {
  display: block;
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
}

.footer-grid-v2 p {
  color: rgba(255,255,255,.74);
}

.section-head.center {
  text-align: center;
}

.section-head.center h2 {
  max-width: 720px;
  margin: 14px auto 0;
}

@media (max-width: 980px) {

  .story-grid-v2,
  .dessert-grid-v2,
  .gallery-row-v2,
  .footer-grid-v2,
  .jax-location-inner {
    grid-template-columns: 1fr !important;
    flex-direction: column;
  }

  .story-photo-v2 img {
    height: 340px !important;
  }

  .dessert-card-v2 img,
  .gallery-row-v2 img {
    height: 220px !important;
  }

}



/* =========================================================
   AUTO SCROLL GALLERY
========================================================= */

.jax-gallery-v2 {
  overflow: hidden;
  padding: 0 0 110px;
  background: var(--se-cream);
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: sweetScroll 38s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track img {
  width: 340px;
  height: 240px !important;
  object-fit: cover !important;
  border-radius: 28px;
  flex-shrink: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: .25s ease;
}

.gallery-track img:hover {
  transform: translateY(-6px);
}

@keyframes sweetScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

  .gallery-track img {
    width: 260px;
    height: 190px !important;
  }

}



/* =========================================================
   COLOR SYSTEM CLEANUP
========================================================= */

body.jax-v2 {
  background: #f7efe4;
  color: #2a2a2a;
}

.jax-story-v2,
.jax-feature-v2,
.jax-gallery-v2 {
  background: #f7efe4;
}

.jax-story-v2 h2,
.jax-feature-v2 h2,
.jax-location-band h2 {
  color: #243342;
}

.dessert-card-v2 {
  background: #fffaf4;
  border: 1px solid rgba(223,123,100,.14);
}

.dessert-info-v2 h3 {
  color: #243342;
}

.dessert-info-v2 p,
.story-copy-v2 p {
  color: #4e5962;
}

.jax-location-band {
  background: #43586a;
}

.jax-location-band p,
.jax-location-band h2 {
  color: white;
}

.jax-footer-v2 {
  background: #243342;
}

.hub-eyebrow {
  color: #e9b7a9;
}



.story-photo-v2 iframe {
  width: 100%;
  height: 540px;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

@media (max-width: 980px) {

  .story-photo-v2 iframe {
    height: 340px;
  }

}



/* =========================================================
   SWEET MAP FRAME
========================================================= */

.story-photo-v2 {
  position: relative;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.55),
      rgba(223,123,100,.18)
    );
  border: 1px solid rgba(223,123,100,.22);
  box-shadow:
    0 30px 70px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.story-photo-v2::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 46px;
  border: 2px dashed rgba(233,183,169,.45);
  pointer-events: none;
}

.story-photo-v2 iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
}

@media (max-width: 980px) {

  .story-photo-v2 {
    padding: 10px;
  }

  .story-photo-v2 iframe {
    height: 340px;
  }

}


/* Make map frame more visible */
.story-photo-v2 {
  padding: 22px !important;
  background:
    linear-gradient(145deg, #fffaf4, #f3c2b4) !important;
  border: 3px solid #df7b64 !important;
  box-shadow:
    0 28px 70px rgba(36,51,66,.22),
    0 0 0 10px rgba(223,123,100,.12) !important;
}

.story-photo-v2::before {
  display: none !important;
}

.story-photo-v2::after {
  content: "Sweet Emmaline Jacksonville";
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: #43586a;
  color: white;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.btn.teal {
  background: #4f9f9a;
  color: white;
}

.btn.teal:hover {
  background: #458d88;
}



.btn.blue-theme {
  background: #43586a;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(67,88,106,.24);
}

.btn.blue-theme:hover {
  background: #51697d;
  transform: translateY(-2px);
}



/* =========================================
   SUBPAGE HERO REBALANCE
========================================= */

.sub-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
}

.sub-hero-content {
  width: min(760px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}


.sub-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: .92;
  letter-spacing: -0.045em;
  margin: 18px 0 24px;
  max-width: 760px;
}


.sub-hero-content p {
  font-size: 1.18rem;
  line-height: 1.8;
  max-width: 760px;
  color: rgba(27,40,53,.86);
}

.sub-hero .hub-actions {
  margin-top: 38px;
}


@media (max-width: 980px) {

  .sub-hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .sub-hero-content h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: .96;
  }



  .sub-hero-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

}


/* ABOUT PAGE STRUCTURE FIX */

.jax-v2 .cream-section,
.jax-v2 .dark-band {
  padding: 90px 0 !important;
  overflow: hidden;
}

.jax-v2 .three-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.jax-v2 .info-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fffaf4;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  border: 1px solid rgba(223,123,100,.14);
}

.jax-v2 .info-card img {
  width: 100%;
  height: 245px !important;
  object-fit: cover !important;
}

.jax-v2 .info-card-content {
  padding: 26px;
}

.jax-v2 .info-card-content h3 {
  margin: 0 0 10px;
  font-size: 1.75rem;
  color: #243342;
}

.jax-v2 .info-card-content p {
  margin: 0;
  color: #4e5962;
  line-height: 1.65;
}

.jax-v2 .split-highlight {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
  align-items: center;
}

.jax-v2 .dark-band {
  background: #43586a;
  color: #fff;
}

.jax-v2 .dark-band h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .95;
}

.jax-v2 .dark-band p {
  color: rgba(255,255,255,.82);
  max-width: 620px;
}

.jax-v2 .highlight-photo {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.jax-v2 .highlight-photo img {
  width: 100%;
  height: 430px !important;
  object-fit: cover !important;
}

@media (max-width: 900px) {
  .jax-v2 .three-grid,
  .jax-v2 .split-highlight {
    grid-template-columns: 1fr;
  }

  .jax-v2 .info-card img,
  .jax-v2 .highlight-photo img {
    height: 240px !important;
  }
}


/* ABOUT HERO SLIDER */

.about-hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  background: #243342;
  color: white;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: aboutHeroFade 28s infinite;
}

.about-slide-1 {
  background-image: url("/images/jacksonville/process.jpg");
  animation-delay: 0s;
}

.about-slide-2 {
  background-image: url("/images/jacksonville/ribboncut.jpg");
  animation-delay: 7s;
}

.about-slide-3 {
  background-image: url("/images/jacksonville/review.jpg");
  animation-delay: 14s;
}

.about-slide-4 {
  background-image: url("/images/jacksonville/cupcakes2.jpg");
  animation-delay: 21s;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(36,51,66,.70), rgba(36,51,66,.34), rgba(36,51,66,.50)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34));
}

.about-hero-slider .sub-hero-content {
  position: relative;
  z-index: 5;
}

.about-hero-slider .sub-hero-content h1,
.about-hero-slider .sub-hero-content p {
  color: white;
  text-shadow: 0 5px 22px rgba(0,0,0,.38);
}

@keyframes aboutHeroFade {
  0% { opacity: 0; transform: scale(1); }
  6% { opacity: 1; transform: scale(1.02); }
  27% { opacity: 1; transform: scale(1.055); }
  34% { opacity: 0; transform: scale(1.07); }
  100% { opacity: 0; transform: scale(1.07); }
}

/* MENU / ORDER PAGE */

.menu-hero-grid {
  position: relative;
  z-index: 5;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 54px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.menu-hero-copy {
  min-height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.menu-board-card {
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,248,239,.94);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.5);
}

.menu-board-card img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
}

.menu-board-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #43586a;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-board-card p {
  margin: 14px 4px 2px;
  color: #4e5962;
  font-size: .92rem;
}

.menu-order-section {
  background: #f7efe4;
}

.menu-order-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 38px;
  align-items: start;
}

.menu-head {
  align-items: flex-start;
}

.menu-category {
  margin-top: 48px;
}

.menu-category h3 {
  font-size: 2.2rem;
  color: #243342;
  margin: 0 0 22px;
}

.order-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}

.order-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 28px;
  background: #fffaf4;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  border: 1px solid rgba(223,123,100,.14);
}

.order-card img {
  width: 150px;
  height: 130px;
  object-fit: cover;
  border-radius: 22px;
}

.order-card h4 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  color: #243342;
}

.order-card p {
  margin: 0 0 10px;
  color: #4e5962;
  line-height: 1.5;
  font-size: .95rem;
}

.order-card strong {
  display: block;
  margin-bottom: 12px;
  color: #df7b64;
}

.order-card .btn {
  min-height: 40px;
  padding: 9px 16px;
}

.cart-panel {
  position: sticky;
  top: 118px;
  padding: 28px;
  border-radius: 34px;
  background: #243342;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.cart-panel h3 {
  font-size: 2rem;
  margin: 12px 0 18px;
}

.empty-cart {
  color: rgba(255,255,255,.68);
}

.cart-items {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.cart-line {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  margin-top: 4px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.qty-controls button {
  border: 0;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff8ef;
  color: #243342;
  font-weight: 900;
  cursor: pointer;
}

.qty-controls .remove-line {
  padding: 0 12px;
  width: auto;
  background: #df7b64;
  color: #fff;
}

.cart-totals {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.grand-total {
  font-size: 1.25rem;
  color: #f3c2b4;
}

.checkout-btn {
  width: 100%;
  margin-top: 24px;
}

.cart-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .menu-hero-grid,
  .menu-order-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .order-items {
    grid-template-columns: 1fr;
  }

  .order-card {
    grid-template-columns: 1fr;
  }

  .order-card img {
    width: 100%;
    height: 220px;
  }
}


.delivery-btn {
  margin-top: 12px;
  opacity: .92;
  cursor: not-allowed;
}
