/* ================================================================
   DIORR / Diorrgrills — Premium Design System
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --gold: #ffffff;
  --gold-light: #e0e0e0;
  --gold-dark: #333333;
  --gold-glow: rgba(255,255,255,0.15);
  --gold-glow-strong: rgba(255,255,255,0.35);

  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-light: #1c1c1c;
  --dark-gray: #2a2a2a;
  --white: #ffffff;
  --ivory: #faf9f6;
  --warm-gray: #f5f3ef;
  --gray-100: #f0eeea;
  --gray-200: #e0ddd7;
  --gray-300: #c5c2bc;
  --gray-400: #9e9b95;
  --gray-500: #7a7772;
  --gray-600: #5c5955;
  --gray-700: #3d3b38;
  --gray-800: #262523;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 30px rgba(0,0,0,0.15);
  --shadow-gold-strong: 0 8px 40px rgba(0,0,0,0.25);

  /* Borders */
  --border-subtle: 1px solid rgba(0,0,0,0.06);
  --border-light: 1px solid rgba(0,0,0,0.08);
  --border-gold: 1px solid rgba(0,0,0,0.12);
  --border-gold-hover: 1px solid rgba(0,0,0,0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.25s var(--ease-out-quart);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.7s var(--ease-out-expo);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--black);
  color: var(--white);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gray-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.54s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50%      { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

@keyframes line-grow {
  from { width: 0; }
  to   { width: 80px; }
}

@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ================================================================
   HEADER / NAVIGATION — Premium Transparent Style
   ================================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: rgba(255,255,255,0.1);
}

.header-top {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top span {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}

.header-top a {
  color: rgba(255,255,255,0.6);
  margin-left: 24px;
  transition: color var(--transition-fast);
  font-size: 11px;
}

.header-top a:hover {
  color: var(--white);
}

nav {
  padding: 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo::after {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav-links > a,
.nav-links .dropdown > a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links > a::after,
.nav-links .dropdown > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition-base);
}

.nav-links > a:hover,
.nav-links .dropdown:hover > a {
  color: var(--white);
}

.nav-links > a:hover::after,
.nav-links .dropdown:hover > a::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  min-width: 200px;
  padding: 10px 0;
  z-index: 1000;
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
  display: block;
  padding: 10px 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.dropdown-content a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 28px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
  padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: right 0.5s var(--ease-out-expo);
  border-left: 1px solid rgba(255,255,255,0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--white);
  padding-left: 12px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
}

.mobile-overlay.active {
  display: block;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.4)), url('../images/kitchen.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 100px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   BUTTONS — Premium Gold Accent
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--charcoal-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-dark:hover {
  background: var(--charcoal-light);
  border-color: rgba(255,255,255,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* ================================================================
   SECTIONS — Generous Spacing & Premium Feel
   ================================================================ */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-gray {
  background: var(--warm-gray);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
  margin: 20px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.55);
}

/* Accent label */
.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

/* ================================================================
   FEATURES / WHY CHOOSE US
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: var(--border-subtle);
  position: relative;
  transition: all var(--transition-base);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--black);
  opacity: 0;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
  width: 60px;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--black);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ================================================================
   OFFERINGS — Cinematic Cards
   ================================================================ */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offering-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  border: var(--border-subtle);
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

.offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: all var(--transition-base);
}

.offering-card:hover .offering-overlay {
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.2) 100%);
}

.offering-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--white);
  position: relative;
}

.offering-overlay h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--white);
  transition: width var(--transition-base);
}

.offering-card:hover .offering-overlay h3::after {
  width: 50px;
}

.offering-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-top: 12px;
}

/* ================================================================
   PORTFOLIO / OUR WORKS
   ================================================================ */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  border: 1px solid var(--gray-200);
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--gray-600);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 16px;
}

.work-item {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.work-overlay span {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 12px 24px;
  border: 1px solid var(--white);
  transition: all var(--transition-fast);
}

.work-overlay span:hover {
  background: var(--white);
  color: var(--black);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-lg) 36px;
  border: var(--border-subtle);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  font-family: var(--font-display);
  color: var(--gold-glow-strong);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(0,0,0,0.12);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
  color: var(--gray-600);
  position: relative;
  z-index: 1;
}

.testimonial-author h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

.stars {
  color: #f5c518;
  margin-bottom: 16px;
  font-size: 14px;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 24px;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-lg);
  font-size: 17px;
  font-weight: 300;
}

/* ================================================================
   FOOTER — Dark Premium
   ================================================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 13px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 0;
}

.footer-col ul li a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 16px;
}

.footer-col ul li a:hover::before {
  width: 10px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

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

.footer-contact .icon {
  width: 20px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: rgba(255,255,255,0.5);
}

.social-links a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

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

.footer-map {
  height: 160px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) brightness(0.8);
  transition: filter var(--transition-base);
}

.footer-map:hover iframe {
  filter: grayscale(0) brightness(1);
}

/* ================================================================
   PAGE HEADER — Interior Pages
   ================================================================ */
.page-header {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.page-header h1 {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: var(--border-gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  border: var(--border-subtle);
  background: var(--white);
  position: relative;
  transition: all var(--transition-base);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--black), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.value-card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--black);
}

.value-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 8px;
  font-weight: 600;
}

.stat-item p {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 500;
}

.section-dark .stat-item h3 {
  color: #ffffff;
}

.section-dark .stat-item p {
  color: #ffffff;
  opacity: 1;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.12);
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--black);
}

.contact-detail p,
.contact-detail a {
  color: var(--gray-500);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--black);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  transition: all var(--transition-fast);
  color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(34,197,94,0.1);
  color: #166534;
  margin-top: 20px;
  text-align: center;
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 14px;
}

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

.map-item {
  border: var(--border-subtle);
  overflow: hidden;
}

.map-item h3 {
  font-size: 18px;
  text-align: center;
  padding: 16px;
  background: var(--charcoal);
  color: var(--white);
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.map-item iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ================================================================
   CLIENTS PAGE
   ================================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.client-logo {
  aspect-ratio: 1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-subtle);
  padding: 20px;
  transition: all var(--transition-base);
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.15);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--transition-base);
}

.client-logo:hover img {
  filter: grayscale(0) opacity(1);
}

.clients-grid img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: all var(--transition-base);
}

.clients-grid img:hover {
  filter: grayscale(0) opacity(1);
}

/* ================================================================
   PRODUCT PAGES
   ================================================================ */
.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-feature {
  text-align: center;
  padding: 36px 24px;
  border: var(--border-subtle);
  background: var(--white);
  transition: all var(--transition-base);
}

.product-feature:hover {
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-feature h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.product-feature p {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  border: var(--border-subtle);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.product-card-content {
  padding: 28px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.7;
}

/* ================================================================
   BLOG / NEWS CARDS
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  border: var(--border-subtle);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.blog-card-content {
  padding: 28px;
}

.blog-date {
  font-size: 10px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 19px;
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.blog-card:hover h3 {
  color: var(--black);
}

.blog-card p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.7;
}

.read-more {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  transition: all var(--transition-fast);
}

.read-more::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--gray-600);
  gap: 12px;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ================================================================
   CAREERS PAGE
   ================================================================ */
.career-card {
  border: var(--border-subtle);
  padding: 32px;
  margin-bottom: 16px;
  background: var(--white);
  transition: all var(--transition-base);
}

.career-card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: var(--shadow-md);
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.career-header h3 {
  font-size: 22px;
}

.career-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.career-tag {
  padding: 5px 14px;
  background: var(--warm-gray);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-600);
  font-weight: 500;
}

.career-card p {
  color: var(--gray-500);
  font-size: 14px;
  margin-top: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.career-benefit-card {
  border: var(--border-subtle);
  padding: 36px 28px;
  background: var(--white);
  transition: all var(--transition-base);
  text-align: center;
}

.career-benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.career-benefit-icon {
  margin-bottom: 20px;
  color: var(--black);
}

.career-benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.career-benefit-card p {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Gallery Hero */
.gal-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

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

.gal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.15) 100%);
}

.gal-hero-content {
  position: absolute;
  bottom: 60px;
  left: 8%;
  z-index: 2;
  color: #fff;
}

.gal-hero-content span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.gal-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #ffffff;
}

.gal-hero-content p {
  font-size: 16px;
  color: #ffffff;
  max-width: 500px;
}

/* Gallery Section Header */
.gal-section {
  padding: 80px 5%;
}

.gal-header {
  text-align: center;
  margin-bottom: 48px;
}

.gal-header span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}

.gal-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-top: 8px;
}

/* Gallery Masonry */
.gal-masonry {
  columns: 3 320px;
  column-gap: 16px;
}

.gal-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gal-overlay span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ================================================================
   SHARED: Divider
   ================================================================ */
.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #333333, transparent);
  margin: 20px auto;
}

/* ================================================================
   OUTDOOR KITCHEN PAGE
   ================================================================ */
.ok-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}

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

.ok-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.ok-hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5%;
}

.ok-hero-content span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.ok-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #ffffff;
}

.ok-hero-content p {
  font-size: 16px;
  color: #ffffff;
  max-width: 550px;
  line-height: 1.7;
  font-weight: 300;
}

.ok-intro {
  padding: 100px 5%;
  background: var(--white);
}

.ok-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.ok-intro-text span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.ok-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.ok-intro-text p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.ok-intro-img {
  position: relative;
  overflow: hidden;
}

.ok-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.7s var(--ease-out-expo);
}

.ok-intro-img:hover img {
  transform: scale(1.03);
}

.ok-projects {
  padding: 100px 5%;
  background: var(--warm-gray);
}

.ok-projects-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ok-projects-header span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.ok-projects-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 0;
  color: var(--black);
}

.ok-projects-header p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

.ok-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ok-grid-top,
.ok-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ok-project-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}

.ok-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.ok-project-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  z-index: 2;
}

.ok-project-card .card-label h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ok-project-card .card-label p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.6;
}

.ok-features {
  padding: 80px 5%;
  background: var(--black);
  color: var(--white);
}

.ok-features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.ok-feat {
  text-align: center;
  padding: 30px 20px;
}

.ok-feat h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.ok-feat p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

.ok-cta {
  padding: 100px 5%;
  text-align: center;
  background: var(--warm-gray);
}

.ok-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.ok-cta p {
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ok-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  text-decoration: none;
}

.ok-cta-btn:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ================================================================
   BBQ GRILLS PAGE
   ================================================================ */
.bbq-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}

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

.bbq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.bbq-hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5%;
}

.bbq-hero-content span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.bbq-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #ffffff;
}

.bbq-hero-content p {
  font-size: 16px;
  color: #ffffff;
  max-width: 550px;
  line-height: 1.7;
  font-weight: 300;
}

.bbq-intro {
  padding: 100px 5%;
  background: var(--white);
}

.bbq-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.bbq-intro-text span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.bbq-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.bbq-intro-text p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.bbq-intro-img {
  position: relative;
  overflow: hidden;
}

.bbq-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.7s var(--ease-out-expo);
}

.bbq-intro-img:hover img {
  transform: scale(1.03);
}

.bbq-showcase {
  padding: 100px 5%;
  background: var(--warm-gray);
}

.bbq-showcase-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bbq-showcase-header span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.bbq-showcase-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--black);
}

.bbq-showcase-header p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

.bbq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.bbq-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all var(--transition-base);
}

.bbq-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.bbq-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.bbq-card-content {
  padding: 28px;
}

.bbq-card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.bbq-card-content p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.bbq-card-content a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.bbq-card-content a::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

.bbq-card-content a:hover {
  color: var(--gray-600);
  gap: 12px;
}

.bbq-feature-strip {
  padding: 60px 5%;
  background: var(--black);
  color: var(--white);
}

.bbq-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.bbq-feature-item .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.bbq-feature-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.bbq-feature-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.6;
}

/* Diorr Grills Product Catalog */
.diorr-catalog {
  padding: 100px 5%;
  background: var(--white);
}

.diorr-catalog-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.diorr-catalog-header span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.diorr-catalog-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--black);
}

.diorr-catalog-header p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

.diorr-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-200);
}

.diorr-product:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.diorr-product.reverse {
  direction: rtl;
}

.diorr-product.reverse > * {
  direction: ltr;
}

.diorr-product-img {
  position: relative;
  overflow: hidden;
}

.diorr-product-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease-out-expo);
}

.diorr-product-img:hover img {
  transform: scale(1.03);
}

.model-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--black);
  color: var(--white);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.diorr-product.reverse .model-badge {
  left: auto;
  right: 20px;
}

.product-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 12px;
}

.diorr-product-info h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
}

.product-desc {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.diorr-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.diorr-specs li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
}

.diorr-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--black);
}

.diorr-inquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  text-decoration: none;
}

.diorr-inquire-btn:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* BBQ Products Section */
.bbq-products-section {
  padding: 100px 5%;
  background: var(--warm-gray);
}

.bbq-products-section .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.bbq-products-section .section-head span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.bbq-products-section .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--black);
}

.bbq-cta-section {
  padding: 100px 5%;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.bbq-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}

.bbq-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bbq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  text-decoration: none;
}

.bbq-cta-btn:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .maps-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .ok-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .ok-features-inner { grid-template-columns: repeat(2, 1fr); }
  .ok-project-card { height: 320px; }
  .bbq-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .bbq-grid { grid-template-columns: repeat(2, 1fr); }
  .bbq-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .diorr-product { grid-template-columns: 1fr; gap: 40px; }
  .diorr-product.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .section-title { font-size: 30px; }
  .page-header { padding: 160px 0 60px; }
  .page-header h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .works-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { height: 350px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-intro img { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ok-grid-top,
  .ok-grid-bottom { grid-template-columns: 1fr; }
  .ok-project-card { height: 300px; }
  .ok-features-inner { grid-template-columns: 1fr; }
  .ok-hero { height: 45vh; min-height: 350px; }
  .ok-intro { padding: 60px 5%; }
  .ok-projects { padding: 60px 5%; }
  .bbq-hero { height: 45vh; min-height: 350px; }
  .bbq-intro { padding: 60px 5%; }
  .bbq-grid { grid-template-columns: 1fr; }
  .bbq-feature-grid { grid-template-columns: 1fr 1fr; }
  .diorr-catalog { padding: 60px 5%; }
  .diorr-product { margin-bottom: 50px; padding-bottom: 50px; }
  .bbq-products-section { padding: 60px 5%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .page-header h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ok-hero-content h1 { font-size: 28px; }
  .ok-hero { height: 40vh; min-height: 300px; }
  .ok-feat { padding: 20px 10px; }
  .bbq-hero-content h1 { font-size: 28px; }
  .bbq-hero { height: 40vh; min-height: 300px; }
  .bbq-feature-grid { grid-template-columns: 1fr; }
  .diorr-product-info h3 { font-size: 24px; }
}

/* ================================================================
   FLOATING CONTACT WIDGET
   ================================================================ */
.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.floating-btn svg {
  width: 26px;
  height: 26px;
}

.floating-btn.call-btn {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  border: 1px solid rgba(255,255,255,0.2);
}

.floating-btn.call-btn svg {
  fill: var(--white);
}

.floating-btn.whatsapp-btn {
  background: #25D366;
}

.floating-btn.whatsapp-btn svg {
  fill: white;
}

.floating-btn.chat-btn {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  animation: pulse-gold 2s ease-in-out infinite;
}

.floating-btn.chat-btn svg {
  fill: var(--white);
}

/* ================================================================
   CHATBOT WIDGET
   ================================================================ */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 500px;
  max-height: calc(100vh - 130px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.chatbot-container.active {
  display: flex;
  animation: fadeInUp 0.4s var(--ease-out-expo);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chatbot-header h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}

.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.chatbot-close:hover {
  color: var(--white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--ivory);
}

.chat-message {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  line-height: 1.6;
}

.chat-message.bot {
  background: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
  border: var(--border-subtle);
}

.chat-message.user {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chat-option-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--gray-700);
}

.chat-option-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.chatbot-input {
  display: flex;
  padding: 14px 18px;
  border-top: var(--border-subtle);
  gap: 8px;
  background: var(--white);
}

.chatbot-input input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}

.chatbot-input input:focus {
  border-color: var(--black);
}

.chatbot-input button {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.chatbot-input button:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}

.chatbot-input button svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  pointer-events: none;
}

@media (max-width: 480px) {
  .chatbot-container {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 90px;
    height: calc(100vh - 110px);
  }
  .floating-widget {
    right: 12px;
    bottom: 12px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ================================================================
   ANIMATE ON SCROLL (legacy support)
   ================================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   UTILITY: Gold accent line
   ================================================================ */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #333333, transparent);
  margin: 0 auto 24px;
}

.gold-line-left {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #333333, transparent);
  margin: 0 0 24px;
}

/* ================================================================
   IMAGE GRAIN OVERLAY (premium texture)
   ================================================================ */
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ================================================================
   HOMEPAGE: Hero Video Banner
   ================================================================ */
/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.30) 65%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  color: var(--white);
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 60px 120px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  position: relative;
  padding-left: 48px;
}

.hero-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 32px;
  max-width: 680px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--white);
  margin-bottom: 28px;
  opacity: 0.5;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin: 0 0 44px;
  max-width: 500px;
  letter-spacing: 0.01em;
}

.hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: var(--gray-100);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Slider Indicators */
.hero-slider-indicators {
  position: absolute;
  left: 60px;
  bottom: 48px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-dot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--white);
  transition: width 0s;
}

.hero-dot.active::after {
  width: 100%;
  transition: width 5s linear;
}

.hero-dot.active {
  background: rgba(255,255,255,0.25);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  right: 60px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ================================================================
   HOMEPAGE: Logo Image
   ================================================================ */
.logo-img {
  height: 140px;
  width: auto;
  display: block;
  transition: all var(--transition-base);
}

.logo:hover .logo-img {
  opacity: 0.85;
}

/* ================================================================
   HOMEPAGE: Flip Cards
   ================================================================ */
.luxury-section {
  padding: var(--space-2xl) 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--warm-gray) 100%);
}

.luxury-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.luxury-section-header .subtitle {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.luxury-section-header h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.luxury-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
  margin: 20px auto;
}

.luxury-section-header p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.flip-card {
  perspective: 1500px;
}

.flip-card-inner {
  position: relative;
  height: 280px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

.flip-card-front {
  background: var(--white);
  border: var(--border-subtle);
}

.flip-card-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--black), var(--gray-700));
}

.flip-card-front h3 {
  color: var(--black);
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.flip-card-back {
  background: var(--charcoal);
  color: var(--white);
  transform: rotateY(180deg);
  padding: 36px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.flip-card-back p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

/* ================================================================
   HOMEPAGE: Quote Section
   ================================================================ */
.quote-section {
  width: 100%;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.quote-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.quote-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: stretch;
  padding: 0 24px;
}

.quote-image {
  flex: 1;
  min-height: 560px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.quote-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: var(--border-gold);
  pointer-events: none;
  z-index: 1;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.quote-image:hover img {
  transform: scale(1.03);
}

.quote-form-side {
  flex: 1;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-form-side .section-label {
  text-align: left;
  margin-bottom: 16px;
}

.quote-form-side h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--white);
  font-weight: 400;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.quote-form-side > p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

.quote-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  transition: all var(--transition-fast);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

.quote-form select {
  color: rgba(255,255,255,0.55);
}

.quote-form select option {
  background: var(--charcoal);
  color: var(--white);
}

.quote-form textarea {
  width: 100%;
  height: 120px;
  resize: none;
  margin-bottom: 28px;
}

.quote-form .btn-primary {
  width: fit-content;
}

/* ================================================================
   HOMEPAGE: Clients Running Carousel
   ================================================================ */
.clients-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollClients 30s linear infinite;
}

.clients-track img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: all var(--transition-base);
}

.clients-track img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}

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

/* ================================================================
   PRELOADER — BBQ Grill Theme
   ================================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-grill {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 36px;
  opacity: 0;
  animation: preloaderFadeIn 0.6s ease forwards;
}

.preloader-grill svg {
  width: 100%;
  height: 100%;
}

.grill-body {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grill-grate {
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.grill-flame {
  fill: #ffffff;
  opacity: 0;
  animation: flameFlicker 1.2s ease-in-out infinite alternate;
}

.grill-flame:nth-child(2) { animation-delay: 0.2s; }
.grill-flame:nth-child(3) { animation-delay: 0.4s; }
.grill-flame:nth-child(4) { animation-delay: 0.15s; }
.grill-flame:nth-child(5) { animation-delay: 0.35s; }

.smoke-particle {
  fill: rgba(255,255,255,0.25);
  animation: smokeRise 2s ease-out infinite;
}

.smoke-particle:nth-child(2) {
  animation-delay: 0.5s;
  fill: rgba(255,255,255,0.15);
}

.smoke-particle:nth-child(3) {
  animation-delay: 1s;
  fill: rgba(255,255,255,0.2);
}

.smoke-particle:nth-child(4) {
  animation-delay: 1.5s;
  fill: rgba(255,255,255,0.12);
}

@keyframes flameFlicker {
  0% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 0.7; transform: scaleY(1.1); }
  100% { opacity: 0.4; transform: scaleY(0.9); }
}

@keyframes smokeRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  30% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-50px) scale(1.5) translateX(8px);
  }
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: preloaderFadeIn 0.8s ease 0.2s forwards;
}

.preloader-bar-container {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.8s ease 0.4s forwards;
  position: relative;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), #ffffff);
  animation: preloaderProgress 1.8s ease-in-out forwards;
}

.preloader-tagline {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  animation: preloaderFadeIn 0.8s ease 0.6s forwards;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

@keyframes preloaderProgress {
  0% { width: 0%; }
  50% { width: 60%; }
  100% { width: 100%; }
}

/* ================================================================
   COMPANY DESCRIPTION (About Page)
   ================================================================ */
.company-description {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}
.company-description p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 16px;
}
.company-description p + p {
  margin-top: 16px;
}

/* ================================================================
   RESPONSIVE: Homepage-specific
   ================================================================ */
@media (max-width: 768px) {
  .hero-slider {
    height: 100vh;
    min-height: 500px;
  }
  .hero-content-wrap {
    padding: 120px 24px 100px;
    max-width: 100%;
  }
  .hero-heading {
    font-size: 32px;
    line-height: 1.12;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-slider-indicators {
    left: 24px;
    bottom: 30px;
  }
  .hero-scroll-hint {
    right: 24px;
    bottom: 30px;
  }
  .flip-card-inner {
    height: 240px;
  }
  .quote-grid {
    flex-direction: column;
    gap: 40px;
  }
  .quote-image {
    min-height: 300px;
  }
  .quote-form .form-row {
    flex-direction: column;
  }
}
