/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  color: var(--ink);
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 28px 40px;
  border-right: 1px solid rgba(13,26,18,.2);
  text-align: center;
}

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

.stat-number {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 4px;
}

/* ── STORY ── */
.story {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
body:not(.intro-active) .story {
  background-image: url('../images/background-camau.webp');
}

.story-text {
  position: relative;
  padding-left: 48px;
}

.story-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 200' preserveAspectRatio='none'%3E%3Cpath d='M6 0 C2 40 10 80 4 120 C8 150 2 180 6 200 M6 40 C10 50 12 70 8 80 M6 130 C2 140 0 160 4 170' stroke='%23C9A84C' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.story-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.story-title em {
  font-style: italic;
  color: var(--gold);
}

.story-body {
  font-size: 15px;
  color: rgba(247,242,232,.9); /* Increased opacity slightly from .65 to .9 */
  line-height: 1.9;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.story-body:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 56px;
  float: left;
  line-height: 0.85;
  margin-top: 4px;
  margin-right: 12px;
  color: var(--gold);
  font-weight: 400;
}

.story-visual {
  position: relative;
}

.story-frame {
  background: var(--mid);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-frame:hover .story-img {
  transform: scale(1.06);
}

.story-frame-label {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 18px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.story-offset-card {
  position: absolute;
  right: -32px; bottom: -32px;
  background: rgba(13, 26, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 24px 28px;
  width: 200px;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.story-offset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.story-offset-card-num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.story-offset-card-text {
  font-size: 12px;
  color: rgba(247,242,232,.6);
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ── MENU HIGHLIGHT ── */
.menu-section {
  background: #0a1510;
}

.menu-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}

.menu-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
}

.menu-title em { font-style: italic; color: var(--gold); }

.menu-link {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,242,232,.06);
}

.menu-card {
  background: var(--ink);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
}

.menu-card:hover { background: #122018; }

.menu-card-num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(201,168,76,.08);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}

.menu-card-tag {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.menu-card-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ivory);
}

.menu-card-desc {
  font-size: 13px;
  color: rgba(247,242,232,.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}

.menu-card-price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
}

.menu-card-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: background .2s;
}

.menu-card:hover .menu-card-icon {
  background: var(--gold);
  color: var(--ink);
}

/* ── EXPERIENCE ── */
.experience {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Tạo hiệu ứng Parallax nhẹ khi cuộn trang */
  color: var(--ivory);
  padding: 120px 60px;
}
body:not(.intro-active) .experience {
  background-image: 
    linear-gradient(to right, 
      rgba(13, 26, 18, 0.96) 0%, 
      rgba(13, 26, 18, 0.9) 45%, 
      rgba(13, 26, 18, 0.7) 75%, 
      rgba(13, 26, 18, 0.5) 100%
    ),
    url('../images/bg-2.webp');
}

.exp-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.exp-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}

.exp-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}

.exp-title {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--ivory);
}

.exp-title em { font-style: italic; color: var(--gold); }

.exp-body {
  font-size: 15px;
  color: rgba(247, 242, 232, 0.65);
  line-height: 1.9;
  margin-bottom: 36px;
}

.exp-features {
  display: flex; flex-direction: column; gap: 0;
}

.exp-feature {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
  align-items: flex-start;
}

.exp-feature:last-child { border-bottom: none; }

.exp-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
}

.exp-feature-text strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--ivory);
}

.exp-feature-text span {
  font-size: 13px;
  color: rgba(247, 242, 232, 0.5);
}

.exp-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding-top: 40px;
}

.exp-img-block {
  background: rgba(13, 26, 18, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.exp-img-block:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.exp-img-block:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.exp-img-placeholder {
  font-family: var(--display);
  font-size: 64px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.25);
  transition: color 0.4s ease;
}

.exp-img-block:hover .exp-img-placeholder {
  color: var(--gold);
}

.exp-img-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247, 242, 232, 0.75);
  transition: color 0.4s ease;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.exp-img-block:hover .exp-img-label {
  color: var(--gold);
}

.exp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-img-block:hover .exp-img {
  transform: scale(1.06);
}

.exp-img-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(13, 26, 18, 0.85) 0%, rgba(13, 26, 18, 0.2) 50%, rgba(13, 26, 18, 0) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.exp-img-block:has(.exp-img)::after {
  opacity: 0.7;
}

.exp-img-block:has(.exp-img):hover::after {
  opacity: 0.9;
}


/* ── SOURCING ── */
.sourcing-section {
  background: var(--ink);
  padding: 120px 60px;
}

.sourcing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.sourcing-header .section-eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.sourcing-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 16px;
}

.sourcing-title em {
  font-style: italic;
  color: var(--gold);
}

.sourcing-subtitle {
  font-size: 15px;
  color: rgba(247, 242, 232, 0.6);
  max-width: 540px;
  margin: 0 auto;
}

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

.sourcing-card {
  background: rgba(247, 242, 232, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 16px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.sourcing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(13, 26, 18, 0.9) 100%);
  z-index: 1;
}

.sourcing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.sourcing-card-icon {
  font-size: 32px;
  background: rgba(201, 168, 76, 0.1);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  z-index: 2;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: transform 0.4s ease;
}

.sourcing-card:hover .sourcing-card-icon {
  transform: rotate(15deg) scale(1.1);
  background: var(--gold);
  color: var(--ink);
}

.sourcing-card-title {
  font-family: var(--display);
  font-size: 26px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  z-index: 2;
}

.sourcing-card-desc {
  font-size: 14px;
  color: rgba(247, 242, 232, 0.65);
  line-height: 1.6;
  margin-bottom: auto;
  z-index: 2;
}

.sourcing-card-tag {
  font-size: 11px;
  color: var(--seafoam);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 24px;
  z-index: 2;
  border-top: 1px solid rgba(247, 242, 232, 0.08);
  padding-top: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: #0a1510;
  text-align: center;
}

.test-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  margin-bottom: 64px;
}

.test-title em { font-style: italic; color: var(--gold); }

.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: left;
}

.test-card {
  border: 1px solid rgba(201,168,76,.15);
  padding: 36px;
  position: relative;
}

.test-quote {
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .5;
}

.test-text {
  font-size: 15px;
  color: rgba(247,242,232,.7);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex; align-items: center; gap: 14px;
}

.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px; color: var(--gold);
}

.test-name {
  font-family: var(--display); font-size: 17px; line-height: 1.1;
}

.test-role {
  font-size: 11px; color: rgba(247,242,232,.4);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 2px;
}

.test-stars {
  position: absolute; top: 28px; right: 28px;
  color: var(--gold); font-size: 12px; letter-spacing: 2px;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  background: 
    linear-gradient(rgba(13, 26, 18, 0.92), rgba(13, 26, 18, 0.92)),
    url('../images/bg-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Hiệu ứng Parallax mượt mà */
  color: var(--ivory);
  text-align: center;
  padding: 120px 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cta-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  opacity: .9; margin-bottom: 20px;
}

.cta-title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ivory);
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-sub {
  font-size: 15px;
  color: rgba(247, 242, 232, 0.65);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.cta-actions {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

.cta-section .btn-dark {
  background: var(--gold);
  color: var(--ink);
}

.cta-section .btn-dark:hover {
  background: #e0bc5a;
  opacity: 1;
}

.cta-section .btn-outline-dark {
  border-color: var(--gold);
  color: var(--gold);
}

.cta-section .btn-outline-dark:hover {
  background: rgba(201, 168, 76, 0.1);
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 1px;
  transition: opacity .2s;
}

.btn-dark:hover { opacity: .85; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 1px;
  transition: background .2s;
}

.btn-outline-dark:hover { background: rgba(13,26,18,.08); }

/* ── INFO BAR ── */
.info-bar {
  background: linear-gradient(180deg, #0d1a12 0%, #050e08 100%);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1.5px solid rgba(201, 168, 76, 0.2);
}

.info-item {
  padding: 48px 48px;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 0.4s ease, transform 0.4s ease;
}

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

.info-item:hover {
  background: rgba(201, 168, 76, 0.03);
}

.info-icon {
  font-size: 26px; margin-bottom: 14px; color: var(--gold);
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(201, 168, 76, 0.2));
}

.info-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  font-weight: 500;
  opacity: 0.95;
}

.info-val {
  font-family: var(--display); font-size: 21px; color: var(--ivory);
  line-height: 1.3;
  font-weight: 400;
}

.info-sub { 
  font-size: 13px; 
  color: rgba(247, 242, 232, 0.6); 
  margin-top: 6px; 
}

/* ==========================================================================
   JOURNEY TEASER (PORTAL)
   ========================================================================== */
.journey-teaser {
  position: relative;
  width: 100%;
  padding: 100px 5%;
  background-color: var(--obsidian);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(220, 185, 116, 0.1);
  border-bottom: 1px solid rgba(220, 185, 116, 0.1);
}

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

.teaser-scanline {
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(200, 230, 212, 0.03) 0%, transparent 60%);
  background-size: 300px 300px;
  opacity: 0.4;
  z-index: 1;
  animation: driftTeaserFog 40s linear infinite;
}

@keyframes driftTeaserFog {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.teaser-vignette {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(13,19,15,0.9) 100%);
  pointer-events: none;
}

.teaser-content {
  position: relative;
  z-index: 2;
  padding-right: 40px;
}

.teaser-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--sand);
  margin: 16px 0 24px;
}

.teaser-title em {
  font-style: italic;
  color: var(--gold);
}

.teaser-desc {
  color: rgba(247, 242, 232, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(220, 185, 116, 0.2);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(220, 185, 116, 0.4);
}

.teaser-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.floating-boat {
  position: relative;
  animation: floatBoat 4s ease-in-out infinite;
}

@keyframes floatBoat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.water-ripple-static {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  border: 1px solid rgba(220, 185, 116, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: staticRipple 3s ease-out infinite;
  z-index: -1;
}

.water-ripple-static.delay {
  animation-delay: 1.5s;
}

@keyframes staticRipple {
  0% { transform: translate(-50%, -50%) scale(1) scaleY(0.4); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(4) scaleY(0.4); opacity: 0; }
}

/* ── RESPONSIVE SECTIONS ── */
@media (max-width: 900px) {
  .journey-teaser {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    text-align: center;
  }
  .teaser-content {
    padding-right: 0;
  }
  .teaser-title {
    font-size: 36px;
  }
  .teaser-visual {
    height: 200px;
  }
  .story { grid-template-columns: 1fr; }
  .story-text { padding-left: 20px; border-left-width: 1px; }
  .story-visual { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .experience { padding: 80px 24px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-right { display: none; }
  .sourcing-section { padding: 80px 24px; }
  .sourcing-grid { grid-template-columns: 1fr; gap: 20px; }
  .sourcing-card { min-height: auto; padding: 32px 24px; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(13,26,18,.2); }
  .info-bar { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(247,242,232,.05); }
  .cta-section { padding: 80px 24px; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
