/* ═══════════════════════════════════════════════════════════════
   TRUBAMBOO — Clean Minimal Eco Homeware
   Cormorant Garamond · DM Sans · Forest Green · Warm Cream
═══════════════════════════════════════════════════════════════ */

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

:root {
  --cream:        #f9f6f0;
  --cream-dark:   #f0ebe1;
  --cream-mid:    #e8e0d4;
  --white:        #ffffff;
  --forest:       #1a3d2b;
  --forest-mid:   #2d5c3f;
  --sage:         #5a7a5c;
  --sage-light:   #8aab8c;
  --sage-pale:    #d4e4d5;
  --text:         #1a1a18;
  --text-mid:     #4a4a42;
  --text-light:   #8a8a7e;
  --text-faint:   #c0bdb6;
  --border:       rgba(26,61,43,0.12);
  --border-mid:   rgba(26,61,43,0.2);
  --shadow:       rgba(26,43,30,0.1);
  --shadow-deep:  rgba(26,43,30,0.2);
  --card:         #ffffff;
  --card-hover:   #fdfcfa;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 99px; }

/* ── Bamboo grain texture ─────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 900; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .8s cubic-bezier(.23,1,.32,1), visibility .8s;
}
#loader.out { opacity: 0; pointer-events: none; visibility: hidden; }

.loader-logo {
  opacity: 0;
  animation: loaderFadeUp .7s cubic-bezier(.23,1,.32,1) .2s forwards;
}
.loader-logo svg { width: 56px; height: 56px; }

.loader-wordmark {
  opacity: 0;
  animation: loaderFadeUp .6s cubic-bezier(.23,1,.32,1) .5s forwards;
  text-align: center;
}
.loader-wordmark-main {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--forest);
}
.loader-wordmark-sub {
  display: block;
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage);
  margin-top: 6px;
}
.loader-line {
  width: 48px; height: 1px; background: var(--sage-light);
  opacity: 0; animation: loaderFadeUp .4s ease .7s forwards;
  position: relative; overflow: hidden;
}
.loader-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--forest);
  animation: lineSlide 1s cubic-bezier(.23,1,.32,1) .8s forwards;
  transform: translateX(-100%);
}
@keyframes lineSlide { to { transform: translateX(100%); } }
@keyframes loaderFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(249,246,240,0.92);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px var(--shadow); }

.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 7vw;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--forest);
  transition: color .2s;
}
.nav-logo:hover .nav-logo-text { color: var(--sage); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-mid); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; right: 50%;
  height: 1px; background: var(--forest); border-radius: 1px;
  transition: left .25s cubic-bezier(.23,1,.32,1), right .25s cubic-bezier(.23,1,.32,1);
}
.nav-link:hover { color: var(--forest); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link.active { color: var(--forest); }

.nav-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
  text-decoration: none; padding: 9px 22px; border-radius: 8px;
  background: var(--forest);
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--forest-mid); transform: translateY(-1px); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 100%; height: 1.5px; background: var(--forest); border-radius: 1px; transition: all .3s; }
.nav-menu.active {
  display: flex !important; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(249,246,240,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0; gap: 0;
}
.nav-menu.active .nav-link { padding: 13px 7vw; border-radius: 0; width: 100%; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(9.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-9.5px); }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 7vw; }
.section { position: relative; padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--forest); margin-bottom: 20px; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-subtitle {
  font-size: clamp(14px, 1.3vw, 17px); line-height: 1.75;
  color: var(--text-mid); max-width: 560px; margin-bottom: 60px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid) 20%, var(--border-mid) 80%, transparent);
}

/* Bamboo vertical accent line */
.bamboo-line {
  display: inline-block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--sage-light), var(--forest));
  border-radius: 2px; margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  padding: 140px 7vw 100px;
  max-width: 1280px; margin: 0 auto;
}
.hero-content { animation: fadeUp .9s .2s cubic-bezier(.23,1,.32,1) both; }
.hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--sage);
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--forest); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-subtitle {
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.8;
  color: var(--text-mid); margin-bottom: 40px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500; color: var(--forest);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-light); margin-top: 4px; display: block;
}

.hero-visual {
  animation: fadeUp .9s .4s cubic-bezier(.23,1,.32,1) both;
  position: relative;
}
.hero-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sage-pale);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: var(--sage);
}
.hero-placeholder svg { opacity: 0.4; }
.hero-placeholder p { font-size: 13px; color: var(--sage-light); letter-spacing: 0.06em; }
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--forest); color: white;
  padding: 20px 24px; border-radius: 16px;
  box-shadow: 0 12px 40px var(--shadow-deep);
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 500; display: block; line-height: 1;
}
.hero-badge-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-top: 4px; display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 10px; cursor: pointer;
  transition: transform .2s cubic-bezier(.23,1,.32,1), box-shadow .2s, background .2s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--forest); color: white;
  box-shadow: 0 4px 20px var(--shadow-deep);
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-3px); box-shadow: 0 10px 32px var(--shadow-deep); }
.btn-secondary {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--border-mid);
}
.btn-secondary:hover { background: var(--cream-dark); transform: translateY(-3px); border-color: var(--forest); }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════════════════════ */
.page-header {
  padding: 160px 7vw 80px; text-align: center;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}
.page-header .section-label { justify-content: center; display: flex; }
.page-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 68px); font-weight: 500;
  letter-spacing: -0.02em; color: var(--forest); margin-bottom: 16px;
}
.page-header p { font-size: 17px; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; }
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s, border-color .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px var(--shadow); border-color: var(--border-mid); }
.product-img {
  aspect-ratio: 4/3; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--sage); opacity: 0.5;
}
.product-img-placeholder p { font-size: 12px; letter-spacing: 0.08em; }
.product-info { padding: 28px; }
.product-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 10px; display: block;
}
.product-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 500; color: var(--forest); margin-bottom: 8px; }
.product-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; }
.product-prices { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.price-pill {
  font-size: 12px; font-weight: 600; color: var(--forest);
  background: var(--sage-pale); border-radius: 20px;
  padding: 5px 14px; letter-spacing: 0.02em;
}
.price-pill.featured { background: var(--forest); color: white; }
.engraving-note {
  font-size: 12px; color: var(--sage); margin-top: 8px;
  padding: 10px 14px; background: var(--sage-pale);
  border-radius: 8px; display: flex; align-items: center; gap: 6px;
}
.buy-btn { margin-top: 20px; }

/* ═══════════════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 60px; }
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); border-color: var(--border-mid); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; color: var(--forest);
  margin-bottom: 16px;
}
.team-name { font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 3px; }
.team-role {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 12px; display: block;
}
.team-bio { font-size: 13px; line-height: 1.7; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════
   JOURNAL
═══════════════════════════════════════════════════════════════ */
.journal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; margin-top: 60px; }
.journal-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s;
}
.journal-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.journal-img {
  aspect-ratio: 16/9; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
}
.journal-img img { width: 100%; height: 100%; object-fit: cover; }
.journal-img-placeholder { color: var(--sage); opacity: 0.4; font-size: 12px; letter-spacing: 0.08em; }
.journal-body { padding: 24px; }
.journal-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.journal-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage);
  background: var(--sage-pale); padding: 4px 10px; border-radius: 20px;
}
.journal-date { font-size: 12px; color: var(--text-faint); }
.journal-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 500; color: var(--forest); margin-bottom: 8px; line-height: 1.2; }
.journal-excerpt { font-size: 13.5px; line-height: 1.7; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════════ */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; margin-top: 60px; }
.contact-info h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 38px; font-weight: 500; color: var(--forest); margin-bottom: 16px; }
.contact-info p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-mid); text-decoration: none;
  transition: color .2s;
}
.contact-link:hover { color: var(--forest); }
.contact-link-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sage-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; resize: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--sage); background: var(--white);
}
.form-success-msg { display: none; text-align: center; padding: 40px; }
.form-success-msg .success-icon { font-size: 40px; margin-bottom: 12px; }
.form-success-msg h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--forest); margin-bottom: 8px; }
.form-success-msg p { color: var(--text-mid); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   VALUES / ABOUT STRIPS
═══════════════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 60px; }
.value-card {
  padding: 32px; background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  transition: transform .3s, border-color .3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border-mid); }
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; line-height: 1.7; color: var(--text-mid); }

/* ── Strip / banner ───────────────────────────────────────────── */
.green-strip {
  background: var(--forest);
  padding: 80px 7vw; text-align: center;
}
.green-strip h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; color: white; margin-bottom: 16px; }
.green-strip p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .05s; } .stagger-2 { transition-delay: .12s; }
.stagger-3 { transition-delay: .19s; } .stagger-4 { transition-delay: .26s; }
.stagger-5 { transition-delay: .33s; } .stagger-6 { transition-delay: .40s; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--forest); color: white;
  padding: 64px 7vw 32px;
}
.footer-inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: white; margin-bottom: 10px; display: block;
}
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { aspect-ratio: 16/9; }
  .hero-badge { bottom: -16px; left: 16px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
