/* Premium Design Tokens & Variables */
:root {
  /* Color system */
  --background: #060606; /* Slightly deeper black for maximum contrast */
  --ink: #f4f1ec;
  --accent: #e5ff3c; /* Neon lime */
  --hot: #ff4a1c; /* Crimson-orange for Gastro */
  --border: rgba(244, 241, 236, 0.08); /* Fainter borders for elegance */
  
  /* Typography scale */
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --ease-custom: cubic-bezier(0.16, 1, 0.32, 1);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

html {
  scroll-behavior: smooth;
  background-color: var(--background);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--background);
}

/* Hide default cursor on supported devices */
html.adve-cursor, 
html.adve-cursor body, 
html.adve-cursor body * {
  cursor: none !important;
}

/* Custom Interactive Cursor */
.adve-cursor-dot,
.adve-cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: difference;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.adve-cursor-dot {
  background: var(--ink);
  width: 6px;
  height: 6px;
}

.adve-cursor-ring {
  border: 1px solid rgba(244, 241, 236, 0.5);
  width: 38px;
  height: 38px;
  transition: width 0.25s var(--ease-custom), 
              height 0.25s var(--ease-custom), 
              border-color 0.25s var(--ease-custom), 
              background 0.25s var(--ease-custom);
}

.adve-cursor-ring.hot {
  border-color: var(--accent);
  background: rgba(229, 255, 60, 0.12);
  width: 60px;
  height: 60px;
}

/* Interactive Background Aura */
.cursor-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(229, 255, 60, 0.05) 0%, rgba(229, 255, 60, 0) 70%);
  pointer-events: none;
  z-index: 1; /* Sits behind text, above static background */
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: background 0.8s var(--ease-custom);
}

.cursor-glow.hot-glow {
  background: radial-gradient(circle, rgba(255, 74, 28, 0.07) 0%, rgba(255, 74, 28, 0) 70%);
}

/* Vignette and Grain Overlay */
.grain::after {
  content: "";
  pointer-events: none;
  opacity: 0.05; /* Refined grain opacity */
  mix-blend-mode: overlay;
  z-index: 60;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  position: fixed;
  inset: 0;
}

.vignette::before {
  content: "";
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(transparent 60%, rgba(0, 0, 0, 0.85));
  position: fixed;
  inset: 0;
}

/* Base Content Z-Indexing */
header, section, footer {
  position: relative;
  z-index: 2; /* Sits on top of interactive aura */
}

/* Keyframe Animations */
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bob {
  animation: bob 2.2s ease-in-out infinite;
}

.pulse-dot {
  display: inline-block;
  animation: pulse-slow 2s infinite ease-in-out;
}

/* Layout Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.overflow-hidden { overflow: hidden; }

/* Grid columns & flex alignment */
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing and Padding - Wider scales for desktop */
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Typography Rules */
.font-display {
  font-family: var(--font-display);
}

.font-mono {
  font-family: var(--font-mono);
}

.font-sans {
  font-family: var(--font-sans);
}

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

.text-accent { color: var(--accent); }
.text-hot { color: var(--hot); }
.text-ink { color: var(--ink); }
.text-ink-40 { color: rgba(244, 241, 236, 0.40); }
.text-ink-50 { color: rgba(244, 241, 236, 0.50); }
.text-ink-60 { color: rgba(244, 241, 236, 0.60); }
.text-ink-70 { color: rgba(244, 241, 236, 0.75); }
.text-ink-80 { color: rgba(244, 241, 236, 0.85); }

.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-tighter { letter-spacing: -0.04em; }

.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.6; }

/* Main Section Elements */

/* Hero Section - Wider padding & generous alignment */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-text-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 7.5rem; /* Prevents text elements from touching the absolute marquee */
  min-height: 480px;
}

@media (min-width: 768px) {
  .hero-section {
    height: 100svh; /* Restricts to exactly 1 viewport on desktop */
  }
  .hero-text-container {
    padding-top: 6rem;
    padding-bottom: 9rem;
  }
}

.hero-video-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5; /* Slightly darker video background for high contrast content */
}

.hero-video-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, var(--background) 100%);
}

.logo-link {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.contact-nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(244, 241, 236, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-custom);
}

.contact-nav-link:hover {
  color: var(--background);
  background-color: var(--accent);
  border-color: var(--accent);
}

.hero-heading {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9.5vw, 7.5rem); /* Bounded size for balanced look */
  line-height: 0.85;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-heading .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-subtitle {
  max-width: 48rem;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.75);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Marquee (Infinite ticker) */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-container {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgba(6, 6, 6, 0.4);
  padding: 0.85rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(244, 241, 236, 0.55);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent);
  display: inline-block;
}

/* About Us Section */
.max-w-7xl {
  max-width: 90rem; /* Increased max width for more expansive grid layout */
  margin: 0 auto;
}

.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-left {
  grid-column: span 12;
}

.col-right {
  grid-column: span 12;
}

.sticky-sidebar {
  position: relative;
}

.about-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 1rem;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.about-paragraph {
  margin-top: 3.5rem;
  max-width: 52rem;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.8);
}

.about-stats {
  margin-top: 5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.stat-item {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  transition: border-color 0.3s ease;
}

.stat-item:hover {
  border-top-color: rgba(244, 241, 236, 0.3);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--accent);
  transition: transform 0.3s ease;
  display: inline-block;
}

.stat-item:hover .stat-num {
  transform: translateY(-2px);
}

/* Services / Horizontal Scroll Section */
.horizontal-scroll-section {
  position: relative;
  height: 300vh; /* scroll distance */
  background-color: var(--background);
}

.sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services-header {
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3rem 2rem 1.5rem;
}

.services-heading {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
}

.horizontal-slider {
  display: flex;
  width: 300vw;
  height: 100%;
  flex-direction: row;
  will-change: transform;
}

/* Glassmorphism Cards */
.service-card {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
  padding: 3rem 2rem;
  background: rgba(10, 10, 10, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s var(--ease-custom), border-color 0.4s var(--ease-custom), box-shadow 0.4s var(--ease-custom);
}

.service-card:hover {
  background: rgba(244, 241, 236, 0.015);
  border-right-color: rgba(229, 255, 60, 0.25);
  box-shadow: inset 0 0 30px rgba(229, 255, 60, 0.01);
}

.service-card:last-child {
  border-right: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(244, 241, 236, 0.05);
}

.card-middle {
  margin-top: -6rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.card-description {
  margin-top: 2rem;
  max-width: 48rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.7);
}

.card-features {
  grid-template-columns: 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(244, 241, 236, 0.85);
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* Gastronomy Section - Rich warm aesthetic overlay */
.gastro-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #160803;
}

.gastro-video-container {
  position: absolute;
  inset: 0;
  transform: translateY(-10%);
}

.gastro-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.45; /* Darker overlay for text legibility and premium vibe */
}

.gastro-gradient {
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 74, 28, 0.35) 0%, rgba(22, 8, 3, 0.85) 60%, rgba(0, 0, 0, 0.98) 100%);
}

.gastro-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 5rem 2rem;
}

.gastro-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-top: 2.5rem;
}

.gastro-paragraph {
  margin-top: 2rem;
  max-width: 48rem;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.8);
}

.glow-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 9999px;
  background-color: var(--hot);
  padding: 1.35rem 2.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s var(--ease-custom), box-shadow 0.3s ease;
  will-change: transform;
}

.glow-cta:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 74, 28, 0.35);
}

.glow-cta span {
  display: inline-block;
  transition: transform 0.3s var(--ease-custom);
}

.glow-cta:hover span:last-child {
  transform: translateX(8px);
}

/* Footer & Contact Section */
.footer-section {
  position: relative;
  background-color: #000;
  padding: 10rem 2rem 2.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.contact-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 6vw, 6.5rem); /* Scaled down for mobile to fit on a single line */
  line-height: 0.85;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  margin-top: 2rem;
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap; /* Forces text to stay on a single line */
  transition: color 0.3s var(--ease-custom), transform 0.3s var(--ease-custom);
}

.contact-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-grid {
  margin-top: 7rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(244, 241, 236, 0.55);
}

.footer-col-title {
  color: rgba(244, 241, 236, 0.35);
  margin-bottom: 0.5rem;
}

.footer-social-links a {
  text-decoration: none;
  color: inherit;
  margin-right: 1.5rem;
  transition: color 0.2s ease;
}

.footer-social-links a:hover {
  color: var(--accent);
}

.footer-signature {
  margin-top: 5rem;
  font-family: var(--font-display);
  font-size: 24vw;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(244, 241, 236, 0.04);
  pointer-events: none;
  user-select: none;
}

/* Scroll Reveal animation states */
.reveal-text span {
  opacity: 0.1;
  display: inline-block;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-custom);
}

.reveal-text.active span {
  opacity: 1;
  transform: translateY(0);
}

.reveal-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-custom), transform 0.8s var(--ease-custom);
}

.reveal-element.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (min-width: 768px) {
  /* Layout Padding - Wide Grid Breathing Room */
  .px-8 { padding-left: 5rem; padding-right: 5rem; }
  .py-32 { padding-top: 12rem; padding-bottom: 12rem; }
  .services-header { padding: 3rem 5rem 1.5rem; }
  .service-card { padding: 5rem 5rem; }
  .gastro-content { padding: 7rem 5rem; }
  .footer-section { padding: 12rem 5rem 2.5rem; }
  
  /* Hero section adjustments */
  .hero-heading { margin-top: 3.5rem; margin-bottom: 2.5rem; }
  
  /* About Us column layouts */
  .col-left { grid-column: span 3; }
  .col-right { grid-column: span 8; grid-start: 5; }
  .sticky-sidebar { position: sticky; top: 7rem; }
  
  /* Services */
  .card-middle { margin-top: -10rem; }
  .card-features { grid-template-columns: repeat(3, 1fr); }
  
  /* Gastronomy */
  .glow-cta { padding: 1.5rem 3rem; font-size: 1.65rem; }
  
  /* Footer Layout info columns */
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .adve-cursor-ring,
  .cursor-glow,
  .glow-cta,
  .glow-cta span,
  .reveal-text span,
  .reveal-element {
    transition: none !important;
    animation: none !important;
  }
}

/* Gastro Subpage Specific Styling */
.gastro-hero-video {
  opacity: 0.35;
}

.gastro-accent {
  color: var(--hot);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.step-card:hover {
  border-color: rgba(255, 74, 28, 0.25);
  background: rgba(255, 74, 28, 0.01);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--hot);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card p {
  color: rgba(244, 241, 236, 0.7);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Portfolio Mockups Gallery */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  aspect-ratio: 4 / 3;
}

.portfolio-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: none;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-custom);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

/* Pricing Section */
.pricing-card {
  max-width: 32rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4rem 3rem;
  margin-top: 3.5rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 74, 28, 0.2);
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 236, 0.5);
  margin-bottom: 1rem;
}

.pricing-header .price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--hot);
  line-height: 1;
}

.pricing-header .price span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.4);
  letter-spacing: 0.1em;
  margin-left: 0.5rem;
}

.features-list {
  list-style: none;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(244, 241, 236, 0.8);
  font-size: 1.05rem;
}

.features-list li i {
  color: var(--accent);
  font-style: normal;
  font-weight: bold;
}

.btn-full {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Template Snap Gallery */
.snap-gallery {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 74, 28, 0.3) transparent;
  margin-top: 3.5rem;
  will-change: transform;
}

.snap-gallery .portfolio-item {
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 4, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.lightbox.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(244, 241, 236, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-custom);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  user-select: none;
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--hot);
  transform: scale(1.1);
}

/* Desktop layout overrides for Gastro */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .snap-gallery .portfolio-item {
    width: 360px;
  }
}
