:root {
  --plum: #713b68;
  --plum-dark: #54294d;
  --plum-soft: #eadce7;
  --cream: #fbf7f2;
  --cream-deep: #f2e8de;
  --blush: #d59aa5;
  --berry: #b64f7c;
  --ink: #241c23;
  --muted: #655a63;
  --white: #fff;
  --gold: #e4b563;
  --green: #496b5d;
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --shadow: 0 22px 60px rgba(84, 41, 77, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
a { color: inherit; }
button, input, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-space { padding-block: 92px; }
.announcement { padding: 8px 20px; background: var(--plum-dark); color: var(--white); text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .05em; }

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 74px;
  padding: 11px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(113, 59, 104, .13);
  background: rgba(251, 247, 242, .94);
  backdrop-filter: blur(18px);
}
.wordmark { display: grid; margin-right: auto; color: var(--plum-dark); text-decoration: none; }
.wordmark strong { font: 700 21px/1 var(--display); }
.wordmark small { margin-top: 5px; font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.marketing-nav { display: flex; align-items: center; gap: 5px; }
.marketing-nav a { padding: 9px 12px; border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.marketing-nav a:hover, .marketing-nav a.is-active { background: var(--plum-soft); color: var(--plum-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; font-weight: 700; }
.nav-dropdown-toggle::after { content: ""; width: 6px; height: 6px; margin-top: -3px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle { background: var(--plum-soft); color: var(--plum-dark); }
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after { transform: translateY(3px) rotate(225deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; z-index: 70; display: grid; width: 230px; padding: 8px; border: 1px solid var(--plum-soft); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, -6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-dropdown-menu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: grid; gap: 3px; padding: 12px 13px; border-radius: 12px; }
.nav-dropdown-menu a small { color: var(--muted); font-size: 11px; font-weight: 600; line-height: 1.35; }
.nav-dropdown-menu a:hover small,
.nav-dropdown-menu a.is-active small { color: var(--plum); }
.mobile-menu-toggle { display: none; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid var(--plum-soft); border-radius: 50%; background: var(--white); color: var(--plum); cursor: pointer; font-size: 0; }
.mobile-menu-toggle::before { content: "☰"; font-size: 17px; }
.mobile-menu-toggle[aria-expanded="true"]::before { content: "×"; font-size: 24px; }
.mobile-order-link { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.portal-login-link { color: var(--plum); font-size: 10px; font-weight: 800; text-decoration: none; }
.site-language { display: flex; padding: 3px; border: 1px solid var(--plum-soft); border-radius: 999px; background: var(--white); }
.site-language button { min-width: 32px; padding: 6px 7px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 800; }
.site-language button.is-active { background: var(--plum); color: var(--white); }

.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--plum); color: var(--white); }
.button-primary:hover { background: var(--plum-dark); }
.button-outline { border-color: var(--plum); color: var(--plum); }
.button-cream { background: var(--cream); color: var(--plum-dark); }
.header-order { padding: 10px 17px; }
.eyebrow { margin: 0 0 13px; color: var(--berry); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.eyebrow.light { color: #f0c6d5; }

.home-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; min-height: 690px; padding-block: 62px; }
.home-hero h1, .business-hero h1 { max-width: 700px; margin: 0; font: 700 clamp(52px, 6.4vw, 88px)/.94 var(--display); letter-spacing: -.045em; }
.hero-lede { max-width: 650px; margin: 25px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-facts li::before { content: "✓"; margin-right: 7px; color: var(--green); }
.home-hero-media { position: relative; min-height: 560px; margin: 0; overflow: hidden; border: 1px solid var(--plum-soft); border-radius: 42px 42px 18px 18px; background: var(--white); box-shadow: var(--shadow); }
.home-hero-media img { display: block; width: 100%; height: 560px; object-fit: cover; }
.home-hero-media figcaption { position: absolute; right: 18px; bottom: 18px; padding: 9px 12px; border-radius: 999px; background: rgba(251,247,242,.92); color: var(--plum-dark); font-size: 11px; font-weight: 800; letter-spacing: .05em; backdrop-filter: blur(10px); }
.home-hero-art { position: relative; min-height: 540px; overflow: hidden; border-radius: 48% 48% 28px 28px; background: radial-gradient(circle at 50% 30%, #fff8e9 0 20%, transparent 21%), linear-gradient(150deg, #eadce7, #d59aa5); }
.home-hero-art::before, .home-hero-art::after { content: ""; position: absolute; border: 1px solid rgba(84, 41, 77, .25); border-radius: 50%; }
.home-hero-art::before { inset: 34px; }
.home-hero-art::after { inset: 88px; }
.hero-sundae { position: absolute; z-index: 3; left: 50%; bottom: 42px; width: 230px; height: 260px; transform: translateX(-50%); display: grid; place-items: end center; border-radius: 18px 18px 55px 55px; background: linear-gradient(145deg, #fff, #eee1d3); box-shadow: 0 28px 50px rgba(84, 41, 77, .2); clip-path: polygon(6% 0, 94% 0, 81% 100%, 19% 100%); }
.hero-sundae b { align-self: center; color: var(--plum); font: 700 31px/1 var(--display); text-align: center; }
.hero-scoop { position: absolute; top: -76px; width: 150px; height: 150px; border-radius: 48%; box-shadow: inset -14px -16px 23px rgba(36, 28, 35, .14); }
.scoop-a { left: -20px; background: #d7788f; }
.scoop-b { right: -20px; background: #7a456e; }
.scoop-c { left: 40px; top: -145px; background: #f1d896; }
.orbit-label { position: absolute; z-index: 4; padding: 8px 11px; border-radius: 999px; background: var(--cream); color: var(--plum-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; box-shadow: 0 8px 20px rgba(84, 41, 77, .12); }
.orbit-ice { top: 80px; left: 32px; transform: rotate(-8deg); }
.orbit-bake { top: 155px; right: 28px; transform: rotate(7deg); }
.orbit-coffee { bottom: 55px; left: 38px; transform: rotate(4deg); }

.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 34px; }
.section-intro h2, .spotlight-copy h2, .visit-copy h2 { max-width: 760px; margin: 0; font: 700 clamp(38px, 5vw, 62px)/1 var(--display); letter-spacing: -.035em; }
.section-intro > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.offer-card { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; height: 250px; min-height: 250px; border: 1px solid var(--plum-soft); border-radius: 28px; background: var(--white); }
.offer-copy { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 29px; }
.offer-copy h3 { margin: auto 0 9px; font: 700 35px/1 var(--display); }
.offer-copy p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.offer-copy a { color: var(--plum); font-size: 13px; font-weight: 800; text-decoration: none; }
.product-art { position: relative; min-height: 100%; overflow: hidden; }
.product-photo { min-height: 100%; overflow: hidden; background: var(--plum-soft); }
.product-photo img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .35s ease; }
.offer-card:hover .product-photo img { transform: scale(1.025); }
.brand-board-crop img { object-position: 64% 45%; }
.ice-art { background: #efd8df; }
.ice-art::before, .ice-art::after, .ice-art i { content: ""; position: absolute; width: 132px; height: 132px; border-radius: 48%; box-shadow: inset -12px -15px 20px rgba(36, 28, 35, .13); }
.ice-art::before { left: 20px; top: 68px; background: #d7788f; }
.ice-art::after { right: -8px; top: 25px; background: #f1d896; }
.ice-art i { left: 75px; top: 155px; background: #75456c; }
.bake-art { background: #f0d9bd; }
.bake-art i { position: absolute; left: 50%; top: 50%; width: 210px; height: 120px; transform: translate(-50%, -50%) rotate(-12deg); border-radius: 65% 15% 65% 15%; background: repeating-linear-gradient(100deg, #ca8350 0 18px, #e9b879 19px 34px); box-shadow: 0 20px 35px rgba(91, 52, 34, .18); }
.coffee-art { background: #d8c3b8; }
.coffee-art i { position: absolute; left: 50%; top: 50%; width: 150px; height: 160px; transform: translate(-55%, -48%); border-radius: 12px 12px 45px 45px; background: #fff8ee; box-shadow: 0 22px 36px rgba(80, 47, 39, .18); }
.coffee-art i::before { content: ""; position: absolute; inset: 14px 13px auto; height: 34px; border-radius: 50%; background: radial-gradient(circle, #f5e1c8 0 30%, #9c6b55 32% 55%, #654336 57%); }
.coffee-art i::after { content: ""; position: absolute; right: -42px; top: 40px; width: 58px; height: 72px; border: 14px solid #fff8ee; border-left: 0; border-radius: 0 45px 45px 0; }
.breakfast-art { background: #d8dfc9; }
.breakfast-art i { position: absolute; left: 50%; top: 50%; width: 210px; height: 210px; transform: translate(-50%, -50%); border: 18px solid #f8f3e8; border-radius: 50%; background: radial-gradient(circle at 38% 45%, #f4ca65 0 17%, #fff8df 18% 31%, transparent 32%), radial-gradient(circle at 70% 60%, #79a06f 0 17%, transparent 18%), #d79779; box-shadow: 0 22px 36px rgba(73, 88, 63, .16); }

.flavour-spotlight { background: var(--plum-dark); color: var(--white); }
.spotlight-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 52px; align-items: center; }
.spotlight-copy p:not(.eyebrow) { max-width: 640px; color: #e1d4df; line-height: 1.7; }
.spotlight-copy .button { margin-top: 18px; }
.flavour-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.flavour-list span { display: flex; align-items: center; min-height: 92px; padding: 18px; border: 1px solid rgba(255,255,255,.19); border-radius: 20px; background: rgba(255,255,255,.06); font: 600 20px/1.1 var(--display); }
.flavour-list span:last-child { background: var(--blush); color: var(--plum-dark); }
.home-flavour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.home-flavour-card { position: relative; min-height: 235px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(255,255,255,.07); color: var(--white); text-decoration: none; }
.home-flavour-card img { display: block; width: 100%; height: 235px; object-fit: cover; transition: transform .3s ease; }
.home-flavour-card:hover img { transform: scale(1.04); }
.home-flavour-card::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(36,28,35,.88)); }
.home-flavour-card > span { position: absolute; z-index: 2; right: 16px; bottom: 15px; left: 16px; display: grid; gap: 5px; }
.home-flavour-card small { color: #efd8e4; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.home-flavour-card strong { font: 700 21px/1 var(--display); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps-grid article { padding: 28px; border-top: 2px solid var(--plum); background: var(--white); }
.steps-grid article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--plum-soft); color: var(--plum); font-weight: 800; }
.steps-grid h3 { margin: 42px 0 8px; font: 700 25px/1.1 var(--display); }
.steps-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.business-gateway { border-top: 1px solid var(--plum-soft); }
.business-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.business-card { position: relative; display: flex; flex-direction: column; min-height: 390px; padding: 34px; overflow: hidden; border-radius: 30px; color: var(--white); text-decoration: none; }
.business-card::after { content: ""; position: absolute; right: -90px; bottom: -110px; width: 290px; height: 290px; border: 60px solid rgba(255,255,255,.09); border-radius: 50%; }
.event-card { background: linear-gradient(145deg, var(--berry), var(--plum-dark)); }
.wholesale-card { background: linear-gradient(145deg, #47685c, #263f37); }
.business-type { font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.business-card h3 { max-width: 480px; margin: auto 0 12px; font: 700 42px/1 var(--display); }
.business-card p { max-width: 490px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.7; }
.card-link { margin-top: 18px; font-size: 13px; font-weight: 800; }

.visit-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.visit-copy p:not(.eyebrow) { max-width: 600px; color: var(--muted); line-height: 1.7; }
.visit-copy .button { margin-top: 14px; }
.hours-card { padding: 30px; border-radius: 28px; background: var(--plum-soft); }
.hours-card div { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(84,41,77,.16); }
.hours-card span { color: var(--muted); font-size: 14px; }
.hours-card strong { color: var(--plum-dark); }
.hours-card > a { display: inline-block; margin-top: 24px; color: var(--plum-dark); font: 700 24px var(--display); }

.marketing-footer { padding: 74px 0 22px; overflow: hidden; background: var(--plum); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.05fr .7fr 1.2fr .9fr; gap: clamp(34px, 5vw, 78px); align-items: start; }
.footer-brand-column { display: grid; align-content: start; }
.footer-brand { display: grid; color: var(--white); text-decoration: none; }
.footer-brand strong { font: 700 43px/.95 var(--display); letter-spacing: -.035em; }
.footer-brand > span { margin-top: 8px; color: #e8d8e5; font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.footer-person-card { display: grid; gap: 5px; margin-top: 34px; padding: 20px 22px; border-radius: 4px 24px 4px 4px; background: var(--cream); color: var(--ink); box-shadow: 0 18px 38px rgba(42,18,38,.18); }
.footer-person-card > strong { font: 700 22px/1.05 var(--display); }
.footer-person-card > span { color: var(--plum); font-size: 12px; font-weight: 700; }
.footer-person-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--plum-dark); font-size: 12px; font-weight: 800; text-decoration: none; }
.footer-person-card i { color: var(--berry); font-style: normal; }
.footer-column { display: grid; align-content: start; gap: 10px; color: #eee2ec; font-size: 13px; }
.footer-rule { width: 34px; height: 4px; margin-bottom: 25px; border-radius: 999px; background: var(--cream); }
.footer-column > strong { margin-bottom: 2px; color: var(--white); font-size: 13px; font-weight: 800; }
.footer-column > a { width: fit-content; color: #eee2ec; line-height: 1.4; text-decoration: none; }
.footer-column > a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-company { gap: 27px; }
.footer-company .footer-rule { margin-bottom: -2px; }
.footer-detail { display: grid; grid-template-columns: 1fr; align-items: start; }
.footer-detail > div { display: grid; gap: 6px; }
.footer-detail strong { color: var(--white); font-size: 13px; line-height: 1.35; }
.footer-detail span { color: #eee2ec; font-size: 12px; line-height: 1.4; }
.footer-cooperation .footer-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--white); font-weight: 800; }
.footer-cooperation i { font-style: normal; }
.footer-social-icons { display: flex; gap: 10px; margin-top: 24px; }
.footer-social-icons a { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: var(--cream); color: var(--plum); font: 800 20px/1 var(--sans); text-decoration: none; transition: transform .18s ease, background .18s ease; }
.footer-social-icons svg { display: block; width: 21px; height: 21px; }
.footer-social-icons a:hover { transform: translateY(-2px); background: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 64px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); color: #ddcddd; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* Shared business pages */
.business-page-main { overflow: hidden; }
.business-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; min-height: 640px; padding-block: 72px; }
.business-hero-copy .hero-lede { max-width: 670px; }
.business-hero-art { position: relative; min-height: 480px; border-radius: 30px; background: var(--plum-soft); }
.business-hero-art.event-visual { background: linear-gradient(145deg, #e7bdcb, #8c4d79); }
.business-hero-art.wholesale-visual { background: linear-gradient(145deg, #dce7d8, #557466); }
.business-hero-photo { min-height: 500px; overflow: hidden; margin: 0; border-radius: 36px 36px 16px 16px; background: var(--plum-soft); box-shadow: var(--shadow); }
.business-hero-photo img { display: block; width: 100%; height: 500px; object-fit: cover; }
.business-hero-photo figcaption { padding: 11px 16px; background: var(--white); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.business-hero-photo.event-photo img { object-position: 51% 50%; }
.business-hero-photo.wholesale-photo img { object-position: 50% 47%; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 25px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: var(--plum); text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: var(--blush); }
.business-kicker { display: inline-flex; margin-bottom: 17px; padding: 7px 10px; border-radius: 999px; background: var(--plum-soft); color: var(--plum); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-option { display: flex; flex-direction: column; min-height: 410px; padding: 34px; border: 1px solid var(--plum-soft); border-radius: 30px; background: var(--white); }
.service-option:nth-child(2) { background: var(--plum-dark); color: var(--white); }
.service-option > span { color: var(--berry); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.service-option:nth-child(2) > span { color: #e9bbcc; }
.service-option h3 { max-width: 500px; margin: auto 0 12px; font: 700 38px/1 var(--display); }
.service-option > p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-option:nth-child(2) > p { color: #ddced9; }
.service-points { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 700; }
.service-points li::before { content: "✓"; margin-right: 8px; color: var(--green); }
.service-option:nth-child(2) .service-points li::before { color: #efc2d2; }
.value-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.value-photo { min-height: 570px; overflow: hidden; border-radius: 20px 90px 20px 20px; background: var(--plum-soft); }
.value-photo img { display: block; width: 100%; height: 570px; object-fit: cover; }
.value-copy h2 { margin: 0; font: 700 clamp(38px, 5vw, 62px)/1 var(--display); letter-spacing: -.035em; }
.value-copy > p { color: var(--muted); line-height: 1.7; }
.benefit-list { display: grid; gap: 18px; margin: 30px 0 0; padding: 0; list-style: none; }
.benefit-list li { position: relative; padding-left: 31px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.benefit-list li::before { content: ""; position: absolute; top: 8px; left: 0; width: 18px; height: 5px; border-radius: 999px; background: var(--blush); }
.benefit-list strong { color: var(--ink); }
.collaboration-details { padding: 52px; border-radius: 44px 44px 18px 18px; background: var(--cream-deep); }
.collaboration-details-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: start; }
.collaboration-details h2 { margin: 0; color: var(--plum); font: 700 clamp(38px, 5vw, 62px)/.98 var(--display); }
.detail-facts { display: grid; gap: 0; margin: 0; }
.detail-facts div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(84,41,77,.13); }
.detail-facts dt { color: var(--plum-dark); font-size: 12px; font-weight: 800; }
.detail-facts dd { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.audience-grid article { min-height: 210px; padding: 24px; border: 1px solid var(--plum-soft); border-radius: 22px; background: var(--white); }
.audience-grid span { color: var(--berry); font-size: 11px; font-weight: 800; }
.audience-grid h3 { margin: 50px 0 7px; font: 700 23px/1 var(--display); }
.audience-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.offer-page-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; min-height: 580px; padding-block: 64px; }
.offer-page-hero h1 { margin: 0; font: 700 clamp(52px,6vw,82px)/.95 var(--display); letter-spacing: -.045em; }
.offer-page-hero p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.offer-page-hero img { display: block; width: 100%; height: 500px; object-fit: cover; border-radius: 35px; box-shadow: var(--shadow); }
.menu-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.menu-category { overflow: hidden; border: 1px solid var(--plum-soft); border-radius: 30px; background: var(--white); }
.menu-category img { display: block; width: 100%; height: 330px; object-fit: cover; }
.menu-category-copy { padding: 28px; }
.menu-category-copy span { color: var(--berry); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.menu-category-copy h2 { margin: 12px 0 8px; font: 700 38px/1 var(--display); }
.menu-category-copy p { min-height: 64px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.menu-category-copy a { color: var(--plum); font-size: 13px; font-weight: 800; text-decoration: none; }
.event-visual::before { content: ""; position: absolute; left: 50%; bottom: 45px; width: 250px; height: 300px; transform: translateX(-50%); border-radius: 130px 130px 24px 24px; background: var(--cream); box-shadow: var(--shadow); }
.event-visual::after { content: "Słodkie\\A Tematy"; white-space: pre; position: absolute; left: 50%; bottom: 130px; transform: translateX(-50%); color: var(--plum); font: 700 34px/1 var(--display); text-align: center; }
.wholesale-visual::before, .wholesale-visual::after { content: ""; position: absolute; left: 50%; width: 280px; height: 150px; transform: translateX(-50%); border: 10px solid var(--cream); border-radius: 20px; box-shadow: var(--shadow); }
.wholesale-visual::before { top: 88px; background: #7f4d76; }
.wholesale-visual::after { top: 245px; background: #d7a45e; }
.page-section { padding-block: 82px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.feature-grid article { min-height: 230px; padding: 28px; border-radius: 23px; background: var(--white); border: 1px solid var(--plum-soft); }
.feature-grid span { color: var(--berry); font-size: 10px; font-weight: 800; }
.feature-grid h3 { margin: 48px 0 8px; font: 700 27px/1 var(--display); }
.feature-grid p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.process-band { background: var(--cream-deep); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; counter-reset: process; }
.process-list article { counter-increment: process; padding: 24px; border-radius: 20px; background: var(--cream); }
.process-list article::before { content: "0" counter(process); color: var(--berry); font-size: 11px; font-weight: 800; }
.process-list h3 { margin: 35px 0 8px; font: 700 23px/1.05 var(--display); }
.process-list p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.format-card { padding: 34px; border-radius: 27px; background: var(--white); border: 1px solid var(--plum-soft); }
.format-card strong { display: block; margin: 22px 0 8px; font: 700 46px var(--display); color: var(--plum-dark); }
.format-card p { color: var(--muted); line-height: 1.65; }
.business-cta { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 44px; border-radius: 30px; background: var(--plum-dark); color: var(--white); }
.business-cta h2 { max-width: 760px; margin: 0; font: 700 clamp(35px, 5vw, 56px)/1 var(--display); }
.business-cta p { color: #dfd2dc; }

@media (max-width: 940px) {
  .marketing-header { flex-wrap: wrap; }
  .mobile-menu-toggle { display: grid; }
  .marketing-nav { position: absolute; top: 100%; right: 14px; left: 14px; display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 10px; border: 1px solid var(--plum-soft); border-radius: 20px; background: rgba(255,255,255,.99); box-shadow: var(--shadow); }
  .marketing-nav.is-open { display: flex; }
  .marketing-nav > a, .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 13px 14px; text-align: left; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { position: static; display: none; width: 100%; padding: 4px 8px 8px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: none; transform: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: grid; transform: none; }
  .mobile-order-link { display: grid; margin-top: 5px; background: var(--plum); color: var(--white) !important; text-align: center !important; }
  .home-hero, .business-hero, .spotlight-grid, .visit-section, .offer-page-hero, .value-split { grid-template-columns: 1fr; }
  .home-hero-art, .home-hero-media { min-height: 500px; }
  .offer-grid, .business-cards, .service-options { grid-template-columns: 1fr; }
  .collaboration-details-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 660px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section-space, .page-section { padding-block: 62px; }
  .marketing-header { gap: 12px; min-height: 66px; padding-inline: 14px; }
  .wordmark strong { font-size: 17px; }
  .wordmark small { display: none; }
  .header-order, .portal-login-link { display: none; }
  .home-hero { min-height: auto; padding-block: 44px; }
  .home-hero h1, .business-hero h1 { font-size: 49px; }
  .home-hero-art, .home-hero-media, .business-hero-art { min-height: 390px; }
  .home-hero-media img { height: 390px; }
  .business-hero-photo { min-height: 380px; }
  .business-hero-photo img { height: 340px; }
  .hero-sundae { width: 190px; height: 220px; }
  .hero-scoop { width: 125px; height: 125px; }
  .section-intro { align-items: flex-start; flex-direction: column; }
  .offer-card { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .product-art, .product-photo { height: 260px; min-height: 260px; }
  .product-photo img { height: 260px; }
  .flavour-list, .steps-grid, .feature-grid, .process-list, .format-grid { grid-template-columns: 1fr; }
  .home-flavour-grid { grid-template-columns: 1fr 1fr; }
  .home-flavour-card, .home-flavour-card img { min-height: 190px; height: 190px; }
  .home-flavour-card strong { font-size: 17px; }
  .business-card { min-height: 350px; padding: 26px; }
  .business-card h3 { font-size: 36px; }
  .business-cta { grid-template-columns: 1fr; padding: 30px; }
  .collaboration-details { padding: 28px 22px; border-radius: 30px 30px 14px 14px; }
  .detail-facts div { grid-template-columns: 1fr; gap: 6px; }
  .audience-grid, .menu-categories { grid-template-columns: 1fr; }
  .value-photo, .value-photo img { min-height: 410px; height: 410px; }
  .service-option { min-height: 360px; padding: 27px; }
  .offer-page-hero { min-height: auto; padding-block: 44px; }
  .offer-page-hero img { height: 370px; }
  .menu-category img { height: 260px; }
  .marketing-footer { padding-top: 55px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .footer-brand strong { font-size: 38px; }
  .footer-person-card { max-width: 340px; margin-top: 26px; }
  .footer-rule { margin-bottom: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 48px; }
}
