/* ═══════════════════════════════════════════════════
   Studio B Hair Design — Dark Luxury Stylesheet
   Salon Website Factory v1.0
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #242424;
  --bg-footer: #0a0a0a;
  --card-border: rgba(200,169,110,0.15);
  --gold: #C8A96E;
  --gold-dark: #A8894E;
  --gold-gradient: linear-gradient(135deg, #A8894E, #C8A96E, #D4B87A);
  --text-primary: #F5F0E8;
  --text-secondary: #B5B0A7;
  --text-muted: #8a857d;
  --font: 'Work Sans', sans-serif;
  --container: 1280px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text-primary); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
}

/* ── Skip to Content (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
.label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.subtext {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-primary);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.3);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-pulse {
  animation: gentlePulse 2s ease-in-out infinite;
}
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ── Gold Accent Line ── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold-gradient);
  margin-bottom: 24px;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--card-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
}

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-book {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--gold-gradient);
  color: var(--bg-primary) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.nav-book::after { display: none; }
.nav-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,110,0.3);
  color: var(--bg-primary) !important;
}

/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.open { right: 0; }

.mobile-drawer a {
  display: block;
  padding: 16px 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-drawer .btn-gold {
  display: block;
  text-align: center;
  margin-top: 24px;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer-overlay.visible { opacity: 1; }

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.4) 0%,
    rgba(13,13,13,0.7) 50%,
    rgba(13,13,13,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  margin-bottom: 20px;
  opacity: 0;
}
.hero h1.revealed { opacity: 1; }

.hero .subtext {
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}
.hero .subtext.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out 0.6s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-ctas.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out 0.8s;
}

/* ── Sections ── */
section {
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .gold-line {
  margin: 0 auto 24px;
}

.section-header .subtext {
  margin: 12px auto 0;
}

/* ── About (2-column) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 24px; }

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ── Service Cards (4-col grid) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 20px rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.3);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: 24px;
}

.service-card-body .label { margin-bottom: 8px; }

.service-card-body h3 { margin-bottom: 8px; }

.service-card-body p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { gap: 10px; }

/* ── Stylist Cards (3-col grid) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stylist-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all var(--transition);
}

.stylist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stylist-photo {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
}
.stylist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.stylist-card:hover .stylist-photo img { transform: scale(1.05); }

.stylist-placeholder {
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  position: relative;
}

.stylist-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--bg-primary);
}

.stylist-info {
  padding: 20px 24px;
}

.stylist-info h3 { margin-bottom: 4px; }

.stylist-info .role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.stylist-info .book-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--card-border);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.3);
}

.product-logo {
  height: 48px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: brightness(0) invert(0.9);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.product-card:hover .product-logo { opacity: 1; }

.product-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Testimonials ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--card-border);
  transition: all var(--transition);
}

.review-card:hover {
  border-color: rgba(200,169,110,0.3);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-source {
  font-size: 13px;
  color: var(--text-muted);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 48px;
}

/* ── Booking CTA Section ── */
.cta-section {
  background: #151515;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 { margin-bottom: 16px; }

.cta-section .subtext {
  margin: 0 auto 36px;
}

.cta-phone {
  display: block;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-footer);
  padding: 64px 0 32px;
  border-top: 1px solid var(--card-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
}

.footer-col a:hover { color: var(--gold); }

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 4px; }

.footer-hours td {
  padding: 2px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-hours td:first-child {
  padding-right: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--gold); }

/* ── Bella Chat Widget ── */
.bella-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,169,110,0.3);
  transition: all var(--transition);
  animation: bellaGlow 2s ease-in-out infinite;
}
.bella-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(200,169,110,0.4);
}
@keyframes bellaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,169,110,0.3); }
  50% { box-shadow: 0 4px 30px rgba(200,169,110,0.5); }
}

.bella-trigger svg {
  width: 28px;
  height: 28px;
  fill: var(--bg-primary);
}

.bella-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  height: 500px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  z-index: 901;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}
.bella-panel.open {
  display: flex;
  animation: bellaSlideUp 0.3s ease-out;
}
@keyframes bellaSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.bella-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--card-border);
}

.bella-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bella-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-primary);
}

.bella-header h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.bella-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.bella-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bella-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.bella-msg.bot {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  align-self: flex-start;
}

.bella-msg.user {
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.2);
  align-self: flex-end;
  color: var(--text-primary);
}

.bella-typing {
  display: none;
  align-self: flex-start;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  gap: 4px;
}
.bella-typing.active { display: flex; }

.bella-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-secondary);
  animation: typingDot 1.2s ease-in-out infinite;
}
.bella-typing span:nth-child(2) { animation-delay: 0.2s; }
.bella-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.bella-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--card-border);
  background: var(--bg-card);
}

.bella-input input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.bella-input input:focus { border-color: var(--gold); }
.bella-input input::placeholder { color: var(--text-muted); }

.bella-input button {
  background: var(--gold-gradient);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.bella-input button:hover { transform: scale(1.05); }
.bella-input button svg {
  width: 18px;
  height: 18px;
  fill: var(--bg-primary);
}

.bella-powered {
  text-align: center;
  padding: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Subpage Hero Banner ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--gold-gradient);
}

/* ── Service Detail Cards (subpages) ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

.service-detail-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateX(4px);
}

.service-detail-info h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.service-detail-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

.service-detail-price {
  text-align: right;
}

.service-detail-price .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.service-detail-price .duration {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Waxing Price Table ── */
.wax-category { margin-bottom: 48px; }
.wax-category h3 {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}

.wax-list {
  list-style: none;
}

.wax-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 15px;
}

.wax-item .price {
  color: var(--gold);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav-inner { padding: 0 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-drawer { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }

  .bella-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 88px;
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  section { padding: 60px 0; }
}
