/* ============================================
   BLaCKaFe — Curated Coffee Roasters
   Premium Dark Theme Stylesheet
   ============================================ */

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

/* === CUSTOM PROPERTIES === */
:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #161616;
  --cream: #f4f1ea;
  --cream-soft: #e8e4dc;
  --gold: #c9a96e;
  --gold-light: #d4ba85;
  --gold-dark: #a8894e;
  --text-primary: #f4f1ea;
  --text-secondary: rgba(244, 241, 234, 0.7);
  --text-muted: rgba(244, 241, 234, 0.4);
  --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #d4ba85 50%, #a8894e 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.15);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--transition);
}

a:hover {
  color: var(--gold-light);
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 5px;
  cursor: pointer;
}


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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

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

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black) !important;
  background: var(--gradient-gold);
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--black) !important;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s var(--transition);
}

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

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

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  font-family: var(--font-body);
}

.lang-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}

.lang-opt {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s var(--transition);
}

.lang-opt.active {
  color: var(--gold);
  font-weight: 600;
}

.lang-sep {
  font-size: 0.65rem;
  color: rgba(201, 169, 110, 0.25);
  user-select: none;
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 0.8rem;
}

.nav-right-mobile .lang-toggle {
  padding: 0.3rem 0.6rem;
}


/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.3) 40%,
      rgba(10, 10, 10, 0.6) 70%,
      rgba(10, 10, 10, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-logo-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 12px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 1.2s var(--transition) 0.3s forwards;
  line-height: 1.1;
  user-select: none;
}

.hero-logo-sub {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeInUp 1s var(--transition) 0.6s forwards;
  margin-bottom: 1rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition) 0.8s forwards;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition) 1.1s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--transition) 1.4s forwards;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gradient-gold);
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-outline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  background: transparent;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--transition) 2s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* === SECTION STYLES === */
.section {
  padding: 8rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* === PHILOSOPHY SECTION === */
.philosophy {
  background: var(--gradient-dark);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: var(--shadow-card);
}

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

.philosophy-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.philosophy-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === EXPERIENCE SECTION (Image + Text) === */
.experience {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.experience-row.reverse {
  direction: rtl;
}

.experience-row.reverse>* {
  direction: ltr;
}

.experience-image {
  position: relative;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.experience-image:hover img {
  transform: scale(1.03);
}

.experience-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 6rem;
  background: var(--black-card);
}

.experience-text .section-label {
  text-align: left;
}

.experience-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.experience-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.experience-text blockquote {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}

/* === PRODUCTS SECTION === */
.products {
  background: var(--black-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--black);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--black);
}

.product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--black), transparent);
}

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

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

.product-content {
  padding: 2rem 2rem 2.5rem;
}

.product-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.product-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--transition);
}

.product-link:hover {
  gap: 0.8rem;
}

.product-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  transition: transform 0.3s var(--transition);
}

.product-link:hover svg {
  transform: translateX(3px);
}

/* === PROMISE SECTION === */
.promise {
  background: var(--black);
  position: relative;
}

.promise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promise-card {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.promise-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(201, 169, 110, 0.15);
}

.promise-card:last-child::after {
  display: none;
}

.promise-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
}

.promise-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.promise-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.promise-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === QUOTE SECTION === */
.quote-section {
  background: var(--black-card);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(201, 169, 110, 0.06);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
}

/* === LEGAL PAGES === */
.legal-page {
  padding: 10rem 2rem 5rem;
  background: var(--gradient-dark);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-brand .nav-logo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
}

.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s var(--transition);
}

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

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  transition: all 0.3s var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.3s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {

  .philosophy-grid,
  .products-grid,
  .promise-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

  .experience-row.reverse {
    direction: ltr;
  }

  .experience-text {
    padding: 4rem 3rem;
  }

  .experience-image {
    height: 400px;
  }

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

  .promise-card::after {
    display: none;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-left: 1px solid rgba(201, 169, 110, 0.1);
    transform: translateX(105%);
    transition: transform 0.4s var(--transition);
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 2.5px;
  }

  .hamburger {
    display: flex;
  }

  .nav-right-mobile {
    display: flex;
  }

  .nav-links .lang-toggle {
    display: none;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .hero-logo-text {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-logo-sub {
    font-size: clamp(0.65rem, 2.5vw, 0.9rem);
    letter-spacing: 4px;
  }

  .hero-tagline {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 90%;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.85rem 2rem;
    font-size: 0.72rem;
  }

  .philosophy-card {
    padding: 2.5rem 2rem;
  }

  .experience-image {
    height: 300px;
  }

  .experience-text {
    padding: 3rem 1.5rem;
  }

  .experience-text h2 {
    font-size: 1.6rem;
  }

  .product-card {
    max-width: 100%;
  }

  .product-image {
    height: 220px;
  }

  .promise-card {
    padding: 2.5rem 1.5rem;
  }

  .promise-card h3 {
    font-size: 1.15rem;
  }

  .quote-section {
    padding: 5rem 2rem;
  }

  .quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
  }

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

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

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .section {
    padding: 4rem 1.2rem;
  }

  .hero-logo-text {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
    letter-spacing: 2px;
  }

  .hero-logo-sub {
    letter-spacing: 3px;
    font-size: 0.6rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .experience-text {
    padding: 2.5rem 1.2rem;
  }

  .experience-text h2 {
    font-size: 1.4rem;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-content h3 {
    font-size: 1.2rem;
  }

  .footer {
    padding: 3rem 1.2rem 2rem;
  }
}