/* =========================================
   ORTHIANS POLYCRAFT — MAIN STYLESHEET
   Aesthetic: Refined editorial · Warm luxury
   Fonts: Cormorant Garamond + DM Sans
   ========================================= */

:root {
  --teal: #1D9E75;
  --teal-dark: #0F6E56;
  --teal-deep: #085041;
  --teal-light: #5DCAA5;
  --teal-mist: #E1F5EE;
  --teal-pale: #F0FAF6;
  --ink: #1a1a18;
  --ink-mid: #3a3a36;
  --ink-soft: #6b6b66;
  --ink-ghost: #a8a8a0;
  --cream: #FAFAF7;
  --cream-warm: #F5F4EF;
  --border: rgba(26,26,24,0.1);
  --border-soft: rgba(26,26,24,0.06);
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.section-h2 em {
  font-style: italic;
  color: var(--teal-dark);
}

.section-header {
  margin-bottom: 48px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dark);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid var(--teal-dark);
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), color 0.2s;
}
.btn-secondary:hover { background: var(--teal-dark); color: white; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(26,26,24,0.04); }

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--teal-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-dark:hover { background: var(--teal-mist); transform: translateY(-1px); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-dark:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; }
.logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}
.logo-circle {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 500;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active { font-weight: 500; }
.chevron { font-size: 12px; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: none;
  gap: 24px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-col { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dropdown-head {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-soft);
}
.dropdown-menu a {
  font-size: 13px;
  color: var(--ink-mid);
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--teal-pale); color: var(--teal-dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #25D366;
  padding: 7px 14px;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-nav-wa:hover { background: rgba(37,211,102,0.08); }

.btn-nav-quote {
  font-size: 12px;
  font-weight: 500;
  background: var(--teal-dark);
  color: white;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-nav-quote:hover { background: var(--teal-deep); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero-product-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-main {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.hero {
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
}

.hero-bg-text {
  position: absolute;
  bottom: -60px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 600;
  color: rgba(29,158,117,0.05);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-mist);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--teal-dark); }

.hero-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--ink-ghost);
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero ball grid */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ball-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 380px;
}
.hball {
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: default;
}
.hball:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.hball-1 { background: linear-gradient(135deg, #FFF8E1, #FFF3CD); }
.hball-2 { background: linear-gradient(135deg, #FFE8E8, #FFD6D6); }
.hball-3 { background: linear-gradient(135deg, var(--teal-mist), #D0F0E4); }
.hball-4 { background: linear-gradient(135deg, #EDE8FF, #DDD6FF); }
.hball-inner { font-size: 48px; line-height: 1; }
.hball-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mid);
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--teal));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--teal-dark);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  padding: 0 24px;
  text-transform: uppercase;
}
.marquee-dot {
  color: var(--teal-light) !important;
  padding: 0 4px !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== CATEGORIES ===== */
.categories-section { background: var(--cream-warm); }

.cat-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.cat-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-card-inner { padding: 40px; }
.cat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.cat-emoji-stack {
  display: flex;
  gap: 8px;
  font-size: 32px;
  margin-bottom: 20px;
}
.cat-h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.cat-p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.cat-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-mist);
  padding: 4px 10px;
  border-radius: 20px;
}
.cat-arrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
  transition: gap 0.2s;
}
.cat-card:hover .cat-arrow { letter-spacing: 0.02em; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-left { position: sticky; top: 100px; }
.why-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 20px 0 32px;
  max-width: 360px;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
}
.why-card:first-child { border-top: 1px solid var(--border-soft); }
.why-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--teal-mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-desc-sm {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products-section { background: var(--cream-warm); }

.prod-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

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

.prod-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.prod-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prod-img-1 { background: linear-gradient(135deg, #FFF8DC, #FFEAA7); }
.prod-img-2 { background: linear-gradient(135deg, #FFE8E8, #FFBBBB); }
.prod-img-3 { background: linear-gradient(135deg, #EDE8FF, #D4CAFE); }
.prod-img-4 { background: linear-gradient(135deg, var(--teal-mist), #A8E6CF); }
.prod-img-5 { background: linear-gradient(135deg, #E8F4FD, #BEE3F8); }
.prod-img-6 { background: linear-gradient(135deg, #FDF0E8, #FDDBB4); }

.prod-emoji {
  font-size: 64px;
  transition: transform 0.4s var(--ease);
}
.prod-card:hover .prod-emoji { transform: scale(1.1) rotate(5deg); }

.prod-body { padding: 20px 24px; }
.prod-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.prod-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.prod-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}

.section-footer-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== CORPORATE BAND ===== */
.corporate-band {
  background: var(--teal-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.corporate-band::before {
  content: 'ORTHIANS';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.1em;
  pointer-events: none;
}

.corp-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.corp-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.corp-h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.corp-h em { font-style: italic; color: var(--teal-light); }
.corp-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.corp-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.corp-clients span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
}
.corp-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.corp-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.corp-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}
.corp-stat-card:hover { background: rgba(255,255,255,0.12); }
.corp-stat-icon { font-size: 24px; margin-bottom: 8px; }
.corp-stat-n {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}
.corp-stat-l { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ===== BLOG ===== */
.blog-section { background: var(--cream); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.blog-card-featured {
  display: flex;
  flex-direction: column;
}
.blog-img {
  height: 200px;
}
.blog-img-1 { background: linear-gradient(135deg, var(--teal-mist), #9FE1CB); }

.blog-body { padding: 24px; }
.blog-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--ink-ghost);
}

/* ===== FOOTER ===== */
.footer { background: var(--ink); }

.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--teal-light); }

.footer-col-head {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 2px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--ink);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(29,158,117,0.15) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-h1 em { font-style: italic; color: var(--teal-light); }
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== PRODUCTS PAGE ===== */
.products-page { background: var(--cream); }
.filter-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 68px;
  z-index: 100;
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 16px 18px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}
.filter-chip:hover { color: var(--ink); }
.filter-chip.active { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }

.prod-img-real {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.prod-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-real-img {
  transform: scale(1.04);
}

.products-full-grid {
  padding: 60px 0;
}
.category-block { margin-bottom: 80px; }
.cat-block-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.cat-block-h {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
}
.cat-block-count {
  font-size: 12px;
  color: var(--ink-ghost);
}
.prod-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--cream-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text-block { padding: 0; }
.about-big-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
}
.about-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-visual {
  background: var(--teal-mist);
  border-radius: 4px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.about-visual-emoji { font-size: 80px; }
.about-visual-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--teal-deep);
  text-align: center;
}

.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.value-icon { font-size: 32px; margin-bottom: 20px; }
.value-h {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ===== BLOG PAGE ===== */
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-tag-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btag {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  background: var(--white);
  color: var(--ink-soft);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btag:hover, .btag.active { background: var(--teal-dark); color: white; border-color: var(--teal-dark); }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 48px; }
.contact-info-wrap {}
.form-h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal-dark);
  color: white;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--teal-deep); transform: translateY(-1px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.info-h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--teal-mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-ghost);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-value {
  font-size: 15px;
  color: var(--ink);
}
.info-value a { color: var(--teal-dark); }
.info-value a:hover { text-decoration: underline; }
.map-placeholder {
  margin-top: 32px;
  height: 240px;
  background: var(--teal-mist);
  border-radius: 4px;
  border: 1px dashed var(--teal-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--teal-dark);
}
.map-placeholder span { font-size: 13px; font-weight: 500; }
.map-placeholder small { font-size: 11px; color: var(--teal); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-left { position: static; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-content { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prod-full-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 0; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-content { padding: 60px 20px 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-bg-text { font-size: 80px; }
  .corp-card-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   ORTHIANS — ADDITIONS & IMPROVEMENTS
   ============================================= */

/* --- FOOTER SOCIALS --- */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* --- MEMORY FOAM CAT CARD PLACEHOLDER --- */
.cat-img-foam {
  background: linear-gradient(135deg, #D4EFE7, #A8DACA);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-foam-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.cat-foam-label {
  font-size: 13px;
  font-weight: 500;
  color: #2D7A5F;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- MEMORY FOAM PROD VISUALS (home best-sellers) --- */
.prod-foam-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.backrest-visual::before {
  content: '';
  width: 70px; height: 90px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(160deg, #6BBBA3, #3D8C74);
  box-shadow: inset -4px -4px 12px rgba(0,0,0,0.15), 4px 6px 16px rgba(61,140,116,0.3);
  position: absolute;
}
.backrest-visual::after {
  content: '';
  width: 80px; height: 20px;
  border-radius: 4px;
  background: linear-gradient(160deg, #5AA892, #3D7D68);
  position: absolute;
  bottom: 28%;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.15);
}
.seat-visual::before {
  content: '';
  width: 80px; height: 70px;
  border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px;
  background: linear-gradient(160deg, #7BBFD8, #4A98BE);
  box-shadow: inset -4px -4px 12px rgba(0,0,0,0.15), 4px 6px 16px rgba(74,152,190,0.3);
  position: absolute;
}
.headrest-visual::before {
  content: '';
  width: 80px; height: 50px;
  border-radius: 50% 50% 30% 30%;
  background: linear-gradient(160deg, #E8A87C, #C07540);
  box-shadow: inset -4px -4px 12px rgba(0,0,0,0.1), 4px 6px 16px rgba(192,117,64,0.25);
  position: absolute;
}
.wedge-visual::before {
  content: '';
  width: 0; height: 0;
  border-left: 45px solid transparent;
  border-bottom: 70px solid #9B8FD4;
  filter: drop-shadow(4px 6px 8px rgba(155,143,212,0.4));
  position: absolute;
}
.wedge-visual::after {
  content: '';
  width: 45px; height: 70px;
  background: linear-gradient(160deg, #B8ADEC, #8678C4);
  border-radius: 0 4px 4px 0;
  position: absolute;
  right: calc(50% - 45px);
  box-shadow: 4px 6px 16px rgba(134,120,196,0.3);
}
.travel-visual::before {
  content: '';
  width: 90px; height: 50px;
  border-radius: 50%;
  border: 20px solid #D4B85A;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 65%);
  background: transparent;
  box-shadow: 0 6px 16px rgba(212,184,90,0.3);
  position: absolute;
}
.knee-visual::before {
  content: '';
  width: 80px; height: 50px;
  border-radius: 40px;
  background: linear-gradient(160deg, #7ED498, #4AAD6A);
  box-shadow: inset -4px -4px 12px rgba(0,0,0,0.15), 4px 6px 16px rgba(74,173,106,0.3);
  position: absolute;
  transform: rotate(-15deg);
}

/* --- MEMORY FOAM PROD VISUALS (products page) --- */
.prod-foam-backrest,
.prod-foam-seat,
.prod-foam-headrest,
.prod-foam-wedge,
.prod-foam-travel,
.prod-foam-knee {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prod-foam-backrest::before { content: ''; width: 70px; height: 90px; border-radius: 8px 8px 4px 4px; background: linear-gradient(160deg, #6BBBA3, #3D8C74); box-shadow: inset -4px -4px 12px rgba(0,0,0,0.15), 4px 6px 16px rgba(61,140,116,0.3); }
.prod-foam-seat::before { content: ''; width: 80px; height: 70px; border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px; background: linear-gradient(160deg, #7BBFD8, #4A98BE); box-shadow: 4px 6px 16px rgba(74,152,190,0.3); }
.prod-foam-headrest::before { content: ''; width: 80px; height: 50px; border-radius: 50% 50% 30% 30%; background: linear-gradient(160deg, #E8A87C, #C07540); box-shadow: 4px 6px 16px rgba(192,117,64,0.25); }
.prod-foam-wedge::before { content: ''; width: 0; height: 0; border-left: 45px solid transparent; border-bottom: 70px solid #9B8FD4; filter: drop-shadow(4px 6px 8px rgba(155,143,212,0.4)); }
.prod-foam-travel::before { content: ''; width: 90px; height: 50px; border-radius: 50%; border: 18px solid #D4B85A; clip-path: polygon(0 0, 100% 0, 100% 65%, 0 65%); background: transparent; box-shadow: 0 6px 16px rgba(212,184,90,0.3); }
.prod-foam-knee::before { content: ''; width: 80px; height: 50px; border-radius: 40px; background: linear-gradient(160deg, #7ED498, #4AAD6A); box-shadow: 4px 6px 16px rgba(74,173,106,0.3); transform: rotate(-15deg); }

/* --- PRODUCT PAGE IMAGE FIT (stress balls) --- */
.prod-img-real {
  background: #1a1a1a;
}
.prod-real-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-real-img {
  transform: scale(1.06);
}

/* --- HOME BEST SELLERS IMAGE FIT --- */
.prod-img-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-img-photo {
  transform: scale(1.05);
}

/* --- CAT IMAGE FIT --- */
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: #fff;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-img {
  transform: scale(1.04);
}

/* --- POLICY PAGES (Privacy & Terms) --- */
.policy-body {
  padding: 60px 0;
}
.policy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  padding: 24px 28px;
  background: var(--cream-warm);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  margin-bottom: 48px;
}
.policy-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-body h2:first-of-type { margin-top: 0; }
.policy-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.policy-body ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}
.policy-body ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 6px;
  list-style: disc;
}
.policy-body a {
  color: var(--teal);
  text-decoration: none;
}
.policy-body a:hover { text-decoration: underline; }
.policy-contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 28px;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin-top: 8px;
}
.policy-contact-box strong {
  color: var(--ink);
  font-weight: 600;
}

/* Pinterest & YouTube social icons (added to footer-socials) */
.footer-social-link[aria-label="Pinterest"]:hover { background: #E60023; }
.footer-social-link[aria-label="YouTube"]:hover { background: #FF0000; }
.footer-social-link[aria-label="LinkedIn"]:hover { background: #0A66C2; }
.footer-social-link[aria-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer-social-link[aria-label="Facebook"]:hover { background: #1877F2; }


/* ── BRAND LOGO MARQUEE ──────────────────────────────── */
.marquee-brands-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  height: 56px;
  overflow: hidden;
}
.marquee-label-pill {
  position: absolute;
  left: 0;
  z-index: 10;
  background: var(--teal-dark);
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.marquee-label-pill::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, var(--teal-dark), transparent);
}
.marquee-brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-left: 120px;
  animation: marquee 40s linear infinite;
}
.marquee-brands-wrap:hover .marquee-brands-track {
  animation-play-state: paused;
}
.marquee-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.marquee-logo-item:hover { opacity: 1; }
.marquee-logo-item svg { display: block; }
.marquee-sep {
  color: rgba(255,255,255,0.2) !important;
  font-size: 12px;
  padding: 0 4px;
}
