:root {
  --charcoal: #1C1712;
  --gold: #B8924A;
  --gold-light: #D4B475;
  --gold-pale: #F5F0E6;
  --cream: #F9F7F2;
  --cream-dark: #F2EDE4;
  --parchment: #F0EDE4;
  --mist: #9A928A;
  --smoke: #4A443F;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--parchment);
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(70px + var(--safe-bottom));
  /* Space for tab bar */
}

/* ── APP BAR ── */
.app-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--safe-top) + 68px);
  padding: var(--safe-top) 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(249, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 146, 74, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-bar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
}

.logo-main span {
  color: var(--gold);
  font-weight: 500;
}

.logo-sub {
  font-size: 7px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 2px;
  font-weight: 400;
}

.app-bar-actions {
  display: flex;
  gap: 14px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--parchment);
  color: var(--smoke);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.icon-btn:active {
  transform: scale(0.92);
  background: var(--parchment);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 84vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 60px;
  margin-top: 100px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(28, 23, 18, 0.1) 0%,
      rgba(28, 23, 18, 0.4) 40%,
      rgba(28, 23, 18, 0.8) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-badge span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 280px;
  line-height: 1.5;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.3);
  transition: all 0.2s;
}

.btn-ghost {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary:active,
.btn-ghost:active {
  transform: scale(0.96);
}

  /* ── UTILITIES ── */
  .notice-banner-wrapper {
    position: fixed;
    top: calc(var(--safe-top) + 64px);
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  .notice-banner-inner {
    overflow: hidden;
    padding: 10px 0;
  }

  .footer-logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-logo-group .logo-main {
    font-size: 18px;
  }

  .footer-logo-group .logo-sub {
    font-size: 8px;
    margin-top: 4px;
  }

  .copyright-text {
    font-size: 10px;
    color: var(--mist);
    margin-top: 30px;
    letter-spacing: 0.1em;
  }

  .display-none {
    display: none !important;
  }
/* ── STATS ── */
.stats-row {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mist);
  font-weight: 500;
}

/* ── SECTIONS ── */
.section {
  padding: 48px 0 20px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-link {
  font-size: 11px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-pale);
}

.section-nav-arrows {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-arrow:active {
  background: var(--gold-pale);
  color: var(--gold);
}

/* ── HORIZONTAL SCROLL ── */
.h-scroll {
  display: flex;
  gap: 16px;
  padding: 0 24px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.h-scroll::-webkit-scrollbar {
  display: none;
}

/* ── CHIPS ── */
.chips-scroll {
  display: flex;
  gap: 10px;
  padding: 0 24px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chips-scroll::-webkit-scrollbar {
  display: none;
}

.chip {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--smoke);
  transition: all 0.2s;
  cursor: pointer;
}

.chip.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(28, 23, 18, 0.15);
}

/* ── CARDS ── */
.card-collection {
  flex-shrink: 0;
  width: 260px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid var(--parchment);
}

.card-collection-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-collection-img-placeholder {
  width: 100%;
  height: 320px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.card-collection-body {
  padding: 18px 20px;
}

.card-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
}

.card-wide {
  position: relative;
  margin: 20px;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--charcoal);
}

.card-wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.card-wide-overlay {
  position: absolute;
  inset: 0;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(28, 23, 18, 0.9) 0%, transparent 70%);
}

.card-wide-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.card-wide-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.card-wide-title em {
  font-style: italic;
  color: var(--gold-light);
}

.card-wide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── PROCESS CARDS (JOURNEY) ── */
.process-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(184, 146, 74, 0.08);
}

.process-content-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--parchment);
  overflow: hidden;
  width: 100%;
}

.process-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--parchment);
}

.process-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-text-body {
  padding: 24px;
}

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.process-step-title span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mist);
  margin-bottom: 4px;
}

.process-step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--smoke);
  margin-bottom: 20px;
}

.process-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-detail-tag {
  font-size: 9px;
  padding: 6px 12px;
  background: var(--cream-dark);
  color: var(--mist);
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── TESTIMONIALS ── */
.card-testimonial {
  flex-shrink: 0;
  width: 290px;
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  scroll-snap-align: center;
  border: 1px solid var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  line-height: 1.4;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parchment);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 11px;
  color: var(--mist);
}

/* ── INFO CARD ── */
.info-card {
  margin: 0 20px 28px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--parchment);
}

.info-card-header {
  background: linear-gradient(135deg, rgba(45, 32, 21, 0.85) 0%, rgba(92, 61, 46, 0.75) 100%), url('../assets/images/storefront.webp');
  background-size: cover;
  background-position: center;
  padding: 32px 24px 28px;
}

.info-card-header-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.info-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-row-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
  margin-bottom: 2px;
}

.info-row-value {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}

.visit-actions-grid {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--parchment);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  height: 140px;
}

.visit-action-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.visit-action-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-card {
  background: var(--parchment);
  border: 1px solid var(--parchment);
}

.map-card iframe {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.map-card:hover iframe {
  opacity: 1;
}

.map-action-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  z-index: 2;
  transition: transform 0.2s;
}

.map-action-btn:active {
  transform: scale(0.95);
}

.outline-card {
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
}

.solid-card {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184, 146, 74, 0.25);
}

.action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.visit-action-card:active {
  transform: scale(0.96);
}

.visit-action-card:active .action-icon {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .visit-actions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 70px;
    height: auto;
  }
  .map-card {
    grid-column: span 2;
  }
}


/* ── FAQ SECTION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 28px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28, 23, 18, 0.05);
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.1);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--charcoal);
}

.faq-question-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.faq-symbol, .faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-symbol,
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--smoke);
  font-weight: 300;
}

/* ── BOTTOM TAB BAR ── */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--parchment);
  padding: 10px 8px calc(10px + var(--safe-bottom));
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 12px;
  transition: background 0.15s;
  text-decoration: none;
}

.tab-item:active {
  background: var(--cream-dark);
}

.tab-icon {
  font-size: 22px;
  line-height: 1;
}

.tab-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tab-item.active .tab-label {
  color: var(--gold);
  font-weight: 600;
}

.tab-item:not(.active) .tab-label {
  color: var(--mist);
}

.tab-item:not(.active) .tab-icon {
  opacity: 0.45;
}

.tab-bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.tab-indicator {
  position: absolute;
  top: 0;
  width: 52px;
  height: 100%;
  background: rgba(184, 146, 74, 0.10);
  border-radius: 12px;
  transition: left 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* ── FLOATING ACTIONS (FAB) ── */
.fab {
  position: fixed;
  bottom: calc(82px + var(--safe-bottom));
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  text-decoration: none;
  border: none;
}

.fab-book {
  left: 18px;
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-whatsapp {
  right: 18px;
  background: var(--charcoal);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(28, 23, 18, 0.25);
  border: 1px solid var(--gold);
}

.fab:active {
  transform: scale(0.93);
}

.fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 2px solid rgba(184, 146, 74, 0.55);
  animation: fabPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.28);
    opacity: 0;
  }

  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

/* ── PILL DIVIDER ── */
.pill-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  margin: 8px 0 24px;
}

.pill-line {
  flex: 1;
  height: 1px;
  background: var(--parchment);
}

.pill-center {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* ── PHILOSOPHY BLOCK ── */
.philosophy-block {
  margin: 0 20px 28px;
  border-radius: 24px;
  background: var(--cream-dark);
  overflow: hidden;
  border: 1px solid var(--parchment);
}

.philosophy-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.philosophy-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom right, #E8DDD0, #D4C4B0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.philosophy-body {
  padding: 24px;
}

.philosophy-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.philosophy-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 12px;
}

.philosophy-title em {
  font-style: italic;
  color: var(--gold);
}

.philosophy-text {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.8;
  font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── NOTICE BANNER ── */
.notice-banner {
  background: linear-gradient(90deg, #2D2015, #5C3D2E, #2D2015);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.notice-banner span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.notice-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── GRAIN TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── APP BAR SCROLL SHADOW ── */
.app-bar.scrolled {
  box-shadow: 0 4px 24px rgba(28, 23, 18, 0.09);
  border-bottom-color: rgba(184, 146, 74, 0.22);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MARQUEE NOTICE ── */
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-segment {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── TESTIMONIAL QUOTE MARK ── */
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  color: var(--gold-pale);
  line-height: 0.7;
  margin-bottom: 6px;
  display: block;
  font-style: italic;
}

/* ── FOOTER ── */
.footer-note {
  text-align: center;
  padding: 24px 24px 16px;
}

.footer-note-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.footer-note-logo em {
  font-style: italic;
  color: var(--gold);
}

.footer-note-sub {
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 11px;
  color: var(--mist);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-social-btn:active {
  background: var(--gold-pale);
  color: var(--gold);
}

/* ── GOOGLE RATING FLOAT ── */
.google-rating-float {
  position: absolute;
  top: 240px;
  right: 20px;
  z-index: 10;
  background: rgba(28, 23, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px 12px 12px 50px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(184, 146, 74, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.gr-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.star {
  color: #ffb400;
  font-size: 12px;
}

.rating-line {
  width: 1px;
  height: 24px;
  background: rgba(184, 146, 74, 0.4);
}

.rating-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-num {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1;
}

.rating-stars {
  display: flex;
  color: #ffde91;
  font-size: 11px;
  gap: 1px;
}

.rating-text {
  font-size: 8.5px;
  line-height: 1.2;
  color: var(--gold-light);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ── H-SCROLL-WIDE (JOURNEY) ── */
.h-scroll-wide {
  display: flex;
  gap: 14px;
  padding: 4px 24px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.h-scroll-wide::-webkit-scrollbar {
  display: none;
}

.card-process {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 290px;
}

/* ── LEGAL PAGES SPECIFIC ── */
.legal-content {
  margin-top: 120px;
  padding: 60px 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 40px;
  text-align: center;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.legal-section p {
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 12px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── DESKTOP REFINEMENTS ── */
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .tab-bar {
    display: none;
  }

  .hero {
    height: 90vh;
    border-radius: 0 0 60px 60px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-desc {
    font-size: 18px;
    max-width: 400px;
  }

  .section-header {
    padding-bottom: 40px;
  }

  .section-title {
    font-size: 42px;
  }

  .h-scroll, .h-scroll-wide, .chips-scroll {
    overflow-x: hidden; /* Arrows will handle scroll on desktop if we want, or just let them scroll */
    padding: 0 10% 40px;
    gap: 30px;
  }

  .card-collection {
    width: 320px;
  }

  .card-process {
    width: 380px;
  }

  .card-testimonial {
    width: 400px;
  }

  .footer-note {
    padding: 80px 10% 40px;
  }
}
  /* ── LEGAL PAGES ── */
  .legal-content {
    padding: 140px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
  }

  .btn-back {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s;
  }

  .btn-back:active {
    transform: translateX(-4px);
  }

  .legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 40px;
    color: var(--charcoal);
  }

  .legal-section {
    margin-bottom: 36px;
  }

  .legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--gold);
  }

  .legal-section p {
    font-size: 15px;
    color: var(--smoke);
    line-height: 1.7;
    margin-bottom: 12px;
  }
  /* ── BLOG SECTION ── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 24px 60px;
  }

  .blog-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--parchment);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:active {
    transform: scale(0.98);
  }

  .blog-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
  }

  .blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-card-date {
    font-size: 11px;
    color: var(--mist);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--charcoal);
  }

  .blog-card-excerpt {
    font-size: 14px;
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card-more {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  @media (min-width: 1024px) {
    .blog-grid {
      grid-template-columns: repeat(3, 1fr);
      padding: 0 10% 80px;
      gap: 40px;
    }
    
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(28, 23, 18, 0.08);
    }
  }
  .blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: var(--parchment);
  }

  .blog-card:hover .blog-card-img {
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* ══ SINGLE BLOG POST ══ */
  .blog-post-container {
    max-width: 800px;
    margin: 120px auto 100px;
    padding: 0 24px;
  }

  .blog-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--smoke);
    margin-bottom: 20px;
  }

  .blog-post-meta .post-cat {
    color: var(--gold);
    font-weight: 600;
  }

  .blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 30px;
  }

  .blog-post-hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 40px;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--parchment);
  }

  .blog-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
  }

  .blog-post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 50px 0 20px;
    color: var(--charcoal);
  }

  .blog-post-content p {
    margin-bottom: 25px;
  }

  .blog-post-content blockquote {
    margin: 40px 0;
    padding: 30px;
    background: var(--parchment);
    border-left: 3px solid var(--gold);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
  }

  .blog-post-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(28,23,18,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .btn-back-blog:hover {
    color: var(--gold);
  }

  @media (max-width: 768px) {
    .blog-post-container {
      margin-top: 80px;
    }
  }

/* ── CLIENTS ── */
.client-scroll {
  display: flex;
  gap: 16px;
  padding: 0 24px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.client-scroll::-webkit-scrollbar {
  display: none;
}

.card-client {
  flex-shrink: 0;
  width: 220px;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 24px;
  scroll-snap-align: center;
  border: 1px solid var(--parchment);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.card-client:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(184, 146, 74, 0.12);
  transform: translateY(-8px);
}

.client-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.card-client:hover .client-icon-wrapper {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.client-link-text {
  font-size: 11px;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-client:hover .client-link-text {
  color: var(--gold);
}

/* ── PILL DIVIDER ── */
.pill-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 80px auto;
  max-width: 300px;
}

.pill-line {
  height: 1px;
  background: var(--parchment);
  flex-grow: 1;
}

.pill-center {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid var(--parchment);
}
