/* ============================================
   NSML GLOBAL TRADING — Light Coffee Frost Glass
   Premium Warm Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── Design Tokens — Warm Coffee Palette ─── */
:root {
  /* Coffee / Cream Background Tones */
  --cream-50: #faf8f5;
  --cream-100: #f5f1eb;
  --cream-200: #ede8df;
  --cream-300: #e2dbd0;
  --cream-400: #d4cbbf;

  /* Coffee Accent Tones */
  --coffee-900: #2c1810;
  --coffee-800: #3d2317;
  --coffee-700: #53321f;
  --coffee-600: #6b4226;
  --coffee-500: #8b5e34;
  --coffee-400: #a47748;
  --coffee-300: #c09a6b;
  --coffee-200: #d4b892;
  --coffee-100: #e8d5b8;

  /* Warm Accent */
  --warm-accent: #9c6b3a;
  --warm-accent-light: #c09a6b;
  --warm-accent-dark: #6b4226;

  /* Neutrals */
  --white: #ffffff;
  --text-dark: #2c1810;
  --text-medium: #5c4a3a;
  --text-light: #8a7a6a;
  --text-muted: #a89888;

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-strong: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px rgba(44, 24, 16, 0.08);
  --glass-shadow-hover: 0 16px 48px rgba(44, 24, 16, 0.12);

  /* Gradients */
  --gradient-warm: linear-gradient(135deg, #faf8f5, #ede8df);
  --gradient-warm-alt: linear-gradient(135deg, #f5f1eb, #e2dbd0);
  --gradient-coffee: linear-gradient(135deg, #8b5e34, #c09a6b);
  --gradient-hero-overlay: linear-gradient(160deg, rgba(44,24,16,0.75), rgba(107,66,38,0.55));

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

  /* Spacing */
  --section-padding: clamp(70px, 9vw, 110px);
  --container-max: 1200px;

  /* 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);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--coffee-400) var(--cream-200);
}

html::-webkit-scrollbar {
  width: 6px;
}
html::-webkit-scrollbar-track {
  background: var(--cream-200);
}
html::-webkit-scrollbar-thumb {
  background: var(--coffee-400);
  border-radius: 3px;
}

body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}


/* ═══════════════════════════════════════════
   FROSTED GLASS — Shared Component
   ═══════════════════════════════════════════ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease-out-expo);
}

.glass-card:hover {
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-4px);
  background: var(--glass-bg-strong);
}


/* ═══════════════════════════════════════════
   INTRO / SPLASH SCREEN
   ═══════════════════════════════════════════ */

#intro-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--cream-50);
  overflow: hidden;
}

#intro-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(3px 3px at 20% 30%, rgba(156,107,58,0.2), transparent),
    radial-gradient(3px 3px at 80% 20%, rgba(156,107,58,0.15), transparent),
    radial-gradient(3px 3px at 40% 70%, rgba(156,107,58,0.1), transparent),
    radial-gradient(3px 3px at 60% 50%, rgba(156,107,58,0.18), transparent);
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-15px) scale(1.05); opacity: 1; }
}

#intro-logo {
  width: clamp(100px, 16vw, 200px);
  height: auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.3) rotate(-10deg);
  filter: drop-shadow(0 0 0px rgba(156,107,58,0));
  animation: logoReveal 1.8s var(--ease-out-expo) 0.3s forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
    filter: drop-shadow(0 0 0px rgba(156,107,58,0));
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(0deg);
    filter: drop-shadow(0 0 30px rgba(156,107,58,0.4));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 15px rgba(156,107,58,0.25));
  }
}

#intro-company-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--coffee-600);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: nameReveal 1.2s var(--ease-out-expo) 1.6s forwards;
}

#intro-tagline {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: nameReveal 1s var(--ease-out-expo) 2.2s forwards;
}

@keyframes nameReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#intro-line {
  position: relative;
  z-index: 2;
  width: 0;
  height: 1.5px;
  background: var(--gradient-coffee);
  margin-top: 20px;
  animation: lineExpand 1s var(--ease-out-expo) 2.6s forwards;
}

@keyframes lineExpand {
  to { width: clamp(60px, 12vw, 150px); }
}

/* Fly-away */
#intro-screen.fly-away {
  animation: introFlyAway 1.4s var(--ease-in-out) forwards;
}

#intro-screen.fly-away #intro-logo {
  animation: logoFlyUp 1.2s var(--ease-out-expo) forwards;
}

#intro-screen.fly-away #intro-company-name,
#intro-screen.fly-away #intro-tagline,
#intro-screen.fly-away #intro-line {
  animation: fadeDown 0.6s var(--ease-out-expo) forwards;
}

@keyframes logoFlyUp {
  0% {
    transform: scale(1) rotate(0deg) translateY(0);
    opacity: 1;
  }
  40% {
    transform: scale(1.3) rotate(5deg) translateY(-30px);
    opacity: 1;
    filter: drop-shadow(0 0 40px rgba(156,107,58,0.6));
  }
  100% {
    transform: scale(0.4) rotate(-15deg) translateY(-120vh);
    opacity: 0;
  }
}

@keyframes fadeDown {
  to { opacity: 0; transform: translateY(40px); }
}

@keyframes introFlyAway {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; visibility: hidden; }
}


/* ═══════════════════════════════════════════
   MAIN SITE
   ═══════════════════════════════════════════ */

#main-site {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

#main-site.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   NAVIGATION — Warm glass nav
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.5s var(--ease-out-expo);
  background: rgba(44, 24, 16, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,200,185,0.4);
  box-shadow: 0 2px 20px rgba(44,24,16,0.08);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.4);
  box-shadow: 0 2px 12px rgba(44,24,16,0.15);
  transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled .nav-logo {
  width: 46px;
  height: 46px;
  border-color: var(--coffee-300);
}

.nav-brand:hover .nav-logo {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 4px 18px rgba(44,24,16,0.25);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-brand-name {
  color: var(--coffee-800);
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-brand-sub {
  color: var(--text-light);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--text-medium);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coffee-200);
  transition: width 0.4s var(--ease-out-expo), background 0.4s ease;
}

.navbar.scrolled .nav-links a::after {
  background: var(--warm-accent);
}

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

.navbar.scrolled .nav-links a:hover {
  color: var(--warm-accent);
}

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

.nav-cta {
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 22px !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  border-radius: 8px;
  color: var(--white) !important;
  background: rgba(255,255,255,0.1) !important;
  transition: all 0.4s var(--ease-out-expo) !important;
}

.navbar.scrolled .nav-cta {
  border-color: var(--coffee-300) !important;
  color: var(--coffee-600) !important;
  background: transparent !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--coffee-600) !important;
  color: var(--white) !important;
  border-color: var(--coffee-600) !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 2px;
}

.navbar.scrolled .nav-hamburger span {
  background: var(--coffee-600);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════
   HERO SECTION — Dark overlay on image
   ═══════════════════════════════════════════ */

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

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.06); }
  100% { transform: scale(1.12) translate(-0.5%, -0.5%); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--cream-50), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coffee-200);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.hero h1 .accent {
  color: var(--coffee-200);
  position: relative;
}

.hero-description {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(40px);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gradient-coffee);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,94,52,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
  transform: translateY(40px);
}

.hero-stat { text-align: left; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--coffee-200);
  line-height: 1.1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -36px; left: 0;
  width: 100%; height: 36px;
  background: var(--coffee-200);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -36px; }
  100% { top: 36px; }
}

@keyframes fadeInUp {
  to { opacity: 0.5; }
}


/* ═══════════════════════════════════════════
   SECTION SHARED — Warm tones
   ═══════════════════════════════════════════ */

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--coffee-300);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--coffee-900);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
}

.accent-text {
  color: var(--warm-accent);
}

/* Scroll animations */
.aos {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

.aos-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.aos-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.aos-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.aos-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


/* ═══════════════════════════════════════════
   ABOUT SECTION — Two glass cards, no image
   ═══════════════════════════════════════════ */

.about {
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.about-card {
  padding: 36px 32px;
}

.about-card-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--coffee-800);
  margin-bottom: 14px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.85;
}

.about-features-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(44,24,16,0.05);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all 0.3s var(--ease-out-expo);
}

.glass-chip:hover {
  background: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,24,16,0.08);
}

.chip-icon {
  font-size: 18px;
}


/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */

.services {
  background: var(--gradient-warm-alt);
}

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

.service-card {
  padding: 32px 26px;
  text-align: center;
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156,107,58,0.08);
  border: 1px solid rgba(156,107,58,0.12);
  border-radius: 14px;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  background: rgba(156,107,58,0.14);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--coffee-800);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   PRODUCTS SECTION — Glass card grid
   ═══════════════════════════════════════════ */

.products {
  background: var(--cream-50);
}

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

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(44,24,16,0.06);
  border: 1px solid rgba(212,200,185,0.25);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,24,16,0.12);
  border-color: rgba(164,119,72,0.3);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.product-img-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, rgba(44,24,16,0.15), transparent);
  pointer-events: none;
}

.product-card-body {
  padding: 22px 24px 26px;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--coffee-800);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Center last two cards on their row */
.products-grid .product-card:nth-child(4) {
  grid-column: 1 / 2;
}
.products-grid .product-card:nth-child(5) {
  grid-column: 2 / 3;
}


/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */

.why-us {
  background: var(--gradient-warm-alt);
}

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

.why-card {
  display: flex;
  gap: 18px;
  padding: 30px 28px;
  align-items: flex-start;
}

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156,107,58,0.08);
  border: 1px solid rgba(156,107,58,0.12);
  border-radius: 12px;
  font-size: 24px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--coffee-800);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */

.cta-section {
  background: var(--cream-50);
}

.cta-inner {
  text-align: center;
  padding: 60px 48px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.55) !important;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--coffee-900);
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA buttons — solid style for light backgrounds */
.cta-section .btn-secondary {
  background: transparent;
  color: var(--coffee-600);
  border: 1.5px solid var(--coffee-300);
}

.cta-section .btn-secondary:hover {
  background: var(--coffee-600);
  color: var(--white);
  border-color: var(--coffee-600);
}


/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */

.contact {
  background: var(--gradient-warm-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--coffee-800);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
}

.contact-detail-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--coffee-700);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-card {
  padding: 36px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(212,200,185,0.5);
  border-radius: 8px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--warm-accent);
  box-shadow: 0 0 0 3px rgba(156,107,58,0.08);
  background: rgba(255,255,255,0.7);
}

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

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

.form-submit {
  width: 100%;
  margin-top: 6px;
  border-radius: 10px;
}


/* ═══════════════════════════════════════════
   FOOTER — warm dark
   ═══════════════════════════════════════════ */

.footer {
  background: var(--coffee-900);
  padding: 52px 0 24px;
  color: var(--cream-300);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--cream-200);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-about p {
  font-size: 13px;
  color: var(--cream-400);
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--cream-200);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 22px;
  height: 2px;
  background: var(--coffee-400);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13px;
  color: var(--cream-400);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--coffee-200);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--cream-400);
  opacity: 0.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 13px;
  color: var(--cream-400);
  transition: all 0.3s var(--ease-out-expo);
}

.footer-social:hover {
  border-color: var(--coffee-400);
  color: var(--coffee-200);
  background: rgba(164,119,72,0.12);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid .product-card:nth-child(4),
  .products-grid .product-card:nth-child(5) {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-logo {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 0;
  }

  .nav-logo {
    width: 42px;
    height: 42px;
  }

  .nav-brand-name {
    font-size: 13px;
  }

  .nav-brand-sub {
    font-size: 8px;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 40px;
    transition: right 0.5s var(--ease-out-expo);
    border-left: 1px solid rgba(212,200,185,0.3);
    z-index: 1001;
  }

  .nav-links a {
    color: var(--coffee-800) !important;
    font-size: 16px !important;
  }

  .nav-links a:hover {
    color: var(--warm-accent) !important;
  }

  .nav-cta {
    border-color: var(--coffee-300) !important;
    color: var(--coffee-600) !important;
    background: transparent !important;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero-description {
    font-size: 14px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid .product-card:nth-child(4),
  .products-grid .product-card:nth-child(5) {
    grid-column: auto;
  }

  .product-img-wrap {
    height: 200px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-features-row {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: clamp(50px, 8vw, 80px) 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-logo {
    width: 38px;
    height: 38px;
  }

  .nav-brand-name {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .nav-brand-sub {
    font-size: 7px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 22px;
  }

  .cta-inner {
    padding: 32px 20px;
  }

  .product-img-wrap {
    height: 180px;
  }

  .product-card-body {
    padding: 18px 18px 22px;
  }

  .contact-detail {
    padding: 16px !important;
  }

  .hero-content {
    padding-top: 100px;
  }
}


/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */

.gold-text {
  color: var(--warm-accent);
}
