/* ============================================================
   LOVE PORTION CAFE — styles.css  (LIGHT THEME)
   Mobile-first, modern, premium design
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colours — drawn from the Love Portion logo */
  --clr-primary:       hsl(330, 72%, 47%);     /* logo magenta/fuchsia */
  --clr-primary-dark:  hsl(330, 72%, 35%);
  --clr-primary-light: hsl(330, 72%, 60%);
  --clr-accent:        hsl(181, 45%, 45%);      /* logo teal */
  --clr-accent-dark:   hsl(181, 45%, 35%);
  --clr-gold:          hsl(42,  60%, 55%);      /* logo gold */

  /* Light theme neutrals */
  --clr-bg:            hsl(0, 0%, 99%);
  --clr-bg-2:          hsl(210, 20%, 97%);
  --clr-bg-3:          hsl(210, 16%, 93%);
  --clr-surface:       #ffffff;
  --clr-border:        hsl(210, 20%, 88%);
  --clr-text:          hsl(220, 25%, 16%);
  --clr-text-muted:    hsl(220, 12%, 48%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --radius-sm:    0.5rem;
  --radius-md:    1rem;
  --radius-lg:    1.5rem;
  --radius-xl:    2rem;

  /* Shadows */
  --shadow-glow: 0 0 40px hsla(330,72%,47%,0.18);
  --shadow-card: 0 4px 24px hsla(220,25%,16%,0.09);
  --shadow-lg:   0 12px 48px hsla(220,25%,16%,0.14);

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- GLOBAL UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--section-pad); }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 0.75rem;
}

.section-label.light { color: var(--clr-primary-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--clr-text-muted);
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), hsl(300,55%,48%));
  color: #fff;
  box-shadow: 0 4px 20px hsla(330,72%,47%,0.28);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px hsla(330,72%,47%,0.42);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid hsla(0,0%,100%,0.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: hsla(0,0%,100%,0.18);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px hsla(142,60%,45%,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px hsla(142,60%,45%,0.5);
}

.btn-call {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  color: #fff;
  box-shadow: 0 4px 20px hsla(181,45%,45%,0.3);
}
.btn-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px hsla(181,45%,45%,0.45);
}

.btn-email {
  background: linear-gradient(135deg, var(--clr-gold), hsl(35,80%,45%));
  color: #fff;
  box-shadow: 0 4px 20px hsla(42,60%,55%,0.3);
}
.btn-email:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px hsla(42,60%,55%,0.45);
}

.full-width { width: 100%; }

/* Glass card — adapted for light theme */
.glass-card {
  background: hsla(0, 0%, 100%, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(210,20%,88%,0.9);
  border-radius: var(--radius-lg);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.3s, box-shadow 0.3s;
  padding-block: 0.6rem;
  background: hsla(0,0%,100%,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px hsla(220,25%,16%,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--clr-text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--clr-primary), hsl(300,55%,48%));
  color: #fff !important;
  padding: 0.5em 1.25em;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 2px 12px hsla(330,72%,47%,0.25);
}
.nav-cta::after { display: none; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    hsla(330, 30%, 10%, 0.78) 0%,
    hsla(181, 40%, 20%, 0.45) 55%,
    hsla(220, 30%, 10%, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: hsla(0,0%,100%,0.18);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(0,0%,100%,0.28);
  padding: 0.4em 1em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.8s 0.1s var(--ease-out) both;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, hsl(42,100%,75%), hsl(330,100%,80%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: hsla(0,0%,100%,0.85);
  max-width: 50ch;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.8s 0.3s var(--ease-out) both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeSlideUp 0.8s 0.4s var(--ease-out) both;
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: hsla(0,0%,100%,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px; height: 2.5rem;
  background: hsla(0,0%,100%,0.25);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeSlideUp 1s 0.8s var(--ease-out) both;
}

.scroll-dot {
  display: block;
  width: 28px; height: 44px;
  border: 2px solid hsla(0,0%,100%,0.45);
  border-radius: 100px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 10px;
  background: #fff;
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, hsla(330,72%,47%,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-lead {
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-text p { color: var(--clr-text-muted); margin-bottom: 1rem; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-text);
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.about-visual { position: relative; }

.about-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%; height: 380px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.about-card:hover .about-img { transform: scale(1.04); }

.about-card-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: hsla(0,0%,100%,0.9);
  backdrop-filter: blur(12px);
  padding: 0.4em 1em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}

.about-float-badge {
  position: absolute;
  top: -1rem; right: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: floatBadge 4s ease-in-out infinite;
  background: #fff;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}

.badge-icon { font-size: 1.4rem; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ---------- PRODUCTS SECTION ---------- */
.products-section { background: var(--clr-bg); }

.products-hero-img {
  margin-bottom: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 420px;
}

.products-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(5, 1fr); } }

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
  animation-delay: var(--delay, 0s);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px hsla(220,25%,16%,0.14);
  border-color: var(--clr-primary);
}

.product-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: hsla(330,72%,47%,0.1);
  border: 1px solid hsla(330,72%,47%,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  background: hsla(181,45%,45%,0.1);
  border: 1px solid hsla(181,45%,45%,0.25);
  padding: 0.25em 0.75em;
  border-radius: 100px;
}

.ice-cones-feature {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ice-cones-feature img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.ice-cones-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.65em 1.5em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  box-shadow: var(--shadow-card);
  background: hsla(0,0%,100%,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
}

/* ---------- MACHINERY SECTION ---------- */
.machinery-section {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.machinery-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, hsla(181,45%,45%,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.machinery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .machinery-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.machinery-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.machinery-img-wrap img {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease-out);
}

.machinery-img-wrap:hover img { transform: scale(1.02); }

.machinery-badge {
  position: absolute;
  bottom: -1rem; right: -0.5rem;
  padding: 0.65em 1.25em;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  background: #fff;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}

.machinery-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.machinery-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}

.machinery-item:hover {
  border-color: var(--clr-accent);
  transform: translateX(4px);
}

.machinery-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: hsla(181,45%,45%,0.1);
  border-radius: var(--radius-md);
}

.machinery-item-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.machinery-item-content p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
}

.machinery-features {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: none;
}

.machinery-features li {
  font-size: 0.8rem;
  color: var(--clr-accent-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.machinery-features li::before { content: '→'; font-weight: 700; }

/* ---------- FRANCHISE SECTION ---------- */
.franchise-section {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}

.franchise-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, hsla(330,72%,47%,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, hsla(181,45%,45%,0.06) 0%, transparent 50%);
  z-index: 0;
}

.franchise-section .container { position: relative; z-index: 1; }

.franchise-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .franchise-layout { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}

.franchise-map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.franchise-map-wrap img { width: 100%; display: block; }

.franchise-map-overlay { position: absolute; inset: 0; }

.franchise-location {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.location-dot {
  width: 14px; height: 14px;
  background: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px hsla(330,72%,47%,0.25), 0 0 12px var(--clr-primary);
  animation: pulseLocation 2s ease-in-out infinite;
}

.location-dot.wip {
  background: var(--clr-gold);
  box-shadow: 0 0 0 4px hsla(42,60%,55%,0.25), 0 0 12px var(--clr-gold);
}

@keyframes pulseLocation {
  0%, 100% { box-shadow: 0 0 0 4px hsla(330,72%,47%,0.25), 0 0 12px var(--clr-primary); }
  50%       { box-shadow: 0 0 0 8px hsla(330,72%,47%,0.12), 0 0 20px var(--clr-primary); }
}

.location-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  background: hsla(0,0%,0%,0.55);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  white-space: nowrap;
}

.franchise-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.franchise-card {
  padding: 1.75rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.franchise-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.franchise-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.franchise-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.market-tag {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35em 0.9em;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}

.market-tag.active {
  border-color: var(--clr-primary);
  color: var(--clr-primary-dark);
  background: hsla(330,72%,47%,0.08);
}

.market-tag.wip {
  border-color: var(--clr-gold);
  color: hsl(35,70%,38%);
  background: hsla(42,60%,55%,0.1);
  animation: pulseTag 2s ease-in-out infinite;
}

@keyframes pulseTag {
  0%, 100% { box-shadow: 0 0 0 0 hsla(42,60%,55%,0); }
  50%       { box-shadow: 0 0 0 4px hsla(42,60%,55%,0.15); }
}

.market-note {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ---------- TEAM SECTION ---------- */
.team-section { background: var(--clr-bg-2); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 700px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
  animation-delay: var(--delay, 0s);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px hsla(220,25%,16%,0.15);
  border-color: var(--clr-primary);
}

.team-avatar-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--avatar-clr, var(--clr-primary)), var(--clr-accent));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px hsla(330,72%,47%,0.25);
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--clr-primary);
  opacity: 0.35;
  animation: ringPulse 3s ease-in-out infinite;
}

.team-card:hover .avatar-ring { opacity: 0.7; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%       { transform: scale(1.08); opacity: 0.15; }
}

.team-role-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-primary-dark);
  background: hsla(330,72%,47%,0.1);
  border: 1px solid hsla(330,72%,47%,0.25);
  padding: 0.3em 0.8em;
  border-radius: 100px;
  white-space: nowrap;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}

.team-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.team-contacts {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
}

.team-contacts .contact-entry-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.team-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
  word-break: break-all;
}

.team-contact-link:hover { color: var(--clr-primary); }

.contact-icon { flex-shrink: 0; font-size: 0.9rem; }

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsla(181,45%,45%,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* General enquiries card */
.contact-card {
  padding: 2rem;
  height: fit-content;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-card > p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-entry {
  padding: 1.25rem;
  background: var(--clr-bg-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-entry strong {
  font-size: 0.98rem;
  color: var(--clr-text);
}

.contact-entry span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.contact-entry-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4em 0.9em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  white-space: nowrap;
}

.contact-btn:hover { transform: translateY(-1px); }

.contact-btn-call {
  background: hsla(181,45%,45%,0.12);
  color: var(--clr-accent-dark);
  border: 1px solid hsla(181,45%,45%,0.3);
}
.contact-btn-call:hover {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 4px 14px hsla(181,45%,45%,0.35);
}

.contact-btn-email {
  background: hsla(330,72%,47%,0.1);
  color: var(--clr-primary-dark);
  border: 1px solid hsla(330,72%,47%,0.25);
}
.contact-btn-email:hover {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 14px hsla(330,72%,47%,0.35);
}

.contact-btn-wa {
  background: hsla(142,60%,45%,0.1);
  color: #128C7E;
  border: 1px solid hsla(142,60%,45%,0.3);
}
.contact-btn-wa:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px hsla(142,60%,45%,0.4);
}

/* WhatsApp contact card */
.whatsapp-card {
  padding: 2rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.whatsapp-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 32px hsla(142,60%,45%,0.35);
  animation: floatBadge 4s ease-in-out infinite;
}

.whatsapp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-text);
}

.whatsapp-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  max-width: 36ch;
}

.whatsapp-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #128C7E;
}

.whatsapp-card .btn-whatsapp {
  font-size: 1rem;
  padding: 0.9em 2.2em;
}

.whatsapp-note {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ---------- FOOTER ---------- */
.footer {
  background: hsl(220,22%,16%);
  color: hsl(210,20%,80%);
  border-top: 3px solid var(--clr-primary);
}

.footer-top { padding-block: 4rem 3rem; }

.footer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 700px) {
  .footer-layout { grid-template-columns: 1.5fr 2fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.95;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: hsl(42,80%,70%);
  margin-bottom: 0.5rem;
}

.footer-company {
  font-size: 0.78rem;
  color: hsl(210,15%,55%);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 500px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(210,15%,60%);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li,
.footer-col a {
  font-size: 0.875rem;
  color: hsl(210,15%,60%);
  transition: color 0.2s;
}

.footer-col a:hover { color: hsl(42,80%,70%); }

.footer-bottom {
  border-top: 1px solid hsl(220,20%,25%);
  padding-block: 1.5rem;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: hsl(210,15%,50%);
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-fade  { transform: none; }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- KEYFRAMES ---------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--clr-bg-3); }
::-webkit-scrollbar-thumb  { background: var(--clr-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary); }

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: hsla(0,0%,100%,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    border-left: 1px solid var(--clr-border);
    box-shadow: -8px 0 40px hsla(220,25%,16%,0.12);
    z-index: 998;
  }

  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; }

  .nav-link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    border-radius: 100px;
    padding: 0.75em 1.5em;
    border: none;
  }

  .nav-toggle { display: flex; z-index: 999; }
  .hero-stats { flex-wrap: wrap; }
}

/* ---------- PREFERS REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-img { animation: none; }
}
