
:root {
  --c-bg: #0a0812;
  --c-surface: #120f1e;
  --c-surface-2: #1a1530;
  --c-border: rgba(255,255,255,0.08);
  --c-text: #e8e2f5;
  --c-text-muted: #9488b8;
  --c-magenta: #e0148a;
  --c-magenta-glow: rgba(224,20,138,0.35);
  --c-teal: #00d4c8;
  --c-teal-glow: rgba(0,212,200,0.3);
  --c-white: #ffffff;
  --c-gold: #f0c040;

  --ff-display: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --space-xs: clamp(8px, 1.5vw, 12px);
  --space-sm: clamp(12px, 2vw, 20px);
  --space-md: clamp(24px, 4vw, 48px);
  --space-lg: clamp(48px, 8vw, 96px);
  --space-xl: clamp(64px, 12vw, 128px);

  --nav-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

address {
  font-style: normal;
}

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

.container {
  width: 92%;
  max-width: 1240px;
  margin-inline: auto;
}

.accent-dot {
  color: var(--c-magenta);
}

.accent-dot--teal {
  color: var(--c-teal);
}

.section-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: var(--space-xs);
}

.section-label.light {
  color: var(--c-teal);
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--c-text-muted);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.section-heading.light,
.section-sub.light {
  color: var(--c-white);
}

.section-sub.light {
  color: rgba(255,255,255,0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn:focus-visible {
  outline: 3px solid var(--c-teal);
  outline-offset: 3px;
}

.btn-neon {
  background: var(--c-magenta);
  color: var(--c-white);
  border-color: var(--c-magenta);
  box-shadow: 0 0 20px var(--c-magenta-glow);
}

.btn-neon:hover {
  background: #f0249a;
  box-shadow: 0 0 36px var(--c-magenta-glow), 0 4px 24px rgba(224,20,138,0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.btn-outline-neon {
  background: transparent;
  color: var(--c-magenta);
  border-color: var(--c-magenta);
}

.btn-outline-neon:hover {
  background: var(--c-magenta);
  color: var(--c-white);
  box-shadow: 0 0 28px var(--c-magenta-glow);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(16px, 4vw, 48px);
  background: rgba(10, 8, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}

.logo {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-cha {
  color: var(--c-magenta);
  text-shadow: 0 0 16px var(--c-magenta-glow);
}

.logo-point {
  color: var(--c-white);
}

.site-nav {
  display: none;
  gap: clamp(20px, 3vw, 40px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--c-white);
}

.header-cta {
  font-size: 13px;
  padding: 10px 22px;
}

@media (min-width: 700px) {
  .site-nav {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,8,18,0.82) 0%,
    rgba(26,5,30,0.7) 50%,
    rgba(10,8,18,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + var(--space-lg));
  padding-bottom: var(--space-xl);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: var(--space-sm);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(42px, 9vw, 104px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--c-white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: var(--space-sm);
  max-width: 12ch;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  margin-bottom: var(--space-md);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-magenta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.highlights {
  padding-block: var(--space-lg);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .highlights-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}

.highlight-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.highlight-card:hover {
  border-color: rgba(224,20,138,0.3);
  transform: translateY(-4px);
}

.highlight-card--featured {
  background: linear-gradient(135deg, #1e1040 0%, #2a0e4a 100%);
  border-color: rgba(224,20,138,0.4);
  box-shadow: 0 0 40px rgba(224,20,138,0.12);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  color: var(--c-teal);
}

.highlight-card--featured .highlight-icon {
  color: var(--c-magenta);
}

.highlight-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.highlight-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-magenta);
  background: rgba(224,20,138,0.12);
  border: 1px solid rgba(224,20,138,0.3);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  width: fit-content;
}

.menu-teaser {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}

.menu-teaser .container {
  margin-bottom: var(--space-md);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: var(--space-md);
}

@media (min-width: 700px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-card--large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .menu-card--large .menu-card-img {
    aspect-ratio: unset;
    min-height: 360px;
  }
}

@media (min-width: 1000px) {
  .menu-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .menu-card--large {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
  }
  .menu-card--large .menu-card-img {
    aspect-ratio: 3/2;
    min-height: unset;
  }
}

.menu-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.menu-card:hover {
  border-color: rgba(0,212,200,0.25);
  transform: translateY(-4px);
}

.menu-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.menu-card-img img {
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.menu-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
}

.menu-card-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.menu-card-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
}

.menu-teaser-cta {
  text-align: center;
}

.twin-cup-feature {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}

@media (min-width: 860px) {
  .twin-cup-feature {
    grid-template-columns: 1fr 1fr;
  }
}

.twin-cup-media {
  position: relative;
  min-height: 380px;
}

@media (min-width: 860px) {
  .twin-cup-media {
    min-height: unset;
  }
}

.twin-cup-content {
  background: linear-gradient(135deg, #110a2e 0%, #1e0a3c 100%);
  padding: clamp(40px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.locations {
  padding-block: var(--space-xl);
  background: var(--c-surface);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: var(--space-md);
}

@media (min-width: 600px) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.location-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  border-color: rgba(224,20,138,0.3);
  transform: translateY(-4px);
}

.location-card--primary {
  border-color: rgba(224,20,138,0.4);
  box-shadow: 0 0 32px rgba(224,20,138,0.1);
}

.location-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.location-img img {
  transition: transform 0.5s ease;
}

.location-card:hover .location-img img {
  transform: scale(1.06);
}

.location-body {
  padding: clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.location-name {
  font-family: var(--ff-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.flagship-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-magenta);
  background: rgba(224,20,138,0.1);
  border: 1px solid rgba(224,20,138,0.3);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}

.location-body address p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.location-hours {
  border-top: 1px solid var(--c-border);
  padding-top: 10px;
}

.location-hours p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.location-hours strong {
  color: var(--c-text);
  font-weight: 500;
}

.locations-cta {
  text-align: center;
}

.cta-banner {
  position: relative;
  padding-block: var(--space-xl);
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(224,20,138,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0,212,200,0.12) 0%, transparent 60%),
              var(--c-bg);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cta-banner-heading {
  font-family: var(--ff-display);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
}

.cta-banner-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-text-muted);
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: var(--space-xs);
}

.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--c-border);
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 22px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--c-text-muted);
  max-width: 32ch;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--c-white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color 0.15s;
}

.footer-contact a:hover {
  color: var(--c-teal);
}

.footer-bottom {
  padding-block: var(--space-sm);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: center;
}



.menu-hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: var(--space-xl);
}

.menu-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.menu-hero-media img {
  object-position: center 60%;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + var(--space-lg));
}

.menu-nav-strip {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-nav-strip::-webkit-scrollbar {
  display: none;
}

.menu-nav-inner {
  display: flex;
  gap: 8px;
  padding-block: 14px;
  width: max-content;
  min-width: 100%;
}

.menu-nav-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.menu-nav-pill:hover {
  color: var(--c-white);
  border-color: var(--c-teal);
  background: rgba(0,212,200,0.07);
}

.menu-section {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}

.menu-section--dark {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.menu-section--alt {
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 560px) {
  .menu-items-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .menu-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-items-grid--3col {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .menu-items-grid--3col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 860px) {
  .menu-items-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.menu-section--dark .menu-item-card,
.menu-section--alt .menu-item-card {
  background: var(--c-surface-2);
}

.menu-item-card:hover {
  border-color: rgba(0,212,200,0.3);
  transform: translateY(-4px);
}

.menu-item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.menu-item-img img {
  transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-img img {
  transform: scale(1.06);
}

.menu-item-body {
  padding: clamp(14px, 2.5vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.menu-item-name {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  flex: 1;
}

.menu-item-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-magenta);
  background: rgba(224,20,138,0.1);
  border: 1px solid rgba(224,20,138,0.28);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  width: fit-content;
}

.twin-cup-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 780px) {
  .twin-cup-banner {
    grid-template-columns: 1fr 1fr;
  }
}

.twin-cup-banner-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(224,20,138,0.2);
  border: 1px solid rgba(224,20,138,0.25);
}

.twin-cup-banner-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.twin-cup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.desserts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 860px) {
  .desserts-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.dessert-feature-card {
  background: var(--c-surface-2);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.dessert-feature-card:hover {
  border-color: rgba(0,212,200,0.4);
  transform: translateY(-4px);
}

.dessert-feature-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.dessert-feature-img img {
  transition: transform 0.5s ease;
}

.dessert-feature-card:hover .dessert-feature-img img {
  transform: scale(1.06);
}

.dessert-feature-body {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gelato-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gelato-flavour-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}

.gelato-flavour-card:hover {
  border-color: rgba(0,212,200,0.25);
  transform: translateY(-3px);
}

.gelato-flavour-img {
  height: 90px;
  overflow: hidden;
}

.gelato-flavour-img img {
  height: 100%;
  object-position: center;
  transition: transform 0.5s ease;
}

.gelato-flavour-card:hover .gelato-flavour-img img {
  transform: scale(1.08);
}

.toppings-section {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}

.toppings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-sm);
}

.topping-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.topping-pill:hover {
  background: var(--c-surface-2);
  border-color: rgba(255,255,255,0.18);
}

.topping-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.halal-strip {
  padding-block: var(--space-lg);
  background: linear-gradient(135deg, #0e1a14 0%, #0a1a1a 100%);
  border-top: 1px solid rgba(0,212,200,0.15);
  border-bottom: 1px solid rgba(0,212,200,0.15);
}

.halal-strip-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}

.halal-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--c-teal);
  filter: drop-shadow(0 0 12px var(--c-teal-glow));
}

.halal-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.halal-heading {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1.15;
}

.halal-text {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,0.6);
  max-width: 56ch;
  line-height: 1.65;
}



.about-hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + var(--space-lg));
  padding-bottom: var(--space-xl);
}

.about-origin {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}

.about-origin-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 860px) {
  .about-origin-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
  }
}

.about-origin-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-border);
}

.about-body-text {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-pillars {
  padding-block: var(--space-xl);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.about-pillars > .container {
  margin-bottom: var(--space-md);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .about-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pillar-card:hover {
  border-color: rgba(0,212,200,0.3);
  transform: translateY(-4px);
}

.pillar-card--featured {
  background: linear-gradient(135deg, #1e1040 0%, #2a0e4a 100%);
  border-color: rgba(224,20,138,0.4);
  box-shadow: 0 0 40px rgba(224,20,138,0.12);
}

.pillar-card--featured:hover {
  border-color: rgba(224,20,138,0.6);
}

.pillar-number {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-teal);
  opacity: 0.6;
}

.pillar-card--featured .pillar-number {
  color: var(--c-magenta);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  color: var(--c-teal);
}

.pillar-card--featured .pillar-icon {
  color: var(--c-magenta);
}

.pillar-title {
  font-family: var(--ff-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.pillar-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  flex: 1;
}

.about-lounge {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}

@media (min-width: 860px) {
  .about-lounge {
    grid-template-columns: 1fr 1fr;
  }
}

.about-lounge-media {
  position: relative;
  min-height: 340px;
}

@media (min-width: 860px) {
  .about-lounge-media {
    min-height: unset;
  }
}

.about-lounge-content {
  background: linear-gradient(135deg, #110a2e 0%, #1e0a3c 100%);
  padding: clamp(40px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.about-awards {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}

.about-awards-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 860px) {
  .about-awards-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
  }
}

.about-awards-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-border);
  order: 2;
}

@media (min-width: 860px) {
  .about-awards-media {
    order: unset;
  }
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--c-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-value {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--c-magenta);
  text-shadow: 0 0 20px var(--c-magenta-glow);
  line-height: 1;
}

.about-stat-label {
  font-size: 12px;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  max-width: 16ch;
  line-height: 1.4;
}

.about-team-img {
  padding-block: var(--space-xl);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.about-team-img > .container > .section-sub {
  margin-bottom: var(--space-md);
}

.about-community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: var(--space-md);
}

@media (min-width: 600px) {
  .about-community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-community-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-border);
  transition: border-color 0.2s, transform 0.2s;
}

.about-community-img:hover {
  border-color: rgba(0,212,200,0.25);
  transform: translateY(-4px);
}

.about-community-img img {
  transition: transform 0.5s ease;
}

.about-community-img:hover img {
  transform: scale(1.05);
}



.contact-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-media img {
  object-position: center;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + var(--space-lg));
  padding-bottom: var(--space-xl);
}

.contact-info-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--space-md);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .contact-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .contact-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-strip-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--c-teal);
  margin-top: 2px;
}

.contact-strip-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 4px;
}

.contact-strip-value {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.contact-strip-link {
  color: var(--c-text-muted);
  transition: color 0.15s;
}

.contact-strip-link:hover {
  color: var(--c-teal);
}

.locations {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}

.contact-reach {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--space-xl);
}

.contact-reach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 860px) {
  .contact-reach-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.reach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-xs);
}

.contact-reach-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
