/* ========================================
   Jet Holdings — Nordic Style
   Palette: warm off-white / sage green / terracotta
   ======================================== */

:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EDE4;
  --bg-card: #FFFFFF;
  --bg-soft: #F0EBE2;
  --bg-mist: #EDE8DF;

  --sage: #8B9D83;
  --sage-dark: #6F8269;
  --sage-deep: #4F614A;
  --sage-light: #D6DDD1;
  --sage-mist: rgba(139, 157, 131, 0.12);

  --terracotta: #C4A484;
  --terracotta-dark: #A88867;
  --terracotta-light: #E4D3BE;

  --text: #3A3A38;
  --text-heading: #2A2D29;
  --text-muted: #7A766E;
  --text-faint: #A8A399;

  --hairline: #E5DFD3;
  --hairline-strong: #D6CEBF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --max: 1200px;
  --max-wide: 1280px;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --t-fast: 0.2s ease;
  --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--sage-deep);
}

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

ul {
  list-style: none;
}

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

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-7) 0;
}

.section-tight {
  padding: var(--space-5) 0;
}

/* Section title */
.section-head {
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: var(--space-2);
  font-family: var(--font-sans);
}

.section-head h2 {
  margin-bottom: var(--space-2);
}

.section-head .desc {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* Hairline divider */
.hairline {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: var(--space-5) 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: all var(--t-base);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--sage);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--sage-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 157, 131, 0.28);
}

.btn-accent {
  background-color: var(--terracotta);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--terracotta-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 164, 132, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-heading);
  border: 1px solid var(--hairline-strong);
}

.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.btn-light {
  background-color: #ffffff;
  color: var(--sage-dark);
}

.btn-light:hover {
  background-color: var(--bg);
  color: var(--sage-deep);
  transform: translateY(-2px);
}

.btn-underline {
  background: none;
  border: none;
  color: var(--sage-dark);
  padding: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  font-weight: 500;
}

.btn-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: transform var(--t-base);
}

.btn-underline:hover::after {
  transform: scaleX(1);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base), background-color var(--t-base);
}

.navbar.scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 20px rgba(42, 45, 41, 0.05);
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text-heading);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-logo:hover {
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-link {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sage);
  transition: width var(--t-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--sage-dark);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-heading);
  transition: all var(--t-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 45, 41, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: var(--space-8) 0 var(--space-7);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-mist) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 164, 132, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: var(--space-3);
  font-family: var(--font-sans);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  margin-bottom: var(--space-3);
  line-height: 1.05;
  font-weight: 500;
  color: var(--text-heading);
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.8;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.hero-image {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--terracotta-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-image span.hero-image-placeholder {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  font-weight: 500;
  font-style: italic;
  transition: opacity 0.3s ease;
}

.hero-image img.hero-image-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image.has-image .hero-image-placeholder {
  opacity: 0;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-6);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-4) 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-2) var(--space-2);
  border-right: 1px solid var(--hairline);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sage-dark);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .plus {
  color: var(--terracotta);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ========================================
   Categories Section
   ======================================== */
.categories {
  background-color: var(--bg-warm);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.category-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  transition: all var(--t-base);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-heading);
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(42, 45, 41, 0.08);
  border-color: var(--hairline);
  color: var(--text-heading);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-3);
  background-color: var(--sage-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--sage-dark);
  transition: all var(--t-base);
}

.category-card:hover .category-icon {
  background-color: var(--sage);
  color: #ffffff;
  transform: scale(1.08);
}

.category-card h3 {
  margin-bottom: var(--space-1);
  font-size: 1.4rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.category-count {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

/* ========================================
   About Band — Company Intro Strip
   ======================================== */
.about-band {
  background-color: var(--bg-card);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  align-items: center;
}

.about-band-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-band-visual::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid var(--sage-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-band-visual::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-band-visual span {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage);
  font-style: italic;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.about-band-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.about-band-text h2 {
  margin-bottom: var(--space-3);
}

.about-band-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-band-text p:last-of-type {
  margin-bottom: var(--space-3);
}

.about-band-text .lead::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  padding: 0.3rem 0.7rem 0 0;
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}

/* ========================================
   Core Values — three columns
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
}

.value-card {
  text-align: center;
  padding: var(--space-5) var(--space-4);
  position: relative;
}

.value-card + .value-card::before {
  content: '';
  position: absolute;
  left: -calc(var(--space-5) / 2);
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--hairline);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-2);
  font-style: italic;
}

.value-card h3 {
  margin-bottom: var(--space-2);
  font-size: 1.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: var(--space-2);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto var(--space-4);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn-accent {
  position: relative;
  z-index: 1;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
  padding: var(--space-6) 0 var(--space-5);
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: var(--sage-mist);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.page-header h1 {
  margin-bottom: var(--space-2);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========================================
   About Intro
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.about-intro-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.about-intro-text h2 {
  margin-bottom: var(--space-3);
}

.about-intro-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about-intro-text p.lead::first-letter {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  float: left;
  line-height: 0.85;
  padding: 0.35rem 0.75rem 0 0;
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}

.about-intro-visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--terracotta-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-intro-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
}

.about-intro-visual span {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* ========================================
   Timeline Section
   ======================================== */
.timeline-section {
  background-color: var(--bg-warm);
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--hairline-strong);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-4);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 1.75rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--sage);
  border: 3px solid var(--bg-warm);
  z-index: 1;
  box-shadow: 0 0 0 1px var(--sage);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -6px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -6px;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 500;
}

.timeline-content {
  background-color: var(--bg-card);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ========================================
   Mission & Vision
   ======================================== */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.mv-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  border: 1px solid var(--hairline);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sage);
}

.mv-card.vision::before {
  background: var(--terracotta);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42, 45, 41, 0.06);
}

.mv-icon {
  width: 56px;
  height: 56px;
  background-color: var(--sage-mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: var(--space-3);
}

.mv-card.vision .mv-icon {
  background-color: rgba(196, 164, 132, 0.15);
  color: var(--terracotta-dark);
}

.mv-card h3 {
  margin-bottom: var(--space-2);
  font-size: 1.6rem;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 0.97rem;
}

/* ========================================
   Products Page
   ======================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--hairline-strong);
  background-color: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--t-fast);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.filter-btn.active {
  background-color: var(--sage);
  color: #ffffff;
  border-color: var(--sage);
}

.category-section {
  margin-bottom: var(--space-6);
}

.category-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--hairline);
}

.category-section-head h3 {
  font-size: 1.6rem;
}

.category-section-head .count {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  transition: all var(--t-base);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42, 45, 41, 0.1);
  border-color: var(--sage-light);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-soft);
}

 .product-image-wrap img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   background-color: #fafafa;
   transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

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

.product-image-wrap .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--sage-light);
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--bg-warm) 100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
  padding: 1.5rem 1.5rem 1.75rem;
}

.product-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-info h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 500;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   Empty & Loading
   ======================================== */
.empty-state {
  text-align: center;
  padding: var(--space-6) 0;
  grid-column: 1 / -1;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.loading {
  text-align: center;
  padding: var(--space-5);
  color: var(--text-muted);
}

.loading-spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid var(--hairline);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-5);
  align-items: start;
}

.contact-form-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-5);
  border: 1px solid var(--hairline);
}

.contact-form-card h2 {
  margin-bottom: var(--space-2);
  font-size: 1.85rem;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--bg);
  transition: all var(--t-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-mist);
  background-color: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-error {
  color: #B85450;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.form-success,
.form-alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  border-left: 3px solid var(--sage);
  background-color: var(--sage-mist);
  color: var(--sage-deep);
}

.form-alert {
  border-left-color: #B85450;
  background-color: rgba(184, 84, 80, 0.08);
  color: #B85450;
}

.contact-info-card {
  background-color: var(--bg-warm);
  border-radius: var(--radius);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--sage-mist);
}

.contact-info-card h2 {
  margin-bottom: var(--space-2);
  font-size: 1.85rem;
  position: relative;
  z-index: 1;
}

.contact-info-card > p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--sage-dark);
}

.contact-info-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
  color: var(--text-heading);
  font-family: var(--font-sans);
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-info-text a:hover {
  color: var(--sage-dark);
}

/* ========================================
   404 Page
   ======================================== */
.error-page {
  min-height: calc(100vh - 78px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-7) 0;
}

.error-content h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--sage);
  margin-bottom: 0.5rem;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
}

.error-content h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.error-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #2C3528;
  color: rgba(255, 255, 255, 0.72);
  padding: var(--space-7) 0 var(--space-4);
  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: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 0;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--terracotta);
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  align-items: flex-start;
}

.footer-contact-item span:first-child {
  color: var(--terracotta);
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 1px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-3);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom p + p {
  margin-top: 4px;
}

.footer-icp a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.footer-icp a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }

  .section { padding: var(--space-6) 0; }

  .hero {
    padding: var(--space-6) 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    order: -1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-3);
    margin-top: var(--space-5);
  }

  .stat-item {
    border-right: none;
    padding: var(--space-2) 0;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--hairline);
  }

  .categories-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .value-card + .value-card::before {
    display: none;
  }

  .value-card {
    padding: var(--space-4);
    border-bottom: 1px solid var(--hairline);
  }

  .value-card:last-child {
    border-bottom: none;
  }

  .about-band-inner,
  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-intro-visual {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  .section { padding: var(--space-5) 0; }

  .container { padding: 0 1.25rem; }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--bg-card);
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 4px 20px rgba(42, 45, 41, 0.06);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    padding: 0.5rem 0;
    text-align: center;
  }

  .hero {
    padding: var(--space-5) 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 0 auto var(--space-3);
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-head {
    margin-bottom: var(--space-4);
  }

  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  /* Timeline mobile */
  .timeline::before {
    left: 16px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 45px;
    padding-right: 0;
  }

  .timeline-dot {
    left: 10px !important;
    right: auto !important;
  }

  .timeline-year {
    font-size: 1.6rem;
  }

  .filter-bar {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .error-content h1 {
    font-size: 5rem;
  }
}
