/* 
  Livolia - Editorial Elegance V2
  Sophisticated B2B Luxury Aesthetic
*/

:root {
  --c-dark: #1f1e1c;
  --c-light: #fcfbf9;
  --c-accent: #b59a7c;
  --c-gray-text: #666666;
  --c-gray-border: rgba(181, 154, 124, 0.2);
  
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: cubic-bezier(0.77, 0, 0.175, 1);
  --transition-fast: cubic-bezier(0.25, 1, 0.5, 1);
  
  --header-height: 100px;
}

/* Base & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Handled by GSAP ScrollSmoother if available, or just keeping it natural */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--transition-fast);
}


body {
  font-family: var(--font-body);
  color: var(--c-dark);
  background-color: var(--c-light);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* Noise Texture Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: var(--c-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.3s var(--transition-fast), width 0.3s, height 0.3s;
}

.cursor-dot.grow {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  mix-blend-mode: normal;
  border: 1px solid var(--c-accent);
}

/* Typography Hierarchy */
h1, h2, h3, h4, .massive-text {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 30px;
  padding: 8px 18px;
  border: 1px solid var(--c-gray-border);
  background: rgba(181, 154, 124, 0.03);
}

.editorial-heading {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* Navigation - Glassmorphism Evolution */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: background 0.5s var(--transition-smooth), height 0.5s var(--transition-smooth);
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.18em;
  color: white;
  transition: color 0.5s;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 7px;
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.38em;
  font-weight: 500;
  opacity: 0.82;
  text-transform: uppercase;
}

.main-nav.scrolled .nav-brand {
  color: var(--c-dark);
}

.nav-menu {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: white;
  transition: color 0.5s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.main-nav.scrolled .nav-link {
  color: var(--c-dark);
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 13px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: 50px;
  color: white;
  transition: all 0.4s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

.main-nav.scrolled .nav-btn {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

.nav-btn:hover {
  background: white;
  color: var(--c-dark);
}

.main-nav.scrolled .nav-btn:hover {
  background: var(--c-dark);
  color: white;
}

/* Language Switcher */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: -10px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
}

.lang-btn img {
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-btn:hover, .lang-btn.active {
  opacity: 1;
  transform: scale(1.1);
}

.lang-sep {
  color: white;
  font-size: 10px;
  opacity: 0.3;
}

.main-nav.scrolled .lang-sep {
  color: var(--c-dark);
}

/* Sections */
section {
  position: relative;
}

/* Hero Section */
.hero-cinematic {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 900px;
}

.hero-content-wrapper h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-content-wrapper p {
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 3.5rem;
  opacity: 0.8;
}

.hero-explore {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.explore-line {
  width: 80px;
  height: 1px;
  background: var(--c-accent);
}

.hero-explore a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: white;
  text-transform: uppercase;
  position: relative;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 36px;
  background: rgba(255,255,255,0.04);
}

.hero-explore a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.4s var(--transition-smooth);
}

.hero-explore a:hover::after {
  width: 100%;
}

.hero-cta-secondary {
  background: transparent !important;
  border-color: rgba(255,255,255,0.55) !important;
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.12) !important;
}


/* Statement Section */
.editorial-statement {
  padding: 12vw 5%;
  background-color: var(--c-light);
}

.statement-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--c-accent);
  margin-bottom: 2rem;
  display: block;
  font-weight: 700;
  border-bottom: 1px solid rgba(181,154,124,0.3);
  padding-bottom: 1rem;
  display: inline-block;
}

.massive-text {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.3;
  text-transform: none;
  font-style: italic;
  color: var(--c-dark);
}

.statement-meta {
  margin-top: 4rem;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--c-dark);
  font-weight: 600;
  opacity: 0.5;
}

/* Showcase Grid */
.showcase-section {
  padding-bottom: 10vw;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}

.showcase-img {
  position: relative;
  overflow: hidden;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-text {
  padding: 10vw 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.reverse .showcase-text {
  order: -1;
}

.editorial-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 2.5rem;
  line-height: 1;
}

.showcase-text p {
  font-size: 1.12rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #444;
  max-width: 480px;
  line-height: 1.9;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 8px;
  width: fit-content;
  transition: gap 0.3s;
}

.link-arrow:hover {
  gap: 25px;
}

/* Dark Precision Block */
.precision-section {
  background: var(--c-dark);
  color: white;
  padding: 12vw 5%;
}

.precision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3.2rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.precision-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  margin-top: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.22;
  letter-spacing: 0.02em;
  grid-column: 1 / -1;
}

.stat-item {
  border: 1px solid rgba(181,154,124,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  min-height: 92px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(181,154,124,0.55);
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  color: var(--c-accent);
  display: block;
  line-height: 1.05;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.83);
  margin-top: 0.2rem;
  display: block;
  font-weight: 500;
}

.precision-image {
  height: min(58vh, 560px);
  overflow: hidden;
  border-radius: 8px;
}

.precision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1);
}

/* Secondary Accents Grid */
.accents-section {
  padding: 12vw 5%;
}

.accents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
}

.accent-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.accent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition-smooth);
}

.accent-card:hover img {
  transform: scale(1.08);
}

.accent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
}

.accent-card h4 {
  font-size: 1.8rem;
}

/* Footer Evolution */
.luxury-footer {
  background: white;
  padding: 6vw 5% 3vw;
  border-top: 1px solid var(--c-gray-border);
}

.huge-logo {
  font-size: clamp(4rem, 15vw, 18rem);
  text-align: center;
  margin-bottom: 6vw;
  color: var(--c-dark);
  opacity: 1;
  letter-spacing: 0.05em;
}

.footer-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.footer-intro h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.footer-intro p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-gray-border);
  padding-top: 4vw;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h5 {
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  font-size: 16px;
  font-weight: 500;
  color: #303030;
  transition: color 0.3s;
  line-height: 1.7;
}

.footer-link:hover {
  color: var(--c-dark);
}

/* Brand Values */
.brand-values {
  padding: 0 5% 12vw;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.value-item {
  padding: 40px;
  background: white;
  border: 1px solid var(--c-gray-border);
  transition: transform 0.4s var(--transition-fast);
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-num {
  font-family: var(--font-display);
  color: var(--c-accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 17px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--c-dark);
  font-weight: 600;
}

.value-item p {
  font-size: 16px;
  color: #2f2f2f;
  line-height: 1.85;
}

/* Production Process */
.process-section {
  padding: 12vw 5%;
  background: var(--c-light);
  border-top: 1px solid var(--c-gray-border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 4vw;
}

.process-step {
  position: relative;
}

.step-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-accent);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  display: block;
}

.process-step h5 {
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--c-dark);
  font-weight: 600;
}

.process-step p {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  font-weight: 400;
}

/* Newsletter Section */
.newsletter-section {
  padding: 12vw 5%;
  background: var(--c-dark);
  color: white;
  text-align: center;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 15px 0;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-bottom-color: var(--c-accent);
}

.newsletter-form button {
  background: var(--c-accent);
  color: white;
  border: none;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #a4896c;
}

/* ── Dropdown Navigation ── */
.nav-dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 8px;
  opacity: 0.6;
  transition: transform 0.3s;
  display: inline-block;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Hover köprüsü: link ile dropdown arasındaki boşluğu kapatır */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 210px;
  padding: 18px 0 10px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateX(-50%) translateY(8px);
}

/* Görünmez köprü — link ile dropdown arasındaki boşluğu fare için kapatır */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--c-gray-text);
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--c-dark);
  background: rgba(181,154,124,0.07);
  padding-left: 30px;
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transition: all 0.3s;
}

.main-nav.scrolled .nav-mobile-toggle span {
  background: var(--c-dark);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  display: none !important; /* JS ile açılır — varsayılan KAPALI */
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu-overlay.active {
  display: flex !important;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: white;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mobile-menu-link:hover {
  opacity: 1;
}

.mobile-menu-link.mobile-menu-cta {
  margin-top: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 12px;
}

/* ── Collections Grid (for koleksiyon.php) ── */
.collections-hero {
  padding-top: calc(var(--header-height) + 6vw);
  padding-bottom: 6vw;
  padding-left: 5%;
  padding-right: 5%;
  background: var(--c-light);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition-smooth);
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  transform: translateY(20px);
  transition: transform 0.5s var(--transition-fast);
}

.collection-card:hover .collection-card-overlay {
  transform: translateY(0);
}

.collection-card-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.collection-card-overlay p {
  font-size: 14px;
  opacity: 0.9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── About / Misyon Page ── */
.page-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 8%;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.page-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 500px;
}

.page-content {
  padding: 8vw 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.mission-card {
  padding: 4rem;
  background: white;
  border: 1px solid var(--c-gray-border);
  margin-bottom: 2rem;
}

.mission-card h3 {
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  color: var(--c-accent);
}

.mission-card p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #2f2f2f;
}

/* ── Team Section ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 8vw 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1.5rem;
  filter: grayscale(0.2);
  transition: filter 0.5s;
}

.team-card:hover img {
  filter: grayscale(0);
}

.team-card h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.team-card span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  text-transform: uppercase;
}

/* ── Breadcrumb ── */
.breadcrumb-bar {
  padding: 1.5rem 5%;
  background: white;
  border-bottom: 1px solid var(--c-gray-border);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--c-gray-text);
  text-transform: uppercase;
}

.breadcrumb-bar a {
  color: var(--c-accent);
}

.breadcrumb-bar a:hover {
  color: var(--c-dark);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-mobile-toggle { display: flex; }
  .showcase-grid { grid-template-columns: 1fr; }
  .precision-grid { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .accents-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 80px; }
  .hero-content-wrapper h1 { font-size: 3.5rem; }
  .nav-brand {
    font-size: 22px;
    letter-spacing: 0.12em;
    gap: 5px;
  }
  .nav-brand-sub {
    font-size: 8px;
    letter-spacing: 0.28em;
  }
  .two-col-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: 1fr; }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.35s var(--transition-fast), box-shadow 0.35s;
  animation: waPulse 3s ease-in-out infinite;
  cursor: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55), 0 4px 15px rgba(0,0,0,0.2);
  animation: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-8px);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--c-dark);
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--c-dark);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 2px 10px rgba(0,0,0,0.15); }
  50%       { box-shadow: 0 8px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-tooltip { display: none; }
}
