:root {
  --gold: #C79A4A;
  --gold-deep: #B78536;
  --gold-accent: #D8B56A;
  --gold-light: rgba(199, 154, 74, 0.08);
  --white: #FFFFFF;
  --warm-white: #FAF9F6;
  --ivory: #F6F4EF;
  --cream: #F9F8F5;
  --bg-beige: #FCFAF7;
  --bg-linen: #F7F5F2;
  --charcoal: #2D2D2D;
  --dark-gray: #555555;
  --light-gray: #888888;
  --border: rgba(199, 154, 74, 0.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.04);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.28s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}


h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--charcoal);
  font-weight: 600;
}

h1 { line-height: 1.12; }
h2 { line-height: 1.2; }
h3 { line-height: 1.3; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding var(--duration) var(--ease), background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  transition: opacity var(--duration) var(--ease);
}

.logo:hover { opacity: 0.85; }

.logo-symbol {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.logo-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 4px;
}

.logo-divider {
  display: none;
}

.logo-tagline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9.5px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 5px;
}

.footer-logo .logo-name { color: var(--white); }

.footer-brand .logo { margin-bottom: 20px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.main-nav a:hover {
  color: var(--gold-deep);
  background: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}

.nav-cta:hover {
  background: var(--gold-deep) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(199, 154, 74, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--duration) var(--ease);
}

.menu-toggle:hover { background: var(--gold-light); }

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  display: block;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--ivory) 40%, var(--bg-beige) 100%);
  padding: 112px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 0;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(199, 154, 74, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(199, 154, 74, 0.2);
  border-radius: 100px;
  background: rgba(255,255,255,0.8);
}

.hero h1 {
  font-size: clamp(36px, 4.2vw, 54px);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-image-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-accent-shape {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 128px;
  height: 128px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  opacity: 0.12;
  z-index: -1;
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-curve svg { width: 100%; height: auto; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(199, 154, 74, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  height: 56px;
  padding: 0 40px;
  font-size: 15px;
  width: 100%;
  margin-top: 32px;
}

/* ==================== SECTIONS SHARED ==================== */
.section {
  padding: 56px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.section-header h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.fabric-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(199, 154, 74, 0.015) 40px, rgba(199, 154, 74, 0.015) 41px
  );
}

/* ==================== ABOUT ==================== */
.about { background: var(--white); }

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

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 154, 74, 0.2);
}

.about-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
}

.about-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.65;
}

/* ==================== WHY CHOOSE US ==================== */
.why-us { background: var(--bg-beige); }

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

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--gold-light);
  border-radius: var(--radius);
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.65;
}

/* ==================== PRODUCTS ==================== */
.products { background: var(--white); }

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

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 154, 74, 0.2);
}

.product-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image img,
.product-image svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

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

.product-info {
  padding: 20px 24px 22px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.product-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color var(--duration) var(--ease);
}

.product-card:hover .product-link { color: var(--gold-deep); }

/* ==================== FOUNDER ==================== */
.founder { background: var(--bg-beige); }

.founders-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.founder-card .founder-photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--ivory);
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
}

.founder-card .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.founder-card-content h3 {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--charcoal);
  margin: 0;
}

.founder-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.founder-card-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--dark-gray);
  margin: 0;
}

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .founders-duo {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==================== GALLERY ==================== */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
}

.gallery-item {
  border-radius: var(--radius-xs);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease);
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-rows: repeat(4, 140px);
    gap: 8px;
  }
}

/* ==================== PROCESS ==================== */
.process { background: var(--bg-linen); }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-top: 48px;
}

.process-line {
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-accent), var(--gold));
  opacity: 0.25;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--bg-linen), 0 0 0 7px rgba(199, 154, 74, 0.2);
}

.process-content {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 16px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  height: 100%;
}

.process-step:hover .process-content {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.process-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-content p {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ==================== FACILITY ==================== */
.facility { background: var(--white); }

.facility-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.facility-item {
  border-radius: var(--radius-xs);
  overflow: hidden;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.facility-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

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

@media (max-width: 768px) {
  .facility-grid {
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .facility-grid::-webkit-scrollbar { display: none; }
  .facility-item {
    width: 150px;
    height: 150px;
    scroll-snap-align: start;
  }
}

/* ==================== STATS ==================== */
.stats {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item { padding: 24px 16px; }

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.stat-plus, .stat-percent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  vertical-align: top;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--light-gray);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ==================== INDUSTRIES ==================== */
.industries { background: var(--white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-beige);
  border-radius: var(--radius);
  padding: 32px 16px 28px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
}

.industry-card:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card svg {
  margin: 0 auto 14px;
  display: block;
}

.industry-card h3 {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials { background: var(--bg-beige); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.testimonial-quote { margin-bottom: 16px; }

.testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

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

.testimonial-author strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--light-gray);
}

/* ==================== CONTACT ==================== */
.contact { background: var(--white); }

.contact-form-container {
  max-width: 640px;
  margin: 0 auto;
}

/* ==================== INQUIRY FORM ==================== */
.contact-form-wrapper {
  background: var(--bg-beige);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.form-title {
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-group label span {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  transition: all var(--duration) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-gray);
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 154, 74, 0.08);
}

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

.inquiry-form .btn-large {
  margin-top: 8px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: #1a1a1a;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(199, 154, 74, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(199, 154, 74, 0.02) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'/%3E%3C/svg%3E");
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
  overflow: hidden;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}


.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.site-footer h4 {
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

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

.footer-links a {
  font-size: 13px;
  transition: all var(--duration) var(--ease);
}

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

.footer-contact p {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.55;
}

.footer-address-title {
  margin-top: 16px;
  font-size: 11px !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 12px !important;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xs);
  color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease);
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* ==================== VIDEO SHOWCASE ==================== */
.video-showcase { background: var(--charcoal); }
.video-showcase .section-label { color: var(--gold-accent); }
.video-showcase .section-header h2 { color: var(--white); }
.video-showcase .section-subtitle { color: rgba(255,255,255,0.5); }

.video-slider-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-slider {
  display: flex;
  width: 100%;
  position: relative;
}

.video-slide {
  flex: 0 0 100%;
  width: 100%;
  display: none;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-slide.active { display: block; }

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
  z-index: 10;
}

.video-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.video-prev { left: 16px; }
.video-next { right: 16px; }

.video-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  padding: 0;
}

.video-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .video-nav { width: 40px; height: 40px; }
  .video-prev { left: 8px; }
  .video-next { right: 8px; }
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all var(--duration) var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ==================== ANIMATIONS ==================== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

[data-animate="fade-up"] { transform: translateY(24px); }
[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"] { transform: translateX(24px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================== RESPONSIVE ==================== */

/* Large desktops */
@media (min-width: 1441px) {
  .container { max-width: 1280px; }
}

/* Laptops / small desktops */
@media (max-width: 1280px) {
  .container { padding: 0 40px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablets landscape */
@media (max-width: 1024px) {
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .about-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-inner { gap: 48px; }
}

/* Tablets portrait */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 28px; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right var(--duration) var(--ease);
    padding: 96px 32px 32px;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .main-nav a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:hover { background: transparent; }

  .nav-cta {
    text-align: center;
    margin-top: 24px;
    border-bottom: none !important;
    border-radius: 100px !important;
    padding: 14px 24px !important;
  }

  .menu-toggle { display: flex; z-index: 1001; }

  .hero { padding: 112px 0 72px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 320px; margin: 0 auto; }
  .hero-accent-shape { display: none; }

  .about-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid .product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-left: 32px;
  }
  .process-line { display: block !important; top: 0; bottom: 0; left: 39px; right: auto; width: 2px; height: auto; }
  .process-step { display: flex; gap: 20px; align-items: flex-start; text-align: left; padding-bottom: 24px; }
  .process-step:last-child { padding-bottom: 0; }
  .process-dot { margin: 6px 0 0; flex-shrink: 0; box-shadow: 0 0 0 5px var(--bg-linen), 0 0 0 7px rgba(199, 154, 74, 0.2); }
  .process-content { flex: 1; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-brand { grid-column: span 2; }
  .footer-social { grid-column: span 2; }
  .site-footer h4::after { display: none; }

  .stat-number { font-size: 40px; }
  .stat-plus, .stat-percent { font-size: 28px; }
}

/* Mobile */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 40px 0; }

  .hero { padding: 96px 0 48px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .hero-badge { font-size: 10px; padding: 8px 16px; letter-spacing: 2px; }
  .hero-image-wrapper { max-width: 260px; }

  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid .product-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  .process-timeline {
    padding-left: 24px;
  }
  .process-line { left: 31px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .section-header h2 { font-size: 26px; }
  .section-subtitle { font-size: 14px; }

  .btn { height: 44px; padding: 0 24px; font-size: 13px; }
  .btn-large { height: 52px; padding: 0 32px; }

  .about-card, .why-card { padding: 32px 20px 28px; }
  .testimonial-card { padding: 28px 24px 24px; }
  .contact-card { padding: 28px 24px; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
}

/* Small mobile */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 27px; }
  .industries-grid { gap: 12px; }
  .industry-card { padding: 24px 12px 20px; }
  .industry-card h3 { font-size: 12px; }
}
