:root {
  /* Strict Palette: Primary Brown, Secondary Gold, White, and Black */
  --primary-color: #652714;
  /* Logo primary brown */
  --secondary-color: #F7A820;
  /* Logo gold accent */
  --background: #FFFFFF;
  /* Pure White */
  --dark-bg: #000000;
  /* Pure Black */
  --dark-panel: #652714;
  /* Primary Brown Panel */
  --card-bg: #FFFFFF;
  --text-dark: #000000;
  /* Pure Black Text */
  --text-muted: #652714;
  /* Primary Brown Muted Text */
  --text-light: #FFFFFF;
  /* Pure White Text */
  --border-light: rgba(101, 39, 20, 0.15);

  /* Typography - Clean Outfit font across all site headings & body */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --header-height: 80px;
  --transition-smooth: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  background-color: var(--background);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--secondary-color);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--dark-bg);
  color: var(--text-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}

.loader-line {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  animation: loaderProgress 1s infinite linear;
}

@keyframes loaderProgress {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Typography Rules - No extra bold, controlled font sizes */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  /* Strictly Semibold maximum */
  line-height: 1.25;
  color: var(--text-dark);
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.editorial-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--primary-color);
}

.tag-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.editorial-subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding {
  padding: 80px 0;
}

/* Header & White Nav Links */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 2000;
  background-color: transparent;
  transition: transform 0.35s ease, background-color 0.35s ease, height 0.35s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background-color: transparent;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  height: 70px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 42px;
  width: auto;
}

.nav-desktop {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 40px;
}

.nav-links-desktop {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
  /* Center links */
}

.nav-links-desktop a {
  text-decoration: none;
  color: #FFFFFF !important;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links-desktop a:hover,
.nav-links-desktop a.active {
  color: var(--secondary-color) !important;
}

.header-cta-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--primary-color) !important;
  background-color: var(--secondary-color);
  border-radius: 20px;
  transition: var(--transition-smooth);
  margin-left: auto;
  /* Right alignment */
}

.header-cta-btn:hover {
  background-color: #E59710;
  color: var(--text-light) !important;
}

.menu-item-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
}

/* Card Button Matched to 2nd Screenshot (+ ADD TO CART / ORDER NOW style) */
.menu-card-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  margin-top: 12px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.menu-card-order-btn:hover {
  background-color: var(--secondary-color);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Newsletter / Franchise Banner matched to 3rd Screenshot */
.newsletter-franchise-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #16120E;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url('/assets/2692b2c1382d7b5c306a1595e1b710b70ca66093.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 48px;
  color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-franchise-content {
  max-width: 600px;
  flex: 1;
}

.franchise-right-graphic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.franchise-right-graphic img {
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.newsletter-tag {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: capitalize;
  color: var(--secondary-color);
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.2;
  text-transform: capitalize;
}

.newsletter-sub {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 10px;
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 200;
}

.newsletter-form-row {
  display: flex;
  max-width: 480px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}

.newsletter-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
}

.newsletter-submit-btn {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.newsletter-submit-btn:hover {
  background-color: var(--primary-color);
}

/* Mobile Toggle & Nav */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2000;
  position: relative;
}

.hamburger-box {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.open .hamburger-line:nth-child(1) {
  position: absolute;
  top: 9px;
  left: 0;
  transform: rotate(45deg);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .hamburger-line:nth-child(3) {
  position: absolute;
  top: 9px;
  left: 0;
  transform: rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--primary-color) !important;
  color: #FFFFFF;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  text-align: center;
}

.mobile-nav-links a {
  font-size: 2rem;
  font-weight: 600;
  color: #FFFFFF !important;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--secondary-color) !important;
}

.mobile-nav-cta {
  text-decoration: none;
  color: var(--primary-color) !important;
  background-color: var(--secondary-color);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 24px;
  display: inline-block;
  width: max-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Video Hero Section (Home, About, Contact) - Exactly 90vh */
.hero-video-section {
  position: relative;
  height: 90vh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--header-height);
  background-color: var(--dark-bg);
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 10, 9, 0.4), rgba(12, 10, 9, 0.75));
  z-index: 2;
}

.hero-video-content .main-title,
.hero-title-main {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

/* Vertical Side Badge matched to Screenshot 1 (01/03 & Vertical Text) */
.hero-vertical-badge {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero-vertical-badge .counter {
  font-family: var(--font-heading);
  transform: rotate(-90deg);
  white-space: nowrap;
}

.hero-vertical-badge .badge-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-vertical-badge .vertical-label {
  transform: rotate(-90deg);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Bottom Bar Matched to Screenshot 1 (Fresh roasted coffee 24h delivery + Partners Ticker) */
.hero-bottom-bar {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
}

.hero-bottom-left {
  text-align: left;
  max-width: 280px;
}

.hero-bottom-left .sub-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 4px;
}

.hero-bottom-left .sub-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-bottom-partners {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partners-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 6px;
  text-align: center;
}

.partners-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.partner-logo-item {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.hero-sub-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 28px;
}

/* Buttons */
.btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 20px;
  border: 1px solid transparent;
}

.btn-editorial-dark {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-editorial-dark:hover {
  background-color: #4C1D0F;
}

.btn-editorial-accent {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-editorial-accent:hover {
  background-color: #E59710;
  color: #FFFFFF;
}

.btn-editorial-outline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-editorial-outline:hover {
  background-color: #FFFFFF;
  color: var(--primary-color);
}

/* Footer using Primary Brand Color #652714 */
.site-footer-screenshot {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
}

.footer-brand-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.footer-brand-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
  line-height: 1.6;
}

.footer-column-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-link-list a:hover {
  color: var(--secondary-color);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-2px);
  color: var(--secondary-color);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.payment-badges {
  display: flex;
  gap: 8px;
}

.payment-badge {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 990;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
}

.lightbox-caption {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 12px;
}

.lightbox-close {
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}